/* ============================================================================
   EliteBite — landing page
   Source: Figma · "Snappeats New Design" › EliteBite · Landing page (desktop 1440)
   Values below mirror the 1440px artboard; breakpoints relax them downward.
   ========================================================================== */

/* ── Tokens ───────────────────────────────────────────────────────────────── */
:root {
  /* Surfaces */
  --bg:                #030401;
  --surface-features:  #0d1913;
  --surface-card:      #11160f;
  --surface-quote:     #121e16;
  --surface-cta:       #0c1d15;
  --surface-rail:      #0e1410;
  --surface-light:     #eaeae8;

  /* Accents */
  --gold:              #b99e71;
  --gold-bright:       #d3ac6e;
  --gold-from:         #cdaf79;
  --gold-to:           #a58755;
  --on-gold:           #1a1206;

  /* Text */
  --text:              #ffffff;
  --text-muted:        #c9c6be;
  --text-dim:          #9a968e;
  --text-nav:          #ece9e1;
  --text-tagline:      #b9b4ab;
  --text-card:         #dedcd6;
  --text-trust:        #948f86;
  --text-cta:          #9fa79b;
  --text-ghost:        #d6d2ca;
  --on-light:          #15181a;

  /* Form surfaces */
  --field-bg:          #0a1109;
  --field-border:      #26332a;
  --field-placeholder: #6d766c;
  --danger:            #e2795f;

  /* Lines */
  --line-dark:         #22301f;
  --line-light:        #d3d3d0;
  --line-ghost:        #4a4a44;

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-script:  "Great Vibes", "Snell Roundhand", cursive;

  /* Layout */
  --container:  1320px;
  --gutter:     60px;
  --header-h:   105px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, p, figure, blockquote, ul { margin: 0; }
ul { padding: 0; list-style: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

.skip-link {
  position: absolute; left: 50%; top: 0; z-index: 999;
  transform: translate(-50%, -140%);
  padding: 12px 22px; border-radius: 0 0 10px 10px;
  background: var(--gold); color: var(--on-gold);
  font-weight: 600; letter-spacing: .04em;
  transition: transform .2s var(--ease);
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── Shared type ──────────────────────────────────────────────────────────── */
.eyebrow {
  font-size: 14.5px; font-weight: 500; line-height: 1.25;
  letter-spacing: 2.7px; text-transform: uppercase; color: var(--gold);
}
.eyebrow--sm { font-size: 13.5px; letter-spacing: 2.2px; }

.section-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 35.5px; line-height: 1.22; color: var(--text);
  letter-spacing: -.005em;
}

.rule { display: block; width: 36px; height: 2px; background: var(--gold); }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  height: 51px; padding-inline: 26px; border-radius: 26px;
  font-size: 14.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn img { flex: none; }

.btn--gold {
  background-image: linear-gradient(to right, var(--gold-from), var(--gold-to));
  color: var(--on-gold);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 26px -10px rgba(205, 175, 121, .65); }

.btn--ghost {
  border: 1.2px solid var(--line-ghost); color: var(--text-ghost); font-weight: 500;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--outline {
  border: 1.2px solid var(--gold); color: var(--gold); font-weight: 500;
}
.btn--outline:hover { background: var(--gold); color: var(--on-gold); }
.btn--outline:hover img { filter: brightness(0) saturate(100%); }

.btn--gold > span, .btn--ghost > span, .btn--outline > span { display: block; }
.btn--wide { height: 52px; padding-inline: 27px; font-size: 12.5px; }
.btn--lg   { height: 57px; padding-inline: 34px; gap: 14px; }
.btn--book { height: 47px; padding-inline: 30px; gap: 10px; font-size: 13px; border-radius: 24px; margin-left: 24px; }
.btn--menu { height: 50px; padding-inline: 30px; gap: 18px; font-size: 14px; border-radius: 25px; }

/* ── Header ───────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 60;
  height: var(--header-h);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck { background: color-mix(in srgb, var(--bg) 95%, transparent); border-bottom-color: var(--line-dark); }

.site-header__inner {
  display: flex; align-items: center;
  height: 100%; padding-bottom: 13px;
}

.brand { display: block; }
.brand__word {
  position: relative; display: inline-block; padding-right: 30px;
  font-family: var(--font-display); font-weight: 500; font-size: 42px; line-height: 1.05;
  color: var(--text);
}
.brand__accent { color: var(--gold-bright); }
.brand__leaf { position: absolute; right: 0; top: 6px; width: 23px; height: 15px; }
.brand__tagline {
  display: block; margin-top: 5px;
  font-size: 8.5px; font-weight: 500; letter-spacing: 1.1px; text-transform: uppercase;
  color: var(--text-tagline);
}

.site-nav { margin-left: 15%; margin-right: auto; }
.site-nav__list { display: flex; align-items: center; gap: 52px; }
.site-nav__link {
  position: relative; display: block; padding: 6px 0;
  font-size: 11.5px; font-weight: 500; letter-spacing: .9px; text-transform: uppercase;
  color: var(--text-nav);
  transition: color .2s var(--ease);
}
.site-nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -14px;
  width: 100%; height: 1.6px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.site-nav__link:hover { color: var(--gold); }
.site-nav__link:hover::after, .site-nav__link.is-active::after { transform: scaleX(1); }

.nav-toggle { display: none; width: 44px; height: 44px; place-items: center; }
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  display: block; width: 22px; height: 1.6px; background: var(--text-nav);
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -7px; }
.nav-toggle__bars::after  { top:  7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 695px; isolation: isolate; }

.hero__media {
  position: absolute; inset: 0 0 0 auto; z-index: -1;
  width: 70.14%;               /* 1010 / 1440 */
  max-width: 1010px;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::before {          /* left-edge fade into the page background */
  content: ""; position: absolute; top: 0; bottom: 0; left: -10px; width: 80px;
  background: linear-gradient(to right, var(--bg), rgba(3, 4, 1, 0));
}

.hero__inner {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  min-height: 695px;
  padding-top: 70px; padding-bottom: 64px;
  padding-left: calc(var(--gutter) + 20px);
}

.hero__title { margin-top: 4px; }
.hero__line {
  display: block;
  font-family: var(--font-display); font-weight: 500;
  font-size: 69px; line-height: 79px; color: var(--text);
  letter-spacing: -.01em;
}
.hero__script {
  display: block; margin-top: 9px;
  font-family: var(--font-script); font-weight: 400;
  font-size: 82px; line-height: 1.2; color: var(--gold);
}

.hero__lede {
  margin-top: 16px;
  font-size: 19.5px; line-height: 31.5px; color: var(--text-muted);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 24px; }
.hero__actions .btn { min-width: 199px; }

.hero__trust { display: flex; align-items: center; gap: 17px; margin-top: 39px; }
.hero__avatars { width: 126px; height: 44px; object-fit: contain; }
.hero__trust-copy strong { display: block; font-size: 17.5px; font-weight: 500; line-height: 1.3; color: var(--text); }
.hero__trust-copy span   { display: block; font-size: 14.5px; line-height: 1.4; color: var(--text-trust); }

/* Floating contact rail */
.social-rail {
  position: absolute; right: 32px; top: 141px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 30px;
  width: 44px; padding: 14px 0;
  background: var(--surface-rail); border-radius: 22px;
}
.social-rail a { display: grid; place-items: center; width: 18px; height: 18px; opacity: .85;
  transition: opacity .2s var(--ease), transform .2s var(--ease); }
.social-rail a:hover { opacity: 1; transform: scale(1.14); }

/* Scroll cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 35px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue__ring { position: relative; display: grid; place-items: center; width: 26px; height: 26px; }
.scroll-cue__bar {
  position: absolute; top: 8px; left: 50%; margin-left: -2px;
  width: 4px; height: 10px; border-radius: 2px; background: #cfcbc3;
  animation: cue 1.9s var(--ease) infinite;
}
@keyframes cue { 0%, 100% { transform: translateY(0); opacity: 1; } 55% { transform: translateY(5px); opacity: .35; } }
.scroll-cue__label {
  font-size: 10.5px; font-weight: 500; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--text-dim);
}

/* ── Feature bar ──────────────────────────────────────────────────────────── */
.features__grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  min-height: 205px; padding: 36px 0;
  background: var(--surface-features); border-radius: 20px;
}
.feature {
  position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding-inline: 14px;
}
.feature + .feature::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 120px; background: var(--line-dark);
}
.feature__icon { width: 46px; height: 46px; }
.feature__title { margin-top: 12px; font-size: 17px; font-weight: 600; line-height: 1.25; color: var(--text); }
.feature__text  { margin-top: 10px; max-width: 21ch; font-size: 15px; line-height: 22px; color: var(--text-dim); }

/* ── Section head (shared) ────────────────────────────────────────────────── */
.section-head {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding-top: 37px;
}
.section-head .section-title { margin-top: 10px; }
.section-head .rule { margin-top: 15px; }

/* ── Category cards ───────────────────────────────────────────────────────── */
.menu { padding-bottom: 0; }

.cat-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
  margin-top: 24px;
}
.cat-card {
  position: relative; display: flex; flex-direction: column;
  min-height: 309px; padding-bottom: 27px;
  background: var(--surface-card); border-radius: 14px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -24px rgba(0, 0, 0, .9); }

