/* ============================================================
   Chai Qissa — Desi Storytelling Chai Adda, Jaipur
   Palette: brick, saffron, cream, teal · Baloo 2 + Mukta
   ============================================================ */

:root {
  --brick: #8A3B1E;
  --brick-deep: #5F2712;
  --saffron: #D98A3C;
  --saffron-soft: #E7A85E;
  --cream: #F5EBDA;
  --cream-deep: #EBDCC2;
  --teal: #2E6E6A;
  --teal-deep: #204F4C;
  --ink: #33231A;
  --ink-soft: #6A5544;
  --paper: #FBF5EA;
  --paper-2: #FFFDF8;
  --line: rgba(138, 59, 30, 0.16);
  --shadow-sm: 0 2px 10px rgba(95, 39, 18, 0.08);
  --shadow-md: 0 14px 34px -18px rgba(95, 39, 18, 0.42);
  --shadow-lg: 0 34px 60px -26px rgba(95, 39, 18, 0.5);
  --radius: 18px;
  --radius-lg: 26px;
  --wrap: 1180px;
  --ff-display: "Baloo 2", system-ui, sans-serif;
  --ff-body: "Mukta", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(1100px 520px at 88% -8%, rgba(217, 138, 60, 0.16), transparent 60%),
    radial-gradient(900px 500px at 0% 8%, rgba(46, 110, 106, 0.09), transparent 55%);
  line-height: 1.65;
  font-size: 1.02rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brick); text-decoration: none; }
a:hover { color: var(--brick-deep); }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.08;
  color: var(--brick-deep);
  margin: 0 0 0.4em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; }

.wrap { width: min(var(--wrap), 100% - 2.4rem); margin-inline: auto; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: 1rem; top: -60px;
  background: var(--brick); color: var(--cream);
  padding: 0.7rem 1.1rem; border-radius: 0 0 12px 12px;
  z-index: 200; transition: top 0.2s var(--ease); font-weight: 600;
}
.skip-link:focus { top: 0; color: var(--cream); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--ff-display); font-weight: 600; font-size: 1rem;
  padding: 0.82rem 1.5rem; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-align: center; line-height: 1.1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--brick); color: var(--cream); box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--brick-deep); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--brick-deep); border-color: var(--brick); }
.btn-ghost:hover { background: var(--brick); color: var(--cream); }
.btn-wa { background: var(--teal); color: #fff; box-shadow: var(--shadow-md); }
.btn-wa:hover { background: var(--teal-deep); color: #fff; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 245, 234, 0.82);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.7rem 0;
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--brick-deep); }
.brand-mark { flex: none; filter: drop-shadow(0 3px 6px rgba(95,39,18,0.25)); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--ff-display); font-weight: 800; font-size: 1.32rem; letter-spacing: -0.01em; }
.brand-sub { font-size: 0.82rem; color: var(--saffron); font-weight: 600; margin-top: 2px; }

.site-nav { display: flex; align-items: center; gap: 1.8rem; }
.site-nav ul { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.site-nav a { font-family: var(--ff-display); font-weight: 600; color: var(--ink); font-size: 1rem; position: relative; }
.site-nav ul a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
  background: var(--saffron); transition: width 0.28s var(--ease);
}
.site-nav ul a:hover { color: var(--brick-deep); }
.site-nav ul a:hover::after { width: 100%; }
.nav-cta { padding: 0.6rem 1.2rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 46px; height: 44px;
  border: 1px solid var(--line); border-radius: 12px; background: var(--paper-2);
  cursor: pointer; padding: 0 11px; align-items: center; justify-content: center;
}
.nav-toggle span { display: block; height: 2.5px; width: 22px; background: var(--brick-deep); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Shared section bits ---------- */
.eyebrow {
  font-family: var(--ff-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.76rem; color: var(--teal);
  margin: 0 0 0.7rem; display: inline-flex; align-items: center; gap: 0.5rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--saffron); display: inline-block; }
.section-head { max-width: 720px; margin-bottom: 2.6rem; }
.section-head h2 { font-size: clamp(1.85rem, 1.1rem + 2.6vw, 2.9rem); }
.section-lead, .visit-lead { color: var(--ink-soft); font-size: 1.08rem; }
.hi-accent { color: var(--saffron); }

main > section { padding: clamp(3.4rem, 2rem + 6vw, 6.5rem) 0; position: relative; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(2.4rem, 1rem + 5vw, 4.5rem); padding-bottom: 0; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.8rem, 1rem + 3vw, 4rem);
  align-items: center;
}
.hero-copy .eyebrow { color: var(--brick); }
.hero h1 {
  font-size: clamp(2.5rem, 1.3rem + 5.2vw, 4.6rem);
  font-weight: 800; margin-bottom: 0.5em; letter-spacing: -0.02em;
}
.hi-accent {
  position: relative; display: inline-block; padding: 0 0.1em;
}
.hero-sub { font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.22rem); color: var(--ink-soft); max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.6rem 0 2rem; }

