/* ============================================================
   THE CONTENT PLUG — Editorial Luxury
   ============================================================ */

:root {
  /* Color — pure B&W brand. Gold reserved for the review stars only. */
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --moss-deep: #0f0f0f;
  --moss: #1f1f1f;
  --moss-mid: #2a2a2a;
  --moss-soft: #4a4a4a;
  --cream: #f7f5f0;
  --cream-warm: #ede9e0;
  --ivory: #fafaf6;
  --paper: #efeae0;
  --gold: #c7a565;
  --gold-soft: #e8e3d4;
  --rust: #6a6a6a;
  --line: rgba(10, 10, 10, 0.12);
  --line-soft: rgba(10, 10, 10, 0.06);

  /* Type */
  --display: "Fraunces", "Times New Roman", serif;
  --body: "Manrope", system-ui, sans-serif;
  --mono: "JetBrains Mono", "Courier New", monospace;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --reveal-dur: 1.2s;

  /* Layout */
  --pad-x: clamp(24px, 5vw, 80px);
  --pad-y: clamp(80px, 12vw, 160px);
  --max: 1480px;
}

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

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--moss); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--moss-deep); }

/* ---------- UTILITY ---------- */
.micro {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--ink);
  display: inline-block;
}
.micro--soft { color: rgba(20, 23, 15, 0.5); }
.italic { font-family: var(--display); font-style: italic; font-weight: 400; }

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: clip-path 1.4s var(--ease-in-out);
  clip-path: inset(0 0 0 0);
}
.loader.done { clip-path: inset(100% 0 0 0); }

.loader__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.loader__brand {
  font-family: var(--display);
  font-style: italic;
  line-height: 0.92;
  color: var(--ink);
  position: relative;
}
.loader__the {
  display: block;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 400;
  margin-bottom: -6px;
  margin-left: -28%;
}
.loader__line {
  display: block;
  font-size: clamp(56px, 10vw, 88px);
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.03em;
}
.loader__plug {
  font-style: italic;
  font-weight: 400;
}
.loader__progress {
  width: 200px;
  height: 1px;
  background: rgba(20, 23, 15, 0.15);
  overflow: hidden;
}
.loader__progress i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--ink);
  transition: width 0.2s linear;
}
.loader__count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.loader__count em { font-style: normal; opacity: 0.5; margin-left: 2px; }

/* ============================================================
   CURSOR GLOW
   ============================================================ */
.cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 245, 240, 0.06), transparent 65%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
  opacity: 0;
}
@media (hover: hover) {
  .cursor-glow { opacity: 1; }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 95;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
  text-decoration: none;
  transition: transform 0.5s var(--ease-out);
}
.wa-float:hover { transform: translateY(-3px); }

.wa-float__circle {
  position: relative;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 18px 40px -12px rgba(37, 211, 102, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.25);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  flex-shrink: 0;
}
.wa-float:hover .wa-float__circle {
  background: #1ebe5b;
  box-shadow:
    0 22px 50px -12px rgba(37, 211, 102, 0.6),
    0 4px 12px rgba(0, 0, 0, 0.3);
}
.wa-float__circle svg {
  width: 30px;
  height: 30px;
  transition: transform 0.5s var(--ease-out);
}
.wa-float:hover .wa-float__circle svg { transform: rotate(-6deg) scale(1.05); }

.wa-float__circle::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid #25d366;
  opacity: 0.6;
  animation: waPulse 2.8s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(0.92); opacity: 0.55; }
  80%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.wa-float__label {
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 14px;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(14px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  order: -1;
  position: relative;
}
.wa-float__label::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--ink);
  border-radius: 2px;
}
.wa-float__label span {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.wa-float__label em {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--cream-warm);
  margin-top: 2px;
}
.wa-float:hover .wa-float__label {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 700px) {
  .wa-float { bottom: 20px; right: 20px; }
  .wa-float__circle { width: 52px; height: 52px; }
  .wa-float__circle svg { width: 24px; height: 24px; }
  .wa-float__label { display: none; }
}

/* ============================================================
   SIDE RAILS
   ============================================================ */
.rail {
  position: fixed;
  top: 50%;
  z-index: 50;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  mix-blend-mode: difference;
  color: var(--cream);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.rail.is-hidden { opacity: 0; }
.rail--left { left: 24px; transform: translateY(-50%) rotate(-90deg); transform-origin: left center; }
.rail--right { right: 24px; transform: translateY(-50%) rotate(90deg); transform-origin: right center; }
@media (max-width: 900px) { .rail { display: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--pad-x);
  height: 104px;
  /* Grid: [spacer] [left-menu] [right-menu] [CTA]
     The pseudo-element in column 1 mirrors the CTA's width so the two
     1fr menu columns balance around true page center. Brand is
     absolute-positioned so the CTA can't skew it off center either. */
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  align-items: center;
  gap: 32px;
  transition: background 0.4s ease, height 0.4s ease, backdrop-filter 0.4s ease;
}
.nav::before {
  content: "";
  display: block;
  min-width: 163px;   /* ≈ width of "BOOK A DATE →" CTA */
  visibility: hidden;
}
.nav.scrolled {
  background: rgba(250, 250, 246, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 78px;
  border-bottom: 1px solid var(--line-soft);
}
/* Logo is decoupled from the nav bar height — it can be taller than the bar,
   vertically centered on the nav-link line so it reads as one unit with the
   links. Nav links stay a fixed 11px, unaffected. */
.nav__brand {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 140px;
  display: flex;
  align-items: center;
  transition: height 0.4s ease, transform 0.4s var(--ease-out), opacity 0.3s ease;
  overflow: visible;
  pointer-events: auto;
}
.nav__brand:hover { transform: translate(-50%, -50%) scale(0.96); }
.nav.scrolled .nav__brand {
  height: 108px;
}
.nav__brand img {
  height: 100%;
  width: auto;
  display: block;
  /* At the top the nav floats over the dark hero → render the logo white.
     brightness(0) invert(1) turns the (background-removed) logo pure white. */
  filter: url(#hide-white) brightness(0) invert(1);
  transition: filter 0.4s ease;
}
/* Once scrolled onto the light background, switch the logo back to dark. */
.nav.scrolled .nav__brand img {
  filter: url(#hide-white);
}
.nav__menu {
  display: flex;
  gap: 32px;
}
/* The logo is absolutely positioned and sits ~100px on each side of page
   center. Push each menu that far away from the shared column edge so the
   menu links can't collide with the logo. */
.nav__menu--left  { justify-self: end;   margin-right: 100px; }
.nav__menu--right { justify-self: start; margin-left:  100px; }
.nav__menu a {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  position: relative;
  padding: 8px 0;
  overflow: hidden;
  display: inline-block;
  /* Light over the dark hero at the top... */
  color: var(--cream);
  transition: color 0.4s ease;
}
/* ...dark once the nav gains its light background on scroll. */
.nav.scrolled .nav__menu a { color: var(--ink); }
.nav__menu a span {
  display: inline-block;
  transition: transform 0.5s var(--ease-in-out);
}
.nav__menu a::after {
  content: attr(data-text);
}
.nav__menu a::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.5s var(--ease-in-out);
}
.nav__menu a:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}

@media (max-width: 1100px) {
  .nav__menu { display: none; }
  .nav { grid-template-columns: 1fr auto; gap: 16px; }
  .nav::before { display: none; }   /* no menus to balance on mobile */
  /* Mobile: anchor the logo to the left edge, still vertically centered. */
  .nav__brand { left: var(--pad-x); top: 50%; transform: translateY(-50%); }
  .nav__brand:hover { transform: translateY(-50%) scale(0.96); }
}

.nav__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  border-radius: 999px;
  transition: background 0.4s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.nav__cta:hover { background: var(--moss-deep); }
.nav__cta-arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease-out);
}
.nav__cta:hover .nav__cta-arrow { transform: translateX(4px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  white-space: nowrap;
}
.btn__label { position: relative; z-index: 2; }
.btn__icon {
  position: relative;
  z-index: 2;
  transition: transform 0.5s var(--ease-out);
  display: inline-block;
}
.btn:hover .btn__icon { transform: translateX(4px); }

.btn--primary {
  background: var(--ink);
  color: var(--cream);
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--moss-deep);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-in-out);
}
.btn--primary:hover::before { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-in-out);
}
.btn--ghost:hover { color: var(--cream); border-color: var(--ink); }
.btn--ghost:hover::before { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--moss-deep);
  border: 1px solid var(--moss-deep);
}
.btn--outline:hover { background: var(--moss-deep); color: var(--cream); }

