/* =====================================================================
   Home Craves Foods — "Warm Editorial Homestyle"
   Palette: brick red · turmeric · marigold · cocoa brown on warm cream
   Display: Fraunces (serif)   Body: Hanken Grotesk
   Photography: open-license (Unsplash) in assets/img/photos/
   ===================================================================== */

/* ---------- Design Tokens ---------- */
:root {
    /* surfaces */
    --cream:       #FFFFFF;
    --cream-deep:  #FAFAFA;
    --paper:       #FFFFFF;
    --ink:         #1a1a1a;   /* charcoal black */
    --ink-soft:    #555555;   /* muted dark grey text */
    --line:        #E7D4B8;   /* hairline on cream */

    /* brand (logo-derived, deepened for editorial richness) */
    --brick:       #B5311B;   /* primary deep red */
    --red:         #D7351E;   /* brighter chili red */
    --turmeric:    #E08524;   /* orange */
    --marigold:    #F5B70A;   /* yellow */
    --brown:       #111111;   /* deep cocoa (footer) */
    --brown-2:     #111111;

    /* effects */
    --shadow-sm: 0 4px 14px rgba(74, 46, 32, 0.08);
    --shadow-md: 0 18px 40px -18px rgba(74, 46, 32, 0.30);
    --shadow-lg: 0 40px 80px -30px rgba(74, 46, 32, 0.45);
    --radius: 20px;

    --maxw: 1200px;
    --gutter: clamp(20px, 5vw, 48px);

    --display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
    font-family: var(--body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* subtle paper grain */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 18% 12%, rgba(245,183,10,.10), transparent 38%),
        radial-gradient(circle at 88% 78%, rgba(213,53,30,.08), transparent 42%);
}

img { max-width: 100%; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: color .25s ease; }

h1, h2, h3, h4 {
    font-family: var(--display);
    color: var(--ink);
    line-height: 1.06;
    font-weight: 600;
    font-optical-sizing: auto;
    letter-spacing: -0.01em;
}

::selection { background: var(--marigold); color: var(--ink); }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 130px); position: relative; }
.center { text-align: center; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--body);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--brick);
    margin-bottom: 22px;
}
.eyebrow::before {
    content: "";
    width: 30px; height: 2px;
    background: var(--turmeric);
    display: inline-block;
}
.eyebrow.is-center::after {
    content: "";
    width: 30px; height: 2px;
    background: var(--turmeric);
    display: inline-block;
}

.h-section { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); max-width: 56ch; }
.center .lede { margin-inline: auto; }

.script-accent { font-style: italic; font-weight: 400; color: var(--brick); }

/* hand-drawn underline used on key words */
.ink-underline { position: relative; white-space: nowrap; }
.ink-underline svg {
    position: absolute;
    left: -2%; bottom: -.32em;
    width: 104%; height: .42em;
    overflow: visible;
}
.ink-underline svg path {
    fill: none;
    stroke: var(--turmeric);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}
.reveal.is-in .ink-underline svg path,
.no-motion .ink-underline svg path { animation: draw 1.1s ease .5s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--body);
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 28px;
    border-radius: 999px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    line-height: 1;
}
.btn-primary {
    background: var(--brick);
    color: #fff;
    box-shadow: 0 14px 26px -12px rgba(181,49,27,.8);
}
.btn-primary:hover { background: var(--red); transform: translateY(-3px); box-shadow: 0 20px 34px -12px rgba(181,49,27,.9); }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-3px); }
.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { background: #fff; transform: translateY(-3px); }

/* App-store style buttons */
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--ink);
    color: var(--cream);
    padding: 11px 20px;
    border-radius: 14px;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    box-shadow: var(--shadow-sm);
}
.store-btn:hover { transform: translateY(-3px); background: var(--ink); box-shadow: var(--shadow-md); }
.store-btn i { font-size: 1.7rem; line-height: 1; }
.store-btn span { font-size: .72rem; line-height: 1.15; text-align: left; letter-spacing: .02em; opacity: .85; }
.store-btn span strong { display: block; font-size: 1.05rem; font-weight: 700; letter-spacing: 0; opacity: 1; }
.store-btn.is-orange { background: var(--turmeric); color: #fff; }
.store-btn.is-orange:hover { background: var(--brick); }
.store-btn.is-brown { background: var(--ink); }
.store-btn.is-brown:hover { background: var(--ink); }

.store-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding-block: 18px;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05), var(--shadow-sm);
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled {
    padding-block: 10px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px -22px rgba(17,17,17,.55), 0 1px 0 rgba(0,0,0,0.06);
}
.nav {
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; transition: height .3s ease; }
.scrolled .brand img { height: 40px; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: var(--brick); line-height: 1; letter-spacing: -.01em; }
.brand-name small { display: block; font-family: var(--body); font-size: .6rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
    font-weight: 600; font-size: .98rem; color: var(--ink);
    position: relative; padding-block: 4px;
}
.nav-links a::after {
    content: ""; position: absolute; left: 0; bottom: -2px;
    width: 0; height: 2px; background: var(--turmeric); transition: width .28s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--brick); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    font-size: 1.4rem; color: var(--ink); width: 44px; height: 44px;
}

