/* =====================================================================
   CINDER — Live-Fire Steakhouse
   Dark & dramatic · warm blacks · ember · seared gold
   Typography scale tuned for readability (larger, less tracking).
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Surfaces */
  --bg:          #0b0a09;   /* warm near-black */
  --bg-2:        #100e0c;   /* alt section */
  --surface:     #17130f;

  /* Text */
  --text:        #f7f2ea;   /* bone */
  --text-dim:    #cabfae;   /* warm secondary (readable) */
  --text-faint:  #9a9082;   /* tertiary / meta */

  /* Lines */
  --line:        rgba(247, 242, 234, 0.12);
  --line-strong: rgba(247, 242, 234, 0.22);

  /* Accents */
  --ember:       #e2571e;
  --ember-2:     #ff7a37;
  --gold:        #cfa963;   /* seared gold (slightly brighter for legibility) */
  --gold-2:      #e6c581;
  --gold-ink:    #1a1206;

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Fluid type scale */
  --fs-eyebrow: 0.9rem;
  --fs-label:   0.95rem;
  --fs-body:    1.125rem;                        /* 18px */
  --fs-lead:    clamp(1.3rem, 1.6vw + 0.9rem, 1.75rem);
  --fs-h3:      clamp(1.45rem, 1.2vw + 1.1rem, 1.95rem);
  --fs-h2:      clamp(2.5rem, 4vw + 1rem, 4.25rem);
  --fs-display: clamp(4rem, 13vw, 10rem);

  /* Spacing scale (4/8 rhythm) */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;

  --radius: 2px;
  --nav-h: 82px;

  --ease: cubic-bezier(0.22, 0.7, 0.2, 1);
  --shadow-lg: 0 40px 80px -30px rgba(0, 0, 0, 0.85);

  /* z-index scale */
  --z-grain: 2;
  --z-nav: 100;
  --z-menu: 120;
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--gold-ink); }

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

/* Fine film-grain overlay for cinematic texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--gold-ink);
  padding: 12px 22px;
  border-radius: var(--radius);
  font: 600 0.95rem/1 var(--font-body);
  z-index: 999;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Layout helpers ---------- */