.btn--cream {
  background: var(--cream);
  color: var(--ink);
}
.btn--cream:hover { background: var(--ivory); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: var(--pad-x);
  padding-bottom: clamp(80px, 12vh, 140px);
  overflow: hidden;
  color: var(--cream);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 16s var(--ease-out) infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,23,15,0.55) 0%, rgba(20,23,15,0.2) 35%, rgba(20,23,15,0.7) 100%),
    radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(20,23,15,0.3) 100%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.hero__corner {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__corner .micro { color: var(--cream); }
.hero__corner .micro--soft { color: rgba(245, 241, 230, 0.5); }
.hero__corner--tl { top: 110px; left: var(--pad-x); }
.hero__corner--tr { top: 110px; right: var(--pad-x); text-align: right; align-items: flex-end; }
.hero__corner--bl { bottom: 40px; left: var(--pad-x); }

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 36px;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.6s forwards;
}
.hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--gold-soft);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(36px, 4.8vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  max-width: 720px;
}
.hero__title .reveal-line {
  display: block;
  overflow: hidden;
}
.hero__title .reveal-line > span {
  display: inline-block;
  transform: translateY(102%);
  animation: lineUp 1.2s var(--ease-in-out) forwards;
}
.hero__title .reveal-line:nth-child(1) > span { animation-delay: 1.4s; }
.hero__title .reveal-line:nth-child(2) > span { animation-delay: 1.6s; }
@keyframes lineUp {
  to { transform: translateY(0); }
}
.hero__title .italic {
  color: var(--gold-soft);
}

.hero__lede {
  font-family: var(--display);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 300;
  line-height: 1.55;
  max-width: 540px;
  color: var(--cream-warm);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 2s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 2.2s forwards;
}
.hero__actions .btn--primary { background: var(--cream); color: var(--ink); }
.hero__actions .btn--primary::before { background: var(--cream-warm); }
.hero__actions .btn--ghost { border-color: var(--cream); color: var(--cream); }
.hero__actions .btn--ghost::before { background: var(--cream); }
.hero__actions .btn--ghost:hover { color: var(--ink); }

.hero__scroll {
  position: absolute;
  bottom: 40px;
  right: var(--pad-x);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 2.4s forwards;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--gold-soft);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  to { top: 40px; }
}

@media (max-width: 700px) {
  .hero__corner--tl, .hero__corner--tr { top: 90px; }
  .hero__corner--tr { display: none; }
  .hero__corner--bl { bottom: 30px; }
  .hero__scroll { display: none; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(245, 241, 230, 0.08);
  border-bottom: 1px solid rgba(245, 241, 230, 0.08);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-family: var(--display);
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.marquee__group i {
  color: var(--gold-soft);
  font-style: normal;
  font-size: 0.7em;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION TITLE / LABELS
   ============================================================ */
.section__title {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.section__title .reveal-line {
  display: block;
  overflow: hidden;
}
.section__title .reveal-line > span {
  display: inline-block;
  transform: translateY(102%);
  transition: transform 1s var(--ease-in-out);
}
.section__title .reveal-line:nth-child(2) > span { transition-delay: 0.12s; }
.section__title.in .reveal-line > span { transform: translateY(0); }
.section__title .italic { color: var(--moss); }
.section__title--center { text-align: center; }

.manifesto__label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.manifesto__rule {
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 260px;
}
.manifesto__label--light .micro { color: var(--cream); }
.manifesto__label--light .manifesto__rule { background: rgba(245, 241, 230, 0.2); }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.manifesto__label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.manifesto__label .manifesto__rule { flex: 1; max-width: 320px; }

.manifesto__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}

.manifesto__title {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(32px, 4.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--ink);
}
.manifesto__title em {
  font-style: italic;
  color: var(--moss);
  font-weight: 400;
}
.manifesto__title .reveal-line { display: block; overflow: hidden; }
.manifesto__title .reveal-line > span {
  display: inline-block;
  transform: translateY(102%);
  transition: transform 1s var(--ease-in-out);
}
.manifesto__title .reveal-line:nth-child(2) > span { transition-delay: 0.1s; }
.manifesto__title .reveal-line:nth-child(3) > span { transition-delay: 0.2s; }
.manifesto__title.in .reveal-line > span { transform: translateY(0); }

.manifesto__pull {
  margin-top: clamp(40px, 4vw, 60px);
  padding: clamp(28px, 3vw, 44px) clamp(28px, 3vw, 44px) clamp(28px, 3vw, 44px) clamp(40px, 5vw, 64px);
  background: var(--paper);
  border-left: 1px solid var(--ink);
  position: relative;
  max-width: 620px;
}
.manifesto__quote-mark {
  position: absolute;
  top: -10px;
  left: 18px;
  font-family: var(--display);
  font-style: italic;
  font-size: 120px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.manifesto__pull p {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.manifesto__pull em {
  font-style: italic;
  font-weight: 400;
}

.manifesto__aside {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 12px;
}
.manifesto__mark {
  position: absolute;
  top: -80px;
  right: -10px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(180px, 22vw, 380px);
  line-height: 0.85;
  color: var(--ink);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.04em;
}
.manifesto__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.manifesto__body p:first-child {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
}

.manifesto__sig {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.manifesto__sig-line {
  width: 60px;
  height: 1px;
  background: var(--ink);
}
.manifesto__sig-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.manifesto__sig-name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.manifesto__sig-flourish {
  color: var(--moss-soft);
}

.manifesto__stats {
  margin-top: clamp(72px, 9vw, 120px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px clamp(16px, 2vw, 32px) 8px 0;
  position: relative;
}
.stat + .stat {
  padding-left: clamp(16px, 2vw, 32px);
  border-left: 1px solid var(--line);
}
.stat__index {
  color: var(--moss-soft);
}
.stat__num {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.stat__num em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.55em;
  color: var(--moss-soft);
  vertical-align: 0.3em;
  margin-left: 0.04em;
}
.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  line-height: 1.4;
}

@media (max-width: 1000px) {
  .manifesto__grid { grid-template-columns: 1fr; gap: 48px; }
  .manifesto__mark { top: -40px; right: -20px; font-size: 220px; }
  .manifesto__stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(3), .stat:nth-child(4) {
    margin-top: clamp(20px, 3vw, 32px);
    padding-top: clamp(20px, 3vw, 32px);
    border-top: 1px solid var(--line);
  }
}
@media (max-width: 600px) {
  .manifesto__stats { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; padding-left: 0; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--pad-y) var(--pad-x);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 60px;
  background:
    radial-gradient(circle 60px at 50% -30px, var(--ivory), transparent 100%);
}
.about__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}
.about__media {
  position: relative;
}
.about__media-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
}
.about__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 1.2s var(--ease-out);
}
.about__media:hover .about__media-frame img { transform: scale(1.04); }
.about__media-grain {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.12;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.about__media-caption {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about__text > .manifesto__label {
  margin-bottom: 32px;
}
.about__body {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 540px;
}
.about__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss-deep);
}
.about__list .dot { color: var(--ink); font-size: 14px; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink);
  margin-top: 24px;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  align-self: flex-start;
  width: fit-content;
  transition: padding 0.4s var(--ease-out);
}
.link-arrow span {
  transition: transform 0.4s var(--ease-out);
  display: inline-block;
}
.link-arrow:hover { padding-right: 12px; }
.link-arrow:hover span { transform: translateX(4px); }

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media-frame { aspect-ratio: 1; max-width: 500px; margin: 0 auto; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.services__head {
  margin-bottom: clamp(60px, 8vw, 100px);
  max-width: 900px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.service {
  background: var(--ivory);
  padding: clamp(32px, 4vw, 56px) clamp(28px, 3vw, 44px);
  position: relative;
  transition: background 0.6s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 400px;
}
.service:hover { background: var(--paper); }
.service__num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 60px;
  line-height: 1;
  color: var(--moss);
  letter-spacing: -0.04em;
}
.service__title {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(26px, 2.4vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
.service__copy {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  flex: 1;
}
.service__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.service__list li {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--moss-deep);
  padding-left: 16px;
  position: relative;
}
.service__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--moss-soft);
  font-size: 9px;
}

@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr; }
  .service { min-height: auto; }
}

