:root {
  --brand-red: #d81717;
  --brand-red-dark: #9f1111;
  --brand-orange: #ff8a1d;
  --brand-gold: #ffc94a;
  --cream: #fff8ed;
  --cream-strong: #fff1d7;
  --white: #ffffff;
  --ink: #211714;
  --muted: #6b5a50;
  --line: rgba(151, 36, 17, 0.16);
  --success: #146c43;
  --danger: #b42318;
  --focus: #0a66c2;
  --shadow-sm: 0 8px 22px rgba(66, 31, 6, 0.08);
  --shadow-md: 0 16px 44px rgba(72, 30, 5, 0.14);
  --shadow-lg: 0 24px 80px rgba(72, 30, 5, 0.20);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --max: 1180px;
  --header-h: 78px;
  --font-body: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Dancing Script', cursive;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--cream);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 201, 74, 0.22), transparent 32rem),
    radial-gradient(circle at top right, rgba(216, 23, 23, 0.08), transparent 34rem),
    linear-gradient(180deg, #fffdf8 0%, var(--cream) 60%, #ffffff 100%);
  font-size: 16px;
  line-height: 1.65;
  min-width: 320px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

p { margin: 0 0 1rem; }

button, input, textarea, select { font: inherit; }

button { cursor: pointer; }

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 9999;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  transition: transform 160ms ease;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.section-tight { padding: clamp(2rem, 5vw, 4rem) 0; }

.section-heading {
  max-width: 820px;
  margin: 0 auto 2rem;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  color: var(--brand-red-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 { font-size: clamp(2.45rem, 8vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.55rem); }
h3 { font-size: clamp(1.25rem, 2.6vw, 1.65rem); }
h4 { font-size: 1.05rem; }

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  max-width: 760px;
}

.center { text-align: center; }
.center .lead { margin-inline: auto; }

.brand-script {
  font-family: var(--font-script);
  color: var(--brand-red);
  font-size: 1.55em;
  font-weight: 700;
  letter-spacing: 0;
}

.text-link {
  color: var(--brand-red-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(151, 36, 17, 0.09);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 14px 40px rgba(72, 30, 5, 0.10);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.logo img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(216, 23, 23, 0.18);
  flex: 0 0 auto;
}

.logo span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-toggle {
  appearance: none;
  border: 0;
  background: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 750;
  font-size: 0.95rem;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--brand-red-dark);
  background: rgba(255, 138, 29, 0.12);
}

.site-nav .nav-book { margin-left: 0.3rem; }

.btn {
  --btn-bg: linear-gradient(135deg, var(--brand-orange), var(--brand-red));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--white) !important;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 12px 26px rgba(216, 23, 23, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(216, 23, 23, 0.26); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn[disabled] { opacity: 0.65; cursor: not-allowed; transform: none; filter: grayscale(0.25); }

.btn-secondary {
  --btn-bg: var(--white);
  color: var(--brand-red-dark) !important;
  border: 1px solid rgba(216, 23, 23, 0.18);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: transparent;
  color: var(--brand-red-dark) !important;
  box-shadow: none;
  border: 1px solid rgba(216, 23, 23, 0.20);
}

.hero {
  position: relative;
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
}

.hero::before {
  width: min(44vw, 560px);
  height: min(44vw, 560px);
  right: -12vw;
  top: -12vw;
  background: radial-gradient(circle, rgba(255, 201, 74, 0.42), transparent 62%);
}

.hero::after {
  width: min(32vw, 380px);
  height: min(32vw, 380px);
  left: -10vw;
  bottom: -10vw;
  background: radial-gradient(circle, rgba(216, 23, 23, 0.16), transparent 62%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.78fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-copy { max-width: 790px; }
.hero-copy .lead { margin-top: 1.1rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.proof-pill {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.8rem;
  box-shadow: var(--shadow-sm);
}

.proof-pill strong { display: block; font-size: 0.92rem; }
.proof-pill span { display: block; color: var(--muted); font-size: 0.83rem; line-height: 1.35; }

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,241,215,0.82));
  border: 1px solid rgba(216, 23, 23, 0.12);
  box-shadow: var(--shadow-lg);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}

.hero-badge {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 23, 23, 0.12);
  border-radius: 20px;
  padding: 0.8rem 1rem;
  box-shadow: var(--shadow-md);
}

.hero-badge strong { display: block; }
.hero-badge span { display: block; color: var(--muted); font-size: 0.86rem; }

.card,
.feature-card,
.location-card,
.menu-item,
.review-card,
.contact-card,
.faq-item,
.form-shell,
.notice-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.card,
.feature-card,
.location-card,
.review-card,
.contact-card,
.notice-card { padding: clamp(1.15rem, 3vw, 1.6rem); }

.feature-grid,
.location-grid,
.contact-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.location-card,
.contact-card,
.review-card,
.faq-item,
.menu-item {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.feature-card:hover,
.location-card:hover,
.contact-card:hover,
.review-card:hover,
.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(216, 23, 23, 0.24);
}

.icon-bubble {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,201,74,0.32), rgba(255,138,29,0.20));
  color: var(--brand-red-dark);
  font-size: 1.45rem;
  margin-bottom: 0.9rem;
}

.feature-card p,
.location-card p,
.review-card p,
.contact-card p,
.faq-item p { color: var(--muted); }

.menu-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.menu-item { overflow: hidden; }
.menu-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.menu-item-content { padding: 1.1rem; }
.menu-item-content p { color: var(--muted); }

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 5vw, 3rem);
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.cta-band h2,
.cta-band p { color: var(--white); }
.cta-band p { max-width: 740px; opacity: 0.96; }
.cta-band .btn-secondary { background: var(--white); }

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.quick-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.quick-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.85rem;
}