.hero-facts {
  display: flex; flex-wrap: wrap; gap: 1.6rem 2.2rem; list-style: none; padding: 1.4rem 0 0; margin: 0;
  border-top: 1px dashed var(--line);
}
.hero-facts li { display: flex; flex-direction: column; }
.hero-facts strong { font-family: var(--ff-display); font-size: 1.35rem; color: var(--brick-deep); line-height: 1; }
.hero-facts span { font-size: 0.86rem; color: var(--ink-soft); }

.hero-figure { position: relative; margin: 0; }
.hero-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 3px solid var(--paper-2);
  box-shadow: var(--shadow-lg);
  rotate: 1.4deg;
}
.hero-frame img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; }
.hero-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(95,39,18,0.32));
}
.hero-cap {
  position: absolute; left: 8%; bottom: 6%; z-index: 3;
  color: var(--cream); font-weight: 500; font-size: 0.92rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-stamp {
  position: absolute; top: -18px; right: -6px; z-index: 4;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--saffron); color: var(--brick-deep);
  display: grid; place-content: center; text-align: center;
  font-family: var(--ff-display); font-weight: 800; font-size: 1.5rem; line-height: 1;
  box-shadow: var(--shadow-md); border: 3px solid var(--paper-2);
  rotate: -8deg;
}
.hero-stamp small { display: block; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }

/* steam over accent word */
.steam {
  position: absolute; top: -0.78em; left: 50%; translate: -50% 0;
  width: 44px; height: 40px; pointer-events: none;
}
.steam i {
  position: absolute; bottom: 0; width: 5px; height: 26px; border-radius: 50%;
  background: linear-gradient(to top, rgba(217,138,60,0.55), transparent);
  filter: blur(1px); opacity: 0;
  animation: steam 3.4s ease-in-out infinite;
}
.steam i:nth-child(1) { left: 8px; animation-delay: 0s; }
.steam i:nth-child(2) { left: 20px; animation-delay: 0.7s; height: 32px; }
.steam i:nth-child(3) { left: 32px; animation-delay: 1.4s; }
@keyframes steam {
  0% { transform: translateY(4px) scaleX(1); opacity: 0; }
  30% { opacity: 0.9; }
  100% { transform: translateY(-22px) scaleX(1.6); opacity: 0; }
}

/* marquee */
.marquee {
  margin-top: clamp(2.4rem, 1rem + 5vw, 4rem);
  background: var(--brick); color: var(--cream);
  padding: 0.85rem 0; overflow: hidden; white-space: nowrap;
  border-block: 1px solid var(--brick-deep);
}
.marquee-track {
  display: inline-flex; gap: 2rem; align-items: center;
  font-family: var(--ff-display); font-weight: 600; letter-spacing: 0.04em;
  animation: marquee 26s linear infinite; will-change: transform;
}
.marquee-track span { color: var(--cream); }
.marquee-track span:nth-child(even) { color: var(--saffron-soft); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Story ---------- */
.story { background: var(--paper-2); border-block: 1px solid var(--line); }
.story-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.8rem, 1rem + 3vw, 4rem); align-items: center; }
.story-figure { position: relative; margin: 0; }
.story-figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 4.6; object-fit: cover; width: 100%; }
.story-badge {
  position: absolute; bottom: -20px; right: -14px;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--teal); color: var(--cream);
  display: grid; place-content: center; text-align: center; line-height: 1;
  font-family: var(--ff-display); font-weight: 800; font-size: 1.35rem;
  border: 4px solid var(--paper-2); box-shadow: var(--shadow-md); rotate: -6deg;
}
.story-copy h2 { font-size: clamp(1.75rem, 1.1rem + 2.4vw, 2.7rem); }
.story-copy em { color: var(--brick); font-style: normal; font-weight: 600; }
.story-points { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 0.7rem; }
.story-points li {
  display: flex; align-items: center; gap: 0.7rem; font-weight: 500;
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 0.6rem 0.9rem;
}
.story-points span { font-size: 1.15rem; }

