/* Shawaya Souk demo — palette and type pulled from the shop's own fascia (green script
   logo on cream, red poster banners) and Instagram (forest-green promo graphics). */

@font-face {
  font-family: "Baloo Bhaijaan 2";
  src: url("../fonts/BalooBhaijaan2-variable.woff2") format("woff2");
  font-weight: 500 800;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/WorkSans-variable.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/WorkSans-italic.woff2") format("woff2");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --green-900: #12291d;   /* deepest — page ink on cream, dark section base */
  --green-800: #173a29;   /* primary brand green — header, hero, footer */
  --green-700: #21503a;   /* lifted green — cards/gradients on dark */
  --green-600: #2c6448;
  --cream: #f5efdf;       /* shopfront panel cream */
  --cream-2: #ece2c8;     /* deeper cream for cards on light sections */
  --paper: #fbf8f0;       /* lightest bg */
  --red: #cd2f1f;         /* poster banner red */
  --red-2: #a1230f;
  --gold: #e6a83c;        /* facade yellow / turmeric accent */
  --muted-dark: #a9c2b1;  /* secondary text on green */
  --muted-light: #5c6e60; /* secondary text on cream */

  --f-display: "Baloo Bhaijaan 2", "Segoe UI Rounded", system-ui, sans-serif;
  --f-body: "Work Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --gutter: clamp(18px, 5vw, 56px);
  --radius: 18px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--green-900);
  font: 400 1.0625rem/1.6 var(--f-body);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--f-display); font-weight: 700; line-height: 1.05; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
[hidden] { display: none !important; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--gold); color: var(--green-900); padding: 10px 14px; border-radius: 8px; font-weight: 700; }
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: var(--gutter); }
section { padding-block: clamp(52px, 8vw, 104px); }
.eyebrow-free {} /* deliberately no ALL-CAPS eyebrow labels anywhere on this site */

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .85em 1.5em; border-radius: 999px; font-weight: 700; font-size: .98rem;
  border: 2px solid transparent; cursor: pointer; transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(180deg, #dc4531, var(--red)); color: var(--paper); box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 10px 20px -12px rgba(163,35,15,.55); }
.btn-primary:hover { background: var(--red-2); }
.btn-ghost { background: transparent; border-color: currentColor; }
.btn-ghost:hover { background: rgba(0,0,0,.06); }
.btn-ghost.on-dark { color: var(--cream); }
.btn-ghost.on-dark:hover { background: rgba(255,255,255,.1); }
.icon-btn { padding: .7em; border-radius: 50%; }
.icon-btn svg { display: block; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--green-800); color: var(--cream);
  border-bottom: 1px solid rgba(245,239,223,.12);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-block: 14px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--f-display); font-weight: 700; font-size: 1.3rem; }
