/* ============================================================
   SACRED BLOOM · Bali Blue Lotus
   Midnight temple-gold design system
   ============================================================ */

:root {
  /* palette */
  --midnight: #0B1533;
  --midnight-2: #101E44;
  --midnight-3: #16295C;
  --midnight-deep: #070E24;
  --gold: #C9A43A;
  --gold-2: #E5CB87;
  --gold-3: #755E1E;
  --gold-soft: rgba(201, 164, 58, 0.38);
  --gold-faint: rgba(201, 164, 58, 0.16);
  --parchment: #F5EFE0;
  --parchment-2: #ECE2C9;
  --cream-card: #FBF7EC;
  --ink: #333F68;
  --ink-strong: #152352;
  --moon: #EFE6CE;          /* light text on midnight */
  --moon-dim: #B9BFD8;      /* secondary text on midnight */
  --lotus: #8B8CCB;
  --purple: #4C3E86;

  /* type */
  --font-display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --font-caps: "Cinzel", "Trajan Pro", Georgia, serif;
  --font-body: "Jost", "Avenir Next", "Futura", "Century Gothic", sans-serif;

  --wrap: 1180px;
  --radius: 14px;
  --shadow-card: 0 18px 50px -18px rgba(11, 21, 51, 0.35);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--midnight);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3 { text-wrap: balance; }
ul { margin: 0; padding: 0; list-style: none; }
figure, blockquote { margin: 0; }
button { font: inherit; background: none; border: none; cursor: pointer; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--midnight);
  padding: 10px 18px; font-family: var(--font-caps); font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
  border-radius: 2px;
}
.section-light :focus-visible { outline-color: var(--ink-strong); }
.section-light .callout :focus-visible { outline-color: var(--gold-2); }

strong { font-weight: 500; }

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

/* ---------- shared type ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: var(--font-caps);
  font-weight: 400;
  font-size: 12.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-3);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 44px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  flex: none;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: "";
  width: 44px; height: 1px;
  background: linear-gradient(270deg, transparent, var(--gold));
  flex: none;
}
.dark .eyebrow { color: var(--gold-2); }

.display {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink-strong);
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.12;
  letter-spacing: 0.01em;
}
.dark .display { color: var(--moon); }

.lede {
  font-size: 18.5px;
  max-width: 62ch;
}

.tagline-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--gold-3);
  letter-spacing: 0.01em;
}
.dark .tagline-serif { color: var(--gold-2); }

/* ---------- ornaments ---------- */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin: 0 auto;
  color: var(--gold);
}
.divider::before, .divider::after {
  content: "";
  height: 1px; width: min(150px, 22vw);
  background: linear-gradient(90deg, transparent, var(--gold-soft));
}
.divider::after { background: linear-gradient(270deg, transparent, var(--gold-soft)); }
.divider svg { width: 30px; height: 30px; flex: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-caps);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 32px;
  border-radius: 3px;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease), box-shadow 0.35s var(--ease),
              transform 0.35s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-gold {
  background: linear-gradient(120deg, #B8912E, var(--gold) 45%, #DDBE6A);
  color: #101733;
  box-shadow: 0 12px 34px -12px rgba(201, 164, 58, 0.55);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(201, 164, 58, 0.7); }
.btn-ghost {
  border: 1px solid var(--gold-soft);
  color: var(--gold-2);
  background: rgba(201, 164, 58, 0.04);
}
.btn-ghost:hover { background: rgba(201, 164, 58, 0.12); border-color: var(--gold); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: box-shadow 0.4s var(--ease);
}
/* scrolled backdrop lives on a pseudo-element: backdrop-filter on .nav itself
   would make it the containing block for the fixed mobile menu */
.nav::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: rgba(9, 17, 41, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 30px;
  transition: padding 0.4s var(--ease);
}
.nav.scrolled::before { opacity: 1; }
.nav.scrolled {
  box-shadow: 0 1px 0 rgba(201, 164, 58, 0.22), 0 14px 40px -20px rgba(0, 0, 0, 0.6);
}
.nav.scrolled .nav-inner { padding: 12px 30px; }

.brand {
  display: flex; align-items: center; gap: 13px;
  text-decoration: none;
}
.brand svg { width: 40px; height: 40px; }
.brand-name {
  font-family: var(--font-caps);
  color: var(--moon);
  font-size: 17px;
  letter-spacing: 0.22em;
  line-height: 1.25;
}
.brand-name small {
  display: block;
  font-size: 8.5px;
  letter-spacing: 0.42em;
  color: var(--gold-2);
}

.nav-links {
  display: flex; align-items: center; gap: 34px;
}
.nav-links a:not(.btn) {
  font-family: var(--font-caps);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moon-dim);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--gold-2);
  transition: right 0.35s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--gold-2); }