/* ---------- Menu ---------- */
.menu-columns { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 0.6rem + 2vw, 2.4rem); }
.menu-card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 1rem + 1.5vw, 2.2rem); box-shadow: var(--shadow-sm);
  position: relative;
}
.menu-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  border: 1px dashed rgba(138,59,30,0.22); margin: 7px;
}
.menu-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; }
.menu-card-head h3 { font-size: clamp(1.35rem, 1rem + 1.4vw, 1.85rem); margin: 0; }
.menu-tag {
  font-family: var(--ff-display); font-weight: 700; color: var(--saffron);
  font-size: 1.5rem; opacity: 0.9;
}
.menu-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.menu-list li { padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.menu-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.mi-top { display: flex; align-items: baseline; gap: 0.4rem; }
.mi-name { font-family: var(--ff-display); font-weight: 600; color: var(--brick-deep); font-size: 1.1rem; }
.mi-dots { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-3px); min-width: 12px; }
.mi-price {
  font-family: var(--ff-display); font-weight: 700; color: var(--teal);
  background: rgba(46,110,106,0.09); padding: 0.05rem 0.55rem; border-radius: 8px; font-size: 1rem;
}
.mi-desc { margin: 0.25rem 0 0; color: var(--ink-soft); font-size: 0.94rem; line-height: 1.55; }
.menu-note { margin: 1.4rem 0 0; font-size: 0.85rem; color: var(--ink-soft); text-align: center; font-style: italic; }

/* ---------- Adda (signature) ---------- */
.adda {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(217,138,60,0.16), transparent 60%),
    var(--brick-deep);
  color: var(--cream);
}
.adda .eyebrow { color: var(--saffron-soft); }
.adda .eyebrow::before { background: var(--saffron); }
.adda h2 { color: var(--cream); font-size: clamp(1.8rem, 1.1rem + 2.5vw, 2.8rem); }
.adda p { color: rgba(245,235,218,0.86); }
.adda-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.8rem, 1rem + 3vw, 3.6rem); align-items: center; }
.adda-cards { display: grid; gap: 1rem; margin: 1.6rem 0; }
.qissa-card {
  position: relative; background: rgba(245,235,218,0.07);
  border: 1px solid rgba(245,235,218,0.16); border-radius: var(--radius);
  padding: 1.2rem 1.3rem 1.1rem;
}
.qissa-quote {
  position: absolute; top: -0.35em; left: 0.5rem;
  font-family: var(--ff-display); font-size: 3.5rem; color: var(--saffron); line-height: 1; opacity: 0.7;
}
.qissa-card p { margin: 0.3rem 0 0.5rem; color: var(--cream); font-size: 1.02rem; padding-left: 1.4rem; }
.qissa-card footer { color: var(--saffron-soft); font-size: 0.88rem; font-weight: 600; padding-left: 1.4rem; }
.adda .btn-ghost { color: var(--cream); border-color: var(--saffron); }
.adda .btn-ghost:hover { background: var(--saffron); color: var(--brick-deep); }
.adda-figure { margin: 0; position: relative; }
.adda-figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/4.3; object-fit: cover; width: 100%; }
.adda-figure figcaption {
  margin-top: 0.8rem; text-align: center; color: var(--saffron-soft);
  font-family: var(--ff-display); font-weight: 600; font-size: 0.92rem;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  grid-auto-rows: 210px;
}
.g-item { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-md); position: relative; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.g-item:hover img { transform: scale(1.06); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ---------- People ---------- */
.people { background: var(--paper-2); border-block: 1px solid var(--line); }
.people-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.8rem, 1rem + 3vw, 4rem); align-items: center; }
.people-figure { margin: 0; }
.people-figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/4.5; object-fit: cover; width: 100%; }
.people-copy h2 { font-size: clamp(1.7rem, 1.1rem + 2.3vw, 2.6rem); }
.people-cred { border-left: 3px solid var(--saffron); padding-left: 1rem; color: var(--ink-soft); }
.people-cred strong { color: var(--brick-deep); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testi-card {
  margin: 0; background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm); position: relative;
}
.testi-card::before {
  content: "“"; font-family: var(--ff-display); font-size: 3rem; color: var(--saffron);
  line-height: 0.6; display: block; margin-bottom: 0.3rem;
}
.testi-card p { color: var(--ink); font-size: 1.02rem; }
.testi-card footer { display: flex; flex-direction: column; margin-top: 0.6rem; }
.testi-name { font-family: var(--ff-display); font-weight: 700; color: var(--brick-deep); }
.testi-role { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- Visit + Reserve ---------- */
.visit { background: var(--cream-deep); border-top: 1px solid var(--line); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 1rem + 3vw, 3.6rem); align-items: start; }
.visit-info h2 { font-size: clamp(1.75rem, 1.1rem + 2.4vw, 2.7rem); }
.visit-list { display: grid; gap: 1.1rem; margin: 1.6rem 0 1.8rem; }
.visit-list div { border-top: 1px solid var(--line); padding-top: 0.9rem; }
.visit-list dt { font-family: var(--ff-display); font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.76rem; margin-bottom: 0.2rem; }
.visit-list dd { margin: 0; color: var(--ink); }
.visit-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.reserve-card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 1.8vw, 2.4rem); box-shadow: var(--shadow-md);
  position: relative; overflow: hidden; scroll-margin-top: 90px;
}
.reserve-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--brick), var(--saffron), var(--teal));
}
.reserve-card h3 { font-size: 1.6rem; margin-bottom: 0.15em; }
.reserve-sub { color: var(--ink-soft); margin-bottom: 1.4rem; }

