/* ==========================================================================
   SD Event Chef — main.css
   Fun, bright, coastal/surf-inspired private chef marketing site.
   Palette: deep navy · ocean teal/turquoise · sunset orange · sandy cream.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------- */
:root {
    /* Brand colours */
    --navy:        #0e3a5c;
    --navy-deep:   #082640;
    --teal:        #17a9c3;
    --teal-bright: #2bc4d8;
    --teal-dark:   #0e8198;
    --orange:      #f0883a;
    --orange-dark: #e0701f;
    --coral:       #f4683c;
    --sand:        #faf3e6;
    --sand-deep:   #f3e7d0;
    --cream:       #fffaf1;
    --white:       #ffffff;

    /* Text */
    --ink:         #123a52;
    --ink-soft:    #3a5d70;
    --muted:       #6c8593;
    --on-dark:     #eaf6fb;

    /* Gradients */
    --grad-sunset: linear-gradient(160deg, #0e3a5c 0%, #1c5170 28%, #5d6f86 48%, #e9824a 74%, #f4a85f 100%);
    --grad-ocean:  linear-gradient(135deg, #0e8198 0%, #17a9c3 55%, #2bc4d8 100%);
    --grad-warm:   linear-gradient(135deg, #f0883a 0%, #f4683c 100%);

    /* UI */
    --radius:      18px;
    --radius-lg:   28px;
    --radius-pill: 999px;
    --radius-btn:  14px;   /* buttons: de-pilled, modern coastal */
    --shadow-sm:   0 6px 18px rgba(14, 58, 92, .08);
    --shadow:      0 18px 40px rgba(14, 58, 92, .14);
    --shadow-lg:   0 28px 60px rgba(14, 58, 92, .22);
    --ring:        0 0 0 4px rgba(43, 196, 216, .35);

    /* Layout */
    --maxw:        1200px;
    --gutter:      clamp(1.1rem, 4vw, 2.5rem);
    --section-y:   clamp(3.5rem, 8vw, 6.5rem);

    /* Type */
    --font-head:   'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-body:   'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-script: 'Pacifico', 'Segoe UI', cursive;
}

/* ---- Reset / base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(1rem, .55vw + .9rem, 1.12rem);
    line-height: 1.7;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--teal-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--orange-dark); }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    color: var(--navy);
    line-height: 1.12;
    margin: 0 0 .6em;
    font-weight: 800;
    letter-spacing: -.01em;
}

p { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; }

:focus-visible { outline: 3px solid var(--teal-bright); outline-offset: 3px; border-radius: 6px; }

.skip-link {
    position: absolute; left: 1rem; top: -3rem; z-index: 200;
    background: var(--navy); color: #fff; padding: .6rem 1rem;
    border-radius: 0 0 12px 12px; transition: top .2s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---- Layout helpers ------------------------------------------------------ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: var(--section-y); position: relative; }
.section--sand  { background: var(--sand); }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); color: var(--on-dark); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--ocean { background: var(--grad-ocean); color: #fff; }
.section--ocean h1, .section--ocean h2, .section--ocean h3 { color: #fff; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3.2rem); text-align: center; }
.section-head--left { margin-inline: 0; text-align: left; }

.eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--font-head); font-weight: 700; font-size: .82rem;
    text-transform: uppercase; letter-spacing: .18em;
    color: var(--teal-dark); margin-bottom: .9rem;
}
.section--navy .eyebrow, .section--ocean .eyebrow { color: var(--teal-bright); }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }

.script { font-family: var(--font-script); font-weight: 400; }

h2.section-title { font-size: clamp(1.9rem, 4.2vw, 3rem); }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.section--navy .section-head p, .section--ocean .section-head p { color: var(--on-dark); }

.lead { font-size: 1.15rem; color: var(--ink-soft); }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
    --btn-bg: var(--orange);
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    font-family: var(--font-head); font-weight: 700; font-size: 1rem;
    line-height: 1; text-align: center; cursor: pointer;
    padding: .95rem 1.7rem; border: none; border-radius: var(--radius-btn);
    background: var(--btn-bg); color: #fff;
    box-shadow: 0 10px 22px rgba(224, 112, 31, .32);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 16px 30px rgba(224, 112, 31, .42); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 1.15em; height: 1.15em; }

.btn--orange { --btn-bg: var(--grad-warm); }
.btn--teal {
    --btn-bg: var(--grad-ocean);
    box-shadow: 0 10px 22px rgba(14, 129, 152, .32);
}
.btn--teal:hover { box-shadow: 0 16px 30px rgba(14, 129, 152, .42); }

.btn--ghost {
    background: transparent; color: #fff;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .8);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .14); color: #fff; box-shadow: inset 0 0 0 2px #fff; }

.btn--outline {
    background: transparent; color: var(--navy);
    box-shadow: inset 0 0 0 2px var(--teal);
}
.btn--outline:hover { background: var(--teal); color: #fff; box-shadow: inset 0 0 0 2px var(--teal); }

.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.08rem; }
.btn--block { display: flex; width: 100%; }

/* ---- Header / navigation ------------------------------------------------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(14, 58, 92, .07);
    transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(255, 255, 255, .97); }

.nav {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; min-height: 76px;
}
.nav__logo img { height: 46px; width: auto; }
@media (min-width: 640px) { .nav__logo img { height: 54px; } }

.nav__links { display: flex; align-items: center; gap: .15rem; list-style: none; }
.nav__links a {
    display: inline-block; font-family: var(--font-head); font-weight: 600;
    color: var(--ink); padding: .55rem .72rem; border-radius: var(--radius-pill);
    position: relative; transition: color .2s ease, background .2s ease;
}
.nav__links a:hover { color: var(--teal-dark); background: rgba(23, 169, 195, .1); }
.nav__links a.is-active { color: var(--teal-dark); }
.nav__links a.is-active::after {
    content: ""; position: absolute; left: 50%; bottom: .26rem; transform: translateX(-50%);
    width: 18px; height: 3px; border-radius: 3px; background: var(--orange);
}

.nav__cta { display: flex; align-items: center; gap: .75rem; }
.nav__actions { display: flex; align-items: center; gap: .9rem; }
.nav__phone {
    display: none; align-items: center; gap: .4rem; font-family: var(--font-head);
    font-weight: 700; color: var(--navy);
}
.nav__phone .icon { width: 1.1em; height: 1.1em; color: var(--teal-dark); }
@media (min-width: 1180px) { .nav__phone { display: inline-flex; } }

.nav__toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 46px; height: 46px; padding: 0 11px; border: none; cursor: pointer;
    background: var(--navy); border-radius: 4px;
}
.nav__toggle span { display: block; height: 2.5px; border-radius: 3px; background: #fff; transition: transform .25s ease, opacity .25s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1023px) {
    .nav__links {
        position: fixed; inset: 76px 0 auto 0;
        flex-direction: column; align-items: stretch; gap: .2rem;
        background: #fff; padding: 1rem var(--gutter) 1.6rem;
        box-shadow: var(--shadow); border-bottom: 4px solid var(--teal);
        transform: translateY(-120%); transition: transform .3s ease; visibility: hidden;
    }
    .nav__links.is-open { transform: translateY(0); visibility: visible; }
    .nav__links a { padding: .85rem 1rem; font-size: 1.05rem; }
    .nav__links a.is-active::after { left: 1rem; transform: none; }
    .nav__cta--inline { display: none; }
    .nav__menu-cta { margin-top: .8rem; }
}
@media (min-width: 1024px) {
    .nav__toggle { display: none; }
    .nav__menu-cta { display: none; }
}

/* ---- Hero ---------------------------------------------------------------- */
.hero {
    position: relative; color: #fff; isolation: isolate;
    padding-block: clamp(4rem, 11vw, 8.5rem) clamp(5rem, 12vw, 9rem);
    background: var(--grad-sunset);
    overflow: hidden;
}
.hero__sky { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__sun {
    position: absolute; top: 18%; right: 12%; width: clamp(120px, 22vw, 260px); aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, #ffe7b8 0%, #ffce7a 45%, rgba(244,168,95,0) 72%);
    filter: blur(2px); opacity: .9; animation: floaty 8s ease-in-out infinite;
}
.hero__glow {
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(120% 80% at 80% 10%, rgba(255, 213, 145, .55), transparent 55%),
        radial-gradient(90% 70% at 10% 100%, rgba(14, 58, 92, .55), transparent 60%);
}
.hero__palms {
    position: absolute; left: 0; bottom: 0; width: 100%; z-index: -1;
    opacity: .9; pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero__inner { max-width: 760px; }

.hero__eyebrow {
    font-family: var(--font-script); font-size: clamp(1.5rem, 4.5vw, 2.4rem);
    color: #ffd98a; display: block; margin-bottom: .2rem;
    text-shadow: 0 3px 16px rgba(8, 38, 64, .4); transform: rotate(-2deg);
}
.hero__title { margin: 0 0 1rem; color: #fff; }
.hero__big {
    display: block; font-size: clamp(2.7rem, 9vw, 5.6rem); font-weight: 800;
    line-height: .98; letter-spacing: -.02em; text-transform: uppercase;
    text-shadow: 0 6px 28px rgba(8, 38, 64, .35);
}
.hero__big em { font-style: normal; color: var(--teal-bright); }
.hero__lead {
    font-family: var(--font-head); font-weight: 600;
    font-size: clamp(1.05rem, 2.2vw, 1.4rem); color: #fff; max-width: 38ch; margin-bottom: .7rem;
}
.hero__sub { color: rgba(255, 255, 255, .92); max-width: 54ch; font-size: 1.08rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 1.3rem; margin-top: 2.4rem; }
.hero__badge { display: flex; align-items: center; gap: .55rem; font-weight: 700; font-family: var(--font-head); font-size: .95rem; }
.hero__badge .icon { width: 1.4em; height: 1.4em; color: #ffd98a; }

@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---- Wave dividers ------------------------------------------------------- */
.wave-divider { line-height: 0; margin-top: -1px; }
.wave-divider svg { width: 100%; height: clamp(48px, 7vw, 90px); display: block; }
.wave-divider--flip svg { transform: scaleY(-1); }
.hero .wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 0; }

/* ---- Feature cards (intro) ---------------------------------------------- */
.intro__grid {
    display: grid; gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: clamp(2rem, 4vw, 3rem);
}
.feature {
    background: #fff; border-radius: var(--radius); padding: 1.8rem 1.5rem;
    box-shadow: var(--shadow-sm); border: 1px solid rgba(14, 58, 92, .06);
    text-align: center; transition: transform .25s ease, box-shadow .25s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 64px; height: 64px; border-radius: 20px; margin-bottom: 1rem;
    background: var(--sand); color: var(--teal-dark);
}
.feature__icon .icon { width: 30px; height: 30px; }
.feature:nth-child(2n) .feature__icon { background: rgba(240, 136, 58, .14); color: var(--orange-dark); }
.feature h3 { font-size: 1.18rem; margin-bottom: .35rem; }
.feature p { color: var(--ink-soft); font-size: .98rem; margin: 0; }

/* ---- Occasion / service image cards ------------------------------------- */
.card-grid {
    display: grid; gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.media-card {
    position: relative; display: flex; flex-direction: column;
    border-radius: var(--radius-lg); overflow: hidden; background: var(--navy);
    box-shadow: var(--shadow); min-height: 260px; isolation: isolate;
    color: #fff; transition: transform .3s ease, box-shadow .3s ease;
}
.media-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); color: #fff; }
.media-card__img { position: absolute; inset: 0; z-index: -2; }
.media-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.media-card:hover .media-card__img img { transform: scale(1.07); }
.media-card::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(8,38,64,.05) 0%, rgba(8,38,64,.35) 45%, rgba(8,38,64,.86) 100%);
}
.media-card--gradient .media-card__img { background: var(--grad-ocean); }
.media-card--sunset .media-card__img { background: var(--grad-sunset); }
.media-card--warm .media-card__img { background: var(--grad-warm); }
/* Events page cards: tighter, more modern radius (28px -> 14px) */
.media-card--event { border-radius: 14px; }
.media-card__body { margin-top: auto; padding: 1.5rem; }
.media-card__tag {
    display: inline-block; font-family: var(--font-head); font-weight: 700;
    font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
    background: var(--orange); color: #fff; padding: .3rem .7rem; border-radius: var(--radius-pill);
    margin-bottom: .7rem;
}
.media-card h3 { color: #fff; font-size: 1.35rem; margin-bottom: .3rem; text-shadow: 0 2px 10px rgba(8,38,64,.5); }
.media-card p { color: rgba(255, 255, 255, .9); font-size: .96rem; margin: 0; }

.section-cta { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* ---- How it works -------------------------------------------------------- */
.steps {
    display: grid; gap: 1.6rem; counter-reset: step;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top: clamp(2rem, 4vw, 3rem);
}
.step {
    position: relative; background: #fff; border-radius: var(--radius);
    padding: 2.4rem 1.6rem 1.7rem; box-shadow: var(--shadow-sm);
    border: 1px solid rgba(14, 58, 92, .06); text-align: center;
}
.step__num {
    position: absolute; top: -26px; left: 50%; transform: translateX(-50%);
    width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
    background: var(--grad-ocean); color: #fff; font-family: var(--font-head);
    font-weight: 800; font-size: 1.4rem; box-shadow: 0 10px 20px rgba(14, 129, 152, .35);
    border: 4px solid var(--cream);
}
.section--sand .step__num { border-color: var(--sand); }
.step h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.step p { color: var(--ink-soft); margin: 0; font-size: .98rem; }
.step__icon { color: var(--orange); margin-bottom: .5rem; }
.step__icon .icon { width: 28px; height: 28px; }

/* ---- Food / split feature ------------------------------------------------ */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; } .split--reverse .split__media { order: 2; } }

.split__media { position: relative; }
.split__media img {
    width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow);
    aspect-ratio: 4 / 3; object-fit: cover;
}
.split__media::before {
    content: ""; position: absolute; inset: auto -18px -18px auto; width: 60%; height: 60%;
    border-radius: var(--radius-lg); background: var(--grad-warm); opacity: .25; z-index: -1;
}
.split__list { list-style: none; display: grid; gap: .8rem; margin: 1.3rem 0 1.8rem; }
.split__list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink-soft); }
.split__list .icon { width: 1.5em; height: 1.5em; color: var(--teal-dark); flex: none; margin-top: .1rem; }

/* Food gallery mosaic */
.food-gallery {
    display: grid; gap: 1.2rem; margin-top: clamp(2rem, 4vw, 3rem);
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 760px) { .food-gallery { grid-template-columns: repeat(4, 1fr); } }
.food-gallery figure {
    margin: 0; position: relative; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); aspect-ratio: 3 / 4;
}
.food-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.food-gallery figure:hover img { transform: scale(1.06); }
.food-gallery figcaption {
    position: absolute; inset: auto 0 0 0; padding: 1.4rem .9rem .8rem;
    background: linear-gradient(transparent, rgba(8,38,64,.82));
    color: #fff; font-size: .82rem; font-weight: 600;
}

