/* ==========================================================================
   Drift — brand system
   Editorial wellness: warm paper grain, layered breathing meshes, a high-
   contrast serif, and the kind of typographic detail you'd find in a printed
   journal (Kinfolk / Cereal). Tailwind (Play CDN) handles raw layout only;
   everything that defines the *feel* lives here.
   ========================================================================== */

:root {
  /* Surfaces */
  --bg:            #f5efe6; /* warm cream */
  --bg-2:          #ebe3d4; /* darker warm beige */
  --card:          #fbf7ef; /* almost-white cream */
  --ink-surface:   #221f1a; /* the one dark "spread" */

  /* Type */
  --text:          #2d2a24;
  --text-2:        #6b6357;
  /* Darkened from the original #9a9285 to meet WCAG AA (4.5:1) on both the
     cream and beige surfaces — the soft gray was ~2.6:1 and failed. */
  --text-muted:    #6e6559;
  --on-dark:       #efe7d8; /* cream text on the dark spread */
  --on-dark-muted: #a99f8d;

  /* Accents */
  --sage:          #6b8e6b;
  --sage-deep:     #4a6b4a;
  --sage-soft:     #c8d4c0;
  --terracotta:    #c87f5a;

  /* Hairlines */
  --rule:          rgba(107, 142, 107, 0.22);
  --rule-soft:     rgba(45, 42, 36, 0.10);

  /* The single easing curve used site-wide */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:     cubic-bezier(0.33, 0, 0.2, 1);

  --content-max:   1240px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  font-feature-settings: "kern", "liga", "calt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--sage-soft); color: var(--text); }

img { display: block; max-width: 100%; }

/* Keyboard focus — a clear sage ring on every interactive element. :where()
   keeps specificity at 0 so component rules can still override. Default
   (mouse) focus stays quiet via :focus-visible. */
:where(a, button, input, [tabindex]):focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 3px;
}
/* On the dark spread the deep-sage ring is too low-contrast; lighten it. */
.spread-dark :where(a, button, [tabindex]):focus-visible {
  outline-color: var(--sage-soft);
}

/* Skip link — hidden until focused, then slides into the top-left. */
.skip-link {
  position: fixed;
  top: 0; left: 1rem;
  z-index: 80;
  transform: translateY(-120%);
  background: var(--sage-deep);
  color: #fbf7ef;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  transition: transform 0.35s var(--ease-out);
}
.skip-link:focus-visible { transform: translateY(0); outline-offset: -2px; }

/* Programmatic focus target — don't paint a ring on the whole <main>. */
#main-content:focus { outline: none; }

/* --------------------------------------------------------------------------
   Film grain — a fixed, full-viewport noise tile. Multiplies into the warm
   palette so the whole page reads like printed paper rather than flat #hex.
   Tiny SVG, GPU-cheap, pointer-events: none.
   -------------------------------------------------------------------------- */

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

/* --------------------------------------------------------------------------
   Scroll progress — a 2px sage hairline that fills as you read. Quiet.
   -------------------------------------------------------------------------- */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  z-index: 60;
  background: linear-gradient(90deg, var(--sage), var(--sage-deep));
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* --------------------------------------------------------------------------
   Cursor glow — a soft sage orb that *drifts* behind the cursor with lag.
   On-brand (it literally drifts), desktop only, killed for reduced motion.
   -------------------------------------------------------------------------- */

.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 520px; height: 520px;
  margin: -260px 0 0 -260px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  background: radial-gradient(circle at center,
              rgba(107,142,107,0.16) 0%,
              rgba(107,142,107,0.06) 35%,
              rgba(107,142,107,0) 68%);
  transition: opacity 0.8s var(--ease-out);
  will-change: transform;
}
.cursor-glow.is-visible { opacity: 1; }

@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor-glow { display: none; }
}

/* Everything sits above the grain */
.nav, main, footer, .mobile-menu, .scroll-progress { position: relative; z-index: 2; }

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

.font-serif {
  font-family: "Fraunces", "Cormorant Garamond", Georgia, serif;
  font-optical-sizing: auto;
}
.font-sans { font-family: "Inter", system-ui, sans-serif; }

.display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
}
.display em { font-style: italic; font-weight: 300; }