.nav-links a:not(.btn):hover::after { right: 0; }
.nav-links .btn { padding: 12px 22px; font-size: 11.5px; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 6px;
  padding: 10px;
}
.nav-toggle span {
  width: 26px; height: 1.5px; background: var(--gold-2);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  background:
    radial-gradient(1100px 700px at 78% 30%, rgba(76, 62, 134, 0.34), transparent 62%),
    radial-gradient(900px 620px at 12% 82%, rgba(22, 41, 92, 0.75), transparent 65%),
    linear-gradient(178deg, #0A122C 4%, var(--midnight) 48%, #0C1839 100%);
  overflow: hidden;
}
.hero-frame {
  position: absolute; inset: 16px; z-index: 5;
  border: 1px solid rgba(201, 164, 58, 0.34);
  pointer-events: none;
}
.hero-frame::after {
  content: "";
  position: absolute; inset: 5px;
  border: 1px solid rgba(201, 164, 58, 0.13);
}
.hero-watermark {
  position: absolute; z-index: 1;
  width: min(66vw, 860px); height: auto;
  left: 50%; top: 54%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  pointer-events: none;
}
.stars { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.star {
  position: absolute;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold-2);
  opacity: 0.7;
  animation: twinkle 4.5s ease-in-out infinite;
}
.star.s2 { width: 2px; height: 2px; animation-duration: 6s; }
.sparkle {
  position: absolute;
  width: 15px; height: 15px;
  color: var(--gold-2);
  opacity: 0;
  animation: twinkle 5.5s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.12; transform: scale(0.8); }
  50% { opacity: 0.85; transform: scale(1); }
}

.hero-inner {
  position: relative; z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 150px 28px 110px;
}

