/* ============================================================
   eat24 Careers Page
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.careers-hero {
    background: #C5960C;
    padding: 80px 0 0;
    overflow: hidden;
}
.careers-hero__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 56px;
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 560px;
}
.careers-hero__text {
    flex: 1;
    padding-bottom: 80px;
    padding-top: 40px;
}
.careers-hero__title {
    font-size: clamp(52px, 6vw, 84px);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -2px;
}
.careers-hero__highlight {
    color: #CDFF50;
    position: relative;
    display: inline;
    white-space: nowrap;
    z-index: 1;
}
.careers-hero__highlight::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -14px;
    right: -14px;
    top: 6px;
    background: #3B0000;
    z-index: -1;
    transform: skewX(-4deg);
    border-radius: 6px;
}
.careers-hero__sub {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    line-height: 1.7;
    max-width: 480px;
}
.careers-hero__image {
    flex: 0 0 42%;
    max-width: 520px;
    align-self: center;
}
.careers-hero__image-frame {
    border: 6px solid #3B0000;
    border-radius: 40px;
    overflow: hidden;
    transform: rotate(2deg);
}
.careers-hero__image-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}


/* ============================================================
   CULTURE SECTION
   ============================================================ */
.careers-culture {
    padding: 100px 0 80px;
    background: #FDF5EC;
}
.careers-culture__photos {
    display: flex;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 80px;
    justify-content: center;
}
.careers-culture__photo {
    border-radius: 24px;
    overflow: hidden;
    border: 4px solid rgba(59, 0, 0, 0.08);
}
.careers-culture__photo--large {
    flex: 0 0 48%;
    max-width: 560px;
}
.careers-culture__photo--large img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.careers-culture__photo--small {
    flex: 0 0 34%;
    max-width: 400px;
    margin-bottom: 40px;
}
.careers-culture__photo--small img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.careers-culture__content {
    max-width: 960px;
    margin: 0 auto;
}
.careers-culture__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: #3B0000;
    line-height: 1.15;
    margin-bottom: 40px;
}
.careers-culture__text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.careers-culture__text p {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
}


/* ============================================================
   WHY JOIN US
   ============================================================ */
.careers-why {
    padding: 80px 0 100px;
    background: #FDF5EC;
}
.careers-why__title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    color: #3B0000;
    margin-bottom: 56px;
}
.careers-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.careers-why__card {
    padding: 32px 24px;
    background: #fff;
    border-radius: 20px;
    border: 2px solid rgba(59, 0, 0, 0.06);
    transition: transform .2s, box-shadow .2s;
}
.careers-why__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(59, 0, 0, 0.08);
}
.careers-why__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #C5960C;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}
.careers-why__card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #3B0000;
    margin-bottom: 12px;
}
.careers-why__card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.careers-cta {
    padding: 60px 0 80px;
    background: #FDF5EC;
}
.careers-cta__card {
    background: #C5960C;
    border-radius: 24px;
    padding: 80px 72px;
    position: relative;
    overflow: hidden;
    text-align: left;
}
.careers-cta__circle-doodle {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    width: 320px;
    height: 200px;
    pointer-events: none;
    z-index: 0;
}
.careers-cta__circle-doodle svg {
    width: 100%;
    height: 100%;
}
.careers-cta__title {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}
.careers-cta__accent {
    color: #CDFF50;
    position: relative;
}
.careers-cta__btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    background: #CDFF50;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all .2s;
    position: relative;
    z-index: 1;
}
.careers-cta__btn:hover {
    background: #d8ff70;
    transform: translateY(-2px);
}


/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .careers-hero__inner { gap: 40px; }
    .careers-culture__photos { gap: 24px; }
    .careers-culture__text { gap: 32px; }
    .careers-why__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}


/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
    /* Hero */
    .careers-hero { padding: 48px 0 0; }
    .careers-hero__inner {
        flex-direction: column;
        padding: 0 20px;
        gap: 32px;
        min-height: auto;
    }
    .careers-hero__text { padding-bottom: 0; padding-top: 0; }
    .careers-hero__image {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    .careers-hero__image-frame {
        transform: rotate(0);
        border-radius: 24px;
        border-width: 4px;
    }
    .careers-hero__image-frame img { height: 320px; }

    /* Culture */
    .careers-culture { padding: 60px 0 48px; }
    .careers-culture__photos {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    .careers-culture__photo--large,
    .careers-culture__photo--small {
        flex: none;
        max-width: 100%;
    }
    .careers-culture__photo--large img { height: 280px; }
    .careers-culture__photo--small {
        margin-bottom: 0;
    }
    .careers-culture__photo--small img { height: 240px; }
    .careers-culture__text {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Why */
    .careers-why { padding: 48px 0 60px; }
    .careers-why__grid { grid-template-columns: 1fr 1fr; gap: 20px; }

    /* CTA */
    .careers-cta__card { padding: 48px 28px; }
    .careers-cta__circle-doodle { display: none; }
}


/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
    .careers-hero__title { font-size: 40px; }
    .careers-hero__image-frame img { height: 240px; }
    .careers-hero__image-frame { border-radius: 16px; }

    .careers-culture__photo--large img { height: 220px; }
    .careers-culture__photo--small img { height: 180px; }
    .careers-culture__title { font-size: 28px; }

    .careers-why__grid { grid-template-columns: 1fr; }
    .careers-why__card { padding: 24px 20px; }

    .careers-cta__card { padding: 36px 20px; border-radius: 16px; }
    .careers-cta__title { font-size: 32px; }
}