/* ============================================================
   PACKAGES
   ============================================================ */
.packages {
  padding: var(--pad-y) var(--pad-x);
  background: var(--moss-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.packages::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.packages__head {
  text-align: center;
  margin-bottom: clamp(60px, 7vw, 100px);
  position: relative;
  z-index: 1;
}
.packages__head .manifesto__label {
  justify-content: center;
}
.packages__head .manifesto__label .micro { color: var(--cream); }
.packages__head .manifesto__rule { background: rgba(245, 241, 230, 0.2); }
.packages__head .section__title { color: var(--cream); }
.packages__head .section__title .italic { color: var(--gold-soft); }
.packages__sub {
  margin-top: 24px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--cream-warm);
}
.packages__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.pkg {
  background: var(--moss);
  border: 1px solid rgba(245, 241, 230, 0.08);
  padding: clamp(32px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  transition: transform 0.6s var(--ease-out), background 0.6s ease;
  min-height: 600px;
  overflow: hidden;
}
.pkg:hover {
  transform: translateY(-6px);
  background: var(--moss-mid);
}
.pkg::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-soft);
  transform: scale(0.96);
  opacity: 0;
  transition: all 0.5s var(--ease-out);
  pointer-events: none;
}
.pkg:hover::after { transform: scale(1); opacity: 0.6; }

.pkg--feature {
  background: var(--ivory);
  color: var(--ink);
}
.pkg--feature .pkg__name,
.pkg--feature .pkg__tag,
.pkg--feature .pkg__list li,
.pkg--feature .pkg__price { color: var(--ink); }
.pkg--feature .pkg__tag { color: var(--moss); }
.pkg--feature .pkg__num { color: var(--moss); }
.pkg--feature:hover { background: var(--cream); }

.pkg__badge {
  position: absolute;
  top: 18px;
  right: -34px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 6px 40px;
  transform: rotate(35deg);
  z-index: 2;
}
.pkg__head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(245, 241, 230, 0.12);
}
.pkg--feature .pkg__head { border-bottom-color: var(--line); }

.pkg__num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  line-height: 0.9;
  color: var(--gold-soft);
  letter-spacing: -0.02em;
}
.pkg__name {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.pkg__tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-soft);
  margin-top: 6px;
}
.pkg__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.pkg__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--cream-warm);
}
.pkg__list .check {
  color: var(--gold-soft);
  font-size: 13px;
  margin-top: 4px;
  flex-shrink: 0;
}
.pkg--feature .pkg__list .check { color: var(--moss); }
.pkg--feature .pkg__list li { color: var(--ink-soft); }

.pkg__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(245, 241, 230, 0.12);
  flex-wrap: wrap;
}
.pkg--feature .pkg__foot { border-top-color: var(--line); }
.pkg__price {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1;
}
.pkg__price-curr {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  vertical-align: middle;
  margin-right: 6px;
  opacity: 0.6;
}
.pkg--feature .pkg__price { color: var(--ink); }
.pkg--feature .pkg__foot .btn--primary {
  background: var(--ink);
  color: var(--cream);
}
.pkg__foot .btn--outline {
  color: var(--cream);
  border-color: var(--cream);
}
.pkg__foot .btn--outline:hover {
  background: var(--cream);
  color: var(--moss-deep);
}

.packages__note {
  max-width: var(--max);
  margin: clamp(40px, 5vw, 60px) auto 0;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.packages__note span { color: var(--gold-soft); }

@media (max-width: 1000px) {
  .packages__grid { grid-template-columns: 1fr; max-width: 540px; }
  .pkg { min-height: auto; }
  .pkg__badge { right: -30px; }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.process__head {
  margin-bottom: clamp(60px, 8vw, 100px);
  max-width: 900px;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process__steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}
.step {
  padding: 0 24px 0 0;
  position: relative;
  background: var(--ivory);
  padding-right: 30px;
}
.step:not(:last-child) {
  border-right: 1px dashed var(--line);
  padding-right: clamp(20px, 2vw, 36px);
  margin-right: clamp(20px, 2vw, 36px);
}
.step__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--moss-soft);
  margin-bottom: 16px;
  display: block;
  position: relative;
}
.step__num::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--ink);
}
.step__title {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  margin-top: 40px;
}
.step__copy {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .process__steps { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .process__steps::before { display: none; }
  .step:not(:last-child) { border-right: 0; padding-right: 0; margin-right: 0; }
}
@media (max-width: 600px) {
  .process__steps { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTENT CLASSES
   ============================================================ */
.classes {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.classes__head {
  margin-bottom: clamp(60px, 8vw, 100px);
  max-width: 900px;
}
.classes__lede {
  margin-top: 32px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--moss-soft);
  max-width: 660px;
}
.classes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: clamp(60px, 7vw, 100px);
}
.class-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  transition: background 0.5s ease, border-color 0.4s ease, transform 0.5s var(--ease-out);
}
.class-card:hover {
  background: var(--paper);
  border-color: var(--ink);
  transform: translateY(-4px);
}
.class-card--feature {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.class-card--feature:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}
.class-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 6px 12px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 999px;
}
.class-card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.class-card--feature .class-card__top { border-bottom-color: rgba(247, 245, 240, 0.15); }
.class-card__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
}
.class-card--feature .class-card__num { color: var(--cream); }
.class-card__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss-soft);
}
.class-card--feature .class-card__tag { color: var(--cream-warm); }
.class-card__title {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.class-card--feature .class-card__title { color: var(--cream); }
.class-card__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--moss-soft);
}
.class-card--feature .class-card__title em { color: var(--cream-warm); }
.class-card__copy {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.class-card--feature .class-card__copy { color: var(--cream-warm); }
.class-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.class-card--feature .class-card__list { border-top-color: rgba(247, 245, 240, 0.15); }
.class-card__list li {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss-soft);
  padding-left: 16px;
  position: relative;
}
.class-card--feature .class-card__list li { color: var(--cream-warm); }
.class-card__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  opacity: 0.6;
  font-size: 9px;
}
.class-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.class-card--feature .class-card__foot { border-top-color: rgba(247, 245, 240, 0.15); }
.class-card__when {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--moss-soft);
}
.class-card--feature .class-card__when { color: var(--cream-warm); }
.class-card__foot .link-arrow { margin-top: 0; padding-top: 0; padding-bottom: 4px; border-bottom-color: var(--ink); }
.class-card--feature .class-card__foot .link-arrow {
  color: var(--cream);
  border-bottom-color: var(--cream);
}