.hero-om {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 0 24px rgba(201, 164, 58, 0.5);
}
.hero-eyebrow {
  display: block;
  font-family: var(--font-caps);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--lotus);
  -webkit-text-fill-color: var(--lotus);
  margin-bottom: 26px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(58px, 7.6vw, 104px);
  line-height: 0.98;
  letter-spacing: 0.015em;
  color: var(--gold-2);
  margin-bottom: 26px;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero h1 {
    background: linear-gradient(165deg, #F2E3B6 18%, var(--gold-2) 42%, #B8912E 88%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(21px, 2.4vw, 27px);
  color: var(--moon);
  margin-bottom: 20px;
}
.hero-copy {
  color: var(--moon-dim);
  max-width: 50ch;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 46px; }
.hero-trust {
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(185, 191, 216, 0.66);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.hero-trust svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

/* arch portrait */
.hero-arch {
  position: relative;
  justify-self: center;
  width: min(100%, 430px);
}
.hero-arch::before {
  content: "";
  position: absolute; inset: -12%;
  background: radial-gradient(closest-side, rgba(139, 140, 203, 0.35), rgba(201, 164, 58, 0.08) 58%, transparent 75%);
  filter: blur(8px);
  z-index: 0;
}
.arch-frame {
  position: relative; z-index: 1;
  padding: 13px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px 999px 10px 10px;
  background: rgba(11, 21, 51, 0.4);
}
.arch-frame img {
  width: 100%;
  aspect-ratio: 430 / 555;
  object-fit: cover;
  border-radius: 986px 986px 6px 6px;
  border: 1px solid rgba(201, 164, 58, 0.24);
}
.hero-arch figcaption {
  position: absolute; z-index: 2;
  left: 50%; bottom: -21px;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--midnight-deep);
  border: 1px solid var(--gold-soft);
  border-radius: 3px;
  padding: 10px 24px;
  font-family: var(--font-caps);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.scroll-cue {
  position: absolute; z-index: 11;
  left: 50%; bottom: 34px;
  transform: translateX(-50%);
  color: var(--gold-2);
  opacity: 0.75;
  animation: drift 3s ease-in-out infinite;
}
.scroll-cue svg { width: 22px; height: 22px; }
@keyframes drift {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* hero load sequence */
.hero .rise {
  opacity: 0;
  transform: translateY(26px);
  animation: rise 1.1s var(--ease) forwards;
}
.hero .rise.d1 { animation-delay: 0.15s; }
.hero .rise.d2 { animation-delay: 0.3s; }
.hero .rise.d3 { animation-delay: 0.45s; }
.hero .rise.d4 { animation-delay: 0.6s; }
.hero .rise.d5 { animation-delay: 0.75s; }
.hero-arch.rise { animation-delay: 0.5s; animation-duration: 1.5s; }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}
/* the LCP candidates (h1, hero photo) enter with motion only — never hidden */
.hero h1.rise, .hero-arch.rise { opacity: 1; animation-name: rise-solid; }
@keyframes rise-solid {
  from { transform: translateY(26px); }
  to { transform: none; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--midnight-deep);
  border-top: 1px solid rgba(201, 164, 58, 0.22);
  border-bottom: 1px solid rgba(201, 164, 58, 0.22);
  overflow: hidden;
  padding: 17px 0;
  position: relative;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee-track span {
  font-family: var(--font-caps);
  font-size: 12.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-2);
  white-space: nowrap;
  padding: 0 8px;
}
.marquee-track span i {
  font-style: normal;
  color: var(--gold-3);
  padding: 0 22px;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(90px, 11vw, 140px) 0; }
.section-light { background: var(--parchment); color: var(--ink); }
.section-light.deep { background: var(--parchment-2); }
.section-dark { background: var(--midnight); color: var(--moon-dim); }
.section-dark .display { color: var(--moon); }
.section-dark .lede { color: var(--moon-dim); }

.section-head { max-width: 780px; margin: 0 auto 64px; text-align: center; }
.section-head .display { margin-bottom: 20px; }

/* split layouts */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
}
.split.rev > .split-media { order: 2; }

.split-media { position: relative; }
.framed {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(143, 115, 38, 0.4);
  background: rgba(255, 252, 243, 0.5);
  border-radius: 6px;
  box-shadow: var(--shadow-card);
}
.section-dark .framed {
  border-color: var(--gold-soft);
  background: rgba(16, 30, 68, 0.5);
}
.framed img {
  width: 100%;
  border-radius: 3px;
  object-fit: cover;
}
.framed .corner {
  position: absolute; width: 26px; height: 26px;
  border-color: var(--gold); border-style: solid;
  pointer-events: none;
}
.framed .corner.tl { top: -1px; left: -1px; border-width: 1.5px 0 0 1.5px; }
.framed .corner.tr { top: -1px; right: -1px; border-width: 1.5px 1.5px 0 0; }
.framed .corner.bl { bottom: -1px; left: -1px; border-width: 0 0 1.5px 1.5px; }
.framed .corner.br { bottom: -1px; right: -1px; border-width: 0 1.5px 1.5px 0; }

.framed.arch {
  border-radius: 999px 999px 6px 6px;
}
.framed.arch img { border-radius: 986px 986px 3px 3px; }
.framed.arch .corner.tl, .framed.arch .corner.tr { display: none; }

.floating-seal {
  position: absolute; z-index: 3;
  right: -26px; bottom: 38px;
  width: 128px; height: 128px;
  animation: spin 36s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.split-body h2 { margin-bottom: 24px; }
.split-body .tagline-serif { display: block; margin-bottom: 18px; }
.split-body p + p { margin-top: 18px; }

/* value trio */
.trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  margin-top: 44px;
  border: 1px solid var(--gold-faint);
  background: var(--gold-faint);
}
.trio > div {
  background: var(--midnight-2);
  padding: 26px 18px;
  text-align: center;
}
.section-light .trio > div { background: var(--cream-card); }
.trio svg { width: 26px; height: 26px; color: var(--gold); margin: 0 auto 12px; }
.trio h3 {
  font-family: var(--font-caps);
  font-weight: 400;
  font-size: 12.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.section-light .trio h3 { color: var(--gold-3); }
.trio p { font-size: 14px; line-height: 1.6; margin-top: 8px; color: var(--moon-dim); }
.section-light .trio p { color: var(--ink); }

/* ============================================================
   EXPERIENCE CARDS
   ============================================================ */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.exp-card {
  position: relative;
  background: var(--cream-card);
  border: 1px solid rgba(143, 115, 38, 0.28);
  border-radius: 6px;
  padding: 44px 34px 38px;
  text-align: center;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold);
}
.exp-card::before {
  content: "";
  position: absolute; inset: 6px;
  border: 1px solid rgba(201, 164, 58, 0.14);
  border-radius: 3px;
  pointer-events: none;
}
.exp-icon {
  width: 62px; height: 62px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-3);
  background: radial-gradient(circle at 50% 30%, rgba(201, 164, 58, 0.16), transparent 70%);
}
.exp-icon svg { width: 26px; height: 26px; }
.exp-card h3 {
  font-family: var(--font-caps);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-strong);
  margin-bottom: 14px;
}
.exp-card p { font-size: 15.5px; line-height: 1.7; }