.home-page .site-header:not(.scrolled) {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}
.home-page .site-header:not(.scrolled) .brand {
    padding: 6px 12px 6px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 10px 26px -18px rgba(0,0,0,.65);
}
.home-page .site-header:not(.scrolled) .nav-links a,
.home-page .site-header:not(.scrolled) .nav-toggle {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,.55);
}
.home-page .site-header:not(.scrolled) .nav-links a:hover,
.home-page .site-header:not(.scrolled) .nav-links a.active {
    color: var(--marigold);
}
.home-page .site-header:not(.scrolled) .nav-links a::after {
    background: var(--marigold);
}
/* mobile drawer */
.mobile-menu {
    position: fixed; inset: 0; z-index: 200;
    background: var(--cream);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.7,0,.2,1);
    display: flex; flex-direction: column; padding: 28px var(--gutter);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .mm-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu .mm-close { background: none; border: none; font-size: 1.6rem; color: var(--ink); cursor: pointer; }
.mobile-menu nav { margin-top: 40px; display: flex; flex-direction: column; gap: 6px; }
.mobile-menu nav a {
    font-family: var(--display); font-size: 2rem; font-weight: 600; color: var(--ink);
    padding-block: 10px; border-bottom: 1px solid var(--line);
}
.mobile-menu nav a:hover { color: var(--brick); }
.mobile-menu .mm-foot { margin-top: auto; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(120px, 17vw, 170px); padding-bottom: clamp(60px, 8vw, 90px); position: relative; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(32px, 6vw, 72px);
    align-items: center;
}
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    font-weight: 600 !important;
    margin-bottom: 24px;
    line-height: 1.2;
}
.hero h1 em { font-style: italic; color: var(--brick); }
.hero p {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem) !important;
    color: var(--ink-soft) !important;
    max-width: 48ch;
    margin-bottom: 32px;
    line-height: 1.5;
}
.hero-fullscreen h1 {
    color: #ffffff !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}
.hero-fullscreen p {
    color: #f8f9fa !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-rating {
    display: flex; align-items: center; gap: 18px; margin-top: 34px; flex-wrap: wrap;
}
.hero-rating .stars { color: var(--marigold); font-size: 1.05rem; letter-spacing: 2px; }
.hero-rating .rate-num { font-family: var(--display); font-weight: 700; font-size: 1.4rem; color: var(--ink); }
.hero-rating .rate-txt { font-size: .92rem; color: var(--ink-soft); }
.hero-rating .divider { width: 1px; height: 34px; background: var(--line); }
.avatars { display: flex; }
.avatars img { width: 40px; height: 40px; border-radius: 50%; border: 3px solid var(--cream); object-fit: cover; margin-left: -12px; box-shadow: var(--shadow-sm); }
.avatars img:first-child { margin-left: 0; }

/* hero image — arched frame + seal */
.hero-art { position: relative; }
.arch {
    position: relative;
    border-radius: 50% 50% 24px 24px / 32% 32% 24px 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 10px solid var(--paper);
    aspect-ratio: 4 / 5;
}
.arch img { width: 100%; height: 100%; object-fit: cover; }
.hero-art .leaf {
    position: absolute; font-size: 2rem; color: var(--turmeric); opacity: .9;
}

/* rotating seal */
.seal {
    position: absolute;
    width: clamp(96px, 13vw, 138px);
    height: clamp(96px, 13vw, 138px);
    right: -18px; bottom: 36px;
    z-index: 3;
    filter: drop-shadow(0 10px 18px rgba(74,46,32,.35));
}
.seal .seal-disc {
    position: absolute; inset: 0;
    background: var(--marigold);
    border-radius: 50%;
}
.seal svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 22s linear infinite; }
.seal svg text { font-family: var(--body); font-size: 13.5px; font-weight: 800; letter-spacing: 1.5px; fill: var(--ink); text-transform: uppercase; }
.seal .seal-center {
    position: absolute; inset: 0; display: grid; place-items: center;
    color: var(--brick); font-size: clamp(1.5rem, 3vw, 2.1rem);
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-chip {
    position: absolute; left: -22px; top: 40px; z-index: 3;
    background: var(--paper); border-radius: 16px; padding: 12px 16px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: var(--shadow-md);
    animation: floaty 5s ease-in-out infinite;
}
.hero-chip i { color: var(--brick); font-size: 1.4rem; }
.hero-chip b { font-family: var(--display); font-size: .98rem; display: block; }
.hero-chip span { font-size: .78rem; color: var(--ink-soft); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Marquee ---------- */
.marquee {
    background: var(--brick);
    color: var(--cream);
    padding-block: 16px;
    overflow: hidden;
    border-block: 3px solid var(--ink);
}
.marquee-track {
    display: flex; gap: 0; width: max-content;
    animation: slide 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
    font-family: var(--display); font-style: italic; font-size: 1.35rem; font-weight: 500;
    padding-inline: 30px; display: inline-flex; align-items: center; gap: 30px;
    white-space: nowrap;
}
.marquee-track span::after { content: "✦"; color: var(--marigold); font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Values ---------- */
.values-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px;
}
.value-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 26px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.value-ic {
    width: 58px; height: 58px; border-radius: 16px;
    display: grid; place-items: center; font-size: 1.5rem; color: #fff; margin-bottom: 20px;
    background: var(--brick);
}
.value-card:nth-child(2) .value-ic { background: var(--turmeric); }
.value-card:nth-child(3) .value-ic { background: var(--marigold); color: var(--ink); }
.value-card:nth-child(4) .value-ic { background: var(--ink); }
.value-card h3 { font-size: 1.32rem; margin-bottom: 10px; }
.value-card p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- Dish gallery ---------- */
.menu { background: var(--cream-deep); }
.dish-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 230px;
    gap: 18px;
    margin-top: 56px;
}
.dish {
    position: relative; overflow: hidden; border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.dish img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.dish:hover img { transform: scale(1.08); }
.dish::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(43,26,17,.78) 0%, rgba(43,26,17,.05) 55%);
}
.dish-label {
    position: absolute; left: 20px; bottom: 18px; z-index: 2; color: #fff;
}
.dish-label .tag { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--marigold); }
.dish-label h4 { color: #fff; font-size: 1.3rem; }
.dish.span-2 { grid-column: span 2; }
.dish.span-3 { grid-column: span 3; }
.dish.tall { grid-row: span 2; }

/* ---------- App Ecosystem ---------- */
.apps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; }
.app-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 38px 32px;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.app-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.app-card .num {
    font-family: var(--display); font-weight: 600; font-size: 3.2rem; color: var(--cream-deep);
    line-height: 1; position: absolute; top: 18px; right: 24px;
}
.app-ic { font-size: 2.2rem; color: var(--brick); margin-bottom: 18px; }
.app-card:nth-child(2) .app-ic { color: var(--turmeric); }
.app-card:nth-child(3) .app-ic { color: var(--ink); }
.app-card h3 { font-size: 1.6rem; margin-bottom: 12px; }
.app-card p { color: var(--ink-soft); margin-bottom: 24px; min-height: 76px; }
.app-card .store-row { flex-direction: column; }
.app-card .store-btn { width: 100%; }