.classes__signup {
  background: var(--paper);
  padding: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.classes__signup-text { display: flex; flex-direction: column; gap: 14px; }
.classes__signup-title {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 380px;
}
.classes__form { display: flex; flex-direction: column; gap: 18px; }
.classes__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: end;
}
.classes__field { position: relative; display: flex; flex-direction: column; }
.classes__field input,
.classes__field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s;
}
.classes__field input:focus,
.classes__field select:focus { border-bottom-color: var(--ink); }
.classes__field input::placeholder { color: var(--moss-soft); opacity: 0.6; }
.classes__field--select select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 15px) 50%,
    calc(100% - 10px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}
.classes__field label {
  position: absolute;
  top: 14px;
  left: 0;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--moss-soft);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.classes__field input:focus + label,
.classes__field input:not(:placeholder-shown) + label,
.classes__field select:valid + label,
.classes__field select:focus + label {
  opacity: 1;
  transform: translateY(-22px);
  color: var(--ink);
}
.classes__submit { justify-self: end; }
.classes__success {
  display: none;
  margin-top: 16px;
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
}
.classes__success.show { display: block; animation: fadeUp 0.6s var(--ease-out); }
.classes__success span { margin-right: 6px; }

@media (max-width: 1000px) {
  .classes__grid { grid-template-columns: 1fr; }
  .classes__signup { grid-template-columns: 1fr; }
  .classes__row { grid-template-columns: 1fr; }
  .classes__submit { justify-self: stretch; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: var(--pad-y) var(--pad-x);
  background: var(--paper);
  max-width: 100%;
}
.gallery__head {
  max-width: var(--max);
  margin: 0 auto clamp(40px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
}
.gallery__head .manifesto__label { grid-column: 1 / -1; }
.gallery__handle {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ink);
  transition: color 0.3s;
}
.gallery__handle:hover { color: var(--moss); }
.gallery__handle span { font-size: 14px; }

.gallery__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 16px;
}
.tile {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
}
.tile--lg { grid-row: 1 / 3; }
.tile__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s var(--ease-out);
}
.tile:hover .tile__img { transform: scale(1.06); }
.tile__img--mossy {
  background: linear-gradient(135deg, var(--moss-deep), var(--moss));
  display: flex;
  align-items: center;
  justify-content: center;
}
.tile__img--cream {
  background: linear-gradient(135deg, var(--cream), var(--cream-warm));
  display: flex;
  align-items: center;
  justify-content: center;
}
.tile__img--cream + .tile__meta .micro { color: var(--ink); }
.tile__img--dark {
  background: linear-gradient(135deg, var(--ink), var(--moss-deep));
  display: flex;
  align-items: center;
  justify-content: center;
}
.tile__overlay-text {
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 36px);
  color: var(--cream);
  line-height: 1.1;
  text-align: center;
}
.tile__img--cream .tile__overlay-text { color: var(--moss-deep); }
.tile__overlay-text em {
  font-style: italic;
  color: var(--gold-soft);
}
.tile__img--cream .tile__overlay-text em { color: var(--moss); }

.tile__meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(to top, rgba(20,23,15,0.7), transparent);
  z-index: 2;
}
.tile__meta .micro { color: var(--cream); }

@media (max-width: 900px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 280px;
  }
  .tile--lg { grid-row: 1 / 2; grid-column: 1 / -1; }
}

.gallery__cta {
  max-width: var(--max);
  margin: clamp(40px, 5vw, 70px) auto 0;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  padding: clamp(20px, 2.4vw, 32px) clamp(28px, 3vw, 44px);
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out);
  text-decoration: none;
}
.gallery__cta > * { position: relative; z-index: 1; }
/* Stays black on hover — client request. Subtle lift only. */
.gallery__cta:hover { transform: translateY(-3px); }

.gallery__cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease-out);
}
.gallery__cta-icon svg { width: 22px; height: 22px; }
.gallery__cta:hover .gallery__cta-icon { transform: rotate(-6deg) scale(1.05); }