.exp-note {
  margin: 54px auto 0;
  max-width: 760px;
  text-align: center;
}
.exp-note .chips {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px;
  margin-bottom: 26px;
}
.exp-note .chips span {
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-3);
  border: 1px solid rgba(143, 115, 38, 0.4);
  border-radius: 999px;
  padding: 9px 20px;
}
.disclaimer {
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(51, 63, 104, 0.66);
  max-width: 68ch;
  margin: 0 auto;
}

/* ============================================================
   OFFERINGS
   ============================================================ */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.offer-card {
  background: var(--cream-card);
  border: 1px solid rgba(143, 115, 38, 0.28);
  border-radius: 6px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold);
}
.offer-media {
  position: relative;
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
}
.offer-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.offer-card:hover .offer-media img { transform: scale(1.05); }
.offer-media::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 -46px 40px -32px rgba(11, 21, 51, 0.5);
}
.offer-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.offer-body h3 {
  font-family: var(--font-caps);
  font-weight: 400;
  font-size: 13.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-strong);
  margin-bottom: 12px;
}
.offer-body p { font-size: 14.5px; line-height: 1.65; flex: 1; }
.offer-body .offer-tag {
  margin-top: 18px;
  font-family: var(--font-caps);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-3);
}

/* wholesale callout + price list */
.callout {
  margin-top: 70px;
  background: linear-gradient(135deg, var(--midnight-2), var(--midnight) 65%);
  border: 1px solid var(--gold-soft);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  scroll-margin-top: 120px;
}
.callout-top {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}
.callout-pricing {
  border-top: 1px solid rgba(201, 164, 58, 0.22);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(30px, 4vw, 60px);
  padding: clamp(38px, 4.5vw, 60px) clamp(28px, 5vw, 70px);
  color: var(--moon-dim);
}
.pricing-intro .eyebrow { color: var(--gold-2); }
.pricing-intro h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.15;
  color: var(--moon);
  margin-bottom: 14px;
}
.pricing-intro h3 + p { font-size: 15.5px; max-width: 34ch; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  align-self: start;
}
.price-table th {
  font-family: var(--font-caps);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-2);
  text-align: left;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--gold-soft);
}
.price-table th:last-child, .price-table td:last-child { text-align: right; }
.price-table td {
  padding: 15px 0;
  border-bottom: 1px solid rgba(201, 164, 58, 0.16);
  font-size: 16px;
  color: var(--moon);
  white-space: nowrap;
}
.price-table td:last-child {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--gold-2);
}
.price-table tr:last-child td { border-bottom: 0; }
.price-table a {
  font-family: var(--font-caps);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 2px;
  transition: border-color 0.3s var(--ease);
}
.price-table a:hover { border-color: var(--gold-2); }