/* ---------- Chef band ---------- */
.chef-band { background: var(--cream-deep); color: var(--ink); overflow: hidden; }
.chef-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,72px); align-items: center; }
.chef-band .eyebrow { color: var(--brick); }
.chef-band .eyebrow::before { background: var(--turmeric); }
.chef-band h2 { color: var(--ink); font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 20px; }
.chef-band h2 em { font-style: italic; color: var(--brick); }
.chef-band p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.08rem; max-width: 48ch; }
.chef-points { display: flex; flex-direction: column; gap: 14px; margin: 26px 0 32px; }
.chef-points li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink); }
.chef-points i { color: var(--marigold); margin-top: 4px; }
.chef-photo {
    border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg);
    border: 8px solid rgba(251,243,231,.1); aspect-ratio: 5/4;
}
.chef-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 56px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step .step-no {
    font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: #fff;
    background: var(--brick); width: 46px; height: 46px; border-radius: 50%;
    display: grid; place-items: center; margin-bottom: 20px;
}
.step:nth-child(2) .step-no { background: var(--turmeric); }
.step:nth-child(3) .step-no { background: var(--marigold); color: var(--ink); }
.step h3 { font-size: 1.4rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); }
.step::before {
    content: ""; position: absolute; top: 40px; left: 60px; right: -15px; height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}