.brand img { width: 42px; height: 42px; border-radius: 50%; border: 2px solid rgba(245,239,223,.35); }
.main-nav ul { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-weight: 600; opacity: .88; transition: opacity .15s; }
.main-nav a:hover, .main-nav a[aria-current="page"] { opacity: 1; }
.main-nav a[aria-current="page"] { border-bottom: 2px solid var(--gold); padding-bottom: 3px; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; background: none; border: none; color: var(--cream); padding: 8px;
  width: 42px; height: 42px; border-radius: 10px;
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 860px) {
  .main-nav { position: fixed; inset: 66px 0 0 0; background: var(--green-800); padding: 20px var(--gutter) 40px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .2s var(--ease), transform .2s var(--ease); overflow-y: auto; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .main-nav a { display: block; padding: 14px 4px; font-size: 1.15rem; width: 100%; border-bottom: 1px solid rgba(245,239,223,.1); }
  .main-nav a[aria-current="page"] { border-bottom-color: var(--gold); }
  body.nav-open .main-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .header-cta .btn span { display: none; }
  .header-cta .btn { padding: .85em; }
}

/* ---------- hero ---------- */
.hero { background: var(--green-800); color: var(--cream); position: relative; overflow: clip; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; padding-block: clamp(48px, 8vw, 96px); position: relative; }
.hero-burst {
  position: absolute; left: -10%; top: 50%; width: 780px; height: 780px; transform: translateY(-50%);
  opacity: .55; pointer-events: none; animation: spin 90s linear infinite; border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, var(--gold) 0deg 1.6deg, transparent 1.6deg 9deg);
  mask-image: radial-gradient(circle, rgba(0,0,0,.9) 18%, transparent 68%);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,.9) 18%, transparent 68%);
}
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }
.hero-copy { position: relative; z-index: 2; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: -1;
  background: radial-gradient(ellipse 640px 420px at 18% 42%, rgba(230,168,60,.14), transparent 70%);
}
.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem); letter-spacing: -.012em; margin-bottom: .32em;
  text-transform: uppercase; font-weight: 800;
}
.hero h1 span { display: block; }
.hero h1 .accent { color: var(--gold); }
.hero-sub { font-size: 1.15rem; color: var(--muted-dark); max-width: 46ch; margin-bottom: 1.6em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-photo { position: relative; z-index: 2; }
.hero-photo figure { margin: 0; transform: rotate(2deg); border: 10px solid var(--cream); border-radius: 6px; box-shadow: 0 30px 60px -20px rgba(0,0,0,.55); overflow: hidden; }
.hero-photo img { display: block; width: 100%; }
.hero-stats { background: var(--green-900); color: var(--cream); position: relative; }
.hero-stats .wrap { display: flex; flex-wrap: wrap; gap: clamp(24px, 6vw, 64px); padding-block: 26px; }

/* fine charcoal grain on dark surfaces — subtle, tactile, not decorative noise for its own sake */
.hero::after, .section-dark::before, .hero-stats::before, .site-footer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .05; mix-blend-mode: overlay; z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.section-dark, .site-footer { position: relative; }
.stat b { font-family: var(--f-display); font-size: 1.6rem; display: block; color: var(--gold); }
.stat span { color: var(--muted-dark); font-size: .92rem; }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-photo { order: -1; max-width: 420px; margin-inline: auto; }
  .hero-burst { display: none; }
}

/* ---------- generic section headings ---------- */
.section-head { max-width: 62ch; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: .3em; }
.section-head p { color: var(--muted-light); font-size: 1.05rem; margin: 0; }
.on-dark .section-head p { color: var(--muted-dark); }

.section-dark { background: var(--green-800); color: var(--cream); }
.section-cream { background: var(--cream); }

/* ---------- highlights (home) — a market tag, not a SaaS card: no shell, no shadow ---------- */
.highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 34px 28px; }
.highlight { border-top: 3px solid var(--red); padding-top: 18px; }
.highlight:nth-child(2n) { border-top-color: var(--gold); }
.highlight:nth-child(3n) { border-top-color: var(--green-600); }
.icon-badge {
  width: 54px; height: 54px; border-radius: 50%; background: var(--cream-2); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px; transform: rotate(-5deg);
}
.highlight:nth-child(2n) .icon-badge { transform: rotate(4deg); }
.highlight:nth-child(3n) .icon-badge { transform: rotate(-3deg); }
.highlight .icon { width: 24px; height: 24px; color: var(--red); margin: 0; }
.highlight h3 { font-size: 1.2rem; margin-bottom: .4em; }
.highlight p { color: var(--muted-light); margin: 0; font-size: .97rem; }