.quick-list li::before {
  content: '✓';
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-red);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-hero {
  padding-bottom: 2rem;
}

.contact-grid { margin-top: 1.6rem; }
.contact-card strong { display: block; margin-bottom: 0.3rem; }
.contact-card a { color: var(--brand-red-dark); font-weight: 850; overflow-wrap: anywhere; }

.booking-section { scroll-margin-top: calc(var(--header-h) + 1rem); }

.form-shell {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
}

.form-head {
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background:
    linear-gradient(135deg, rgba(255, 201, 74, 0.28), rgba(255, 138, 29, 0.10)),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.progress-wrap { margin-top: 1rem; }

.progress-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(216, 23, 23, 0.10);
}

.progress-fill {
  height: 100%;
  width: 16.666%;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-red));
  border-radius: inherit;
  transition: width 250ms ease;
}

.step-dots {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.35rem;
  margin-top: 0.85rem;
}

.step-dot {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-align: left;
}

.step-dot .num {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(216, 23, 23, 0.10);
  color: var(--brand-red-dark);
}

.step-dot.is-active,
.step-dot.is-complete {
  color: var(--ink);
  border-color: rgba(216, 23, 23, 0.28);
  background: rgba(255, 241, 215, 0.88);
}

.step-dot.is-active .num,
.step-dot.is-complete .num { background: var(--brand-red); color: var(--white); }

.booking-form { padding: clamp(1rem, 3vw, 1.75rem); }

.form-step {
  border: 0;
  padding: 0;
  margin: 0;
  display: none;
  animation: stepIn 220ms ease both;
}

.form-step.is-active { display: block; }

@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-title {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.step-title .step-number {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 10px 20px rgba(216, 23, 23, 0.18);
}

.step-title p { color: var(--muted); margin: 0.35rem 0 0; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-grid .full { grid-column: 1 / -1; }

.field { display: grid; gap: 0.35rem; }

.soft-note {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border: 1.5px solid rgba(216, 23, 23, 0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 201, 74, 0.22), rgba(255, 138, 29, 0.08));
  color: var(--muted);
}

.soft-note strong {
  color: var(--ink);
  font-size: 1rem;
}

label,
.field-label {
  color: var(--ink);
  font-weight: 850;
  line-height: 1.25;
}

.required-mark { color: var(--brand-red-dark); }

.helper,
.error-text {
  font-size: 0.9rem;
  line-height: 1.45;
}

.helper { color: var(--muted); }
.error-text { color: var(--danger); font-weight: 750; min-height: 1.2em; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1.5px solid rgba(151, 36, 17, 0.20);
  border-radius: 16px;
  background: #fffdf8;
  color: var(--ink);
  padding: 0.85rem 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

textarea { min-height: 120px; resize: vertical; }

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 4px rgba(216, 23, 23, 0.12);
  background: var(--white);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea,
.choice-group.has-error {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.10);
}

.choice-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1.5px solid rgba(151, 36, 17, 0.12);
  border-radius: 18px;
  background: rgba(255, 248, 237, 0.72);
}