.headline {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.1rem, 1.3rem + 3.4vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--text);
}
.headline em { font-style: italic; }

/* Eyebrow / kicker — a short sage rule + lowercase letter-spaced label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--sage);
  display: inline-block;
}
.eyebrow span {
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0.26em;
  color: var(--sage-deep);
}
.eyebrow--center { justify-content: center; }
.eyebrow--terra::before { background: var(--terracotta); }
.eyebrow--terra span { color: var(--terracotta); }
.eyebrow--dark::before { background: var(--sage-soft); }
.eyebrow--dark span { color: var(--sage-soft); }

/* Section numeral — magazine contents-page feel */
.sec-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.lead {
  font-size: 1.1875rem;
  line-height: 1.72;
  color: var(--text-2);
}
.muted-italic {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Hairline rule */
.rule { height: 1px; background: var(--rule); border: 0; }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px)  { .container { padding-inline: 2.5rem; } }
@media (min-width: 1280px) { .container { padding-inline: 3rem; } }

.section { padding-block: 100px; position: relative; }
@media (min-width: 1024px) { .section { padding-block: 168px; } }

/* --------------------------------------------------------------------------
   Gradient meshes — soft sage orbs, heavily blurred. Layered for depth.
   -------------------------------------------------------------------------- */

.mesh {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(64px);
  background: radial-gradient(circle at center,
              rgba(107,142,107,0.50) 0%,
              rgba(200,212,192,0.32) 46%,
              rgba(245,239,230,0) 72%);
  will-change: transform;
}
.mesh--soft   { opacity: 0.5; }
.mesh--faint  { opacity: 0.32; }
.mesh--terra  {
  background: radial-gradient(circle at center,
              rgba(200,127,90,0.26) 0%,
              rgba(200,127,90,0.10) 46%,
              rgba(245,239,230,0) 72%);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  background: var(--sage);
  color: #fbf7ef;
  overflow: hidden;
  min-height: 52px;
  transition: color 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  isolation: isolate;
}
/* Deep-sage fill wipes up from the bottom on hover */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--sage-deep);
  transform: translateY(101%);
  transition: transform 0.6s var(--ease-out);
}
.btn:hover::before { transform: translateY(0); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--sage-deep); outline-offset: 3px; }
.btn__arrow { transition: transform 0.5s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--rule);
}
.btn-ghost::before { background: var(--sage-soft); }
.btn-ghost:hover { color: var(--text); }

/* Animated underline link */
.link-underline {
  position: relative;
  text-decoration: none;
  color: inherit;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease-out);
}
.link-underline:hover::after { transform: scaleX(1); }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background-color 0.6s var(--ease-out),
              backdrop-filter 0.6s var(--ease-out),
              border-color 0.6s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background-color: rgba(245,239,230,0.82);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
  border-bottom-color: var(--rule);
}
.nav__bar { height: 80px; }

.nav__logo {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 1.65rem;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0.28rem;
}
/* a tiny breathing sage dot after the wordmark */
.nav__logo i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage);
  display: inline-block;
}

.nav__link {
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  color: var(--text-2);
  text-decoration: none;
  position: relative;
  transition: color 0.4s var(--ease-out);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer; padding: 11px;
}
.nav__toggle span {
  display: block; width: 100%; height: 1.5px;
  background: var(--text);
  transition: transform 0.45s var(--ease-out), opacity 0.3s var(--ease-out);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 45;
  background: rgba(245,239,230,0.98);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.75rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s var(--ease-out);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: "Fraunces", serif; font-weight: 300; font-size: 2.1rem;
  color: var(--text); text-decoration: none;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), color 0.3s var(--ease-out);
}
.mobile-menu a em { font-style: italic; color: var(--sage-deep); }
.mobile-menu a:hover { color: var(--sage-deep); }
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.22s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.29s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.36s; }

/* Nav responsive show/hide is owned here, not by Tailwind's .md:hidden.
   These elements set `display` in their component rules, which would beat a
   utility of equal specificity depending on stylesheet order — handling it in
   one place keeps it correct regardless of how Tailwind is delivered. */
