/* =========================================================
   0.75 please — Moscow
   Editorial, cinematic, premium.
========================================================= */

:root {
  /* Brand palette pulled from the logo (warm camel + soft cream + ink) */
  --cream:     #ece1cd;       /* primary light bg */
  --cream-2:   #f4ead9;       /* slightly brighter */
  --bone:      #e6d6c1;       /* warm bg block */
  --camel:     #b88b6e;       /* logo background */
  --camel-dk:  #8a6347;
  --ink:       #15110d;       /* near-black */
  --ink-2:     #2a221b;
  --line:      rgba(21, 17, 13, 0.14);
  --line-soft: rgba(21, 17, 13, 0.08);
  --muted:     #6b5e4f;
  --gold:      #c8a36a;
  --wine:      #5a1a1a;

  /* Type stack */
  --display: "Bodoni Moda", "Times New Roman", serif;
  --serif:   "Cormorant Garamond", "Times New Roman", serif;
  --script:  "Italianno", cursive;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1440px;
  --pad: clamp(20px, 4vw, 64px);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
em { font-style: italic; }

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.muted { color: var(--muted); }

/* ---- Grain overlay (paper texture) ---- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* =========================================================
   HEADER
========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
  padding: 14px 0;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header-pad {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; height: 48px; color: var(--ink); }
.brand-img {
  height: 48px;
  width: auto;
  mix-blend-mode: multiply;
  transition: opacity 0.25s ease;
}
.site-header.scrolled .brand-img { height: 40px; }
.brand:hover .brand-img { opacity: 0.7; }

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 40px);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.nav a {
  position: relative;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s ease;
}
.nav a .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--camel-dk);
  text-transform: none;
  font-weight: 400;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(.65,.05,.36,1);
}
.nav a:hover::after { transform: scaleX(1); }

.header-right { display: flex; align-items: center; gap: 20px; justify-self: end; }

.status-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--cream) 70%, transparent);
}
.status-pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #c44; box-shadow: 0 0 0 0 rgba(196,68,68, .5);
}
.status-pill.open .dot {
  background: #3b8f5a;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59, 143, 90, 0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(59, 143, 90, 0); }
}

.lang-switch { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: 0.18em; }
.lang-btn { padding: 4px 2px; color: var(--muted); transition: color 0.2s ease; }
.lang-btn.active { color: var(--ink); }
.lang-divider { color: var(--muted); }

@media (max-width: 980px) {
  .nav { display: none; }
  .header-pad { grid-template-columns: auto 1fr; }
  .header-right { gap: 12px; }
  .status-pill { padding: 6px 10px; font-size: 10px; }
}

/* =========================================================
   HERO
========================================================= */
.hero {
  min-height: 100vh;
  padding: 140px 0 60px;
  display: flex;
  align-items: stretch;
}
.hero-grid {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "meta  aside"
    "logo  aside"
    "bottom bottom";
  gap: clamp(20px, 4vw, 60px);
  position: relative;
}
.hero-meta {
  grid-area: meta;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.meta-block { display: inline-flex; align-items: center; gap: 10px; }
.meta-block .sep { opacity: 0.4; }
.dot-tag {
  width: 8px; height: 8px; background: var(--ink); border-radius: 50%;
  animation: pulse2 3s ease-in-out infinite;
}
@keyframes pulse2 { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-logo {
  grid-area: logo;
  display: flex;
  align-items: center;
  color: var(--ink);
  position: relative;
}
.hero-logo img {
  width: clamp(260px, 85%, 520px);
  height: auto;
  max-height: 76vh;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.hero-aside {
  grid-area: aside;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.hero-figure {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  background: var(--bone);
}
.hero-img {
  position: absolute; inset: -8% -2%;
  background-image: var(--photo, none),
    radial-gradient(ellipse at 25% 20%, rgba(184, 139, 110, 0.55), transparent 60%),
    radial-gradient(ellipse at 75% 85%, rgba(90, 26, 26, 0.35), transparent 60%),
    linear-gradient(140deg, #d9c0a3 0%, #b88b6e 55%, #6b4a33 100%);
  background-size: cover, cover, cover, cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 1.2s ease;
}
.hero-img::before {
  content: "0.75";
  position: absolute;
  bottom: 8%;
  right: 10%;
  font-family: var(--display);
  font-size: 96px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: rgba(21, 17, 13, 0.08);
  pointer-events: none;
}
.hero-figure:hover .hero-img { transform: scale(1.04); }
.hero-figure figcaption {
  position: absolute;
  bottom: 14px; left: 16px; right: 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  display: flex; gap: 10px; align-items: baseline;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
}
.hero-figure .cap-num {
  font-family: var(--display); font-style: italic;
  text-transform: none; letter-spacing: 0;
  color: var(--gold);
}

.hero-bottom {
  grid-area: bottom;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.big-cta {
  display: inline-flex; align-items: center; gap: 18px;
  font-family: var(--display);
  font-size: clamp(28px, 3.8vw, 44px);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
  transition: gap 0.4s ease;
}
.big-cta::after {
  content: ""; position: absolute; left: 0; right: 56px; bottom: 6px;
  height: 1px; background: var(--ink); transform-origin: right;
  transform: scaleX(0); transition: transform 0.6s cubic-bezier(.65,.05,.36,1);
}
.big-cta:hover { gap: 28px; }
.big-cta:hover::after { transform-origin: left; transform: scaleX(1); }
.cta-arrow svg { display: block; }

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--muted);
  max-width: 32ch;
  text-align: right;
}

@media (max-width: 860px) {
  .hero { padding-top: 110px; }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "meta"
      "logo"
      "aside"
      "bottom";
  }
  .hero-aside { justify-content: flex-start; }
  .hero-figure { max-width: 100%; aspect-ratio: 4 / 5; }
  .hero-tagline { text-align: left; }
}

/* =========================================================
   MANIFESTO
========================================================= */
.manifesto { padding: clamp(100px, 14vw, 180px) 0; background: var(--cream); }
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(20px, 4vw, 80px);
  align-items: start;
}
.m-eyebrow {
  grid-column: 1 / 2;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}
.m-eyebrow.light { color: rgba(236, 225, 205, 0.7); }
.num-mark { color: var(--camel-dk); font-family: var(--display); font-style: italic; }
.gallery .num-mark,
.hours .num-mark { color: var(--camel); }
.m-title {
  grid-column: 2 / 3;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.m-title em {
  font-style: italic;
  color: var(--camel-dk);
  display: block;
}
.m-body {
  grid-column: 2 / 3;
  margin-top: 40px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 36ch;
}
.m-body-small {
  font-family: var(--serif);
  font-style: normal;
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--muted);
  margin-top: 18px;
  letter-spacing: 0;
}

@media (max-width: 820px) {
  .manifesto-grid { grid-template-columns: 1fr; }
  .m-title, .m-body, .m-signature, .m-eyebrow { grid-column: 1; }
}

/* =========================================================
   CHAPTERS
========================================================= */
.chapters { background: var(--cream); padding-bottom: clamp(80px, 10vw, 140px); }
.chapter { padding: clamp(80px, 10vw, 140px) 0; border-top: 1px solid var(--line); }
.chapter-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
.chapter-text { padding-top: 12px; max-width: 56ch; }
.ch-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: clamp(24px, 3vw, 36px);
}
.ch-eyebrow .rule {
  display: inline-block;
  width: 38px;
  height: 1px;
  background: var(--camel-dk);
}
.ch-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.ch-body {
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 50ch;
}
.ch-list {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.ch-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  position: relative;
  padding-left: 28px;
}
.ch-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 22px;
  width: 16px; height: 1px;
  background: var(--camel-dk);
}
.chapter-image { position: relative; }
.ch-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background-image: var(--photo, none),
    radial-gradient(ellipse at 30% 25%, rgba(216, 192, 162, 0.7), transparent 60%),
    radial-gradient(ellipse at 75% 80%, rgba(138, 99, 71, 0.5), transparent 60%),
    linear-gradient(135deg, #e8d3b8 0%, #c8a584 60%, #8a6347 100%);
  background-size: cover, cover, cover, cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 1.2s ease;
  overflow: hidden;
}
.ch-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(21,17,13,0.1) 100%);
  pointer-events: none;
}
.ch-img::after {
  content: "0.75 please";
  position: absolute;
  bottom: 22px; left: 22px;
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: rgba(21, 17, 13, 0.18);
  letter-spacing: 0.02em;
  pointer-events: none;
}
.chapter-image:hover .ch-img { transform: scale(1.02); }