/* ---- Service areas ------------------------------------------------------- */
.areas { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-top: 1.5rem; }
.area-chip {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(255, 255, 255, .12); color: #fff; border: 1px solid rgba(255,255,255,.25);
    padding: .55rem 1.1rem; border-radius: var(--radius-pill); font-weight: 700; font-size: .95rem;
}
.area-chip .icon { width: 1.05em; height: 1.05em; color: var(--teal-bright); }

/* ---- Testimonials -------------------------------------------------------- */
.quotes { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-top: clamp(2rem,4vw,3rem); }
.quote {
    background: #fff; border-radius: var(--radius); padding: 1.8rem;
    box-shadow: var(--shadow-sm); border-left: 5px solid var(--orange);
}
.quote__stars { color: var(--orange); letter-spacing: 2px; margin-bottom: .6rem; }
.quote p { font-size: 1.05rem; font-style: italic; color: var(--ink); }
.quote cite { font-style: normal; font-weight: 800; font-family: var(--font-head); color: var(--navy); display: block; margin-top: .6rem; }
.quote cite span { display: block; font-weight: 600; font-size: .88rem; color: var(--muted); }

/* ---- Final CTA banner ---------------------------------------------------- */
.cta-banner { position: relative; text-align: center; overflow: hidden; isolation: isolate; }
.cta-banner__inner { max-width: 640px; margin: 0 auto; }
.cta-banner h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
.cta-banner p { font-size: 1.15rem; color: var(--on-dark); margin-bottom: 1.8rem; }
.cta-banner .btn { margin: .4rem; }
.cta-banner__shells { position: absolute; inset: 0; z-index: -1; opacity: .14; }