.gallery__cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gallery__cta-eyebrow {
  color: rgba(247, 245, 240, 0.55);
  letter-spacing: 0.24em;
}
.gallery__cta-handle {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.gallery__cta-arrow {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  color: var(--cream);
  transition: transform 0.5s var(--ease-out);
  flex-shrink: 0;
}
.gallery__cta:hover .gallery__cta-arrow {
  transform: translate(6px, -6px);
}

@media (max-width: 600px) {
  .gallery__cta { border-radius: 24px; flex-wrap: wrap; }
  .gallery__cta-text { flex: 1 1 60%; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--ink);
  color: var(--cream);
  padding: var(--pad-y) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.testimonials__doodles {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280' viewBox='0 0 280 280'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' opacity='0.18'%3E%3Cpath d='M20 30 q5 -8 10 0 t10 0' /%3E%3Ccircle cx='80' cy='40' r='4'/%3E%3Cpath d='M120 30 l6 -6 m0 6 l-6 -6'/%3E%3Cpath d='M170 26 q5 8 10 0 q5 -8 10 0'/%3E%3Cpath d='M225 30 l4 4 l8 -10'/%3E%3Cpath d='M30 90 l3 -6 l3 6 l6 -3 l-6 -3 l-3 -6 l-3 6 l-6 3 z'/%3E%3Ccircle cx='90' cy='95' r='8'/%3E%3Cpath d='M85 92 q5 6 10 0'/%3E%3Ccircle cx='87' cy='91' r='0.8' fill='%23ffffff'/%3E%3Ccircle cx='93' cy='91' r='0.8' fill='%23ffffff'/%3E%3Cpath d='M140 85 l3 6 l7 1 l-5 5 l1 7 l-6 -3 l-6 3 l1 -7 l-5 -5 l7 -1 z'/%3E%3Cpath d='M195 85 q6 -8 14 0 q-7 8 -14 14 q-7 -6 -14 -14 q8 -8 14 0z'/%3E%3Cpath d='M240 90 l8 -2 m-6 -2 l8 -2 m-7 6 l8 -2'/%3E%3Cpath d='M28 160 q12 -10 24 0 q-12 10 -24 0'/%3E%3Cpath d='M80 160 l3 -6 l3 6 l-3 -6'/%3E%3Cpath d='M120 155 q5 5 10 0 q-5 -5 -10 0'/%3E%3Cpath d='M120 165 q5 -5 10 0 q-5 5 -10 0'/%3E%3Cpath d='M170 155 v12 m-6 -6 h12'/%3E%3Ccircle cx='220' cy='160' r='5'/%3E%3Cpath d='M218 158 l4 4 m0 -4 l-4 4'/%3E%3Cpath d='M30 220 q10 -8 18 0 q-2 6 -4 8 q-3 -1 -5 -4'/%3E%3Cpath d='M88 215 l-4 5 l-4 -3 l4 -2 l-2 -5 l4 3 l4 -3 l-2 5 l4 2 l-4 3 z'/%3E%3Cpath d='M135 218 q8 -4 16 0 q-2 6 -8 8 q-6 -2 -8 -8z'/%3E%3Cpath d='M185 215 l3 5 l5 0 l-4 4 l1 5 l-5 -2 l-5 2 l1 -5 l-4 -4 l5 0 z'/%3E%3Cpath d='M235 215 v10 m-5 -5 h10'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 280px 280px, 200px 200px;
  opacity: 1;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.testimonials__head {
  max-width: var(--max);
  margin: 0 auto clamp(60px, 7vw, 90px);
  position: relative;
  z-index: 1;
}
.section__title--light { color: var(--cream); }
.section__title--light .italic { color: var(--cream-warm); }

.testimonials__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.review {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.review__bubble {
  background: linear-gradient(180deg, #232323 0%, #1a1a1a 100%);
  border: 1px solid rgba(247, 245, 240, 0.08);
  border-radius: 22px;
  padding: 22px 24px 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow:
    0 24px 60px -30px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.review__bubble::before {
  content: "";
  position: absolute;
  left: 22px;
  bottom: -10px;
  width: 18px;
  height: 18px;
  background: #1a1a1a;
  border-bottom-left-radius: 16px;
  border-right: 1px solid rgba(247, 245, 240, 0.08);
  border-bottom: 1px solid rgba(247, 245, 240, 0.08);
  transform: rotate(45deg);
  z-index: -1;
}
.review__sender {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-warm);
  margin-bottom: 4px;
}
.review__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--cream);
}
.review__text em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--cream-warm);
}
.review__text--note { font-family: var(--display); font-style: italic; }
.review__time {
  font-size: 11px;
  color: rgba(247, 245, 240, 0.4);
  align-self: flex-end;
  font-family: var(--mono);
  letter-spacing: 0.1em;
}
.review__reply {
  background: linear-gradient(180deg, #2d2d2d 0%, #232323 100%);
  border-radius: 18px;
  padding: 14px 20px 10px;
  align-self: flex-end;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.review__reply::before {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background: #232323;
  border-bottom-right-radius: 14px;
  transform: rotate(45deg);
  z-index: -1;
}
.review__reply p {
  font-size: 14px;
  color: var(--cream);
}
.review__stars {
  display: flex;
  gap: 4px;
  font-size: 18px;
  color: var(--gold);
  justify-content: flex-end;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}
.review__cap {
  margin-top: 6px;
  text-align: right;
}
.review__cap .micro { color: rgba(247, 245, 240, 0.45); }

@media (max-width: 1000px) {
  .testimonials__grid { grid-template-columns: 1fr; max-width: 540px; }
}

/* Approved-review slot is spanned across the same grid as the hardcoded three */
.review-slot { display: contents; }

/* ============================================================
   TESTIMONIALS "Leave a Review" CTA + Review submit modal
   ============================================================ */
.testimonials__cta {
  max-width: var(--max);
  margin: clamp(50px, 6vw, 80px) auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: clamp(30px, 4vw, 50px);
  border-top: 1px solid rgba(247, 245, 240, 0.12);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.testimonials__cta-copy {
  font-family: var(--display);
  font-weight: 300;
  font-variation-settings: "opsz" 96;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.testimonials__cta-copy em {
  font-family: var(--display);
  font-style: italic;
  color: var(--cream-warm);
}

.btn--light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247, 245, 240, 0.35);
}
.btn--light:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* ---- Modal ---- */
.rv-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.rv-modal.is-open { opacity: 1; visibility: visible; }
.rv-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 6, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.rv-modal__panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--ivory);
  border-radius: 10px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
}
.rv-modal.is-open .rv-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.rv-modal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.rv-modal__close:hover { background: var(--paper); border-color: var(--ink); }
.rv-modal__title {
  font-family: var(--display);
  font-weight: 300;
  font-variation-settings: "opsz" 96;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 14px;
}
.rv-modal__title .italic { font-family: var(--display); font-style: italic; color: var(--moss); }
.rv-modal__lede {
  color: var(--moss-soft);
  font-size: 14px;
  margin: 8px 0 20px;
}

/* ---- Form ---- */
.rv-form { display: flex; flex-direction: column; gap: 20px; }
.rv-form__row { display: grid; grid-template-columns: 1fr; gap: 18px; }
.rv-form__row--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { .rv-form__row--2 { grid-template-columns: 1fr; } }

.rv-field { position: relative; padding-top: 20px; }
.rv-field input,
.rv-field select,
.rv-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  padding: 10px 0;
  outline: none;
  transition: border-bottom-color 0.3s;
}
.rv-field textarea { min-height: 100px; resize: vertical; line-height: 1.55; }
.rv-field label {
  position: absolute;
  left: 0; top: 30px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss-soft);
  pointer-events: none;
  transition: top 0.3s var(--ease-out), font-size 0.3s, color 0.3s;
}
.rv-field label em {
  font-style: normal;
  text-transform: none;
  letter-spacing: 0.05em;
  font-size: 10px;
  color: var(--rust);
}
.rv-field input:focus,
.rv-field select:focus,
.rv-field textarea:focus { border-bottom-color: var(--ink); }
.rv-field input:focus + label,
.rv-field input:not(:placeholder-shown) + label,
.rv-field textarea:focus + label,
.rv-field textarea:not(:placeholder-shown) + label {
  top: 0; color: var(--ink); font-size: 10px;
}
.rv-field--select label { top: 0; font-size: 10px; color: var(--ink); }
.rv-field--select select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='none' stroke='%230a0a0a' stroke-width='1.6' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 22px;
  cursor: pointer;
}
.rv-field--textarea label { top: 0; font-size: 10px; color: var(--ink); }

/* Char counter */
.rv-count {
  position: absolute;
  right: 0; bottom: 6px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--moss-soft);
  letter-spacing: 0.08em;
}

/* Star picker */
.rv-field--rating { padding-top: 0; }
.rv-field__eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.rv-stars {
  display: flex;
  gap: 6px;
}
.rv-stars button {
  font-size: 30px;
  color: var(--line);
  background: none;
  border: 0;
  padding: 2px 4px;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  line-height: 1;
}
.rv-stars button.is-on   { color: var(--gold); }
.rv-stars button.is-hover { color: var(--gold); transform: scale(1.05); }

/* Consent */
.rv-form__consent label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--moss);
}
.rv-form__consent input {
  margin-top: 3px;
  accent-color: var(--ink);
  transform: scale(1.15);
  cursor: pointer;
}

.rv-form__submit { align-self: flex-start; margin-top: 4px; }
.rv-form__error {
  color: #c53030;
  font-size: 13px;
  padding: 10px 12px;
  background: rgba(197, 48, 48, 0.06);
  border-left: 2px solid #c53030;
}

/* ---- Success state ---- */
.rv-modal__success {
  text-align: center;
  padding: 20px 0 8px;
}
.rv-modal__success-mark {
  font-family: var(--display);
  font-size: 46px;
  color: var(--gold);
  margin-bottom: 10px;
}
.rv-modal__success h3 {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 10px;
}
.rv-modal__success p {
  font-size: 15px;
  color: var(--moss-soft);
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto 20px;
}
.rv-modal__success .btn--light {
  border-color: var(--line);
  color: var(--ink);
}
.rv-modal__success .btn--light:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ============================================================
   FAQ — auto-scrolling cards
   ============================================================ */
.faq {
  padding: var(--pad-y) 0;
  background: var(--ivory);
  overflow: hidden;
}
.faq__head {
  padding: 0 var(--pad-x);
  max-width: var(--max);
  margin: 0 auto clamp(50px, 6vw, 80px);
}
.faq__rail {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.faq__track {
  display: flex;
  width: max-content;
  animation: faqScroll 75s linear infinite;
}
.faq__rail.paused .faq__track { animation-play-state: paused; }
.faq__group {
  display: flex;
  gap: 20px;
  padding-right: 20px;
}
@keyframes faqScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.faq-card {
  width: 360px;
  flex-shrink: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.5s var(--ease-out), background 0.4s, border-color 0.4s;
}
.faq-card:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-4px);
}
.faq-card:hover .faq-card__q,
.faq-card:hover .faq-card__title,
.faq-card:hover .faq-card__a { color: var(--cream); }
.faq-card__q {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  transition: color 0.4s;
}
.faq-card__title {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 0.4s;
}
.faq-card__a {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  transition: color 0.4s;
}
.faq__hint {
  text-align: center;
  margin-top: 28px;
  color: var(--moss-soft);
}