/* ---------- reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.review-ticket {
  background: var(--cream); color: var(--green-900); border-radius: 10px; padding: 26px 24px;
  position: relative; box-shadow: 0 14px 30px -18px rgba(0,0,0,.5);
}
.review-ticket::before, .review-ticket::after {
  content: ""; position: absolute; width: 18px; height: 18px; background: var(--green-800); border-radius: 50%; top: 50%; transform: translateY(-50%);
}
.review-ticket::before { left: -9px; }
.review-ticket::after { right: -9px; }
.review-stars { color: var(--gold); letter-spacing: .12em; margin-bottom: .5em; font-size: 1rem; }
.review-ticket p { font-style: italic; margin-bottom: .8em; }
.review-name { font-weight: 700; font-size: .92rem; color: var(--muted-light); font-style: normal; }

/* ---------- find-us strip (home) ---------- */
.find-us { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 56px); align-items: center; }
.find-us dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 18px; margin: 1.4em 0; }
.find-us dt { font-weight: 700; color: var(--gold); }
.find-us dd { margin: 0; }
@media (max-width: 800px) { .find-us { grid-template-columns: 1fr; } }

/* ---------- demo note ---------- */
.demo-note {
  display: flex; gap: 12px; align-items: flex-start; background: var(--cream-2); border: 1px dashed var(--muted-light);
  border-radius: 12px; padding: 16px 18px; margin-block: 24px; font-size: .95rem; color: var(--muted-light);
}
.demo-note b { color: var(--red); font-family: var(--f-display); font-weight: 700; flex-shrink: 0; }

/* ---------- menu board ---------- */
.menu-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.menu-tab {
  background: var(--paper); border: 2px solid var(--green-800); color: var(--green-800);
  border-radius: 999px; padding: .6em 1.3em; font-weight: 700; cursor: pointer;
}
.menu-tab[aria-selected="true"] { background: var(--green-800); color: var(--cream); }
.menu-category { display: none; }
.menu-category.is-active { display: block; }
.menu-category h3 { font-size: 1.4rem; margin-bottom: 4px; }
.menu-category .cat-note { color: var(--muted-light); margin-bottom: 22px; }
.menu-item { display: flex; justify-content: space-between; gap: 18px; padding-block: 18px; border-bottom: 1px solid rgba(18,41,29,.12); }
.menu-item:last-child { border-bottom: none; }
.menu-item h4 { font-family: var(--f-body); font-weight: 700; font-size: 1.06rem; margin-bottom: 3px; }
.menu-item p { color: var(--muted-light); font-size: .95rem; margin: 0; max-width: 52ch; }
.menu-price { font-family: var(--f-display); font-weight: 700; color: var(--red); white-space: nowrap; font-size: 1.08rem; }