.wrap {
  /* Fluid side gutter: scales continuously with the browser width,
     never a fixed value. Floors at 24px on phones, grows with 6vw. */
  --gutter: clamp(24px, 6vw, 160px);
  width: min(1680px, 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.section {
  /* Less top padding so the heading sits higher — near the reader's eye
     level when the section scrolls in — with generous bottom separation. */
  padding-top: clamp(52px, 7vw, 96px);
  padding-bottom: clamp(88px, 13vw, 168px);
}
.section:nth-of-type(even) { background: var(--bg-2); }

section[id] { scroll-margin-top: 92px; }

/* ---------- Shared type components ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  font: 600 var(--fs-eyebrow)/1.2 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: currentColor;
  opacity: 0.8;
  flex: none;
}
.eyebrow--light { color: var(--gold-2); }

.h-section {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin-top: var(--sp-5);
}
.h-section em { font-style: italic; color: var(--gold-2); }

.section__head { max-width: 40ch; margin-bottom: clamp(48px, 7vw, 88px); }
.section__sub {
  color: var(--text-dim);
  margin-top: var(--sp-5);
  max-width: 48ch;
  font-size: var(--fs-lead);
  line-height: 1.5;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65em;
  min-height: 56px;
  padding: 17px 36px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: 600 0.95rem/1 var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), box-shadow 0.3s var(--ease),
              transform 0.25s var(--ease);
}
.btn .icon { width: 20px; height: 20px; }

.btn--primary {
  background: var(--gold);
  color: var(--gold-ink);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -10px rgba(226, 87, 30, 0.6),
              0 0 0 1px rgba(230, 197, 129, 0.35);
}

.btn--ghost {
  background: rgba(11, 10, 9, 0.25);
  color: var(--text);
  border-color: var(--line-strong);
  backdrop-filter: blur(2px);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  transform: translateY(-2px);
}

.btn--sm { min-height: 46px; padding: 12px 22px; font-size: 0.85rem; }
.btn--lg { min-height: 62px; padding: 21px 46px; font-size: 1.02rem; }

.icon {
  width: 22px; height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  transition: background 0.35s var(--ease), height 0.35s var(--ease),
              border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  height: 100%;
}
.nav.scrolled {
  height: 66px;
  background: rgba(11, 10, 9, 0.85);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
}
.brand:hover { color: var(--gold-2); }

.nav__links {
  display: flex;
  gap: var(--sp-7);
  margin-left: auto;
  margin-right: var(--sp-7);
}
.nav__links a {
  font: 500 1rem/1 var(--font-body);
  letter-spacing: 0.06em;
  color: var(--text-dim);
  position: relative;
  padding: 8px 0;
  transition: color 0.25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: var(--sp-4); }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
}
.nav__toggle .icon { width: 30px; height: 30px; }

/* ---------- Mobile menu ---------- */
.navmenu {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-7);
  background: rgba(9, 8, 7, 0.98);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.navmenu.open { opacity: 1; visibility: visible; }

.navmenu__close {
  position: absolute;
  top: 20px; right: clamp(18px, 5vw, 44px);
  background: none; border: 0; color: var(--text);
  cursor: pointer; padding: 10px;
  min-width: 48px; min-height: 48px;
}
.navmenu__close .icon { width: 32px; height: 32px; }

.navmenu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}
.navmenu__links a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 3rem);
  font-weight: 500;
  color: var(--text);
  transition: color 0.25s var(--ease);
}
.navmenu__links a:last-child { color: var(--gold-2); }
.navmenu__links a:hover { color: var(--gold-2); }

.navmenu__meta {
  position: absolute;
  bottom: 40px;
  font: 500 0.95rem/1 var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  top: -7%; left: 0; right: 0;
  height: 114%;
  z-index: 0;
  will-change: transform;
}
.hero__media img,
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}
.hero__media img { animation: kenburns 22s var(--ease) forwards; }
.hero__video { background: var(--bg); }
@keyframes kenburns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.12); }
}

.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(11,10,9,0.6) 0%, rgba(11,10,9,0) 24%),
    linear-gradient(to top, rgba(11,10,9,0.95) 0%, rgba(11,10,9,0.55) 34%, rgba(11,10,9,0.1) 70%),
    linear-gradient(to right, rgba(11,10,9,0.7) 0%, rgba(11,10,9,0.1) 62%);
}
.hero__glow {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(60% 45% at 50% 92%, rgba(226,87,30,0.26), transparent 70%);
  mix-blend-mode: screen;
  animation: flicker 7s ease-in-out infinite;
}
@keyframes flicker {
  0%, 100% { opacity: 0.75; }
  50%      { opacity: 1; }
}