@media (min-width: 768px) {
  .nav__toggle { display: none; }
  .mobile-menu { display: none; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: 120px 80px;
  background: linear-gradient(165deg, #f8f2ea 0%, #f5efe6 48%, #eef0e4 100%);
}
@supports not (min-height: 100svh) { .hero { min-height: 760px; } }

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
}

.hero__headline { font-size: clamp(3rem, 1.4rem + 6vw, 5.5rem); }

.hero__mesh-a {
  width: clamp(420px, 50vw, 720px);
  height: clamp(420px, 50vw, 720px);
  right: -6%; bottom: -16%;
}
.hero__mesh-b {
  width: clamp(280px, 30vw, 440px);
  height: clamp(280px, 30vw, 440px);
  left: -10%; top: -8%;
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: var(--text-muted);
}
.scroll-cue span {
  font-family: "Inter", sans-serif; font-size: 0.68rem;
  text-transform: lowercase; letter-spacing: 0.24em;
}
.scroll-cue i {
  width: 1px; height: 46px;
  background: linear-gradient(var(--sage), transparent);
  position: relative; overflow: hidden;
}
/* Below 1024px the hero stacks to a single column, so the breath orb sits at
   the bottom-centre — exactly where this bottom-anchored cue lives. The orb is
   the signature element, so the (decorative) cue steps aside on stacked layouts
   rather than colliding with the orb's label/hint. */
@media (max-width: 1023.98px) { .scroll-cue { display: none; } }

/* --------------------------------------------------------------------------
   Breathing guide — the signature, interactive centrepiece. The orb scales
   with a real inhale/hold/exhale curve (driven by JS) and the label tracks
   the phase. The site does the thing the product promises.
   -------------------------------------------------------------------------- */

.breath {
  position: relative;
  display: grid;
  place-items: center;
  width: min(420px, 84vw);
  aspect-ratio: 1;
  margin-inline: auto;
  /* It's a real <button>: reset chrome, keep it tappable. */
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  color: inherit;
  border-radius: 50%;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.breath:disabled { cursor: default; } /* reduced-motion: decorative only */
@media (hover: hover) {
  .breath:not(:disabled):hover .breath__hint { color: var(--sage-deep); }
}

/* When paused, ease the orb to rest instead of snapping, and soften the core. */
.breath.is-paused .breath__rings,
.breath.is-paused .breath__aura {
  transition: transform 1.4s var(--ease-out);
}
.breath__core { transition: opacity 1.2s var(--ease-out); }
.breath.is-paused .breath__core { opacity: 0.82; }
.breath__aura {
  position: absolute; inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%,
              rgba(107,142,107,0.30), rgba(200,212,192,0.12) 55%, transparent 72%);
  filter: blur(26px);
  transform: scale(var(--breath-scale, 0.78));
  will-change: transform;
}
.breath__rings {
  position: relative;
  width: 64%; aspect-ratio: 1;
  display: grid; place-items: center;
  transform: scale(var(--breath-scale, 0.78));
  will-change: transform;
}
.breath__ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--rule);
}
.breath__ring--2 { inset: 13%; border-color: rgba(107,142,107,0.34); }
.breath__ring--3 { inset: 27%; border-color: rgba(107,142,107,0.5); }
.breath__core {
  width: 46%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #82a682, #5d7d5d 70%, #4a6b4a);
  box-shadow: 0 18px 50px -20px rgba(74,107,74,0.6);
}
.breath__label {
  position: absolute;
  left: 50%; bottom: -8px;
  transform: translateX(-50%);
  font-family: "Fraunces", serif;
  font-style: italic; font-weight: 300;
  font-size: 1.15rem;
  color: var(--sage-deep);
  letter-spacing: 0.01em;
  transition: opacity 0.6s var(--ease-out);
  white-space: nowrap;
}
.breath__hint {
  position: absolute;
  left: 50%; bottom: -42px;
  transform: translateX(-50%);
  font-family: "Inter", sans-serif;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: lowercase;
  color: var(--text-muted);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Marquee — slow horizontal text strip used as an editorial divider.
   -------------------------------------------------------------------------- */

.marquee {
  position: relative;
  overflow: hidden;
  padding-block: 28px;
  border-block: 1px solid var(--rule);
  background: var(--card);
}
.marquee__track {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
}
.marquee__track span {
  font-family: "Fraunces", serif;
  font-style: italic; font-weight: 300;
  font-size: clamp(1.4rem, 1rem + 1.6vw, 2.1rem);
  color: var(--text);
  padding-inline: 1.5rem;
  display: inline-flex; align-items: center; gap: 3rem;
}
.marquee__track span::after {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage);
  display: inline-block;
}