.cat-card__media { height: 148px; overflow: hidden; }
.cat-card__media img {
  width: 100%; height: 167px; object-fit: cover;
  transition: transform .5s var(--ease);
}
.cat-card:hover .cat-card__media img { transform: scale(1.06); }

.cat-card__badge {
  position: absolute; top: 133px; left: 50%; transform: translateX(-50%);
  display: grid; place-items: center; width: 57px; height: 57px;
}
.cat-card__ring  { position: absolute; inset: 0; width: 57px; height: 57px; }
.cat-card__glyph { position: relative; width: 29px; height: 29px; }

.cat-card__body { margin-top: auto; padding: 0 18px; text-align: center; }
.cat-card__title { font-size: 17.5px; font-weight: 600; line-height: 1.2; color: var(--text); }
.cat-card__text  { margin-top: 10px; font-size: 14.5px; line-height: 22px; color: var(--text-card); }

/* ── Stats ────────────────────────────────────────────────────────────────── */
.stats { padding-top: 34px; }
.stats__grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  min-height: 147px; padding: 24px 0;
  background: var(--surface-light); border-radius: 16px;
}
.stat {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 27px;
  padding-inline: 12px;
}
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 64px; background: var(--line-light);
}
.stat__icon { width: 44px; height: 44px; }
.stat__num {
  display: block;
  font-family: var(--font-display); font-weight: 600; font-size: 37px; line-height: 1.2;
  color: var(--on-light);
}
.stat__label { display: block; margin-top: 4px; font-size: 15px; font-weight: 600; color: var(--on-light); }