/* ---------- story page ---------- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.photo-frame { position: relative; }
.photo-frame img { border-radius: var(--radius); position: relative; z-index: 1; }
.ink-ring { position: absolute; top: 50%; left: 50%; width: 122%; transform: translate(-50%, -50%) rotate(-3deg); opacity: .65; z-index: 0; }
.story-grid.reverse { grid-template-columns: 1fr 1fr; }
.story-grid.reverse .story-text { order: 2; }
@media (max-width: 820px) { .story-grid, .story-grid.reverse { grid-template-columns: 1fr; } .story-grid.reverse .story-text { order: 0; } }
.why-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 34px 28px; margin-top: 8px; }
.why-item { border-top: 3px solid var(--red); padding-top: 18px; }
.why-item:nth-child(2n) { border-top-color: var(--gold); }
.why-item:nth-child(3n) { border-top-color: var(--green-600); }
.why-item h3 { font-size: 1.15rem; margin-bottom: .4em; }
.why-item p { margin: 0; color: var(--muted-light); font-size: .96rem; }

/* ---------- visit page ---------- */
.visit-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 60px); }
.visit-card { background: var(--paper); border: 1px solid rgba(18,41,29,.1); border-top: 3px solid var(--red); border-radius: var(--radius); padding: 30px; }
.visit-card + .visit-card { margin-top: 20px; }
.visit-card h3 { font-size: 1.2rem; margin-bottom: .6em; }
.visit-card dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; }
.visit-card dt { font-weight: 700; color: var(--red); }
.visit-card dd { margin: 0; }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(18,41,29,.15); }
@media (max-width: 860px) { .visit-grid { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.site-footer { background: var(--green-900); color: var(--muted-dark); padding-block: 48px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-grid h4 { color: var(--cream); font-size: 1rem; margin-bottom: .8em; font-family: var(--f-body); font-weight: 700; }
.footer-grid a:hover { color: var(--cream); }
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--cream); font-family: var(--f-display); font-size: 1.15rem; margin-bottom: 10px; }
.footer-brand img { width: 34px; height: 34px; border-radius: 50%; }
.footer-bottom { border-top: 1px solid rgba(245,239,223,.12); padding-top: 20px; font-size: .88rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==================================================================
   Motion — scroll reveals, hero entrance, marquee, hover play
   ================================================================== */

/* header condenses once the page scrolls */
.site-header { transition: box-shadow .3s var(--ease); }
.site-header.is-scrolled { box-shadow: 0 8px 24px -12px rgba(0,0,0,.45); }
.site-header.is-scrolled .wrap { padding-block: 10px; }
.brand img { transition: width .25s var(--ease), height .25s var(--ease); }

/* generic scroll-reveal: elements fade + rise once, then stay */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-group] > * { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal-group].is-visible > * { opacity: 1; transform: translateY(0); }
[data-reveal-group].is-visible > *:nth-child(1) { transition-delay: .02s; }
[data-reveal-group].is-visible > *:nth-child(2) { transition-delay: .1s; }
[data-reveal-group].is-visible > *:nth-child(3) { transition-delay: .18s; }
[data-reveal-group].is-visible > *:nth-child(4) { transition-delay: .26s; }
[data-reveal-group].is-visible > *:nth-child(5) { transition-delay: .34s; }
[data-reveal-group].is-visible > *:nth-child(6) { transition-delay: .42s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-group] > * { opacity: 1; transform: none; }
}

/* hero entrance — plays once on load, independent of scroll */
.hero h1 span { display: block; opacity: 0; transform: translateY(.5em); filter: blur(6px); animation: line-in .8s var(--ease) forwards; }
.hero h1 span:nth-child(1) { animation-delay: .15s; }
.hero h1 span:nth-child(2) { animation-delay: .32s; }
.hero h1 span:nth-child(3) { animation-delay: .49s; }
@keyframes line-in { to { opacity: 1; transform: translateY(0); filter: blur(0); } }
.hero-sub, .hero-ctas { opacity: 0; animation: fade-up .7s var(--ease) forwards; }
.hero-sub { animation-delay: .68s; }
.hero-ctas { animation-delay: .8s; }
@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.hero-photo figure { animation: photo-in 1s var(--ease) .25s backwards; }
@keyframes photo-in { from { opacity: 0; transform: rotate(2deg) scale(.92) translateY(24px); } to { opacity: 1; transform: rotate(2deg) scale(1) translateY(0); } }
.hero-burst { animation: spin 90s linear infinite, burst-in 1.1s var(--ease) .1s backwards; }
@keyframes burst-in { from { opacity: 0; transform: translateY(-50%) scale(.7); } to { opacity: .55; transform: translateY(-50%) scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .hero h1 span, .hero-sub, .hero-ctas, .hero-photo figure, .hero-burst { animation: none; opacity: 1; filter: none; transform: none; }
  .hero-photo figure { transform: rotate(2deg); }
}

/* count-up stat numbers */
.stat b[data-count] { font-variant-numeric: tabular-nums; }

/* card hover play */
.visit-card { transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease); }
.visit-card:hover { transform: translateY(-6px); box-shadow: 0 20px 36px -22px rgba(18,41,29,.35); border-color: rgba(205,47,31,.35); }
.highlight, .why-item { transition: transform .28s var(--ease); }
.highlight:hover, .why-item:hover { transform: translateY(-4px); }
.icon-badge { transition: transform .3s var(--ease); }
.highlight:hover .icon-badge { transform: rotate(0deg) scale(1.08); }