.step:last-child::before { display: none; }

/* ---------- Stats band ---------- */
.stats-band {
    position: relative; color: var(--ink); text-align: center;
    background-color: var(--cream-deep);
    background-size: cover; background-position: center; background-attachment: fixed;
    background-blend-mode: normal;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat .num { font-family: var(--display); font-weight: 600; font-size: clamp(2.6rem,5vw,3.6rem); color: var(--brick); line-height: 1; }
.stat .label { font-size: .95rem; letter-spacing: .04em; color: var(--ink-soft); margin-top: 8px; font-weight: 600; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; }
.quote {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 34px 30px; position: relative;
}
.quote .mark { font-family: var(--display); font-size: 4rem; line-height: .6; color: var(--marigold); }
.quote p { color: var(--ink); font-size: 1.05rem; margin: 8px 0 22px; }
.quote .who { display: flex; align-items: center; gap: 14px; }
.quote .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.quote .who b { display: block; font-family: var(--display); }
.quote .who span { font-size: .85rem; color: var(--ink-soft); }
.quote .who-stars { color: var(--marigold); font-size: .8rem; margin-top: 2px; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-card {
    background: var(--brick);
    color: #fff;
    border-radius: 36px;
    padding: clamp(48px, 7vw, 80px) var(--gutter);
    position: relative; overflow: hidden;
}
.cta-card::before, .cta-card::after {
    content: "✦"; position: absolute; color: rgba(245,183,10,.25); font-size: 9rem;
}
.cta-card::before { top: -20px; left: 4%; }
.cta-card::after { bottom: -40px; right: 4%; }
.cta-card h2 { color: #fff; font-size: clamp(2rem,5vw,3.4rem); margin-bottom: 16px; position: relative; }
.cta-card h2 em { font-style: italic; color: var(--marigold); }
.cta-card p { color: rgba(255,255,255,.9); max-width: 50ch; margin: 0 auto 30px; position: relative; }
.cta-card .store-row { justify-content: center; position: relative; }

/* ---------- Page header (interior pages) ---------- */
.page-hero {
    padding-top: clamp(140px, 18vw, 190px);
    padding-bottom: clamp(50px, 7vw, 80px);
    text-align: center;
    position: relative;
}
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); margin-bottom: 16px; }
.legal-page .page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero h1 em { font-style: italic; color: var(--brick); }
.page-hero p { color: var(--ink-soft); font-size: 1.15rem; max-width: 52ch; margin-inline: auto; }

/* ---------- Rich text (about / legal) ---------- */
.prose {
    max-width: 820px; margin-inline: auto;
    background: var(--paper); border: 1px solid var(--line);
    border-radius: 26px; padding: clamp(32px, 5vw, 60px);
    box-shadow: var(--shadow-sm);
}
.prose .updated { font-size: .85rem; color: var(--ink-soft); letter-spacing: .04em; margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.prose h2 { font-size: 1.7rem; margin: 36px 0 14px; color: var(--brick); }
.prose h2:first-of-type { margin-top: 0; }
.prose h3 { font-size: 1.25rem; margin: 24px 0 10px; }
.prose p { color: var(--ink-soft); margin-bottom: 16px; }
.prose ul.bul { list-style: disc; padding-left: 22px; margin-bottom: 16px; color: var(--ink-soft); }
.prose ul.bul li { margin-bottom: 8px; }
.prose a { color: var(--brick); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- About split blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,72px); align-items: center; }
.split.flip .split-media { order: 2; }
.split-media { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/4; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.split h2 em { font-style: italic; color: var(--brick); }
.split p { color: var(--ink-soft); margin-bottom: 16px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 36px 30px; text-align: center; transition: transform .3s ease, box-shadow .3s ease;
}
.contact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.contact-card .c-ic {
    width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
    display: grid; place-items: center; font-size: 1.5rem; color: #fff; background: var(--brick);
}
.contact-card:nth-child(2) .c-ic { background: var(--turmeric); }
.contact-card:nth-child(3) .c-ic { background: var(--ink); }
.contact-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.contact-card p, .contact-card a { color: var(--ink-soft); }
.contact-card a:hover { color: var(--brick); }
.map-wrap { margin-top: 56px; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-md); border: 8px solid var(--paper); }
.map-wrap iframe { width: 100%; height: 420px; display: block; border: 0; filter: saturate(.9); }

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(135deg, var(--marigold), var(--turmeric), var(--brick)); color: rgba(255,255,255,.9); padding-top: clamp(64px,8vw,90px); }
.footer-grid {
    max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
    display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 48px; padding-bottom: 50px;
}
.footer-brand .brand img { height: 50px; }
.footer-brand p { margin: 20px 0; max-width: 38ch; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
    background: rgba(251,243,231,.08); color: var(--cream); transition: background .25s ease, transform .25s ease;
}
.footer-social a:hover { background: var(--brick); transform: translateY(-3px); }
.footer-col h4 { color: var(--cream); font-size: 1.05rem; margin-bottom: 18px; letter-spacing: .02em; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a:hover { color: var(--marigold); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact i { color: var(--marigold); margin-top: 5px; }
.footer-bottom {
    border-top: 1px solid rgba(251,243,231,.12); padding-block: 24px;
    max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .88rem;
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { 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; }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
    .nav-links, .nav-cta .btn { display: none; }
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
}
@media (max-width: 1024px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .apps-grid, .quotes, .steps, .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .step::before { display: none; }
}
@media (max-width: 880px) {
    .hero-grid, .chef-grid, .split, .split.flip .split-media { grid-template-columns: 1fr; }
    .split.flip .split-media { order: 0; }
    .hero-art { max-width: 460px; margin-inline: auto; }
    .chef-grid > .chef-text { order: 2; }
    .dish-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
    .dish.span-2, .dish.span-3 { grid-column: span 2; }
    .dish.tall { grid-row: span 1; }
    .stats-band { background-attachment: scroll; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 520px) {
    .values-grid, .dish-grid, .stats-grid { grid-template-columns: 1fr; }
    .dish.span-2, .dish.span-3 { grid-column: span 1; }
    .hero-chip { left: 0; }
    .seal { right: 0; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
    .seal svg, .marquee-track, .hero-chip { animation: none !important; }
}

/* visible keyboard focus */
:focus-visible { outline: 3px solid var(--turmeric); outline-offset: 3px; border-radius: 4px; }

/* Swiper Hero Styles */
.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.hero-swiper {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.swiper-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content-overlay {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    background: var(--mustard) !important;
    opacity: 1 !important;
}

.site-header .logo { color: var(--ink) !important; }