/* ── About ────────────────────────────────────────────────────────────────── */
.about { padding-top: 18px; }
.about__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) 460px 334px; column-gap: 34px;
  align-items: start;
}

.about__copy { padding-top: 26px; }
.about__title { margin-top: 8px; font-size: 47px; line-height: 54px; }
.about__copy .rule { margin-top: 23px; }
.about__text { margin-top: 21px; font-size: 18px; line-height: 28px; color: var(--text-muted); }
.about__copy .btn { margin-top: 28px; }

.about__media { position: relative; margin: 0; }
.about__dish { width: 100%; height: auto; }
.about__script {
  position: absolute; left: -62px; top: 80px; z-index: 2;
  font-family: var(--font-script); font-size: 27px; line-height: 44px; color: var(--gold);
  transform: rotate(-8deg); transform-origin: left center;
  pointer-events: none;
}
.about__arrow { position: absolute; left: -2px; top: 233px; z-index: 2; width: 60px; height: 46px; }

.quote {
  margin: 16px 0 0; padding: 30px 35px 28px;
  min-height: 352px; background: var(--surface-quote); border-radius: 4px;
  display: flex; flex-direction: column;
}
.quote__mark {
  display: block; height: 42px;
  font-family: var(--font-display); font-weight: 500; font-size: 70px; line-height: 1; color: var(--gold);
}
.quote__text {
  margin: 40px 0 0;
  font-family: var(--font-display); font-weight: 500; font-size: 26.5px; line-height: 37px;
  color: var(--text);
}
.quote__by { margin-top: auto; padding-top: 26px; font-family: var(--font-script); font-size: 26px; color: var(--gold); }