.chai-form { display: grid; gap: 1rem; }
.field { display: grid; gap: 0.35rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-family: var(--ff-display); font-weight: 600; font-size: 0.92rem; color: var(--brick-deep); }
.field label span { color: var(--brick); }
.field input, .field select, .field textarea {
  font-family: var(--ff-body); font-size: 1rem; color: var(--ink);
  padding: 0.7rem 0.85rem; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--paper); transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(106,85,68,0.6); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(46,110,106,0.18);
}
.field textarea { resize: vertical; min-height: 96px; }
.form-reassure { font-size: 0.85rem; color: var(--ink-soft); text-align: center; margin: 0.4rem 0 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brick-deep); color: var(--cream); padding-top: clamp(2.8rem, 2rem + 3vw, 4.5rem); }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(245,235,218,0.14); }
.brand-footer .brand-name, .brand-footer { color: var(--cream); }
.footer-line { color: rgba(245,235,218,0.78); max-width: 42ch; margin: 1rem 0 1.2rem; }
.footer-social { display: flex; gap: 0.7rem; list-style: none; padding: 0; margin: 0; }
.footer-social a {
  display: grid; place-content: center; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(245,235,218,0.1); color: var(--cream); transition: background 0.25s, transform 0.25s;
}
.footer-social a:hover { background: var(--saffron); color: var(--brick-deep); transform: translateY(-2px); }

.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.footer-nav h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--saffron-soft); margin-bottom: 0.8rem; }
.footer-nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.footer-nav a { color: rgba(245,235,218,0.82); }
.footer-nav a:hover { color: var(--cream); }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between;
  padding: 1.3rem 0; font-size: 0.86rem; color: rgba(245,235,218,0.66);
}
.footer-bottom p { margin: 0; }
.studio-credit a { color: var(--saffron-soft); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.studio-credit a:hover { color: var(--cream); }

/* ---------- Contact page ---------- */
.contact-hero { padding: clamp(2.6rem, 1.5rem + 4vw, 4.5rem) 0 0; }
.contact-hero h1 { font-size: clamp(2rem, 1.2rem + 3.2vw, 3.3rem); max-width: 16ch; }
.contact-hero .section-lead { max-width: 60ch; }
.contact-body { padding-top: clamp(2rem, 1.2rem + 3vw, 3.4rem); }
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.6rem, 1rem + 2.5vw, 3rem); align-items: start; }
.contact-aside { display: grid; gap: 1.4rem; }
.contact-figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-figure img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.contact-quick {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem 1.5rem;
}
.contact-quick h2 { font-size: 1.4rem; margin-bottom: 0.3rem; }
.contact-quick p { color: var(--ink-soft); margin-bottom: 1rem; }
.contact-visit-list { margin: 0; }