/* ---- Page hero (interior pages) ----------------------------------------- */
.page-hero {
    position: relative; color: #fff; isolation: isolate; overflow: hidden;
    background: var(--grad-sunset);
    padding-block: clamp(3.5rem, 8vw, 6rem) clamp(4rem, 9vw, 7rem);
}
.page-hero__glow {
    position: absolute; inset: 0; z-index: -1;
    background: radial-gradient(110% 80% at 85% 0%, rgba(255, 213, 145, .45), transparent 55%);
}
.page-hero .container { position: relative; max-width: 820px; }
.page-hero__eyebrow { font-family: var(--font-script); color: #ffd98a; font-size: clamp(1.3rem, 3.5vw, 1.9rem); display: block; transform: rotate(-1.5deg); }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 6vw, 3.6rem); margin: .2rem 0 .7rem; }
.page-hero p { color: rgba(255,255,255,.94); font-size: 1.15rem; max-width: 60ch; margin: 0; }
.page-hero .wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; }

/* breadcrumb-ish chip row */
.tag-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.tag-row span {
    background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28);
    padding: .4rem .9rem; border-radius: var(--radius-pill); font-weight: 700; font-size: .85rem;
}

/* ---- Services detail rows ----------------------------------------------- */
.service-row {
    display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: center;
    padding-block: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 860px) {
    .service-row { grid-template-columns: 1.05fr .95fr; }
    .service-row:nth-child(even) .service-row__media { order: -1; }
}
.service-row__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.service-row__media--ph {
    aspect-ratio: 4/3; border-radius: var(--radius-lg); box-shadow: var(--shadow);
    display: grid; place-items: center; color: #fff;
}
.service-row__media--ph .icon { width: 64px; height: 64px; opacity: .9; }
.service-row__num { font-family: var(--font-script); color: var(--teal); font-size: 1.6rem; }
.service-row h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin-bottom: .5rem; }
.pill-list { list-style: none; display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }
.pill-list li {
    background: var(--sand); color: var(--navy); font-weight: 700; font-size: .9rem;
    padding: .45rem 1rem; border-radius: var(--radius-pill); border: 1px solid var(--sand-deep);
}