/* ── Closing CTA ──────────────────────────────────────────────────────────── */
.cta { padding: 3px 0 90px; }
.cta__bar {
  display: flex; align-items: center; gap: 25px;
  min-height: 108px; padding: 20px 80px 20px 71px;
  background: var(--surface-cta); border-radius: 14px;
}
.cta__icon { position: relative; display: grid; place-items: center; flex: none; width: 46px; height: 46px; }
.cta__ring  { position: absolute; inset: 0; width: 46px; height: 46px; }
.cta__glyph { position: relative; width: 22px; height: 22px; }
.cta__copy { margin-right: auto; }
.cta__title { font-size: 23.5px; font-weight: 600; line-height: 1.3; color: var(--text); }
.cta__text  { margin-top: 4px; font-size: 17px; line-height: 1.4; color: var(--text-cta); }

/* ── Booking form ─────────────────────────────────────────────────────────── */
.book { padding: 14px 0 96px; }

.book__lead {
  max-width: 46ch; font-size: 16px; line-height: 26px; color: var(--text-dim);
  text-align: right;
}

.book__panel {
  position: relative; margin-top: 26px; padding: 44px 48px 48px;
  background: var(--surface-features); border-radius: 20px;
}

.book-form__note { font-size: 13.5px; color: var(--text-dim); }
.book-form__note abbr, .field__label abbr { color: var(--gold); text-decoration: none; }

.book-form__alert {
  margin-top: 20px; padding: 14px 18px; border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--danger) 45%, transparent);
  background: color-mix(in srgb, var(--danger) 12%, transparent);
  color: #f2c6ba; font-size: 14.5px; line-height: 21px;
}

.book-form__section { margin: 0; padding: 0; border: 0; }
.book-form__section + .book-form__section { margin-top: 40px; }

.book-form__legend {
  display: flex; align-items: baseline; gap: 12px; padding: 0;
  margin-bottom: 22px;
  font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--text);
}
.book-form__legend span {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; color: var(--gold);
}

.book-form__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
}

.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; margin: 0; padding: 0; border: 0; }
.field--wide { grid-column: 1 / -1; }

.field__label {
  padding: 0;
  font-size: 13.5px; font-weight: 500; letter-spacing: .3px; color: var(--text-ghost);
}

.field__control {
  width: 100%; min-height: 50px; padding: 13px 16px;
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  background: var(--field-bg);
  border: 1px solid var(--field-border); border-radius: 10px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  appearance: none;
}
.field__control::placeholder { color: var(--field-placeholder); }
.field__control:hover { border-color: #334436; }
.field__control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 22%, transparent);
}
.field__control--area { min-height: 118px; resize: vertical; line-height: 23px; }

/* Native select needs its own arrow once appearance is stripped */
select.field__control {
  padding-right: 42px; cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: right 20px center, right 14px center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
select.field__control option { background: var(--field-bg); color: var(--text); }

/* Date inputs render their picker icon dark-on-dark by default */
input[type="date"].field__control::-webkit-calendar-picker-indicator {
  filter: invert(72%) sepia(18%) saturate(600%) hue-rotate(2deg);
  cursor: pointer;
}

.field__hint  { font-size: 12.5px; line-height: 18px; color: var(--text-dim); }
.field__error { font-size: 12.5px; line-height: 18px; color: var(--danger); }

.field__control[aria-invalid="true"] { border-color: var(--danger); }
.field__control[aria-invalid="true"]:focus {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--danger) 22%, transparent);
}