@media (max-width: 700px) {
  .faq-card { width: 280px; }
}

/* ============================================================
   NEWSLETTER — compact
   ============================================================ */
.news {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(64px, 8vw, 100px) var(--pad-x) clamp(40px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}
.news::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(247, 245, 240, 0.04), transparent 60%);
  pointer-events: none;
}
.news__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.news__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}
.news__rule-line {
  width: 40px;
  height: 1px;
  background: rgba(245, 241, 230, 0.3);
}
.news__rule .micro { color: var(--cream); }

.news__title {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 16px;
}
.news__title .italic {
  font-style: italic;
  color: var(--cream-warm);
}

.news__copy {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.5;
  color: var(--cream-warm);
  max-width: 480px;
  margin: 0 auto 28px;
  opacity: 0.85;
}

.news__form {
  display: flex;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}
.news__pill {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 6px 6px 6px 22px;
  background: rgba(247, 245, 240, 0.04);
  border: 1px solid rgba(245, 241, 230, 0.25);
  border-radius: 999px;
  transition: border-color 0.4s, background 0.4s;
}
.news__pill:focus-within {
  border-color: var(--cream);
  background: rgba(247, 245, 240, 0.06);
}
.news__pill input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--cream);
  padding: 12px 8px;
  font-family: var(--body);
  font-size: 15px;
  outline: none;
  min-width: 0;
}
.news__pill input::placeholder { color: rgba(245, 241, 230, 0.4); }
.news__pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  border-radius: 999px;
  transition: background 0.4s, transform 0.3s;
  cursor: pointer;
  white-space: nowrap;
}
.news__pill-btn:hover { background: var(--cream-warm); }
.news__pill-arrow { display: inline-block; transition: transform 0.4s var(--ease-out); }
.news__pill-btn:hover .news__pill-arrow { transform: translateX(3px); }

.news__success {
  display: none;
  margin-top: 18px;
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--cream-warm);
}
.news__success.show {
  display: block;
  animation: fadeUp 0.6s var(--ease-out);
}
.news__success span { margin-right: 6px; }

.news__contact {
  margin-top: clamp(48px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid rgba(245, 241, 230, 0.12);
  text-align: left;
}
.news__contact > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.news__contact .micro { color: rgba(245, 241, 230, 0.45); }
.news__contact a {
  font-family: var(--display);
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--cream);
  transition: color 0.3s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
}
.news__contact a:hover {
  color: var(--cream-warm);
  border-bottom-color: var(--cream-warm);
}

@media (max-width: 900px) {
  .news__contact { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .news__contact { grid-template-columns: 1fr; }
  .news__pill { flex-direction: column; padding: 12px; gap: 8px; border-radius: 24px; }
  .news__pill input { width: 100%; padding: 10px 0; text-align: center; border-bottom: 1px solid rgba(245, 241, 230, 0.1); }
  .news__pill-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   FOOTER — masthead
   ============================================================ */
.foot {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(80px, 10vw, 140px) var(--pad-x) 36px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(245, 241, 230, 0.08);
}
.foot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(247, 245, 240, 0.05), transparent 60%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.3'/%3E%3C/svg%3E");
  background-size: cover, 200px 200px;
  pointer-events: none;
  opacity: 0.6;
}

.foot__masthead {
  max-width: var(--max);
  margin: 0 auto clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 28px);
  position: relative;
  z-index: 1;
}

.foot__masthead-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.foot__masthead-meta .micro { color: var(--cream); }
.foot__masthead-meta .micro--soft { color: rgba(245, 241, 230, 0.5); }
.foot__rule {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: rgba(245, 241, 230, 0.2);
}
.foot__dot {
  font-size: 10px;
  color: rgba(245, 241, 230, 0.3);
}

.foot__mega {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(56px, 13vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-align: center;
  white-space: nowrap;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1vw, 16px);
  padding-bottom: clamp(24px, 2.5vw, 40px);
}
.foot__mega-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 40px);
}
.foot__mega-row--2 {
  gap: clamp(14px, 1.8vw, 30px);
}
.foot__mega-word {
  display: inline-block;
  position: relative;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 241, 230, 0.32);
  transition: -webkit-text-stroke-color 0.6s, color 0.6s;
}
.foot__mega-word::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6%;
  width: 100%;
  height: 1px;
  background: rgba(245, 241, 230, 0.12);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.9s var(--ease-in-out);
}
.foot__mega:hover .foot__mega-word {
  color: var(--cream);
  -webkit-text-stroke-color: var(--cream);
}
.foot__mega:hover .foot__mega-word::before {
  transform: scaleX(1);
}
.foot__mega-word--italic {
  font-style: italic;
  font-weight: 400;
  -webkit-text-stroke-width: 1px;
  font-variation-settings: "opsz" 144;
}
.foot__mega-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.78em;
  height: 0.78em;
  color: var(--cream);
  flex-shrink: 0;
  transform: translateY(0.04em) rotate(-6deg);
  transition: transform 0.8s var(--ease-out), color 0.6s;
  opacity: 0.92;
}
.foot__mega-mark svg { width: 100%; height: 100%; }
.foot__mega:hover .foot__mega-mark {
  transform: translateY(0.04em) rotate(6deg);
  color: var(--cream);
}

.foot__quick {
  max-width: var(--max);
  margin: 0 auto clamp(40px, 5vw, 70px);
  padding-top: clamp(40px, 5vw, 60px);
  border-top: 1px solid rgba(245, 241, 230, 0.1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  position: relative;
  z-index: 1;
}
.foot__quick-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot__quick-col > .micro {
  margin-bottom: 4px;
  letter-spacing: 0.24em;
}
.foot__quick-col a {
  font-family: var(--display);
  font-size: 16px;
  color: var(--cream);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  transition: border-color 0.3s, color 0.3s;
  width: fit-content;
}
.foot__quick-col a:hover {
  border-bottom-color: var(--cream-warm);
  color: var(--cream-warm);
}

.foot__row {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 241, 230, 0.1);
  position: relative;
  z-index: 1;
}
.foot__col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.foot__col--right { align-items: flex-end; text-align: right; }
.foot__col .micro { color: var(--cream); }
.foot__col .micro--soft { color: rgba(245, 241, 230, 0.4); }

@media (max-width: 900px) {
  .foot__quick { grid-template-columns: 1fr 1fr; }
  .foot__masthead-meta { font-size: 10px; }
  .foot__rule { max-width: 60px; }
}
@media (max-width: 700px) {
  .foot__row { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .foot__col--right { align-items: center; text-align: center; }
  .foot__quick { grid-template-columns: 1fr; gap: 28px; }
  .foot__quick-col a { align-self: stretch; }
}

/* ============================================================
   REVEAL ANIMATIONS — the cut-in effect
   ============================================================ */
.reveal {
  transition: clip-path var(--reveal-dur) var(--ease-in-out);
}
.reveal--curtain {
  clip-path: inset(50% 0 50% 0);
}
.reveal--curtain.in {
  clip-path: inset(0 0 0 0);
}
.reveal--slice {
  clip-path: inset(0 50% 0 50%);
}
.reveal--slice.in {
  clip-path: inset(0 0 0 0);
}
.reveal--rise {
  clip-path: inset(100% 0 0 0);
  transform: translateY(40px);
  transition: clip-path var(--reveal-dur) var(--ease-in-out),
              transform var(--reveal-dur) var(--ease-out);
}
.reveal--rise.in {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

/* Stagger for grids */
.packages__grid .pkg:nth-child(1) { transition-delay: 0s; }
.packages__grid .pkg:nth-child(2) { transition-delay: 0.15s; }
.packages__grid .pkg:nth-child(3) { transition-delay: 0.3s; }

.services__grid .service:nth-child(1) { transition-delay: 0s; }
.services__grid .service:nth-child(2) { transition-delay: 0.12s; }
.services__grid .service:nth-child(3) { transition-delay: 0.24s; }

.process__steps .step:nth-child(1) { transition-delay: 0s; }
.process__steps .step:nth-child(2) { transition-delay: 0.1s; }
.process__steps .step:nth-child(3) { transition-delay: 0.2s; }
.process__steps .step:nth-child(4) { transition-delay: 0.3s; }

.gallery__grid .tile:nth-child(1) { transition-delay: 0s; }
.gallery__grid .tile:nth-child(2) { transition-delay: 0.1s; }
.gallery__grid .tile:nth-child(3) { transition-delay: 0.2s; }
.gallery__grid .tile:nth-child(4) { transition-delay: 0.3s; }
.gallery__grid .tile:nth-child(5) { transition-delay: 0.4s; }

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

/* ============================================================
   VIDEO GALLERY — vertical wall + lightbox
   ============================================================ */
.vgrid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);   /* 5 × 3 = 15 tiles */
  gap: clamp(10px, 1vw, 18px);
}