.choice-group.choice-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.choice {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 50px;
  padding: 0.75rem;
  border-radius: 15px;
  background: var(--white);
  border: 1px solid rgba(151, 36, 17, 0.14);
  font-weight: 750;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.choice:hover { transform: translateY(-1px); border-color: rgba(216, 23, 23, 0.30); }
.choice input { width: 20px; height: 20px; accent-color: var(--brand-red); flex: 0 0 auto; }
.choice:has(input:checked) {
  border-color: rgba(216, 23, 23, 0.42);
  background: linear-gradient(135deg, rgba(255, 201, 74, 0.20), rgba(255, 138, 29, 0.08));
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.form-actions .right-actions {
  margin-left: auto;
  display: flex;
  gap: 0.75rem;
}

.error-summary {
  display: none;
  margin: 0 0 1rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(180, 35, 24, 0.28);
  background: #fff2f0;
  color: var(--danger);
  font-weight: 800;
}

.error-summary.is-visible { display: block; }
.error-summary ul { margin: 0.5rem 0 0 1.2rem; padding: 0; font-weight: 650; }

.summary-grid {
  display: grid;
  gap: 1rem;
}

.summary-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fffdf8;
}

.summary-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 201, 74, 0.18);
  border-bottom: 1px solid var(--line);
}

.summary-card-head h3 { font-size: 1.05rem; }
.summary-card dl { margin: 0; display: grid; }
.summary-card .row {
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) minmax(0, 0.65fr);
  gap: 0.8rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(151, 36, 17, 0.08);
}
.summary-card .row:last-child { border-bottom: 0; }
.summary-card dt { font-weight: 850; color: var(--ink); }
.summary-card dd { margin: 0; color: var(--muted); overflow-wrap: anywhere; }

.status-card {
  display: none;
  padding: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
}

.status-card.is-visible { display: block; animation: stepIn 240ms ease both; }
.status-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(20, 108, 67, 0.11);
  color: var(--success);
}

.loading-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-item { padding: 1.15rem; }

.redirect-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.site-footer {
  padding: 2.5rem 0 calc(2.5rem + env(safe-area-inset-bottom));
  background: var(--ink);
  color: rgba(255,255,255,0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  gap: 1.5rem;
  align-items: start;
}

.site-footer h2,
.site-footer h3,
.site-footer strong { color: var(--white); }
.site-footer a { color: #ffd37a; font-weight: 750; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.footer-bottom { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.92rem; }

.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 990;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-animate].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  :root { --header-h: 72px; }

  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 1rem;
    right: 1rem;
    max-height: calc(100vh - var(--header-h) - 2rem);
    overflow: auto;
    display: grid;
    gap: 0.35rem;
    padding: 0.75rem;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px) scale(0.98);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
    padding: 0.8rem 1rem;
  }

  .site-nav .nav-book { margin-left: 0; justify-content: center; }

  .hero-grid,
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card { max-width: 560px; margin-inline: auto; }

  .feature-grid,
  .location-grid,
  .contact-grid,
  .stats-grid,
  .menu-grid,
  .gallery-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-dots {
    display: flex;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scroll-snap-type: x mandatory;
  }
  .step-dot { flex: 0 0 auto; min-width: 154px; scroll-snap-align: start; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 1.1rem, var(--max)); }
  .section { padding: 2.7rem 0; }
  .section-heading { text-align: left; }
  .center { text-align: left; }
  .center .lead { margin-inline: 0; }
  .logo span { max-width: 188px; }

  .hero { padding-top: 3.25rem; }
  .hero-actions,
  .form-actions,
  .form-actions .right-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .hero-actions .btn,
  .form-actions .btn { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-badge { position: static; margin-top: 0.8rem; }

  .feature-grid,
  .location-grid,
  .contact-grid,
  .stats-grid,
  .menu-grid,
  .gallery-grid,
  .faq-grid,
  .form-grid,
  .choice-group,
  .choice-group.choice-three {
    grid-template-columns: 1fr;
  }

  .booking-form { padding: 1rem 0.8rem; }
  .form-shell { border-radius: 20px; }
  .step-title { gap: 0.65rem; }
  .step-title .step-number { width: 38px; height: 38px; border-radius: 13px; }
  .choice { min-height: 54px; }
  .summary-card .row { grid-template-columns: 1fr; gap: 0.2rem; }
  .sticky-cta { left: 0.7rem; right: 0.7rem; bottom: calc(0.7rem + env(safe-area-inset-bottom)); }
  .sticky-cta .btn, .sticky-cta { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] { opacity: 1; transform: none; }
}

.contact-page .sticky-cta,
.booking-redirect-page .sticky-cta { display: none; }
