/* Foodysh: marketing site styles.
   Shape rule: buttons, chips and search are full pills; cards and images use --r (20px); form fields use 12px. */

:root {
    --saffron: #ff9933;
    --saffron-ink: #a8520a;      /* saffron text on white, AA */
    --saffron-soft: #fff4e8;
    --green: #138808;
    --green-ink: #0e6b06;
    --green-soft: #eef7ec;
    --navy: #1b2a6b;             /* Ashoka chakra blue, used sparingly */
    --ink: #1d2129;
    --muted: #5b6270;
    --line: #ebe8e3;
    --bg: #ffffff;
    --surface: #fafaf8;
    --r: 20px;
    --shadow: 0 10px 30px -12px rgb(168 82 10 / .22);
    --shadow-sm: 0 4px 14px -6px rgb(29 33 41 / .16);
    --ease: cubic-bezier(.16, 1, .3, 1);
    --font-display: "Bricolage Grotesque", "Figtree", system-ui, sans-serif;
    --font-body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::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: 1rem;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
[hidden] { display: none !important; }

.container { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 32px); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.skip-link {
    position: absolute; left: 16px; top: -60px; z-index: 100;
    background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 999px; text-decoration: none;
}
.skip-link:focus { top: 12px; }

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

/* Tricolour strip */
.tricolour { display: grid; grid-template-columns: repeat(3, 1fr); height: 4px; }
.tricolour span:nth-child(1) { background: var(--saffron); }
.tricolour span:nth-child(2) { background: #fff; box-shadow: inset 0 0 0 1px var(--line); }
.tricolour span:nth-child(3) { background: var(--green); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; padding: 0 24px; border-radius: 999px; border: 0;
    font-weight: 700; font-size: .98rem; text-decoration: none; white-space: nowrap; cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .2s;
}
.btn:active { transform: translateY(1px) scale(.98); }
.btn-primary { background: var(--saffron); color: var(--ink); box-shadow: var(--shadow); }
.btn-primary:hover { background: #ffa447; transform: translateY(-2px); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 10px 30px -12px rgb(19 136 8 / .45); }
.btn-green:hover { background: #179a0a; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); }

.icon-btn {
    width: 42px; height: 42px; border-radius: 999px; border: 1.5px solid var(--line);
    background: #fff; color: var(--ink); cursor: pointer; display: grid; place-items: center; font-size: 1.1rem;
    transition: border-color .2s, transform .2s var(--ease);
}
.icon-btn:hover { border-color: var(--ink); }
.icon-btn:active { transform: scale(.94); }

/* Header */
.site-header {
    position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50;
    background: rgb(255 255 255 / .9);
    backdrop-filter: saturate(160%) blur(12px);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; letter-spacing: -0.02em; }
.brand-name strong { font-weight: 800; color: var(--green-ink); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav ul { display: flex; gap: 4px; }
.nav ul a {
    display: block; padding: 8px 14px; border-radius: 999px; text-decoration: none; font-weight: 600; color: var(--muted);
    transition: color .2s, background-color .2s;
}
.nav ul a:hover { color: var(--ink); background: var(--surface); }
.nav ul a[aria-current="page"] { color: var(--ink); background: var(--saffron-soft); }
.nav-cta { min-height: 42px; padding: 0 20px; }
.nav-toggle { display: none; }

@media (max-width: 820px) {
    .nav-toggle {
        display: grid; place-items: center; width: 44px; height: 44px; border-radius: 999px;
        border: 1.5px solid var(--line); background: #fff; font-size: 1.3rem; cursor: pointer; color: var(--ink);
    }
    .nav {
        position: absolute; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch; gap: 12px;
        padding: 16px clamp(16px, 4vw, 32px) 24px; background: #fff; border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-sm);
        opacity: 0; transform: translateY(-8px); pointer-events: none;
        transition: opacity .25s var(--ease), transform .25s var(--ease);
    }
    .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
    .nav ul { flex-direction: column; }
    .nav ul a { padding: 12px 14px; font-size: 1.05rem; }
}

/* Sections */
.section { padding-block: clamp(56px, 8vw, 96px); }
.section-title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; margin-bottom: 32px; max-width: 22ch; }
.eyebrow {
    display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--saffron-ink); margin-bottom: 12px;
}

/* Hero */
.hero { padding-block: clamp(32px, 5vw, 72px) clamp(40px, 6vw, 80px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { font-size: clamp(2.3rem, 4.4vw, 3.6rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; max-width: 17ch; }
.hero h1 em { font-style: normal; color: var(--green-ink); }
.hero-sub { margin-top: 20px; font-size: 1.15rem; color: var(--muted); max-width: 44ch; }

.search {
    position: relative; display: flex; align-items: center; gap: 8px; margin-top: 32px; max-width: 520px;
    padding: 6px 6px 6px 48px; background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
    box-shadow: var(--shadow-sm); transition: border-color .2s, box-shadow .2s;
}
.search:focus-within { border-color: var(--saffron); box-shadow: 0 0 0 4px rgb(255 153 51 / .2); }
.search > i { position: absolute; left: 18px; font-size: 1.3rem; color: var(--saffron-ink); }
.search input {
    flex: 1; min-width: 0; border: 0; outline: 0; font: inherit; font-size: 1rem; color: var(--ink); background: transparent; height: 44px;
}
.search input::placeholder { color: #7a808c; }
.search.is-invalid { border-color: #c0262d; }
.field-error { color: #b3261e; font-size: .9rem; font-weight: 600; margin-top: 10px; padding-left: 20px; }

.hero-visual { position: relative; }
.hero-visual img {
    position: relative; z-index: 1; width: 100%; aspect-ratio: 5 / 4; max-height: 540px; object-fit: cover;
    border-radius: 28px; box-shadow: 0 30px 60px -30px rgb(168 82 10 / .45);
}
.hero-shape { position: absolute; z-index: 0; border-radius: 28px; }
.hero-shape--saffron { inset: -18px 40px 40px -18px; background: var(--saffron); }
.hero-shape--green { width: 120px; height: 120px; right: -22px; bottom: -22px; border-radius: 999px; background: var(--green); }

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { max-width: 560px; margin: 8px 18px 18px 18px; }
}

/* Categories */
.categories { padding-top: 0; padding-bottom: clamp(40px, 5vw, 64px); }
.row-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.row-head h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 800; }
.scroll-btns { display: flex; gap: 8px; }
.cat-track {
    display: grid; grid-auto-flow: column; grid-auto-columns: 136px; gap: 20px;
    overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scrollbar-width: none;
}
.cat-track::-webkit-scrollbar { display: none; }
.cat-track li { scroll-snap-align: start; }
.cat { display: grid; justify-items: center; gap: 12px; text-decoration: none; font-weight: 600; text-align: center; }
.cat img {
    width: 128px; height: 128px; object-fit: cover; border-radius: 999px;
    border: 4px solid #fff; box-shadow: 0 0 0 1.5px var(--line);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.cat:hover img { transform: translateY(-4px) rotate(-3deg); box-shadow: 0 0 0 2px var(--saffron), var(--shadow); }

@media (max-width: 640px) {
    .cat-track { grid-auto-columns: 104px; gap: 14px; }
    .cat img { width: 96px; height: 96px; }
    .scroll-btns { display: none; }
}

/* Bento */
.why { background: linear-gradient(180deg, #fff 0%, var(--surface) 100%); }
.bento {
    display: grid; gap: 18px;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(240px, auto));
}
.tile {
    position: relative; overflow: hidden; border-radius: var(--r); padding: 28px;
    display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
}
.tile h3 { font-size: 1.35rem; font-weight: 700; }
.tile p { color: var(--muted); max-width: 34ch; }
.tile > i { font-size: 2rem; margin-bottom: auto; }
.tile--tall { grid-row: span 2; }
.tile--green { background: var(--green-soft); }
.tile--green > i { color: var(--green); }
.tile--saffron { background: var(--saffron-soft); }
.tile--saffron > i { color: var(--saffron-ink); }
.tile--plain { background: #fff; border: 1.5px solid var(--line); }
.pay-icons { display: flex; gap: 10px; margin-bottom: auto; font-size: 1.6rem; color: var(--navy); }

.tile--photo { padding: 0; min-height: 240px; }
.tile--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.tile--photo:hover img { transform: scale(1.04); }
.tile-scrim {
    position: relative; margin-top: auto; padding: 28px; color: #fff;
    background: linear-gradient(180deg, rgb(20 22 28 / 0) 0%, rgb(20 22 28 / .82) 60%);
    display: grid; gap: 8px; padding-top: 80px;
}
.tile-scrim p { color: rgb(255 255 255 / .88); }
.tile-scrim i { font-size: 1.8rem; color: var(--saffron); }

@media (max-width: 900px) {
    .bento { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
    .tile--tall { grid-column: span 2; grid-row: auto; min-height: 380px; }
}
@media (max-width: 560px) {
    .bento { grid-template-columns: 1fr; }
    .tile--tall { grid-column: auto; min-height: 340px; }
}

/* Restaurants */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; margin-top: -8px; }
.chip {
    display: inline-flex; align-items: center; gap: 6px; min-height: 40px; padding: 0 16px; border-radius: 999px;
    border: 1.5px solid var(--line); background: #fff; color: var(--ink); font-weight: 600; cursor: pointer;
    transition: border-color .2s, background-color .2s, transform .2s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip:active { transform: scale(.97); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip .ph-leaf { color: var(--green); }
.chip .ph-star { color: var(--saffron); }
.chip.is-active i { color: inherit; }

.rest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 20px; }
.rest-card { text-decoration: none; display: grid; gap: 14px; animation: fade-in .4s var(--ease); }
.rest-media { overflow: hidden; border-radius: var(--r); aspect-ratio: 4 / 3; background: var(--surface); }
.rest-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.rest-card:hover .rest-media img { transform: scale(1.06); }
.rest-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.rest-top h3 { font-family: var(--font-body); font-size: 1.08rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; }
.rating {
    flex-shrink: 0; display: inline-flex; align-items: center; gap: 3px; padding: 2px 8px; border-radius: 999px;
    background: var(--green); color: #fff; font-size: .82rem; font-weight: 700;
}
.rating i { font-size: .72rem; }
.rest-cuisine { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .95rem; margin-top: 4px; }
.rest-meta { display: flex; gap: 16px; color: var(--muted); font-size: .9rem; margin-top: 2px; }
.rest-meta span { display: inline-flex; align-items: center; gap: 4px; }

/* Indian veg / non-veg symbol */
.diet { width: 14px; height: 14px; border: 1.5px solid; border-radius: 3px; display: inline-grid; place-items: center; flex-shrink: 0; }
.diet::after { content: ""; width: 6px; height: 6px; border-radius: 999px; background: currentColor; }
.diet--veg { color: var(--green); }
.diet--nonveg { color: #9b2c1f; }

.empty { display: grid; justify-items: center; gap: 12px; padding: 48px 16px; text-align: center; color: var(--muted); border: 1.5px dashed var(--line); border-radius: var(--r); }
.empty i { font-size: 2.4rem; color: var(--saffron-ink); }

@media (max-width: 1080px) { .rest-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .rest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .rest-grid { grid-template-columns: 1fr; } }

/* Steps */
.steps { background: var(--saffron-soft); }
.steps .section-title { margin-inline: auto; text-align: center; }
.step-line { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; counter-reset: step; }
.step-line::before {
    content: ""; position: absolute; top: 36px; left: 16.6%; right: 16.6%;
    border-top: 2px dashed rgb(168 82 10 / .35);
}
.step-line li { position: relative; text-align: center; display: grid; justify-items: center; gap: 10px; }
.step-icon {
    width: 72px; height: 72px; border-radius: 999px; display: grid; place-items: center; font-size: 1.9rem;
    background: #fff; color: var(--saffron-ink); box-shadow: 0 0 0 6px var(--saffron-soft), var(--shadow);
    margin-bottom: 8px;
}
.step-line li:nth-child(3) .step-icon { color: var(--green); }
.step-line h3 { font-size: 1.4rem; font-weight: 800; }
.step-line p { color: var(--muted); max-width: 28ch; }

@media (max-width: 720px) {
    .step-line { grid-template-columns: 1fr; gap: 28px; }
    .step-line::before { top: 36px; bottom: 36px; left: 50%; right: auto; border-top: 0; border-left: 2px dashed rgb(168 82 10 / .35); }
    .step-line li { background: var(--saffron-soft); padding-block: 4px; }
}

/* Join */
.join-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 20px; }
.join-card {
    display: grid; grid-template-rows: 240px auto; overflow: hidden; border-radius: var(--r);
    background: var(--saffron-soft);
}
.join-card--green { background: var(--green-soft); margin-top: 48px; }
.join-card img { width: 100%; height: 100%; object-fit: cover; }
.join-body { padding: 28px; display: grid; gap: 12px; justify-items: start; }
.join-body h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); font-weight: 800; max-width: 20ch; }
.join-body p { color: var(--muted); max-width: 42ch; margin-bottom: 8px; }

@media (max-width: 780px) {
    .join-grid { grid-template-columns: 1fr; }
    .join-card--green { margin-top: 0; }
}

/* Testimonials */
.voices-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto; gap: 20px; }
.quote { margin: 0; padding: 28px; border-radius: var(--r); border: 1.5px solid var(--line); display: grid; gap: 20px; align-content: space-between; }
.quote blockquote { margin: 0; font-size: 1.08rem; }
.quote--big { grid-row: span 2; background: var(--surface); border-color: transparent; position: relative; }
.quote--big blockquote { font-family: var(--font-display); font-size: clamp(1.35rem, 2.4vw, 1.8rem); font-weight: 500; line-height: 1.3; letter-spacing: -0.015em; }
.quote figcaption { display: grid; font-size: .95rem; }
.quote figcaption span { color: var(--muted); }

@media (max-width: 780px) {
    .voices-grid { grid-template-columns: 1fr; }
    .quote--big { grid-row: auto; }
}

/* App band */
.app { padding-top: 0; }
.app-band {
    display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; overflow: hidden;
    background: var(--green-soft); border-radius: 28px; padding: 0;
}
.app-copy { padding: clamp(32px, 5vw, 64px); display: grid; align-content: center; justify-items: start; gap: 12px; }
.app-copy .eyebrow { color: var(--green-ink); margin-bottom: 0; }
.app-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 800; }
.app-copy > p { color: var(--muted); font-size: 1.08rem; max-width: 38ch; }
.store-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.store {
    display: inline-flex; align-items: center; gap: 10px; min-height: 54px; padding: 0 20px; border-radius: 999px;
    background: var(--ink); color: #fff; text-decoration: none; font-weight: 700; line-height: 1.15;
    transition: transform .25s var(--ease), background-color .2s;
}
.store:hover { transform: translateY(-2px); background: #2b303b; }
.store:active { transform: scale(.98); }
.store i { font-size: 1.6rem; }
.store span { display: grid; }
.store small { font-size: .7rem; font-weight: 500; opacity: .8; }
.app-visual { min-height: 320px; }
.app-visual img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 820px) {
    .app-band { grid-template-columns: 1fr; }
    .app-visual { min-height: 240px; order: -1; }
}

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px; padding-block: 56px 40px; }
.footer-brand p { color: var(--muted); margin-top: 14px; max-width: 34ch; }
.footer-title { font-family: var(--font-body); font-size: .95rem; font-weight: 700; margin-bottom: 14px; letter-spacing: 0; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: var(--muted); text-decoration: none; overflow-wrap: anywhere; }
.footer-links a:hover { color: var(--ink); text-decoration: underline; }
.social { display: flex; gap: 8px; margin-top: 20px; }
.social a {
    width: 40px; height: 40px; display: grid; place-items: center; border-radius: 999px; background: #fff;
    border: 1.5px solid var(--line); text-decoration: none; font-size: 1.15rem; transition: border-color .2s, color .2s;
}
.social a:hover { border-color: var(--saffron); color: var(--saffron-ink); }
.footer-base {
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
    padding-block: 20px 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem;
}
.made-in { font-weight: 600; color: var(--green-ink); }

@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: span 2; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } .footer-brand { grid-column: auto; } }

/* Inner pages */
.page-head { padding-block: clamp(40px, 6vw, 80px) clamp(24px, 4vw, 48px); }
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.035em; max-width: 18ch; }
.page-head p { margin-top: 16px; color: var(--muted); font-size: 1.12rem; max-width: 56ch; }

/* About */
.about-hero-img { border-radius: 28px; width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.story img { border-radius: var(--r); width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.story-copy { display: grid; gap: 16px; }
.story-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 800; }
.story-copy p { color: var(--muted); font-size: 1.06rem; max-width: 52ch; }
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value { padding: 28px; border-radius: var(--r); display: grid; gap: 10px; align-content: start; }
.value i { font-size: 1.9rem; }
.value h3 { font-size: 1.3rem; font-weight: 700; }
.value p { color: var(--muted); }
.value:nth-child(1) { background: var(--saffron-soft); } .value:nth-child(1) i { color: var(--saffron-ink); }
.value:nth-child(2) { background: #fff; border: 1.5px solid var(--line); } .value:nth-child(2) i { color: var(--navy); }
.value:nth-child(3) { background: #fff; border: 1.5px solid var(--line); } .value:nth-child(3) i { color: var(--navy); }
.value:nth-child(4) { background: var(--green-soft); } .value:nth-child(4) i { color: var(--green); }
.cta-strip {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
    padding: clamp(28px, 4vw, 48px); border-radius: 28px; background: var(--saffron-soft);
}
.cta-strip h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; max-width: 24ch; }

@media (max-width: 820px) { .story { grid-template-columns: 1fr; } .story img { aspect-ratio: 16 / 10; } }
@media (max-width: 560px) { .values { grid-template-columns: 1fr; } .about-hero-img { aspect-ratio: 4 / 3; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.contact-list { display: grid; gap: 14px; }
.contact-item { display: flex; gap: 16px; padding: 20px; border-radius: var(--r); background: var(--surface); }
.contact-item > i { font-size: 1.5rem; color: var(--saffron-ink); flex-shrink: 0; margin-top: 2px; }
.contact-item h2 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; letter-spacing: 0; }
.contact-item p, .contact-item a { color: var(--muted); overflow-wrap: anywhere; }
.contact-item a:hover { color: var(--ink); }

.form { display: grid; gap: 20px; padding: clamp(24px, 4vw, 40px); border-radius: var(--r); border: 1.5px solid var(--line); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-weight: 600; font-size: .95rem; }
.field .hint { color: var(--muted); font-size: .85rem; }
.field input, .field select, .field textarea {
    width: 100%; font: inherit; color: var(--ink); background: #fff;
    border: 1.5px solid #cfcbc4; border-radius: 12px; padding: 12px 14px; min-height: 48px;
    transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #767c88; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: 0; border-color: var(--saffron-ink); box-shadow: 0 0 0 4px rgb(255 153 51 / .22);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #b3261e; }
.field .error { color: #b3261e; font-size: .88rem; font-weight: 600; }
.hp { position: absolute; left: -9999px; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.form-actions p { color: var(--muted); font-size: .88rem; }
.alert { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: 12px; font-weight: 600; }
.alert i { font-size: 1.4rem; flex-shrink: 0; }
.alert--ok { background: var(--green-soft); color: var(--green-ink); }
.alert--err { background: #fdecea; color: #8c1d18; }

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* Legal */
.legal { display: grid; grid-template-columns: 240px 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.toc { position: sticky; top: 96px; display: grid; gap: 4px; padding: 20px; border-radius: var(--r); background: var(--surface); }
.toc h2 { font-family: var(--font-body); font-size: .85rem; font-weight: 700; margin-bottom: 8px; color: var(--muted); letter-spacing: 0; }
.toc a { text-decoration: none; color: var(--muted); padding: 6px 10px; border-radius: 8px; font-size: .93rem; }
.toc a:hover { color: var(--ink); background: #fff; }
.prose { max-width: 72ch; }
.prose section { padding-block: 8px 24px; scroll-margin-top: 96px; }
.prose h2 { font-size: 1.45rem; font-weight: 700; margin-bottom: 12px; }
.prose p, .prose li { color: #3d4350; }
.prose p + p { margin-top: 12px; }
.prose ul { list-style: disc; padding-left: 22px; display: grid; gap: 8px; margin-top: 12px; }
.prose a { color: var(--green-ink); font-weight: 600; }
.legal-note {
    display: flex; gap: 12px; padding: 16px 18px; border-radius: 12px; background: var(--saffron-soft); color: #6d3a07;
    margin-bottom: 32px; font-size: .95rem;
}
.legal-note i { font-size: 1.3rem; flex-shrink: 0; }

@media (max-width: 860px) { .legal { grid-template-columns: 1fr; } .toc { position: static; } }

/* Motion */
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: no-preference) {
    .js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
    .js .reveal.is-in { opacity: 1; transform: none; }
    .js .hero .reveal:nth-child(2) { transition-delay: .08s; }
    .js .hero .reveal:nth-child(3) { transition-delay: .16s; }
    .js .hero-visual.reveal { transition-delay: .12s; }
    .js .bento .reveal:nth-child(2), .js .step-line .reveal:nth-child(2), .js .voices-grid .reveal:nth-child(2) { transition-delay: .08s; }
    .js .bento .reveal:nth-child(3), .js .step-line .reveal:nth-child(3), .js .voices-grid .reveal:nth-child(3) { transition-delay: .16s; }
    .js .bento .reveal:nth-child(4) { transition-delay: .12s; }
    .js .bento .reveal:nth-child(5) { transition-delay: .2s; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}
.section--flush { padding-top: 0; }

/* Menu */
.menu { background: var(--surface); }
.menu-tabs {
    display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
    padding: 6px; margin-bottom: 28px; width: fit-content; max-width: 100%;
    background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
    flex-shrink: 0; min-height: 42px; padding: 0 18px; border: 0; border-radius: 999px; cursor: pointer;
    background: transparent; color: var(--muted); font-weight: 700; white-space: nowrap;
    transition: background-color .2s, color .2s;
}
.menu-tab:hover { color: var(--ink); }
.menu-tab.is-active { background: var(--saffron); color: var(--ink); }

.menu-list {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px;
    animation: fade-in .4s var(--ease);
}
.dish {
    display: flex; flex-direction: column; overflow: hidden;
    background: #fff; border-radius: var(--r); border: 1.5px solid var(--line);
    transition: border-color .2s, box-shadow .25s var(--ease), transform .25s var(--ease);
}
.dish:hover { border-color: rgb(255 153 51 / .55); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.dish-media { position: relative; order: -1; aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface); }
.dish-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.dish:hover .dish-media img { transform: scale(1.05); }
.dish-info { display: flex; flex-direction: column; flex: 1; padding: 16px 18px 18px; }
.dish-tags { display: flex; align-items: center; gap: 10px; min-height: 20px; }
.bestseller { display: inline-flex; align-items: center; gap: 4px; font-size: .8rem; font-weight: 700; color: var(--saffron-ink); }
.dish h3 { font-family: var(--font-body); font-size: 1.08rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; margin-top: 8px; }
.dish-desc { color: var(--muted); font-size: .9rem; margin-top: 6px; flex: 1; }
.dish-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; }
.dish-price { font-weight: 800; font-size: 1.1rem; }
.dish-add {
    display: inline-flex; align-items: center; gap: 4px; min-height: 36px; padding: 0 16px; border-radius: 999px;
    background: var(--green-soft); color: var(--green-ink); border: 1.5px solid transparent;
    font-weight: 800; font-size: .9rem; text-decoration: none; white-space: nowrap;
    transition: background-color .2s, color .2s;
}
.dish-add:hover { background: var(--green); color: #fff; }
.dish-add:active { transform: scale(.96); }
.menu-note { color: var(--muted); font-size: .88rem; margin-top: 24px; }

@media (max-width: 560px) {
    .menu-list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .dish-info { padding: 12px; }
    .dish h3 { font-size: .98rem; }
    .dish-desc { display: none; }
    .dish-foot { flex-wrap: wrap; margin-top: 10px; }
}