.hero__inner {
  position: relative;
  z-index: 2;
  /* Centred vertically, biased slightly up so the text sits at eye level.
     Larger bottom padding lifts the block above the true centre; top
     padding clears the fixed nav on short screens. */
  padding-top: var(--nav-h);
  padding-bottom: clamp(80px, 14vh, 160px);
}
.hero__eyebrow {
  margin-bottom: var(--sp-5);
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-display);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 8px 40px rgba(0,0,0,0.55);
}
.hero__tagline {
  margin-top: var(--sp-5);
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.6rem, 2.2vw + 1rem, 2.6rem);
  line-height: 1.15;
  color: var(--text);
  max-width: 22ch;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.hero__lead {
  margin-top: var(--sp-5);
  max-width: 46ch;
  font-size: clamp(1.15rem, 0.6vw + 1rem, 1.35rem);
  line-height: 1.6;
  color: var(--text-dim);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.6);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font: 600 0.78rem/1 var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
}
.hero__scroll .icon { width: 20px; height: 20px; animation: bob 2.2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- Menu ---------- */
.menu__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 56px) clamp(48px, 7vw, 96px);
}
.dish { position: relative; }
.dish__tag {
  display: inline-block;
  font: 600 0.8rem/1 var(--font-body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}
.dish__head {
  display: flex;
  align-items: baseline;
  gap: 0;
}
.dish__name {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.2;
}
.dish__leader {
  flex: 1;
  margin: 0 14px;
  border-bottom: 1px dotted var(--line-strong);
  transform: translateY(-6px);
}
.dish__price {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--gold-2);
  font-variant-numeric: tabular-nums;
}
.dish__desc {
  color: var(--text-dim);
  margin-top: var(--sp-3);
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 44ch;
}
.dish__meta {
  display: inline-block;
  margin-top: var(--sp-3);
  font: 500 0.85rem/1 var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.menu__note {
  margin-top: clamp(52px, 7vw, 88px);
  color: var(--text-dim);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
}

/* ---------- Story ---------- */
.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.story__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.story__media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 120px rgba(226,87,30,0.15);
  pointer-events: none;
}
.story__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  will-change: transform;
}
.story__body p {
  color: var(--text-dim);
  margin-top: var(--sp-5);
  max-width: 56ch;
  font-size: 1.15rem;
  line-height: 1.75;
}
.story__sign {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text) !important;
  font-size: 1.4rem !important;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 56px);
  margin-top: var(--sp-8);
  padding-top: var(--sp-7);
  border-top: 1px solid var(--line);
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3vw + 1rem, 3rem);
  font-weight: 600;
  color: var(--gold-2);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  margin-top: var(--sp-3);
  font: 500 0.85rem/1 var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- Experience (hover slider) ---------- */
/* Tighter gap between the section heading and the slider block */
.experience .section__head { margin-bottom: clamp(24px, 3vw, 40px); }
.hslider {
  margin-top: clamp(16px, 2vw, 28px);
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(40px, 6vw, 80px);
}
@media (min-width: 940px) {
  /* Text 1.15fr / image 0.85fr — mirrors the Story grid so the image
     renders at the same width & 4:5 ratio as the Story photo. */
  .hslider { grid-template-columns: 1.15fr 0.85fr; }
}
.hslider__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vw, 14px);
}
.hs-title {
  display: inline-block;   /* only as wide as the text — hover the words, not the empty row */
  width: fit-content;
  background: none;
  border: 0;
  padding: 6px 0;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 1.6vw + 1.4rem, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: left;
  color: var(--text);        /* readable fallback if JS is disabled */
  cursor: pointer;
}
/* Per-character stagger reveal (structure built by JS) */
.hs-char { position: relative; display: inline-block; overflow: hidden; vertical-align: top; }
.hs-char__dim {
  display: inline-block;
  color: var(--text);
  opacity: 0.2;
  transition: transform 0.5s var(--ease);
  transition-delay: var(--d, 0ms);
}
.hs-char__bright {
  position: absolute;
  left: 0; top: 0;
  display: inline-block;
  color: var(--gold-2);
  transform: translateY(110%);
  transition: transform 0.5s var(--ease);
  transition-delay: var(--d, 0ms);
}
.hs-title.is-active .hs-char__dim { transform: translateY(-110%); }
.hs-title.is-active .hs-char__bright { transform: translateY(0%); }

.hslider__media {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}
.hslider__media > * { grid-area: 1 / 1; }
.hs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transform: scale(1.06);
  /* Reveals immediately on hover (fast ease-out start), then settles gently */
  transition: clip-path 1s cubic-bezier(0.65, 1, 0.35, 1),
              transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.hs-img.is-active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: scale(1);
}

@media (max-width: 939px) {
  .hslider__media { order: -1; }
}