/* ---------- Thank-you page ---------- */
.page-thanks body, .page-thanks { min-height: 100%; }
.thanks {
  padding: clamp(3rem, 2rem + 6vw, 6rem) 0;
  background:
    radial-gradient(700px 380px at 50% -5%, rgba(217,138,60,0.18), transparent 62%);
  text-align: center;
}
.thanks-inner { max-width: 640px; margin-inline: auto; }
.thanks .eyebrow { justify-content: center; color: var(--teal); }
.thanks-mark { position: relative; width: 96px; height: 96px; margin: 0 auto 1.4rem; }
.thanks-mark svg { filter: drop-shadow(0 12px 22px rgba(46,110,106,0.35)); }
.thanks-steam { position: absolute; top: -18px; left: 50%; translate: -50% 0; width: 44px; height: 30px; }
.thanks-steam i {
  position: absolute; bottom: 0; width: 5px; height: 22px; border-radius: 50%;
  background: linear-gradient(to top, rgba(217,138,60,0.6), transparent);
  filter: blur(1px); opacity: 0; animation: steam 3.4s ease-in-out infinite;
}
.thanks-steam i:nth-child(1) { left: 8px; animation-delay: 0s; }
.thanks-steam i:nth-child(2) { left: 20px; animation-delay: 0.7s; height: 28px; }
.thanks-steam i:nth-child(3) { left: 32px; animation-delay: 1.4s; }
.thanks h1 { font-size: clamp(1.9rem, 1.2rem + 3vw, 3rem); }
.thanks-lead { color: var(--ink-soft); font-size: 1.1rem; max-width: 52ch; margin-inline: auto; }
.thanks-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin: 1.8rem 0 1.4rem; }
.thanks-foot { color: var(--brick); font-family: var(--ff-display); font-weight: 600; }
.thanks-foot em { font-style: normal; color: var(--saffron); }
.footer-bottom-solo { justify-content: center; text-align: center; border-top: 0; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .marquee-track, .steam i, .g-item img { animation: none !important; transition: none !important; }
  .btn:hover, .g-item:hover img, .footer-social a:hover { transform: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .site-nav {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper-2); border-bottom: 1px solid var(--line);
    padding: 1rem 1.2rem 1.6rem; box-shadow: var(--shadow-lg);
    transform: translateY(-140%); transition: transform 0.36s var(--ease);
    max-height: calc(100dvh - 64px); overflow-y: auto;
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav ul li { border-bottom: 1px solid var(--line); }
  .site-nav ul a { display: block; padding: 0.9rem 0.2rem; font-size: 1.1rem; }
  .site-nav ul a::after { display: none; }
  .nav-cta { margin-top: 1rem; }
  .nav-toggle { display: flex; }

  .hero-grid, .story-grid, .adda-grid, .people-grid, .visit-grid { grid-template-columns: 1fr; }
  .story-grid .story-figure { order: 2; }
  .menu-columns { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .hero-frame { rotate: 0deg; }
  .hero-frame img { aspect-ratio: 16 / 11; }
  .story-figure img, .people-figure img, .adda-figure img { aspect-ratio: 16 / 11; }
}

@media (max-width: 620px) {
  body { font-size: 0.98rem; }
  .header-inner { padding: 0.55rem 0; }
  .brand-name { font-size: 1.18rem; }
  .brand-sub { font-size: 0.74rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { flex-direction: column; }
  .hero-stamp { width: 74px; height: 74px; font-size: 1.2rem; }
  .btn { width: 100%; }
  .hero-actions, .visit-actions { flex-direction: column; }
  .hero-actions .btn, .visit-actions .btn { width: 100%; }
}

@media (min-width: 621px) {
  .hero-actions .btn, .visit-actions .btn { width: auto; }
}