/* ---- Menus --------------------------------------------------------------- */
.menu-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.menu-card {
    background: #fff; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); border: 1px solid rgba(14,58,92,.06);
    display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.menu-card__top {
    padding: 1.4rem 1.6rem; color: #fff; position: relative;
}
.menu-card__top--coast { background: var(--grad-ocean); }
.menu-card__top--taco  { background: var(--grad-warm); }
.menu-card__top--brunch{ background: linear-gradient(135deg, #f4a85f, #f0883a); }
.menu-card__top--bites { background: linear-gradient(135deg, #17a9c3, #0e3a5c); }
.menu-card__top--feast { background: linear-gradient(135deg, #e0701f, #0e3a5c); }
.menu-card__top--brunch2 { background: linear-gradient(135deg, #2bc4d8, #0e8198); }
.menu-card__top h3 { color: #fff; font-size: 1.4rem; margin: 0; }
.menu-card__top .script { color: rgba(255,255,255,.9); font-size: 1.1rem; }
.menu-card__body { padding: 1.5rem 1.6rem 1.8rem; }
.menu-list { list-style: none; display: grid; gap: .85rem; }
.menu-list li { display: flex; gap: .65rem; align-items: flex-start; color: var(--ink-soft); }
.menu-list .icon { width: 1.2em; height: 1.2em; color: var(--teal); flex: none; margin-top: .28rem; }
.menu-list strong { color: var(--navy); font-family: var(--font-head); }
.menu-note {
    background: rgba(23,169,195,.08); border: 1px dashed var(--teal);
    border-radius: var(--radius); padding: 1.2rem 1.4rem; color: var(--ink-soft);
    display: flex; gap: .8rem; align-items: flex-start; margin-top: 1.5rem;
}
.menu-note .icon { width: 1.6em; height: 1.6em; color: var(--teal-dark); flex: none; }
.menu-note strong { color: var(--navy); }

/* ---- Contact form -------------------------------------------------------- */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 1fr 1.25fr; align-items: start; } }

.contact-aside { background: var(--navy); color: var(--on-dark); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.6rem); position: relative; overflow: hidden; }
.contact-aside h2 { color: #fff; }
.contact-aside__list { list-style: none; display: grid; gap: 1.1rem; margin-top: 1.5rem; }
.contact-aside__list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-aside__list .icon { width: 1.4em; height: 1.4em; color: var(--teal-bright); flex: none; margin-top: .15rem; }
.contact-aside__list a { color: #fff; font-weight: 700; }
.contact-aside__list a:hover { color: var(--teal-bright); }
.contact-aside__list span { display: block; font-size: .85rem; color: rgba(234,246,251,.7); }
.contact-aside__social { display: flex; gap: .7rem; margin-top: 1.6rem; }
.contact-aside__social a {
    display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px;
    background: rgba(255,255,255,.1); color: #fff;
}
.contact-aside__social a:hover { background: var(--teal); color: #fff; }

.form-card {
    background: #fff; border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.6rem);
    box-shadow: var(--shadow); border: 1px solid rgba(14,58,92,.06);
}
.form-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: .92rem; }
.field label .req { color: var(--coral); }
.field input, .field select, .field textarea {
    font: inherit; color: var(--ink); padding: .85rem 1rem;
    border: 1.5px solid #d8e3ea; border-radius: 14px; background: var(--cream);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--teal); box-shadow: var(--ring); background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.field--error input, .field--error select, .field--error textarea { border-color: var(--coral); }
.field__error { color: var(--coral); font-size: .82rem; font-weight: 700; display: none; }
.field--error .field__error { display: block; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

.form-note { font-size: .88rem; color: var(--muted); margin-top: 1rem; }
.form-status {
    display: none; margin-top: 1.2rem; padding: 1rem 1.2rem; border-radius: 14px;
    background: rgba(23,169,195,.12); border: 1px solid var(--teal); color: var(--navy);
    font-weight: 700;
}
.form-status.is-visible { display: flex; gap: .6rem; align-items: center; }
.form-status .icon { width: 1.4em; height: 1.4em; color: var(--teal-dark); flex: none; }

/* ---- About / chef story -------------------------------------------------- */
.chef-badge {
    position: absolute; left: -14px; bottom: 22px; z-index: 2;
    display: flex; align-items: center; gap: .7rem;
    background: #fff; border-radius: var(--radius); padding: .85rem 1.2rem;
    box-shadow: var(--shadow); border: 1px solid rgba(14, 58, 92, .06); max-width: 78%;
}
.chef-badge__icon {
    display: grid; place-items: center; width: 46px; height: 46px; flex: none;
    border-radius: 14px; background: var(--grad-ocean); color: #fff;
}
.chef-badge__icon .icon { width: 24px; height: 24px; }
.chef-badge strong { display: block; font-family: var(--font-head); color: var(--navy); font-size: .98rem; line-height: 1.2; }
.chef-badge span { font-size: .82rem; color: var(--muted); }
@media (max-width: 600px) { .chef-badge { position: static; max-width: none; margin-top: 1rem; } }

/* Chef portrait crop (About intro + homepage teaser) — source ~4:5 */
.split__media--portrait img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 22%;
}
.split__media--portrait::before { width: 55%; height: 55%; }
@media (min-width: 880px) {
    .split__media--portrait { max-width: 420px; width: 100%; margin-inline: auto; }
}

/* Homepage "Meet the Chef" teaser panel */
.chef-teaser {
    background: #fff;
    border: 1px solid rgba(14, 58, 92, .06);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: var(--shadow);
}

.cred-card .feature__icon { background: rgba(240, 136, 58, .14); color: var(--orange-dark); }
.cred-card .tagline { display: block; font-family: var(--font-head); font-weight: 700; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: .3rem; }

.expect-list {
    list-style: none; display: grid; gap: 1rem; margin-top: clamp(2rem, 4vw, 3rem);
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.expect-list li {
    display: flex; gap: .85rem; align-items: flex-start;
    background: #fff; border-radius: var(--radius); padding: 1.2rem 1.35rem;
    box-shadow: var(--shadow-sm); border: 1px solid rgba(14, 58, 92, .06);
    color: var(--ink-soft); font-weight: 600;
}
.expect-list .icon { width: 1.5em; height: 1.5em; color: var(--teal-dark); flex: none; margin-top: .05rem; }
.expect-list strong { color: var(--navy); font-family: var(--font-head); }

.creed { max-width: 720px; margin: 0 auto; text-align: center; }
.creed p { font-size: clamp(1.15rem, 2.4vw, 1.5rem); font-family: var(--font-head); font-weight: 600; color: #fff; line-height: 1.45; }
.creed p em { font-style: normal; color: #ffdf9c; }
.creed .script { font-size: clamp(1.4rem, 3.2vw, 2rem); color: #ffd98a; display: block; margin-top: 1rem; }

/* ---- Pricing page -------------------------------------------------------- */
.price-intro { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.price-intro .menu-note { text-align: left; }

.price-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
    position: relative; display: flex; flex-direction: column;
    background: #fff; border: 1px solid rgba(14, 58, 92, .09);
    border-radius: 14px; padding: 1.9rem 1.6rem 1.7rem;
    box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card--featured { border: 2px solid var(--orange); box-shadow: var(--shadow); }
.price-card__badge {
    position: absolute; top: -13px; left: 1.6rem;
    background: var(--grad-warm); color: #fff; font-family: var(--font-head);
    font-weight: 700; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
    padding: .4rem .85rem; border-radius: 8px; box-shadow: 0 7px 16px rgba(224, 112, 31, .38);
}
.price-card h3 { font-size: 1.3rem; margin-bottom: .25rem; }
.price-card__bestfor {
    color: var(--teal-dark); font-family: var(--font-head); font-weight: 700;
    font-size: .82rem; line-height: 1.4; margin-bottom: 1.1rem; display: block;
}
.price-card__starting {
    font-family: var(--font-head); font-weight: 700; font-size: .72rem;
    letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0;
}
.price-card__price { display: flex; align-items: baseline; gap: .4rem; margin: .1rem 0 .5rem; }
.price-card__amount { font-family: var(--font-head); font-weight: 800; font-size: 2.1rem; color: var(--navy); line-height: 1; }
.price-card__per { color: var(--ink-soft); font-weight: 700; font-size: .95rem; }
.price-card__min {
    display: inline-block; background: var(--sand); color: var(--navy);
    border: 1px solid var(--sand-deep); border-radius: 8px;
    font-weight: 700; font-size: .82rem; padding: .25rem .7rem; margin-bottom: 1.1rem;
}
.price-card__desc { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.1rem; }
.price-card__list { list-style: none; display: grid; gap: .55rem; margin: 0 0 1.5rem; }
.price-card__list li { display: flex; gap: .55rem; align-items: flex-start; color: var(--ink-soft); font-size: .93rem; }
.price-card__list .icon { width: 1.1em; height: 1.1em; color: var(--teal-dark); flex: none; margin-top: .25rem; }
.price-card .btn { margin-top: auto; }

/* Comparison table */
.price-table-wrap { margin-top: clamp(2rem, 4vw, 3rem); }
.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th, .price-table td { padding: 1rem 1.1rem; text-align: left; border-bottom: 1px solid rgba(14, 58, 92, .08); }
.price-table thead th { background: var(--navy); color: #fff; font-family: var(--font-head); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr.is-featured { background: rgba(240, 136, 58, .07); }
.price-table td:first-child { font-family: var(--font-head); font-weight: 700; color: var(--navy); }
.price-table .price-cell { font-weight: 800; color: var(--teal-dark); white-space: nowrap; }
@media (max-width: 720px) {
    .price-table { box-shadow: none; background: transparent; }
    .price-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
    .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
    .price-table tr { background: #fff; border-radius: 14px; box-shadow: var(--shadow-sm); margin-bottom: 1rem; padding: .4rem .2rem; border: 1px solid rgba(14,58,92,.08); }
    .price-table td { display: flex; justify-content: space-between; gap: 1rem; text-align: right; border-bottom: 1px solid rgba(14,58,92,.06); }
    .price-table tr td:last-child { border-bottom: none; }
    .price-table td::before { content: attr(data-label); font-family: var(--font-head); font-weight: 700; color: var(--navy); text-align: left; }
}

/* Pricing factor chips */
.factor-grid { display: grid; gap: .9rem; margin-top: clamp(1.6rem, 3vw, 2.2rem); grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.factor {
    display: flex; align-items: center; gap: .7rem; background: #fff;
    border-radius: 12px; padding: .85rem 1rem; box-shadow: var(--shadow-sm);
    border: 1px solid rgba(14, 58, 92, .06); font-family: var(--font-head); font-weight: 700;
    color: var(--navy); font-size: .92rem;
}
.factor .icon { width: 1.4em; height: 1.4em; color: var(--teal-dark); flex: none; }

/* ---- FAQ page ------------------------------------------------------------ */
.faq-category { margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.faq-category:last-child { margin-bottom: 0; }
.faq-cat-title {
    display: flex; align-items: center; gap: .75rem;
    font-size: clamp(1.4rem, 3vw, 1.85rem); margin-bottom: 1.1rem;
}
.faq-cat-icon {
    display: grid; place-items: center; width: 48px; height: 48px; flex: none;
    border-radius: 13px; background: var(--sand); color: var(--teal-dark);
}
.faq-cat-icon .icon { width: 25px; height: 25px; }
.faq-list { display: grid; gap: .8rem; }

.faq-item {
    background: #fff; border: 1px solid rgba(14, 58, 92, .08); border-radius: 14px;
    box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item summary {
    list-style: none; cursor: pointer; display: flex; align-items: center;
    justify-content: space-between; gap: 1rem; padding: 1.05rem 1.3rem;
    font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.04rem;
    transition: color .2s ease, background .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--teal-dark); background: rgba(23, 169, 195, .05); }
.faq-item summary:focus-visible { outline: 3px solid var(--teal-bright); outline-offset: -3px; }
.faq-item summary .icon { width: 1.3em; height: 1.3em; color: var(--teal-dark); flex: none; transition: transform .25s ease; }
.faq-item[open] summary { color: var(--teal-dark); }
.faq-item[open] summary .icon { transform: rotate(180deg); }
.faq-answer { padding: 0 1.3rem 1.25rem; color: var(--ink-soft); }
.faq-answer p { margin: 0; }

/* Quick-help intro card */
.faq-help { text-align: center; max-width: 760px; margin-inline: auto; }
.faq-help .eyebrow { justify-content: center; }
.faq-help__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.2rem; }

/* Contextual "Visit our FAQ" line (used on pricing / contact / services) */
.faq-link-line { text-align: center; color: var(--muted); margin-top: 1.6rem; font-weight: 600; }
.faq-link-line a { color: var(--teal-dark); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.faq-link-line a:hover { color: var(--orange-dark); }

/* ---- Footer -------------------------------------------------------------- */
.site-footer { background: var(--navy-deep); color: var(--on-dark); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid {
    display: grid; gap: 2.2rem; padding-bottom: 2.5rem;
    grid-template-columns: 1.4fr 1fr 1fr;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 56px; margin-bottom: 1rem; }
.footer-brand p { color: rgba(234,246,251,.72); max-width: 36ch; }
.footer-script { font-family: var(--font-script); color: var(--teal-bright); font-size: 1.1rem; }
.footer-col h4 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: grid; gap: .55rem; }
.footer-col a { color: rgba(234,246,251,.8); }
.footer-col a:hover { color: var(--teal-bright); }
.footer-areas { color: rgba(234,246,251,.72); font-size: .92rem; line-height: 1.9; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer-social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); color: #fff; }
.footer-social a:hover { background: var(--teal); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.4rem;
    display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between;
    color: rgba(234,246,251,.6); font-size: .88rem;
}
.footer-bottom a { color: rgba(234,246,251,.8); }

/* ---- Scroll reveal animation -------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero__sun { animation: none; }
}

/* ---- Utilities ----------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.no-scroll { overflow: hidden; }