.vtile {
  --i: 0;
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: left;
  background: var(--ink);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  /* reveal */
  opacity: 0;
  transform: translateY(34px);
  clip-path: inset(0 0 12% 0);
  transition:
    opacity 0.9s var(--ease-out),
    transform 1s var(--ease-out),
    clip-path 1s var(--ease-out);
  transition-delay: calc(var(--i) * 55ms);
}
.vtile.is-in {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}
.vtile--soon { cursor: default; }

.vtile__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--ink);
}
.vtile__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.6s var(--ease-out), filter 0.6s var(--ease-out);
  filter: saturate(1.02) contrast(1.02);
}
.vtile:hover .vtile__video { transform: scale(1.08); }

/* grain + edge veil for depth */
.vtile__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0) 34%),
    linear-gradient(to bottom, rgba(10,10,10,0.28) 0%, rgba(10,10,10,0) 26%);
  opacity: 0.9;
  transition: opacity 0.6s var(--ease-out);
}
.vtile:hover .vtile__grain { opacity: 0.72; }

/* thin frame that draws on hover */
.vtile::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 3;
  border: 1px solid rgba(247, 245, 240, 0.0);
  pointer-events: none;
  transition: border-color 0.5s var(--ease-out), inset 0.5s var(--ease-out);
}
.vtile:hover::after,
.vtile:focus-visible::after { border-color: rgba(247, 245, 240, 0.45); }
.vtile:focus-visible { box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px var(--ink); }

/* play affordance */
.vtile__play {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%) scale(0.8);
  border-radius: 50%;
  background: rgba(247, 245, 240, 0.92);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.45s var(--ease-out), transform 0.55s var(--ease-out);
  pointer-events: none;
}
.vtile__play svg { width: 22px; height: 22px; margin-left: 2px; }
.vtile:hover .vtile__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.vtile__meta {
  position: absolute;
  z-index: 4;
  left: 0; right: 0; bottom: 0;
  padding: 14px 15px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
/* Logo watermark, bottom-right — floats freely, no box.
   #hide-white (defined once in index.html) drops the PNG's residual white
   background to true transparency, so only the mark itself remains; then
   brightness+invert paints that remaining shape pure white. */
.vtile__watermark {
  height: 88px;
  width: auto;
  opacity: 0.85;
  filter: url(#hide-white) brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0,0,0,0.6));
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  transform: translateY(2px);
  pointer-events: none;
}
.vtile:hover .vtile__watermark { opacity: 1; transform: translateY(0); }
@media (max-width: 640px) {
  .vtile__watermark { height: 60px; }
}

/* "dropping soon" placeholder */
.vtile--soon .vtile__media {
  background: linear-gradient(150deg, var(--moss) 0%, var(--ink) 70%);
}
.vtile__soon {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--cream);
  text-align: center;
}
.vtile__soon-mark {
  font-family: var(--display);
  font-size: 20px;
  color: var(--gold);
  opacity: 0.85;
  animation: soonPulse 3.4s ease-in-out infinite;
}
.vtile__soon-txt {
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.1;
  color: rgba(247, 245, 240, 0.62);
}
.vtile__soon-txt em { font-style: italic; color: var(--cream); }
@keyframes soonPulse {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50%      { opacity: 0.95; transform: translateY(-3px); }
}

@media (max-width: 1100px) {
  .vgrid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .vgrid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .vtile__play { width: 46px; height: 46px; }
}

/* ---------------- LIGHTBOX ---------------- */
body.vlb-lock { overflow: hidden; }

.vlb {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}
.vlb.is-open { opacity: 1; visibility: visible; }

.vlb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.vlb__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.vlb__stage {
  position: relative;
  z-index: 2;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
}
.vlb.is-open .vlb__stage { transform: translateY(0) scale(1); opacity: 1; }

.vlb__frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(247,245,240,0.08);
}
.vlb__video {
  display: block;
  height: min(82vh, 720px);
  max-height: 82vh;
  width: auto;
  max-width: 92vw;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

.vlb__meta {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  color: var(--cream);
  flex-wrap: wrap;
  justify-content: center;
}
.vlb__count {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(247, 245, 240, 0.6);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.vlb__count em {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--cream);
}
.vlb__count-sep { opacity: 0.5; }
.vlb__cap {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--cream);
}
.vlb__hint { color: rgba(247, 245, 240, 0.4); letter-spacing: 0.18em; }