.chapter-alt .chapter-grid { grid-template-columns: 1fr 1.15fr; }
.chapter-alt .chapter-image { order: 1; }
.chapter-alt .chapter-text { order: 2; justify-self: end; }

@media (max-width: 980px) {
  .chapter-grid,
  .chapter-alt .chapter-grid { grid-template-columns: 1fr; }
  .chapter-alt .chapter-image { order: 2; }
  .chapter-alt .chapter-text { order: 1; justify-self: start; }
}

/* =========================================================
   GALLERY (dark, full-bleed)
========================================================= */
.gallery {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(100px, 12vw, 160px) 0 0;
}
.gallery-head { margin-bottom: clamp(40px, 6vw, 80px); }
.g-title {
  margin-top: 18px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.g-title em {
  font-style: italic;
  color: var(--camel);
  margin-left: 0.4em;
}
.gallery-bleed {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 24vw;
  gap: 4px;
}
.gb { position: relative; overflow: hidden; background: #111; }
.gb-1 { grid-column: 1 / 4; grid-row: span 2; }
.gb-2 { grid-column: 4 / 7; grid-row: span 1; }
.gb-3 { grid-column: 4 / 6; grid-row: span 1; }
.gb-4 { grid-column: 6 / 7; grid-row: span 1; }
.gb-img {
  position: absolute; inset: -6% -2%;
  background-image: var(--photo, none),
    radial-gradient(ellipse at 20% 25%, rgba(184, 139, 110, 0.45), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(90, 26, 26, 0.35), transparent 60%),
    linear-gradient(135deg, #3a2618 0%, #1f150e 50%, #15110d 100%);
  background-size: cover, cover, cover, cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 1.4s ease;
}
.gb-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
.gb-img::after {
  content: "0.75 please · Moscow";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(14px, 1.4vw, 22px);
  color: rgba(236, 225, 205, 0.12);
  letter-spacing: 0.06em;
  white-space: nowrap;
  pointer-events: none;
}
.gb-2 .gb-img { filter: hue-rotate(-8deg) brightness(0.92); }
.gb-3 .gb-img { filter: hue-rotate(6deg) brightness(0.96); }
.gb-4 .gb-img { filter: brightness(0.88) saturate(1.1); }
.gb:hover .gb-img { transform: scale(1.05); }
.gb figcaption {
  position: absolute;
  left: 16px; bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.gb figcaption em {
  font-family: var(--display); font-style: italic;
  color: var(--gold);
  text-transform: none; letter-spacing: 0;
  margin-right: 6px;
}

/* Mask reveal — fail-safe: visible by default, .in is a no-op marker */
.reveal-mask { opacity: 1; transition: opacity 0.8s ease; }
.reveal-mask.in { opacity: 1; }

@media (max-width: 860px) {
  .gallery-bleed { grid-auto-rows: 60vw; }
  .gb-1 { grid-column: 1 / 7; grid-row: span 1; }
  .gb-2 { grid-column: 1 / 7; }
  .gb-3 { grid-column: 1 / 4; }
  .gb-4 { grid-column: 4 / 7; }
}

/* =========================================================
   HOURS
========================================================= */
.hours {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(100px, 12vw, 160px) 0;
}
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.hours .m-eyebrow { color: rgba(236, 225, 205, 0.6); }
.hours .num-mark { color: var(--camel); }
.h-title {
  margin-top: 16px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 110px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.h-title em { font-style: italic; color: var(--camel); }
.h-note {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  color: rgba(236, 225, 205, 0.7);
  max-width: 44ch;
}

.schedule { width: 100%; border-collapse: collapse; }
.schedule tr { border-bottom: 1px solid rgba(236, 225, 205, 0.14); }
.schedule tr:first-child { border-top: 1px solid rgba(236, 225, 205, 0.14); }
.schedule th, .schedule td {
  padding: 22px 0;
  text-align: left;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.3vw, 30px);
  letter-spacing: 0;
}
.schedule td { text-align: right; color: var(--camel); font-feature-settings: "tnum"; }
.schedule .muted { color: rgba(236, 225, 205, 0.4); font-style: italic; font-size: 0.85em; }
.schedule .hl th, .schedule .hl td { color: var(--cream); }
.schedule .hl td { color: var(--gold); }
.schedule .hl { position: relative; }
.schedule .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.6;
}

@media (max-width: 820px) {
  .hours-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   RESERVE
========================================================= */
.reserve {
  background: var(--bone);
  padding: clamp(110px, 14vw, 200px) 0;
  position: relative;
  overflow: hidden;
}
.reserve::before {
  content: "0.75";
  position: absolute;
  right: -6vw; bottom: -18vw;
  font-family: var(--display);
  font-size: 50vw;
  line-height: 1;
  color: rgba(21, 17, 13, 0.04);
  font-weight: 500;
  letter-spacing: -0.05em;
  pointer-events: none;
}
.reserve-inner { position: relative; z-index: 1; }
.r-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--camel-dk);
  display: flex; align-items: center; gap: 10px;
}
.r-title {
  margin-top: 18px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 124px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 14ch;
}
.r-title em.script {
  font-family: var(--script);
  font-style: normal;
  color: var(--camel-dk);
  font-size: 1.15em;
  line-height: 0.85;
  margin-left: 0.1em;
}
.r-lead {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--ink-2);
  max-width: 48ch;
}

.reserve-buttons {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.rbtn {
  position: relative;
  display: flex; flex-direction: column;
  gap: 6px;
  padding: 28px 32px;
  border: 1px solid var(--ink);
  background: var(--cream);
  transition: background 0.3s ease, color 0.3s ease, transform 0.4s ease;
  overflow: hidden;
}
.rbtn::before {
  content: ""; position: absolute; inset: 0;
  background: var(--ink); transform-origin: bottom; transform: scaleY(0);
  transition: transform 0.5s cubic-bezier(.65,.05,.36,1); z-index: 0;
}
.rbtn:hover::before { transform-origin: top; transform: scaleY(1); }
.rbtn:hover { color: var(--cream); }
.rbtn > * { position: relative; z-index: 1; }
.rbtn.primary { background: var(--ink); color: var(--cream); }
.rbtn.primary::before { background: var(--camel); transform: scaleY(0); }
.rbtn.primary:hover::before { transform: scaleY(1); }
.rbtn.primary:hover { color: var(--ink); }

.rbtn-label {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.01em;
}
.rbtn-num { font-size: 12px; letter-spacing: 0.18em; opacity: 0.6; }
.rbtn-arrow {
  position: absolute; top: 24px; right: 24px;
  transition: transform 0.4s ease;
  z-index: 1;
}
.rbtn:hover .rbtn-arrow { transform: translate(4px, -4px); }

.reserve-foot {
  margin-top: 80px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.rf-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.rf-val { font-family: var(--display); font-size: 18px; font-style: italic; }
.rf-val.muted { font-size: 13px; font-style: normal; color: var(--muted); }

@media (max-width: 820px) {
  .reserve-buttons { grid-template-columns: 1fr; }
  .reserve-foot { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.footer-logo { color: var(--cream); }
.footer-logo img {
  width: 240px;
  height: auto;
  filter: invert(1);
  mix-blend-mode: screen;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.fc-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(236, 225, 205, 0.5);
  margin-bottom: 14px;
}
.footer-cols a, .footer-cols span {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  padding: 2px 0;
  color: var(--cream);
  transition: color 0.25s ease;
}
.footer-cols a:hover { color: var(--camel); }

.footer-meta {
  grid-column: 1 / -1;
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(236, 225, 205, 0.14);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(236, 225, 205, 0.4);
}

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   REVEAL ANIMATIONS
========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.65,.05,.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   FLOATING RESERVE PILL
========================================================= */
.floating-reserve {
  position: fixed;
  bottom: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px 16px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 18px);
  letter-spacing: 0.01em;
  box-shadow: 0 10px 40px rgba(21, 17, 13, 0.25), 0 2px 8px rgba(21, 17, 13, 0.15);
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(.65,.05,.36,1),
              transform 0.5s cubic-bezier(.65,.05,.36,1),
              background 0.3s ease,
              color 0.3s ease;
}
.floating-reserve.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.floating-reserve:hover {
  background: var(--camel);
  color: var(--ink);
}
.fr-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--camel);
  box-shadow: 0 0 0 0 rgba(184, 139, 110, 0.6);
  animation: fr-pulse 2.4s ease-in-out infinite;
}
.floating-reserve:hover .fr-dot { background: var(--ink); animation: none; }
@keyframes fr-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 139, 110, 0.7); }
  50%      { box-shadow: 0 0 0 8px rgba(184, 139, 110, 0); }
}
.fr-arrow { display: inline-flex; transition: transform 0.4s ease; }
.floating-reserve:hover .fr-arrow { transform: translateX(4px); }

@media (max-width: 600px) {
  .fr-label { display: none; }
  .floating-reserve { padding: 14px; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-mask { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}