/* Segmented radio / checkbox chips */
.choice-set__options { display: flex; flex-wrap: wrap; gap: 10px; }
.choice { position: relative; }
.choice input {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: pointer;
}
.choice span {
  display: block; padding: 11px 20px;
  font-size: 14px; color: var(--text-ghost);
  background: var(--field-bg);
  border: 1px solid var(--field-border); border-radius: 999px;
  cursor: pointer;
  transition: border-color .2s var(--ease), color .2s var(--ease), background-color .2s var(--ease);
}
.choice input:hover + span { border-color: #3c5040; color: var(--text); }
.choice input:checked + span {
  border-color: var(--gold); color: var(--gold);
  background: color-mix(in srgb, var(--gold) 12%, var(--field-bg));
}
.choice input:focus-visible + span {
  outline: 2px solid var(--gold); outline-offset: 2px;
}
.choice-set[aria-invalid="true"] .choice span { border-color: var(--danger); }

.book-form__actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px;
  margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line-dark);
}
.book-form__reassure { font-size: 14px; color: var(--text-dim); }

/* Success state */
.book__done { text-align: center; padding: 26px 0 14px; }
.book__done-mark { position: relative; display: inline-grid; place-items: center; width: 46px; height: 46px; }
.book__done-mark img { position: absolute; }
.book__done-glyph { width: 22px; height: 22px; }
.book__done-title {
  margin-top: 20px;
  font-family: var(--font-display); font-weight: 500; font-size: 30px; color: var(--text);
}
.book__done-text { margin-top: 12px; font-size: 16px; line-height: 26px; color: var(--text-muted); }
.book__done-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin-top: 26px;
}

/* ── Reveal on scroll ─────────────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ══ Responsive ═══════════════════════════════════════════════════════════ */

@media (max-width: 1439px) {
  .social-rail { right: 20px; }
}

/* Laptop */
@media (max-width: 1279px) {
  :root { --gutter: 40px; }
  .site-nav__list { gap: 26px; }
  .site-nav { margin-left: 6%; }
  .btn--book { margin-left: 20px; }

  .hero__line   { font-size: 56px; line-height: 64px; }
  .hero__script { font-size: 66px; }
  .hero__lede   { font-size: 18px; line-height: 29px; }
  .hero__media  { width: 60%; }

  .section-title { font-size: 32px; }
  .about__title  { font-size: 40px; line-height: 47px; }

  .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .cat-card__text br { display: none; }
  .about__grid { grid-template-columns: 1fr 1fr; column-gap: 36px; row-gap: 48px; }
  .about__media { grid-column: 2; max-width: 460px; margin-inline: auto; }
  .quote { grid-column: 1 / -1; min-height: 0; }
  .quote__text br { display: none; }
  .about__script { left: -96px; }   /* extra room once the dish column narrows */

  .cta__bar { padding-inline: 40px; }
  .book__panel { padding: 38px 34px 40px; }
}

/* Tablet */
@media (max-width: 1023px) {
  .features__grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; padding: 40px 24px; }
  .feature + .feature::before { display: none; }
  .feature:nth-child(n+2)::before { display: none; }

  .stats__grid { grid-template-columns: repeat(3, 1fr); row-gap: 32px; padding: 32px 20px; }
  .stat + .stat::before { display: none; }

  .hero { min-height: 0; }
  .hero__media {
    width: 100%; max-width: none; inset: 0;
  }
  .hero__media::before {
    left: 0; width: 100%;
    /* Two-layer scrim: the photo now runs behind full-width text, so a
       horizontal fade alone leaves the right edge too bright to read over. */
    background:
      linear-gradient(to right, var(--bg) 4%, rgba(3, 4, 1, .58) 55%, rgba(3, 4, 1, .46)),
      linear-gradient(to bottom, rgba(3, 4, 1, .55), rgba(3, 4, 1, .78));
  }
  .hero__inner { min-height: 0; padding-block: 56px 120px; }
  .social-rail { display: none; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 22px; }
  .book__lead { text-align: left; }
  .book__lead br { display: none; }
}