.vlb__close {
  position: absolute;
  z-index: 4;
  top: clamp(16px, 3vw, 34px);
  right: clamp(16px, 3vw, 34px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--cream);
  border: 1px solid rgba(247, 245, 240, 0.25);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.vlb__close em { font-style: normal; font-size: 14px; }
.vlb__close:hover { background: rgba(247, 245, 240, 0.1); border-color: rgba(247,245,240,0.5); }

.vlb__arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(48px, 5vw, 66px);
  height: clamp(48px, 5vw, 66px);
  border-radius: 50%;
  border: 1px solid rgba(247, 245, 240, 0.25);
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.vlb__arrow:hover { background: rgba(247, 245, 240, 0.1); border-color: rgba(247, 245, 240, 0.55); }
.vlb__arrow--prev { left: clamp(10px, 3vw, 40px); }
.vlb__arrow--next { right: clamp(10px, 3vw, 40px); }
.vlb__arrow--prev:hover { transform: translateY(-50%) translateX(-3px); }
.vlb__arrow--next:hover { transform: translateY(-50%) translateX(3px); }

@media (max-width: 760px) {
  .vlb__arrow { top: auto; bottom: clamp(14px, 4vw, 26px); transform: none; }
  .vlb__arrow--prev { left: 24px; }
  .vlb__arrow--next { right: 24px; }
  .vlb__arrow--prev:hover, .vlb__arrow--next:hover { transform: none; }
  .vlb__hint { display: none; }
  .vlb__video { height: 72vh; max-height: 72vh; }
}

.vgrid .vtile:focus-visible { outline: none; }

/* ============================================================
   RESERVE PAGE
   ============================================================ */
.reserve {
  background: var(--ivory);
  color: var(--ink);
  padding: calc(var(--pad-y) + 40px) var(--pad-x) var(--pad-y);
  min-height: 100vh;
}

.reserve__hero {
  max-width: var(--max);
  margin: 0 auto clamp(50px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.reserve__title {
  font-family: var(--display);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
.reserve__title .italic {
  color: var(--moss);
}
.reserve__lede {
  max-width: 620px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--moss-soft);
}

/* ---- Two-column layout ---- */
.reserve__main {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 960px) {
  .reserve__main { grid-template-columns: 1fr; }
}

/* ---- LEFT: package summary + promises ---- */
.reserve__summary {
  display: flex;
  flex-direction: column;
  gap: 34px;
  position: sticky;
  top: 120px;
}
@media (max-width: 960px) {
  .reserve__summary { position: static; }
}
.reserve__summary-card {
  padding: 32px 34px 34px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 24px 60px -30px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}
.reserve__summary-card::after {
  content: "✦";
  position: absolute;
  top: 22px; right: 24px;
  color: var(--gold);
  font-size: 20px;
  opacity: 0.7;
}
/* Subtle "just updated" pulse when the user picks a different package */
.reserve__summary-card.is-updated { animation: pkgUpdate 0.7s var(--ease-out); }
@keyframes pkgUpdate {
  0%   { box-shadow: 0 24px 60px -30px rgba(0,0,0,0.6), 0 0 0 0 rgba(199, 165, 101, 0);    }
  40%  { box-shadow: 0 24px 60px -30px rgba(0,0,0,0.6), 0 0 0 3px rgba(199, 165, 101, 0.45); }
  100% { box-shadow: 0 24px 60px -30px rgba(0,0,0,0.6), 0 0 0 0 rgba(199, 165, 101, 0);    }
}
.reserve__summary-card .reserve__summary-name,
.reserve__summary-card .reserve__summary-tag,
.reserve__summary-card .reserve__summary-price,
.reserve__summary-card .reserve__summary-num {
  transition: opacity 0.35s ease;
}
.reserve__summary-card.is-updated .reserve__summary-name,
.reserve__summary-card.is-updated .reserve__summary-tag,
.reserve__summary-card.is-updated .reserve__summary-price,
.reserve__summary-card.is-updated .reserve__summary-num {
  animation: pkgFade 0.55s var(--ease-out);
}
@keyframes pkgFade {
  0%   { opacity: 0.35; transform: translateY(4px); }
  100% { opacity: 1;    transform: translateY(0);   }
}
.reserve__summary-num {
  font-family: var(--display);
  font-size: 40px;
  line-height: 1;
  color: var(--gold-soft);
  margin-bottom: 6px;
}
.reserve__summary-num em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.reserve__summary-name {
  font-family: var(--display);
  font-weight: 300;
  font-variation-settings: "opsz" 96;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.reserve__summary-tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--cream-warm);
  margin-top: -6px;
}
.reserve__summary-price {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
  margin: 8px 0 6px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.reserve__summary-curr {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(247, 245, 240, 0.5);
  text-transform: uppercase;
}
.reserve__summary-list {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(247, 245, 240, 0.1);
  padding-top: 16px;
}
.reserve__summary-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 14.5px;
  color: rgba(247, 245, 240, 0.88);
}
.reserve__summary-list .check {
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
}
.reserve__summary-note {
  margin-top: 8px;
  font-size: 12.5px;
  color: rgba(247, 245, 240, 0.55);
  line-height: 1.5;
  border-top: 1px dashed rgba(247, 245, 240, 0.14);
  padding-top: 14px;
}
.reserve__summary-note em {
  font-family: var(--display);
  font-style: italic;
  color: var(--cream);
}

.reserve__promises {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.reserve__promise {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
}
.reserve__promise:first-child { border-top: 1px solid var(--line); }
.reserve__promise:last-child { border-bottom: 1px solid var(--line-soft); }
.reserve__promise-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--moss-soft);
  padding-top: 2px;
}
.reserve__promise p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.reserve__promise p em {
  font-family: var(--display);
  font-style: italic;
  color: var(--ink);
}

/* ---- RIGHT: form ---- */
.reserve__form-wrap {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.reserve__form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.reserve__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.reserve__row--2 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 620px) {
  .reserve__row--2 { grid-template-columns: 1fr; }
}
.reserve__field {
  position: relative;
  padding-top: 22px;
}
.reserve__field input,
.reserve__field select,
.reserve__field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  padding: 10px 0 10px;
  outline: none;
  transition: border-bottom-color 0.35s ease;
  font-weight: 400;
}
.reserve__field textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
}
.reserve__field label {
  position: absolute;
  left: 0;
  top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss-soft);
  pointer-events: none;
  transition: top 0.3s var(--ease-out), color 0.3s ease, font-size 0.3s ease;
}
.reserve__field label em {
  font-style: normal;
  color: var(--rust);
  text-transform: none;
  letter-spacing: 0.06em;
  font-size: 10px;
}
.reserve__field input:focus,
.reserve__field select:focus,
.reserve__field textarea:focus { border-bottom-color: var(--ink); }
.reserve__field input:focus + label,
.reserve__field input:not(:placeholder-shown) + label,
.reserve__field textarea:focus + label,
.reserve__field textarea:not(:placeholder-shown) + label {
  top: 0;
  color: var(--ink);
  font-size: 10px;
}
.reserve__field--select label {
  top: 0;
  font-size: 10px;
  color: var(--ink);
}
.reserve__field--select select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='none' stroke='%230a0a0a' stroke-width='1.6' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 22px;
  cursor: pointer;
}
.reserve__field--textarea label { top: 0; font-size: 10px; color: var(--ink); }

/* Date input adjustments — the native picker keeps its own layout */
.reserve__field input[type="date"] {
  color: var(--ink);
}
.reserve__field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: opacity(0.6);
  cursor: pointer;
}

/* ---- Consent + submit ---- */
.reserve__consent {
  padding: 6px 0 2px;
}
.reserve__consent label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--moss);
}
.reserve__consent input {
  margin-top: 3px;
  accent-color: var(--ink);
  transform: scale(1.15);
  cursor: pointer;
}
.reserve__submit {
  align-self: flex-start;
  margin-top: 6px;
}
.reserve__submit:disabled {
  opacity: 0.6;
  cursor: wait;
}
.reserve__fineprint {
  color: var(--moss-soft) !important;
  margin-top: 6px;
  letter-spacing: 0.12em;
  text-transform: none;
  font-size: 12px !important;
}

/* ---- Success state ---- */
.reserve__success {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 42px 40px 44px;
  background: var(--cream);
  border-radius: 6px;
  border: 1px solid var(--line);
  align-items: flex-start;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reserve__success.is-in { opacity: 1; transform: translateY(0); }
.reserve__success-mark {
  font-family: var(--display);
  font-size: 34px;
  color: var(--gold);
}
.reserve__success-title {
  font-family: var(--display);
  font-weight: 300;
  font-variation-settings: "opsz" 96;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  color: var(--ink);
}
.reserve__success-title .italic { font-family: var(--display); font-style: italic; }
.reserve__success-copy {
  font-size: 15px;
  color: var(--moss);
  line-height: 1.55;
  max-width: 480px;
}
.reserve__success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

/* ---- Bottom contact bar ---- */
.reserve__contact {
  max-width: var(--max);
  margin: clamp(70px, 8vw, 120px) auto 0;
  padding-top: clamp(40px, 4vw, 60px);
  border-top: 1px solid var(--line);
}
.reserve__contact-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.reserve__contact-eyebrow {
  color: var(--moss-soft) !important;
}
.reserve__contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 760px) {
  .reserve__contact-grid { grid-template-columns: 1fr; }
}
.reserve__contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
  color: var(--ink);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.2;
  transition: transform 0.3s var(--ease-out);
}
.reserve__contact-item:hover { transform: translateX(6px); }
.reserve__contact-item .micro { color: var(--moss-soft); }

/* On the reserve page, the nav is always in its "solid" scrolled state. */
.nav--solid { background: rgba(250, 250, 246, 0.94) !important; }
