:root {
  --bg: #fbf7ef;
  --surface: #fffdf8;
  --surface-2: #f4eadb;
  --ink: #2a1b12;
  --muted: #706158;
  --brown: #4a2818;
  --brown-2: #6c3a20;
  --gold: #b98936;
  --gold-light: #e7c983;
  --line: rgba(74, 40, 24, .14);
  --shadow: 0 18px 60px rgba(56, 29, 14, .10);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

[data-theme="dark"] {
  --bg: #19120e;
  --surface: #241914;
  --surface-2: #302118;
  --ink: #fff7e8;
  --muted: #c9b7a9;
  --brown: #e5bd80;
  --brown-2: #f2d09d;
  --gold: #dda94d;
  --gold-light: #f1d69b;
  --line: rgba(255, 239, 215, .13);
  --shadow: 0 18px 60px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  transition: background .25s ease, color .25s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
::selection { background: var(--gold-light); color: #28160d; }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding: 78px 0; position: relative; }
.section-sm { padding: 52px 0; }
.surface { background: var(--surface); }
.wood-section {
  color: #fffaf1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 52px 100%,
    radial-gradient(circle at 10% 10%, rgba(218,166,86,.12), transparent 30%),
    linear-gradient(135deg, #321b11, #5b321d 55%, #3e2114);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; color: var(--gold);
  font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: currentColor; }
.section-head { max-width: 700px; margin-bottom: 34px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2, .page-hero h1, .display, .story-quote {
  font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -.035em;
}
.section-head h2 { margin: 10px 0 12px; font-size: clamp(2rem, 7vw, 3.5rem); }
.section-head p { margin: 0; color: var(--muted); font-size: 1.02rem; }
.wood-section .section-head p, .wood-section .muted { color: rgba(255,255,255,.72); }
.gold { color: var(--gold); }
.muted { color: var(--muted); }
.small { font-size: .88rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* Header */
.announcement { background: #2c190f; color: #f6e5c6; font-size: .78rem; text-align: center; padding: 7px 44px 7px 12px; }
.site-header { position: sticky; top: 0; z-index: 60; background: color-mix(in srgb, var(--surface) 92%, transparent); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.nav-wrap { height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-mark { width: 44px; height: 44px; border-radius: 50% 50% 50% 10px; display: grid; place-items: center; background: var(--brown); color: #fff8e8; border: 2px solid var(--gold); font-family: var(--serif); font-size: 1.05rem; box-shadow: inset 0 0 0 3px rgba(255,255,255,.1); }
.brand-name { font-family: var(--serif); font-size: 1.23rem; line-height: 1; }
.brand-tag { display: block; margin-top: 5px; color: var(--muted); font-family: var(--sans); font-size: .58rem; text-transform: uppercase; letter-spacing: .09em; }
.nav-links { display: none; align-items: center; gap: 4px; }
.nav-links a { padding: 10px 11px; border-radius: 999px; font-size: .89rem; font-weight: 650; color: var(--muted); }
.nav-links a:hover, .nav-links a.active { background: var(--surface-2); color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn { border: 1px solid var(--line); background: var(--surface); color: var(--ink); border-radius: 50%; width: 42px; height: 42px; display: grid; place-items: center; cursor: pointer; }
.hamburger { display: grid; }
.desktop-book { display: none !important; }
.mobile-menu { display: none; padding: 5px 16px 18px; background: var(--surface); border-top: 1px solid var(--line); }
.mobile-menu.open { display: grid; }
.mobile-menu a { padding: 12px 4px; border-bottom: 1px solid var(--line); font-weight: 650; }

/* Buttons */
.btn { border: 1px solid transparent; display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 12px 22px; border-radius: 999px; font-weight: 800; font-size: .92rem; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fffaf0; background: linear-gradient(135deg, var(--brown-2), #3f2113); box-shadow: 0 12px 28px rgba(70,37,20,.22); }
[data-theme="dark"] .btn-primary { color: #26160d; background: linear-gradient(135deg, #f2d092, #c58b38); }
.btn-gold { color: #27160c; background: linear-gradient(135deg, #f0d28c, #c9933e); box-shadow: 0 12px 28px rgba(183,133,45,.22); }
.btn-outline { border-color: var(--line); color: var(--ink); background: var(--surface); }
.btn-white { background: #fffaf1; color: #3d2114; }
.btn-sm { min-height: 42px; padding: 9px 17px; font-size: .84rem; }
.btn-block { width: 100%; }
.arrow { font-size: 1.15em; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* Hero */
.hero { min-height: min(820px, calc(100svh - 102px)); display: grid; align-items: end; position: relative; color: #fff9ef; overflow: hidden; background: #25150d; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 64% center; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,10,5,.9) 0%, rgba(20,10,5,.68) 50%, rgba(20,10,5,.14) 100%), linear-gradient(0deg, rgba(24,12,6,.6), transparent 55%); }
.hero-content { position: relative; z-index: 2; padding: 82px 0 65px; max-width: 750px; }
.hero-kicker { display: flex; align-items: center; gap: 12px; color: #f1cc83; font-size: .73rem; text-transform: uppercase; font-weight: 800; letter-spacing: .15em; }
.hero-kicker span { width: 40px; height: 1px; background: #f1cc83; }
.hero h1 { margin: 18px 0; font-family: var(--serif); font-size: clamp(2.6rem, 9vw, 5.5rem); font-weight: 500; letter-spacing: -.045em; line-height: .98; text-wrap: balance; }
.hero-copy { max-width: 610px; color: rgba(255,249,239,.78); font-size: clamp(.98rem, 2.5vw, 1.14rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 44px; max-width: 600px; }
.proof-item { border-left: 1px solid rgba(255,255,255,.25); padding-left: 12px; }
.proof-item strong { display: block; color: #f3d293; font-family: var(--serif); font-size: 1.5rem; line-height: 1.1; }
.proof-item span { color: rgba(255,255,255,.64); font-size: .68rem; }
.scroll-note { display: none; position: absolute; z-index: 3; right: 32px; bottom: 40px; writing-mode: vertical-rl; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .18em; font-size: .61rem; }

/* Cards and layouts */
.grid { display: grid; gap: 18px; }
.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.service-card { padding: 28px 24px; position: relative; box-shadow: none; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card::after { content: attr(data-num); position: absolute; right: 18px; top: 10px; color: color-mix(in srgb, var(--gold) 23%, transparent); font-family: var(--serif); font-size: 4.8rem; line-height: 1; }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--surface-2); color: var(--gold); font-family: var(--serif); font-size: 1.3rem; font-weight: 700; position: relative; z-index: 1; }
.service-card h3, .feature-card h3, .menu-card h3 { margin: 20px 0 7px; font-family: var(--serif); font-weight: 600; font-size: 1.42rem; }
.service-card p, .feature-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.text-link { display: inline-flex; gap: 7px; margin-top: 18px; color: var(--gold); font-size: .84rem; font-weight: 800; }
.feature-card { padding: 24px; border-left: 3px solid var(--gold); }
.feature-card h3 { margin-top: 2px; }

.why-layout { display: grid; gap: 34px; align-items: center; }
.image-stack { min-height: 420px; position: relative; }
.image-stack .main-img { width: 88%; height: 390px; object-fit: cover; border-radius: 12px 80px 12px 12px; box-shadow: var(--shadow); }
.image-stack .accent-img { position: absolute; right: 0; bottom: 0; width: 48%; height: 190px; object-fit: cover; border: 7px solid var(--bg); border-radius: 50px 8px 8px 8px; }
.experience-badge { position: absolute; right: 3%; top: 8%; width: 115px; aspect-ratio: 1; border-radius: 50%; background: var(--gold); color: #28160c; display: grid; place-items: center; text-align: center; font-family: var(--serif); line-height: 1.05; transform: rotate(7deg); box-shadow: 0 10px 30px rgba(63,32,15,.24); }
.experience-badge strong { display: block; font-size: 1.8rem; }
.check-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list li::before { content: '✓'; flex: 0 0 25px; height: 25px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-2); color: var(--gold); font-weight: 900; font-size: .8rem; }

.stats-strip { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); overflow: hidden; }
.stat { padding: 26px 16px; text-align: center; border: 1px solid rgba(255,255,255,.11); }
.stat strong { display: block; color: #efce8e; font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 7vw, 3.5rem); line-height: 1; }
.stat span { color: rgba(255,255,255,.68); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 10px; }
.gallery-item { position: relative; border: 0; padding: 0; overflow: hidden; border-radius: var(--radius-sm); cursor: zoom-in; background: #3f2819; color: white; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-caption { position: absolute; inset: auto 0 0; padding: 42px 16px 14px; text-align: left; background: linear-gradient(transparent, rgba(20,10,5,.82)); }
.gallery-caption strong { display: block; font-family: var(--serif); font-size: 1.08rem; }
.gallery-caption span { font-size: .7rem; color: rgba(255,255,255,.72); }
.lightbox { display: none; position: fixed; z-index: 100; inset: 0; background: rgba(16,8,4,.94); padding: 20px; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-height: 80vh; border-radius: var(--radius-sm); }
.lightbox-close { position: absolute; right: 18px; top: 18px; color: white; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); width: 46px; height: 46px; border-radius: 50%; cursor: pointer; font-size: 1.4rem; }
.lightbox-copy { position: absolute; bottom: 16px; color: white; width: min(90%, 700px); text-align: center; }

/* Reviews */
.review-card { padding: 24px; box-shadow: none; display: flex; flex-direction: column; }
.review-top { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 50%; display: grid; place-items: center; color: white; background: linear-gradient(145deg, var(--brown-2), var(--gold)); font-weight: 850; }
.review-name { font-weight: 800; line-height: 1.2; }
.review-meta { color: var(--muted); font-size: .72rem; }
.stars { color: #e5a92f; letter-spacing: .08em; font-size: .9rem; }
.review-card blockquote { margin: 17px 0 12px; color: var(--muted); font-size: .9rem; flex: 1; }
.google-mark { font-weight: 900; letter-spacing: -.08em; color: #4285f4; }

/* FAQs */
.faq-list { max-width: 900px; margin-inline: auto; display: grid; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question { width: 100%; border: 0; padding: 19px 20px; background: transparent; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; font-weight: 760; cursor: pointer; }
.faq-plus { flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; color: var(--gold); font-size: 1.2rem; transition: transform .2s; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 20px 20px; color: var(--muted); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }

/* Page hero */
.page-hero { padding: 75px 0 62px; background: var(--surface-2); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::after { content: 'JP'; position: absolute; right: -25px; bottom: -80px; font-family: var(--serif); font-size: 15rem; color: color-mix(in srgb, var(--gold) 9%, transparent); line-height: 1; }
.breadcrumbs { color: var(--muted); font-size: .78rem; font-weight: 700; }
.breadcrumbs span { margin: 0 8px; color: var(--gold); }
.page-hero h1 { max-width: 850px; margin: 15px 0 14px; font-size: clamp(2.6rem, 9vw, 5.1rem); }
.page-hero p { max-width: 680px; color: var(--muted); font-size: 1.05rem; }
.story-grid { display: grid; gap: 40px; align-items: center; }
.story-quote { font-size: clamp(2rem, 6vw, 3.5rem); margin: 0 0 25px; }
.story-card { padding: 30px; background: var(--surface-2); border-radius: 60px 12px 60px 12px; }
.team-card { text-align: center; padding: 28px 20px; box-shadow: none; }
.team-avatar { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 15px; display: grid; place-items: center; background: var(--surface-2); color: var(--brown); border: 1px solid var(--line); font-family: var(--serif); font-size: 2rem; }

/* Menu */
.menu-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 12px; scrollbar-width: thin; margin-bottom: 28px; }
.menu-tab { border: 1px solid var(--line); white-space: nowrap; color: var(--muted); background: var(--surface); padding: 10px 16px; border-radius: 999px; cursor: pointer; font-weight: 750; }
.menu-tab.active { background: var(--brown); color: #fff; border-color: var(--brown); }
.menu-card { display: grid; grid-template-columns: 1fr; box-shadow: none; }
.menu-card-image { min-height: 190px; background-size: cover; background-position: center; position: relative; }
.menu-card-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent, rgba(32,16,8,.35)); }
.menu-card-body { padding: 24px; }
.menu-card h3 { margin-top: 0; }
.price-chip { display: inline-flex; background: var(--surface-2); color: var(--brown); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; font-size: .78rem; font-weight: 800; }
.dish-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 15px 0 0; }
.dish-list span { background: var(--bg); border: 1px solid var(--line); border-radius: 8px; padding: 5px 9px; color: var(--muted); font-size: .74rem; }
.diet-note { display: inline-flex; gap: 7px; align-items: center; color: #447549; font-size: .72rem; font-weight: 800; }
.diet-dot { width: 13px; height: 13px; border: 1px solid #447549; display: grid; place-items: center; }
.diet-dot::after { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #447549; }

/* Forms and quotation */
.form-card { padding: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .78rem; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; min-height: 51px; border: 1px solid var(--line); border-radius: 11px; color: var(--ink); background: var(--bg); padding: 12px 14px; outline: none; }
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 16%, transparent); }
.field .error { color: #b23b2f; font-size: .72rem; }
.quote-layout { display: grid; gap: 24px; align-items: start; }
.quote-result { display: none; padding: 26px; position: sticky; top: 95px; }
.quote-result.ready { display: block; animation: rise .35s ease both; }
.quote-brand { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); padding-bottom: 17px; margin-bottom: 16px; }
.quote-row { display: flex; justify-content: space-between; gap: 18px; padding: 10px 0; color: var(--muted); font-size: .9rem; }
.quote-row strong { color: var(--ink); text-align: right; }
.quote-total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 17px; font-size: 1.1rem; }
.quote-total strong { color: var(--gold); font-family: var(--serif); font-size: 1.55rem; }
.quote-note { margin: 17px 0; padding: 12px; background: var(--surface-2); border-radius: 10px; color: var(--muted); font-size: .74rem; }
.quote-actions { display: grid; gap: 9px; }
.radio-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.radio-card input { position: absolute; opacity: 0; }
.radio-card span { min-height: 48px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; color: var(--muted); cursor: pointer; font-size: .82rem; font-weight: 750; }
.radio-card input:checked + span { border-color: var(--gold); background: var(--surface-2); color: var(--ink); }
.menu-builder-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.menu-builder-head p { margin: 3px 0 0; }
.selection-total { min-width: 145px; padding: 10px 13px; border-radius: 11px; background: var(--surface-2); text-align: right; }
.selection-total span { display: block; color: var(--muted); font-size: .7rem; }
.selection-total strong { color: var(--brown); font-size: .9rem; }
.menu-builder { display: grid; gap: 12px; margin-top: 10px; }
.menu-loading { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 100px; border: 1px dashed var(--line); border-radius: 13px; color: var(--muted); font-size: .82rem; }
.loader { width: 20px; height: 20px; border: 2px solid var(--line); border-top-color: var(--gold); border-radius: 50%; animation: spin .8s linear infinite; }
.quote-category { border: 1px solid var(--line); border-radius: 13px; overflow: hidden; background: var(--bg); }
.quote-category-head { padding: 13px 15px; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.quote-category-head strong { display: block; font-family: var(--serif); font-size: 1.05rem; }
.quote-category-head span { color: var(--muted); font-size: .7rem; }
.quote-item-list { display: grid; }
.quote-item { position: relative; display: grid; grid-template-columns: 24px 1fr auto; align-items: center; gap: 10px; padding: 12px 14px; border-bottom: 1px solid var(--line); cursor: pointer; }
.quote-item:last-child { border-bottom: 0; }
.quote-item:hover { background: var(--surface); }
.quote-item input { position: absolute; opacity: 0; }
.item-check { width: 21px; height: 21px; border: 1px solid var(--line); border-radius: 6px; display: grid; place-items: center; background: var(--surface); color: white; font-size: .72rem; }
.quote-item input:checked + .item-check { border-color: var(--gold); background: var(--gold); }
.quote-item input:checked + .item-check::after { content: '✓'; }
.quote-item-name strong { display: block; font-size: .82rem; }
.quote-item-name span { display: block; color: var(--muted); font-size: .68rem; }
.jain-chip { display: inline-flex !important; width: max-content; margin-top: 3px; color: #447549 !important; font-weight: 800; }
.quote-item-price { color: var(--brown); font-weight: 850; font-size: .78rem; white-space: nowrap; }
.quote-items-summary { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 15px; }
.quote-items-summary span { padding: 5px 8px; border: 1px solid var(--line); border-radius: 7px; background: var(--surface-2); color: var(--muted); font-size: .67rem; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Guided quotation experience */
.quote-page-hero { padding-bottom: 82px; background: linear-gradient(135deg, var(--surface-2), var(--bg)); }
.quote-page-hero::before { content: ''; position: absolute; width: 420px; height: 420px; right: 8%; top: -55%; border: 1px solid color-mix(in srgb, var(--gold) 20%, transparent); border-radius: 50%; box-shadow: 0 0 0 55px color-mix(in srgb, var(--gold) 4%, transparent), 0 0 0 110px color-mix(in srgb, var(--gold) 3%, transparent); }
.quote-hero-grid { display: grid; gap: 30px; align-items: end; position: relative; z-index: 1; }
.quote-hero-grid h1 { margin-bottom: 16px; }
.quote-hero-promise { display: grid; grid-template-columns: auto 1fr; gap: 3px 12px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: color-mix(in srgb, var(--surface) 82%, transparent); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.quote-hero-promise .quote-spark { grid-row: span 6; width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; color: #2d190d; background: var(--gold-light); font-size: 1.35rem; }
.quote-hero-promise strong { font-family: var(--serif); font-size: 1rem; line-height: 1.25; }
.quote-hero-promise > span:not(.quote-spark) { color: var(--muted); font-size: .72rem; margin-bottom: 8px; }
.quote-workspace { padding-top: 0; margin-top: -31px; z-index: 3; }
.quote-trust-row { display: grid; grid-template-columns: 1fr; background: var(--brown); color: #fff9ed; border-radius: 16px; margin-bottom: 22px; overflow: hidden; box-shadow: 0 16px 35px rgba(55,28,13,.16); }
.quote-trust-row span { display: flex; align-items: center; gap: 10px; padding: 13px 18px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: .76rem; font-weight: 750; }
.quote-trust-row span:last-child { border: 0; }
.quote-trust-row b { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: #2b180d; background: var(--gold-light); font-size: .65rem; }
.quote-form { padding: 0; overflow: visible; }
.quote-form-heading { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; padding: 25px 24px 19px; border-bottom: 1px solid var(--line); }
.quote-form-heading h2 { margin: 6px 0 0; font-family: var(--serif); font-size: clamp(1.75rem, 5vw, 2.45rem); font-weight: 500; line-height: 1.1; }
.quote-time { flex: 0 0 auto; padding: 6px 10px; border-radius: 999px; background: var(--surface-2); color: var(--muted); font-size: .67rem; font-weight: 800; }
.quote-stepper { list-style: none; display: grid; grid-template-columns: repeat(3,1fr); padding: 18px 24px; margin: 0; border-bottom: 1px solid var(--line); }
.quote-stepper li { position: relative; display: grid; justify-items: center; gap: 4px; color: var(--muted); font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.quote-stepper li::before { content: ''; position: absolute; z-index: 0; left: -50%; right: 50%; top: 16px; height: 2px; background: var(--line); }
.quote-stepper li:first-child::before { display: none; }
.quote-stepper li span { position: relative; z-index: 1; width: 34px; height: 34px; display: grid; place-items: center; border: 2px solid var(--line); border-radius: 50%; color: var(--muted); background: var(--surface); transition: .25s ease; }
.quote-stepper li.active, .quote-stepper li.complete { color: var(--brown); }
.quote-stepper li.active span { border-color: var(--gold); color: #2b180d; background: var(--gold-light); box-shadow: 0 0 0 5px color-mix(in srgb, var(--gold) 12%, transparent); }
.quote-stepper li.complete span { border-color: var(--gold); color: white; background: var(--gold); }
.quote-stepper li.complete::before, .quote-stepper li.active::before { background: var(--gold); }
.quote-step-panel { padding: 25px 24px 28px; animation: stepIn .35s ease both; }
.quote-step-title { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 24px; }
.step-icon { flex: 0 0 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: var(--gold); background: var(--surface-2); font-family: var(--serif); font-weight: 700; }
.quote-step-title h3 { margin: 0 0 3px; font-family: var(--serif); font-size: 1.32rem; }
.quote-step-title p { margin: 0; color: var(--muted); font-size: .77rem; }
.quote-form .field label, .quote-form .diet-fieldset legend { color: var(--ink); font-size: .78rem; }
.quote-form .field label > span, .quote-form .diet-fieldset legend > span, .menu-builder-head label > span { color: #bd493b; }
.field-hint { color: var(--muted); font-size: .66rem; line-height: 1.35; }
.field-error { display: none; color: #b8382d; font-size: .68rem; font-weight: 700; }
.field.invalid .field-error { display: block; }
.field.invalid > input, .field.invalid > select, .field.invalid .input-with-prefix, .field.invalid .date-input-wrap, .field.invalid .guest-input-wrap { border-color: #ce5145; box-shadow: 0 0 0 3px rgba(206,81,69,.1); }
.field.valid > input, .field.valid > select, .field.valid .input-with-prefix, .field.valid .date-input-wrap, .field.valid .guest-input-wrap { border-color: #579163; }
.input-with-prefix, .guest-input-wrap, .date-input-wrap { display: flex; align-items: center; min-height: 51px; border: 1px solid var(--line); border-radius: 11px; background: var(--bg); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.input-with-prefix > span { padding: 0 0 0 13px; color: var(--muted); font-size: .83rem; font-weight: 800; }
.input-with-prefix input, .guest-input-wrap input, .date-input-wrap input { min-height: 49px !important; border: 0 !important; box-shadow: none !important; background: transparent !important; }
.guest-input-wrap > span { padding-right: 13px; color: var(--muted); font-size: .72rem; }
.date-input-wrap { position: relative; }
.date-input-wrap input { position: relative; z-index: 1; color-scheme: light; padding-right: 42px; }
[data-theme="dark"] .date-input-wrap input { color-scheme: dark; }
.date-icon { position: absolute; right: 14px; color: var(--gold); pointer-events: none; }
.quote-step-actions { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 11px; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); }
.privacy-note { color: var(--muted); font-size: .68rem; }
.diet-fieldset { border: 0; padding: 0; margin: 0 0 24px; }
.diet-fieldset legend { margin-bottom: 8px; font-weight: 800; }
.diet-options .radio-card span { padding: 9px 7px; min-height: 66px; text-align: center; line-height: 1.15; }
.diet-options .radio-card b { color: var(--gold); font-size: .75rem; }
.diet-options .radio-card small { display: block; margin-top: 5px; color: var(--muted); font-size: .57rem; font-weight: 600; }
.quote-item.unavailable { opacity: .46; cursor: not-allowed; background: var(--surface-2); }
.quote-item.unavailable::after { content: 'Not Jain'; position: absolute; right: 13px; bottom: 3px; color: #a6483e; font-size: .55rem; font-weight: 850; }
.menu-search-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 14px 0 11px; }
.menu-search { flex: 1; display: flex; align-items: center; min-height: 47px; border: 1px solid var(--line); border-radius: 11px; background: var(--bg); overflow: hidden; }
.menu-search:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 13%, transparent); }
.menu-search > span { padding-left: 13px; color: var(--gold); font-size: 1.15rem; }
.menu-search input { width: 100%; min-height: 45px; border: 0; outline: 0; padding: 9px 12px; color: var(--ink); background: transparent; font-size: .78rem; }
.menu-visible-count { flex: 0 0 auto; color: var(--muted); font-size: .66rem; }
.selected-items-tray { display: grid; gap: 7px; padding: 10px; margin-bottom: 12px; border: 1px dashed var(--line); border-radius: 12px; background: color-mix(in srgb, var(--surface-2) 55%, transparent); }
.selected-items-empty { padding: 8px; color: var(--muted); text-align: center; font-size: .7rem; }
.selected-item-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; padding: 9px 11px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); }
.selected-item-row strong { display: block; font-size: .76rem; }
.selected-item-row small { display: block; color: var(--muted); font-size: .61rem; }
.selected-item-rate { color: var(--gold); font-size: .75rem; font-weight: 850; white-space: nowrap; }
.quote-category.search-empty { display: none; }
.quote-final-review { display: grid; gap: 8px; padding: 16px; margin-bottom: 20px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-2); }
.review-summary-row { display: flex; justify-content: space-between; gap: 14px; color: var(--muted); font-size: .76rem; }
.review-summary-row strong { color: var(--ink); text-align: right; }
.review-summary-row.total { margin-top: 3px; padding-top: 10px; border-top: 1px solid var(--line); }
.review-summary-row.total strong { color: var(--gold); font-size: .95rem; }
.textarea-meta { display: flex; justify-content: space-between; color: var(--muted); font-size: .64rem; }
.quote-consent { display: flex; gap: 11px; align-items: flex-start; padding: 13px; margin-top: 18px; border-radius: 11px; background: color-mix(in srgb, var(--gold) 10%, var(--surface)); }
.quote-consent > span { flex: 0 0 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: white; background: #5d8b62; font-size: .72rem; }
.quote-consent p { margin: 0; color: var(--muted); font-size: .7rem; }
.generate-quote-btn { min-width: 220px; }
.quote-submit-note { margin: 10px 0 0; text-align: right; }
.quote-preview-placeholder { position: sticky; top: 95px; min-height: 540px; padding: 36px 30px; text-align: center; overflow: hidden; box-shadow: var(--shadow); }
.preview-glow { position: absolute; width: 280px; height: 280px; left: 50%; top: -150px; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--gold) 30%, transparent), transparent 70%); }
.preview-kicker { position: relative; color: var(--gold); font-size: .68rem; font-weight: 850; text-transform: uppercase; letter-spacing: .16em; }
.preview-plate { width: 142px; aspect-ratio: 1; margin: 30px auto 22px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: radial-gradient(circle, var(--surface) 35%, var(--surface-2) 36%, var(--surface-2) 59%, var(--gold-light) 60%, var(--gold-light) 63%, var(--surface) 64%); box-shadow: 0 18px 35px rgba(65,35,19,.13); }
.preview-plate span { width: 55px; height: 55px; display: grid; place-items: center; border-radius: 50% 50% 50% 10px; color: white; background: var(--brown); border: 2px solid var(--gold); font-family: var(--serif); }
.quote-preview-placeholder h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 1.65rem; }
.quote-preview-placeholder > p { color: var(--muted); font-size: .82rem; }
.preview-list { display: grid; gap: 9px; margin: 24px 0; text-align: left; }
.preview-list span { display: flex; gap: 9px; align-items: center; padding-bottom: 8px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .76rem; }
.preview-list i { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--surface-2); color: var(--gold); font-style: normal; font-size: .65rem; }
.preview-tip { display: grid; gap: 2px; padding: 12px; border-radius: 10px; background: var(--surface-2); text-align: left; }
.preview-tip strong { color: var(--gold); font-size: .7rem; }
.preview-tip span { color: var(--muted); font-size: .66rem; }
.quote-result.ready + * { display: none; }
.quote-success-badge { display: inline-flex; padding: 5px 9px; margin-bottom: 15px; border-radius: 999px; color: #32663b; background: #e4f3e7; font-size: .67rem; font-weight: 850; }
.quote-result .quote-brand strong { font-family: var(--serif); font-size: 1.35rem; }
.quote-result .quote-items-summary { display: grid; gap: 6px; margin-top: 15px; }
.quote-result .quote-items-summary .quote-result-item { display: grid; grid-template-columns: 1fr auto; gap: 9px; align-items: center; padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface-2); }
.quote-result-item-name strong { display: block; color: var(--ink); font-family: var(--sans) !important; font-size: .72rem !important; }
.quote-result-item-name small { display: block; color: var(--muted); font-size: .59rem; }
.quote-result-item-price { color: var(--gold); font-size: .72rem; font-weight: 850; white-space: nowrap; }
@keyframes stepIn { from { opacity: 0; transform: translateX(10px); } }

/* Contact */
.contact-grid { display: grid; gap: 25px; }
.contact-list { display: grid; gap: 12px; }
.contact-tile { padding: 17px; display: flex; gap: 14px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.contact-tile-icon { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-2); color: var(--gold); font-weight: 850; }
.contact-tile strong { display: block; font-size: .84rem; }
.contact-tile span { color: var(--muted); font-size: .78rem; }
.map-frame { width: 100%; height: 390px; border: 0; border-radius: var(--radius); filter: saturate(.75) sepia(.12); }
.form-status { display: none; padding: 12px; border-radius: 10px; margin-top: 12px; font-size: .82rem; }
.form-status.show { display: block; }
.form-status.success { background: #e8f5e7; color: #245d27; }
.form-status.error { background: #fbe9e7; color: #8f2b23; }

/* CTA/footer/floating */
.cta-band { padding: 52px 0; color: #fff9ef; background: linear-gradient(115deg, rgba(34,17,9,.86), rgba(71,37,20,.78)), url('../images/food-spread.jpg') center / cover; }
.cta-inner { display: grid; gap: 24px; align-items: center; }
.cta-band h2 { margin: 0 0 8px; font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 7vw, 3.4rem); line-height: 1.1; }
.cta-band p { margin: 0; color: rgba(255,255,255,.74); }
.site-footer { color: #f5e9d7; background: #21130d; padding: 62px 0 22px; }
.footer-grid { display: grid; gap: 34px; }
.footer-brand p { max-width: 370px; color: rgba(255,255,255,.6); font-size: .86rem; }
.footer-title { margin: 0 0 14px; color: #e8c57f; font-family: var(--serif); font-size: 1.05rem; }
.footer-links { display: grid; gap: 8px; color: rgba(255,255,255,.68); font-size: .84rem; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 22px; margin-top: 38px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: .72rem; }
.floating-whatsapp { position: fixed; right: 17px; bottom: 76px; z-index: 55; width: 53px; height: 53px; border-radius: 50%; display: grid; place-items: center; background: #25d366; color: white; box-shadow: 0 10px 28px rgba(0,0,0,.26); font-size: 1.4rem; font-weight: 850; }
.mobile-book-bar { position: fixed; z-index: 50; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1.35fr; padding: 9px 12px max(9px, env(safe-area-inset-bottom)); background: color-mix(in srgb, var(--surface) 94%, transparent); backdrop-filter: blur(14px); border-top: 1px solid var(--line); gap: 8px; }
.mobile-book-bar .btn { min-height: 46px; padding: 8px 12px; font-size: .78rem; }

/* Utilities and animation */
.notice { background: var(--surface-2); border-left: 3px solid var(--gold); padding: 15px 17px; border-radius: 0 10px 10px 0; color: var(--muted); font-size: .84rem; }
.split-line { height: 1px; background: var(--line); margin: 28px 0; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; } .reveal { opacity: 1; transform: none; } }

@media (min-width: 640px) {
  .container { width: min(100% - 48px, var(--container)); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .form-grid.two { grid-template-columns: repeat(2, 1fr); }
  .form-grid .full { grid-column: 1 / -1; }
  .menu-card { grid-template-columns: .82fr 1.18fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
  .gallery-item.wide { grid-column: span 2; }
  .stats-strip { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .quote-trust-row { grid-template-columns: repeat(3, 1fr); }
  .quote-trust-row span { border-bottom: 0; border-right: 1px solid rgba(255,255,255,.12); }
  .quote-trust-row span:last-child { border-right: 0; }
}

@media (min-width: 900px) {
  .section { padding: 104px 0; }
  .announcement { text-align: left; padding-left: max(24px, calc((100vw - var(--container)) / 2)); }
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .desktop-book { display: inline-flex !important; }
  .hero-content { padding-bottom: 80px; }
  .scroll-note { display: block; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .why-layout { grid-template-columns: .92fr 1.08fr; gap: 80px; }
  .story-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
  .quote-layout { grid-template-columns: 1.08fr .92fr; gap: 40px; }
  .quote-hero-grid { grid-template-columns: 1fr 330px; gap: 70px; }
  .contact-grid { grid-template-columns: .82fr 1.18fr; gap: 50px; }
  .cta-inner { grid-template-columns: 1fr auto; }
  .mobile-book-bar { display: none; }
  .floating-whatsapp { bottom: 26px; }
}

@media (max-width: 639px) {
  .quote-step-panel, .quote-form-heading { padding-left: 18px; padding-right: 18px; }
  .quote-form-heading { display: block; }
  .quote-time { display: inline-flex; margin-top: 11px; }
  .quote-stepper { padding-inline: 13px; }
  .quote-step-actions .btn { flex: 1; }
  .quote-step-actions .privacy-note { width: 100%; }
  .quote-submit-note { text-align: center; }
  .quote-preview-placeholder { position: relative; top: auto; min-height: 480px; }
  .diet-options { grid-template-columns: 1fr; }
}

@media (min-width: 1120px) {
  .nav-links a { padding-inline: 13px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