/* Mobile */
@media (max-width: 767px) {
  :root { --gutter: 20px; --header-h: 84px; }

  .nav-toggle { display: grid; }
  .btn--book { display: none; }
  .site-nav { margin-left: 0; margin-right: 0; }
  .hero__inner { padding-left: var(--gutter); }

  .site-nav {
    position: fixed; inset: var(--header-h) 0 auto; z-index: 55;
    padding: 8px 20px 24px;
    background: color-mix(in srgb, var(--bg) 97%, transparent);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-dark);
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav__link { padding: 15px 0; font-size: 13px; border-bottom: 1px solid var(--line-dark); }
  .site-nav__link::after { display: none; }
  .site-nav__link.is-active { color: var(--gold); }

  .brand__word { font-size: 32px; padding-right: 24px; }
  .brand__leaf { width: 18px; height: 12px; top: 3px; }
  .brand__tagline { font-size: 7.5px; letter-spacing: 1px; }

  .hero__line   { font-size: 38px; line-height: 45px; }
  .hero__script { font-size: 48px; margin-top: 4px; }
  .hero__lede   { font-size: 16px; line-height: 26px; }
  .hero__lede br, .about__text br, .hero__line br { display: none; }
  .hero__actions { gap: 14px; width: 100%; }
  .hero__actions .btn { flex: 1 1 190px; }
  .hero__inner { padding-block: 44px 96px; }
  .scroll-cue { bottom: 24px; }

  .features__grid, .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .feature__text { max-width: none; }
  .stat { flex-direction: column; gap: 10px; text-align: center; }
  .stat__num { font-size: 30px; }
  .stat__label { font-size: 13.5px; }

  .section-title { font-size: 27px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }

  .about__grid { grid-template-columns: 1fr; row-gap: 36px; }
  .about__media { grid-column: 1; margin-inline: auto; max-width: 460px; width: 100%; }
  .about__script { left: 0; top: 6px; font-size: 22px; line-height: 34px; }
  .about__arrow { left: 46px; top: 108px; width: 44px; height: 34px; }
  .about__title { font-size: 32px; line-height: 39px; }
  .about__text { font-size: 16px; line-height: 26px; }
  .quote { padding: 26px 24px; }
  .quote__text { font-size: 22px; line-height: 32px; }

  .cta { padding-bottom: 64px; }
  .cta__bar { flex-direction: column; align-items: flex-start; gap: 18px; padding: 28px 24px; }
  .cta__title { font-size: 20px; }
  .cta__text  { font-size: 15px; }
  .cta__copy { margin-right: 0; }
  .cta__bar .btn { width: 100%; }

  .book { padding-bottom: 64px; }
  .book__panel { padding: 26px 20px 30px; border-radius: 16px; }
  .book-form__grid { grid-template-columns: 1fr; gap: 18px; }
  .book-form__legend { font-size: 19px; }
  .book-form__actions .btn { width: 100%; }
  .book-form__reassure { width: 100%; text-align: center; }
  .choice span { padding: 10px 16px; font-size: 13.5px; }
  .book__done-title { font-size: 24px; }
  .book__done-actions .btn { width: 100%; }
}

@media (max-width: 479px) {
  .features__grid, .stats__grid, .cat-grid { grid-template-columns: 1fr; }
  .hero__line { font-size: 32px; line-height: 39px; }
  .hero__script { font-size: 42px; }
}

/* ── Motion preferences ───────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