/* --------------------------------------------------------------------------
   Full-bleed visual moment
   -------------------------------------------------------------------------- */

.fullbleed {
  position: relative;
  width: 100%; height: 72vh; min-height: 420px;
  overflow: hidden;
}
.fullbleed__img {
  position: absolute; inset: -12% 0;
  width: 100%; height: 124%;
  object-fit: cover;
  will-change: transform;
}
.fullbleed__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.5rem;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 1rem;
  color: var(--on-dark);
  background: linear-gradient(to top, rgba(34,31,26,0.55), transparent);
}
.fullbleed__caption .muted-italic { color: rgba(239,231,216,0.8); }

/* --------------------------------------------------------------------------
   Editorial cards ("what drift isn't")
   -------------------------------------------------------------------------- */

.cards {
  display: grid; gap: 0;
}
@media (min-width: 768px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.icard {
  position: relative;
  padding: 2.75rem 2rem 3rem;
  background: transparent;
  border-top: 1px solid var(--rule);
  transition: background-color 0.6s var(--ease-out);
}
@media (min-width: 768px) {
  .icard { border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
  .icard:first-child { border-left: 0; }
}
@media (max-width: 767px) { .icard:first-child { border-top: 0; } }
.icard:hover { background: rgba(251,247,239,0.6); }

.icard__num {
  font-family: "Fraunces", serif; font-style: italic; font-weight: 300;
  font-size: 0.9rem; color: var(--sage);
  margin-bottom: 2rem;
}
.icard__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  color: var(--sage-deep);
  margin-bottom: 1.5rem;
  transition: transform 0.6s var(--ease-out);
}
.icard:hover .icard__icon { transform: translateY(-3px); }
.icard__icon svg { width: 100%; height: 100%; }
.icard h3 {
  font-family: "Fraunces", serif; font-weight: 400; font-style: italic;
  font-size: 1.5rem; line-height: 1.2; color: var(--text);
  margin: 0 0 0.9rem;
}
.icard p { color: var(--text-2); margin: 0; }

/* --------------------------------------------------------------------------
   Phone mockup (pure HTML/CSS) — mirrors the live breathing guide
   -------------------------------------------------------------------------- */

.phone {
  position: relative;
  width: 288px;
  aspect-ratio: 9 / 19;
  border-radius: 46px;
  background: linear-gradient(160deg, #34302a, #221f1a);
  padding: 13px;
  box-shadow: 0 50px 90px -45px rgba(45,42,36,0.55), 0 0 0 1px rgba(45,42,36,0.05);
}
.phone__screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 34px; overflow: hidden;
  background: linear-gradient(170deg, #f8f2ea 0%, #e9efe5 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.4rem; text-align: center; padding: 2.2rem 1.5rem;
}
.phone__screen::before {
  content: ""; position: absolute; top: 15px; left: 50%;
  transform: translateX(-50%);
  width: 58px; height: 5px; border-radius: 999px;
  background: rgba(45,42,36,0.16);
}
.phone__label {
  font-family: "Inter", sans-serif; font-size: 0.68rem;
  letter-spacing: 0.22em; text-transform: lowercase; color: var(--sage-deep);
}
.phone__orb {
  position: relative; width: 130px; aspect-ratio: 1; display: grid; place-items: center;
}
.phone__orb .ring {
  position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(107,142,107,0.3);
}
.phone__orb .ring--2 { inset: 18%; border-color: rgba(107,142,107,0.45); }
.phone__orb .core {
  width: 52%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #82a682, #5d7d5d 72%, #4a6b4a);
}
.phone__title {
  font-family: "Fraunces", serif; font-weight: 300; font-style: italic;
  font-size: 1.45rem; color: var(--text);
}
.phone__timer {
  font-family: "Fraunces", serif; font-weight: 300; font-size: 2.6rem;
  color: var(--text); letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   Dark testimonial spread
   -------------------------------------------------------------------------- */

.spread-dark {
  position: relative;
  overflow: hidden;
  background: var(--ink-surface);
  color: var(--on-dark);
}
.spread-dark .quote-mark {
  font-family: "Fraunces", serif;
  font-size: clamp(7rem, 5rem + 10vw, 14rem);
  line-height: 0.7;
  color: rgba(107,142,107,0.4);
  display: block;
  height: 0.45em;
}
.spread-dark blockquote {
  font-family: "Fraunces", serif; font-weight: 300; font-style: italic;
  line-height: 1.28; letter-spacing: -0.01em;
  color: var(--on-dark);
  margin: 0;
}
.spread-dark cite {
  font-style: normal;
  color: var(--on-dark-muted);
  font-size: 0.92rem; letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   "How it feels" — editorial rows with timestamps
   -------------------------------------------------------------------------- */

.feel-row { position: relative; }
.feel-row__img-wrap { position: relative; overflow: hidden; border-radius: 4px; }
.feel-row__img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  will-change: transform;
}
.feel-time {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: lowercase;
  color: var(--sage-deep);
}
.feel-label {
  font-family: "Fraunces", serif; font-style: italic; font-weight: 300;
  font-size: 1.4rem; color: var(--text-muted);
}
.feel-body {
  font-family: "Fraunces", serif; font-weight: 300; line-height: 1.28;
  font-size: clamp(1.6rem, 1.1rem + 1.8vw, 2.4rem);
  color: var(--text); letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

.price-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 28px;
  padding: 3.25rem 2.5rem;
  max-width: 440px; margin-inline: auto; text-align: center;
  box-shadow: 0 40px 90px -60px rgba(45,42,36,0.45);
}
.price-card__amount {
  font-family: "Fraunces", serif; font-weight: 300; font-size: 3.4rem;
  line-height: 1; color: var(--text);
}
.price-toggle {
  display: inline-flex; background: rgba(107,142,107,0.10);
  border-radius: 999px; padding: 4px; margin-bottom: 2rem;
}
.price-toggle button {
  border: none; background: transparent; font-family: "Inter", sans-serif;
  font-size: 0.85rem; color: var(--text-2); padding: 9px 20px;
  border-radius: 999px; cursor: pointer;
  transition: background-color 0.5s var(--ease-out), color 0.5s var(--ease-out);
}
.price-toggle button.active {
  background: var(--card); color: var(--text);
  box-shadow: 0 2px 10px -4px rgba(45,42,36,0.3);
}

/* --------------------------------------------------------------------------
   Final invitation
   -------------------------------------------------------------------------- */

.invite {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(180deg, #f5efe6 0%, #edf1e6 100%);
}
.invite__mesh {
  width: clamp(520px, 72vw, 920px);
  height: clamp(520px, 72vw, 920px);
  left: 50%; top: 46%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
}

/* --------------------------------------------------------------------------
   Sage-dash list
   -------------------------------------------------------------------------- */

.dash-list { list-style: none; margin: 0; padding: 0; }
.dash-list li {
  position: relative; padding-left: 1.75rem; margin-bottom: 0.85rem; color: var(--text-2);
}
.dash-list li::before { content: "—"; position: absolute; left: 0; color: var(--sage); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer { border-top: 1px solid var(--sage-soft); background: var(--bg); }
.footer__logo {
  font-family: "Fraunces", serif; font-weight: 300; font-size: clamp(3rem, 2rem + 4vw, 4.5rem);
  line-height: 0.9; color: var(--text); letter-spacing: -0.02em;
}
.footer__heading {
  font-family: "Inter", sans-serif; font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.25rem;
}
.footer__link {
  display: block; color: var(--text-2); text-decoration: none;
  margin-bottom: 0.7rem; font-size: 0.95rem;
  transition: color 0.3s var(--ease-out), transform 0.4s var(--ease-out);
  width: fit-content;
}
.footer__link:hover { color: var(--sage-deep); transform: translateX(3px); }

.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  color: var(--text-2); border: 1px solid var(--rule);
  transition: color 0.4s var(--ease-out), border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.social-link:hover { color: var(--sage-deep); border-color: var(--sage); transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   Pull-quote helper
   -------------------------------------------------------------------------- */

.pullquote {
  font-family: "Fraunces", serif; font-weight: 300; font-style: italic;
  line-height: 1.3; letter-spacing: -0.01em; color: var(--text);
}