/* ---------- Reserve band ---------- */
.reserve {
  position: relative;
  overflow: hidden;
}
.reserve__media { position: absolute; inset: 0; z-index: 0; }
.reserve__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.reserve__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(70% 60% at 50% 50%, rgba(226,87,30,0.16), transparent 70%),
    linear-gradient(to bottom, rgba(9,8,7,0.88), rgba(9,8,7,0.8));
}
/* Pulsing heat glow rising from the bottom */
.reserve__glow {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background: radial-gradient(65% 55% at 50% 108%,
    rgba(255,120,45,0.42), rgba(226,87,30,0.14) 42%, transparent 70%);
  mix-blend-mode: screen;
  animation: reserve-glow 6.5s ease-in-out infinite;
}
@keyframes reserve-glow {
  0%, 100% { opacity: 0.6;  transform: translateY(0) scale(1); }
  50%      { opacity: 1;    transform: translateY(-2%) scale(1.05); }
}
/* Rising ember particles (drawn by JS) */
.reserve__embers {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  pointer-events: none;
}
.reserve__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(100px, 15vw, 180px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.reserve__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 5vw + 1rem, 4.75rem);
  line-height: 1.04;
  margin-top: var(--sp-5);
}
.reserve__sub {
  margin-top: var(--sp-5);
  max-width: 52ch;
  color: var(--text-dim);
  font-size: var(--fs-lead);
  line-height: 1.55;
}
.reserve__cta {
  margin-top: var(--sp-8);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: var(--sp-6);
}
.reserve__phone {
  font: 500 1rem/1 var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 5px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.reserve__phone:hover { color: var(--gold-2); border-color: var(--gold); }

/* ---------- Visit ---------- */
.visit__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 64px);
}
.visit__label {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font: 600 0.95rem/1 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: var(--sp-4);
  margin-bottom: var(--sp-5);
  border-bottom: 1px solid var(--line);
}
.visit__label .icon { width: 24px; height: 24px; color: var(--gold); }
.visit__lines { color: var(--text-dim); font-size: 1.2rem; line-height: 1.7; }
.visit__row {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-5);
  padding: 5px 0;
}
.visit__row--muted { color: var(--text-faint); }
.visit__inline {
  transition: color 0.25s var(--ease);
  border-bottom: 1px solid transparent;
}
.visit__inline:hover { color: var(--gold-2); border-bottom-color: var(--gold); }
.visit__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  margin-top: var(--sp-5);
  font: 600 0.92rem/1 var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-2);
  transition: gap 0.25s var(--ease);
}
.visit__link .icon { width: 18px; height: 18px; }
.visit__link:hover { gap: 0.7em; }

/* ---------- Footer ---------- */
.footer { padding-block: clamp(56px, 8vw, 88px) var(--sp-8); border-top: 1px solid var(--line); }
.footer__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding-bottom: var(--sp-7);
}
.brand--footer { font-size: 1.85rem; color: var(--text); }
.footer__tag {
  margin-top: var(--sp-3);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--text-faint);
}
.footer__links { display: flex; flex-wrap: wrap; gap: var(--sp-7); }
.footer__links a {
  font: 500 0.95rem/1 var(--font-body);
  letter-spacing: 0.08em;
  color: var(--text-dim);
  transition: color 0.25s var(--ease);
}
.footer__links a:hover { color: var(--gold-2); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-top: var(--sp-7);
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--text-faint);
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (min-width: 760px) {
  .menu__list { grid-template-columns: 1fr 1fr; }
  .visit__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 940px) {
  .story__grid { grid-template-columns: 0.85fr 1.15fr; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__reserve { display: none; }
}

@media (max-width: 520px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
}

/* Landscape short screens: relax full-height hero */
@media (max-height: 560px) and (orientation: landscape) {
  .hero { min-height: 640px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__media img { animation: none; transform: none; }
  .hero__media { top: 0; height: 100%; }
}