.packaging h4 {
  font-family: var(--font-caps);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-2);
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--gold-soft);
}
.packaging ul { display: grid; gap: 12px; margin-bottom: 24px; }
.packaging li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
  color: var(--moon);
}
.packaging li svg { width: 18px; height: 14px; color: var(--gold); flex: none; }
.packaging .fine {
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(185, 191, 216, 0.72);
}
.callout-media { position: relative; min-height: 380px; }
.callout-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.callout-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 55%, var(--midnight-2));
}
.callout-body { padding: clamp(40px, 5vw, 70px); color: var(--moon-dim); }
.callout-body .eyebrow { color: var(--gold-2); }
.callout-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  color: var(--moon);
  margin-bottom: 18px;
}
.callout-body h3 + p { max-width: 52ch; margin-bottom: 30px; }
.callout-points {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  margin-bottom: 34px;
}
.callout-points li {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.callout-points svg { width: 13px; height: 13px; color: var(--gold); flex: none; }

/* ============================================================
   CEREMONY
   ============================================================ */
.ceremony {
  position: relative;
  background:
    radial-gradient(900px 540px at 85% 12%, rgba(76, 62, 134, 0.3), transparent 60%),
    linear-gradient(180deg, var(--midnight-deep), var(--midnight) 55%);
}
.ceremony-offers { display: grid; gap: 14px; margin: 34px 0 38px; }
.ceremony-offers li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  border: 1px solid rgba(201, 164, 58, 0.22);
  background: rgba(16, 30, 68, 0.55);
  border-radius: 4px;
  padding: 18px 24px;
}
.ceremony-offers h3 {
  margin: 0;
  font-family: var(--font-caps);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moon);
}
.ceremony-offers small {
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  white-space: nowrap;
}

/* ============================================================
   ROOTS / FARMER BAND
   ============================================================ */
.roots {
  position: relative;
  min-height: 620px;
  display: flex; align-items: center;
  background: var(--midnight-deep);
  overflow: hidden;
}
.roots-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.roots-shade {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7, 14, 36, 0.93) 22%, rgba(7, 14, 36, 0.62) 55%, rgba(7, 14, 36, 0.35));
}
.roots .wrap { position: relative; z-index: 2; }
.roots::before, .roots::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 1px; z-index: 3;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}
.roots::before { top: 0; }
.roots::after { bottom: 0; }
.roots-inner {
  position: relative; z-index: 2;
  max-width: 660px;
  padding: 110px 0;
}
.roots h2 {
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(27px, 3.2vw, 40px);
  line-height: 1.3;
  color: var(--moon);
}
.roots h2 em { color: var(--gold-2); font-style: italic; }
.roots p { color: var(--moon-dim); max-width: 56ch; }
.roots .dharma {
  margin-top: 30px;
  padding-left: 22px;
  border-left: 1px solid var(--gold-soft);
  font-size: 15px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-cards { display: grid; gap: 18px; margin-top: 40px; }
.contact-card {
  display: flex; align-items: center; gap: 20px;
  background: var(--cream-card);
  border: 1px solid rgba(143, 115, 38, 0.28);
  border-radius: 6px;
  padding: 22px 26px;
  text-decoration: none;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.contact-card:hover {
  transform: translateX(6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
}
.contact-card.is-static, .contact-card.is-static:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(143, 115, 38, 0.28);
}
.contact-card .cc-icon {
  width: 52px; height: 52px; flex: none;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-3);
}
.contact-card .cc-icon svg { width: 22px; height: 22px; }
.contact-card h3 {
  font-family: var(--font-caps);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 4px;
}
.contact-card p { font-size: 17px; color: var(--ink-strong); }
.contact-note { margin-top: 26px; font-size: 14.5px; color: rgba(51, 63, 104, 0.75); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--midnight-deep);
  color: var(--moon-dim);
  padding: 90px 0 0;
  border-top: 1px solid rgba(201, 164, 58, 0.22);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  padding-bottom: 70px;
}
.footer .brand { margin-bottom: 22px; }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--gold-2);
  max-width: 34ch;
  margin-bottom: 18px;
}
.footer p { font-size: 14.5px; max-width: 46ch; }
.footer h4 {
  font-family: var(--font-caps);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 22px;
}
.footer ul { display: grid; gap: 12px; }
.footer ul a {
  color: var(--moon-dim);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s var(--ease);
  display: inline-flex; align-items: center; gap: 10px;
}
.footer ul a:hover { color: var(--gold-2); }
.footer ul svg { width: 16px; height: 16px; color: var(--gold-3); flex: none; }
.footer-bottom {
  border-top: 1px solid rgba(201, 164, 58, 0.14);
  padding: 26px 0 34px;
}
.footer-bottom .wrap {
  display: flex; flex-wrap: wrap; gap: 12px 30px;
  align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 12.5px; color: rgba(185, 191, 216, 0.55); max-width: none; }
.footer-om { font-family: Georgia, serif; color: var(--gold-3); font-size: 20px; }