.review-ticket { transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.review-ticket:hover { transform: rotate(-1deg) translateY(-4px); box-shadow: 0 22px 40px -20px rgba(0,0,0,.6); }

.menu-item { transition: background .2s var(--ease), padding-inline .2s var(--ease); border-radius: 10px; }
.menu-item:hover { background: rgba(205,47,31,.05); padding-inline: 12px; }
.menu-item h4 { position: relative; }
.menu-price { transition: transform .25s var(--ease), color .25s var(--ease); }
.menu-item:hover .menu-price { transform: scale(1.08); color: var(--red-2); }

.menu-category { animation: cat-in .45s var(--ease); }
@keyframes cat-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.btn { position: relative; overflow: hidden; }
.btn:active { transform: translateY(0) scale(.97); }

/* ---------- marquee ticker ---------- */
.marquee { background: var(--green-900); color: var(--cream); overflow: hidden; padding-block: 16px; border-block: 1px solid rgba(245,239,223,.1); }
.marquee-track { display: flex; width: max-content; gap: 3em; animation: marquee 26s linear infinite; }
.marquee-track span { display: flex; align-items: center; gap: .7em; font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; text-transform: uppercase; letter-spacing: .01em; white-space: nowrap; }
.marquee-track span::after { content: "\2022"; color: var(--gold); font-size: 1.3rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- floating WhatsApp action — waits until the hero has scrolled by, so it never sits over the headline ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60; display: flex; align-items: center; gap: 10px;
  background: #25d366; color: #08331d; padding: 14px; border-radius: 999px; box-shadow: 0 14px 30px -12px rgba(0,0,0,.55);
  opacity: 0; transform: translateY(16px) scale(.85); pointer-events: none;
  transition: transform .3s var(--ease), box-shadow .25s var(--ease), opacity .3s var(--ease);
}
.wa-float.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.wa-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 18px 36px -14px rgba(0,0,0,.6); }
.wa-float svg { width: 26px; height: 26px; flex-shrink: 0; }
.wa-float span { font-weight: 700; font-size: .92rem; max-width: 0; overflow: hidden; white-space: nowrap; transition: max-width .3s var(--ease); }
.wa-float:hover span, .wa-float:focus-visible span { max-width: 160px; }
@media (max-width: 600px) { .wa-float { right: 14px; bottom: 14px; } }
@media (prefers-reduced-motion: reduce) { .wa-float { transition: opacity .15s; } }

/* ---------- reserve page ---------- */
.reserve-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .reserve-wrap { grid-template-columns: 1fr; } }
.reserve-form { background: var(--paper); border: 1px solid rgba(18,41,29,.1); border-radius: var(--radius); padding: clamp(24px, 4vw, 36px); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; margin-bottom: 7px; font-size: .95rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8em .9em; border-radius: 10px; border: 1.5px solid rgba(18,41,29,.2);
  background: var(--cream); font-size: 1rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(205,47,31,.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.reserve-form .btn { width: 100%; justify-content: center; font-size: 1.05rem; }
.form-note { font-size: .88rem; color: var(--muted-light); margin-top: 14px; text-align: center; }

.reserve-success { display: none; text-align: center; padding: clamp(24px, 4vw, 36px); background: var(--green-800); color: var(--cream); border-radius: var(--radius); animation: fade-up .5s var(--ease); }
.reserve-success.is-active { display: block; }
.reserve-success .check {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--gold); color: var(--green-900);
  display: flex; align-items: center; justify-content: center; animation: pop .5s var(--ease) .1s backwards;
}
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }
.reserve-success h3 { margin-bottom: .5em; font-size: 1.5rem; }
.reserve-success p { color: var(--muted-dark); }
.reserve-success .btn { margin-top: 14px; }

.reserve-info .visit-card { margin-bottom: 20px; }
.reserve-info .visit-card:last-child { margin-bottom: 0; }