/* ============================================================
   REVEALS
   ============================================================ */
/* content stays visible unless the script that reveals it is actually running */
.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.dl1 { transition-delay: 0.12s; }
.reveal.dl2 { transition-delay: 0.24s; }
.reveal.dl3 { transition-delay: 0.36s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1060px) {
  .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-inner { grid-template-columns: 1fr; padding-top: 130px; text-align: center; }
  .hero-eyebrow, .hero-copy { margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-trust { justify-content: center; }
  .hero-arch { width: min(78vw, 400px); margin-top: 10px; }
  .split-body .eyebrow, .callout-body .eyebrow { justify-content: center; }
  .split-body .eyebrow::after, .callout-body .eyebrow::after {
    content: "";
    width: 44px; height: 1px;
    background: linear-gradient(270deg, transparent, var(--gold));
    flex: none;
  }
  .split { grid-template-columns: 1fr; }
  .split.rev > .split-media { order: 0; }
  .split-media { max-width: 560px; margin: 0 auto; }
  .split-body { text-align: center; }
  .split-body .lede { margin-left: auto; margin-right: auto; }
  .callout-top { grid-template-columns: 1fr; }
  .callout-pricing { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
  .pricing-intro { grid-column: 1 / -1; }
  .pricing-intro h3 + p { max-width: none; }
  .callout-media { min-height: 300px; }
  .callout-media::after { background: linear-gradient(180deg, transparent 55%, var(--midnight-2)); }
  .callout-points { justify-content: center; }
  .callout-body { text-align: center; }
  .callout-body h3 + p { margin-left: auto; margin-right: auto; }
  .roots-inner { max-width: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }
}

/* the full nav row needs ~1120px — below that, use the overlay menu */
@media (max-width: 1119px) {
  .nav-links {
    position: fixed; inset: 0;
    flex-direction: column; justify-content: center; gap: 30px;
    background: rgba(7, 14, 36, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0; pointer-events: none;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0s 0.4s;
  }
  .nav-links.open {
    opacity: 1; pointer-events: auto;
    visibility: visible;
    transition: opacity 0.4s var(--ease), visibility 0s;
  }
  .nav-links a:not(.btn) { font-size: 15px; }
  .nav-toggle { display: flex; position: relative; z-index: 110; }
}

@media (max-width: 860px) {
  .exp-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .trio { grid-template-columns: 1fr; }
  .ceremony-offers li { flex-direction: column; gap: 6px; align-items: flex-start; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero-arch figcaption {
    white-space: normal;
    width: max-content;
    max-width: 88%;
    line-height: 1.7;
  }
  .offer-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .hero-frame { inset: 10px; }
  .hero-inner { padding-top: 120px; padding-bottom: 90px; }
  .floating-seal { width: 96px; right: -8px; bottom: 20px; }
  .roots-shade { background: linear-gradient(180deg, rgba(7, 14, 36, 0.9), rgba(7, 14, 36, 0.72)); }
  .callout-pricing { grid-template-columns: minmax(0, 1fr); }
  .btn-extra { display: none; }
  .callout-body .btn { width: 100%; padding: 15px 20px; }
}

@media (max-width: 480px) {
  .eyebrow::before, .eyebrow::after { display: none; }
  .callout-points li { font-size: 10.5px; letter-spacing: 0.16em; }
}

/* ============================================================
   NO-ANIM (QA / print — set via ?static=1)
   ============================================================ */
.no-anim { scroll-behavior: auto; }
.no-anim .hero { min-height: 780px; }
.no-anim .hero .rise, .no-anim .reveal {
  opacity: 1; transform: none; animation: none; transition: none;
}
.no-anim .star, .no-anim .sparkle { animation: none; opacity: 0.5; }
.no-anim .scroll-cue, .no-anim .floating-seal, .no-anim .marquee-track { animation: none; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero .rise, .reveal { opacity: 1; transform: none; animation: none; transition: none; }
  .star, .sparkle { animation: none; opacity: 0.5; }
  .scroll-cue, .floating-seal { animation: none; }
  .marquee-track { animation: none; justify-content: center; width: 100%; }
  .marquee-track span[aria-hidden="true"] { display: none; }
  .marquee-track span { white-space: normal; text-align: center; }
  .offer-card:hover .offer-media img { transform: none; }
}
