/* ============================================================
   TIGER SOUL MEDICINE RETREATS
   Design system + components
   Palette: deep botanical green · champagne gold · cream
   Type: Cormorant Garamond (display) · Jost (sans)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Greens */
  --forest-950: #0f1c14;
  --forest-900: #15271c;
  --forest-850: #1a2e21;
  --forest-800: #203829;
  --forest-700: #2b4a37;
  --forest-600: #386044;
  --forest-500: #467256;

  /* Golds */
  --gold: #c6a769;
  --gold-light: #e6cf9d;
  --gold-bright: #f0dcb0;
  --gold-deep: #a3813f;
  --champagne: #d8c4a0;

  /* Neutrals */
  --cream: #f6f1e7;
  --cream-2: #efe8d8;
  --cream-3: #e4dac6;
  --sage: #8a9a8b;
  --sage-bar: #7f9184;
  --ink: #15150f;
  --ink-soft: #3a3a30;

  /* Semantic */
  --bg: var(--cream);
  --text: var(--ink);

  /* Type */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --wrap: 1360px;
  --gutter: clamp(1.4rem, 5vw, 5.5rem);
  --section-y: clamp(2.75rem, 6vw, 5.5rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 0.7s;

  --header-h: 92px;
  --bar-h: 0px;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: var(--forest-950); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; margin: 0; line-height: 1.06; letter-spacing: 0.01em; }
p { margin: 0 0 1.2em; }

/* ---------- Utilities ---------- */
.wrap { width: min(100% - calc(var(--gutter) * 2), var(--wrap)); margin-inline: auto; }
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
  margin: 0 0 1.6rem;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: ""; width: 34px; height: 1px; background: currentColor; opacity: 0.7;
}
.display-xl { font-size: clamp(3.2rem, 9vw, 8.4rem); }
.display-lg { font-size: clamp(2.6rem, 6vw, 5.2rem); }
.display-md { font-size: clamp(2rem, 4vw, 3.4rem); }
.italic { font-style: italic; }
.gold-text { color: var(--gold); }

.lead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  line-height: 1.45;
  font-weight: 300;
  letter-spacing: 0.005em;
}

/* Buttons */
.btn {
  --bc: var(--gold);
  --tc: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 1.15em 2.2em;
  color: var(--tc);
  border: 1px solid var(--bc);
  position: relative;
  overflow: hidden;
  transition: color 0.6s var(--ease);
  z-index: 0;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
  z-index: -1;
}
.btn:hover { color: var(--forest-950); }
.btn:hover::before { transform: scaleX(1); }
.btn--dark { --tc: var(--forest-950); }
/* .btn's text defaults to cream for dark sections. On a light section the outline
   variant would be cream-on-cream — invisible until hover fills it gold. */
.section--light .btn:not(.btn--solid) { --tc: var(--forest-950); }
.btn--solid { background: var(--gold); color: var(--forest-950); }
.btn--solid::before { background: var(--forest-950); }
.btn--solid:hover { color: var(--gold); }

.link-arrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  transition: gap 0.4s var(--ease), color 0.4s var(--ease);
}
.link-arrow .arw { transition: transform 0.4s var(--ease); }
.link-arrow:hover { gap: 1.1em; color: var(--gold); }
.on-dark .link-arrow, .link-arrow.on-dark { color: var(--gold-light); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--sage-bar);
  color: var(--cream);
  height: var(--bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
  z-index: 60;
}
.announce a { display: inline-flex; align-items: center; gap: 0.9em; }
.announce .sep { opacity: 0.5; margin: 0 0.2em; }
.announce .arw { font-size: 1.1em; transition: transform 0.4s var(--ease); }
.announce a:hover .arw { transform: translateX(6px); }
.announce b { font-weight: 500; letter-spacing: 0.34em; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: var(--bar-h);
  left: 0; right: 0;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: var(--gutter);
  z-index: 50;
  transition: transform 0.5s var(--ease), top 0.4s var(--ease), color 0.45s var(--ease);
  color: var(--cream);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.3);
}
/* Docked at top once the announcement bar scrolls away — no background bar */
.header.solid { top: 0; }
.header.hidden { transform: translateY(-160%); }

/* Adapt text/logo color to the section behind the header */
.header--on-light { color: var(--ink); text-shadow: none; }
.header--on-light .brand .brand-word { color: var(--gold-deep); }
.header--on-light .brand .brand-sub { color: var(--ink-soft); }
.header--on-light .brand img { filter: none; }
.header--on-light .btn { --tc: var(--forest-950); border-color: var(--gold-deep); }

.menu-toggle {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 1em;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  color: inherit;
}
.menu-toggle .bars { display: inline-block; width: 30px; height: 12px; position: relative; }
.menu-toggle .bars span {
  position: absolute; left: 0; height: 1.5px; width: 100%;
  background: currentColor; transition: transform 0.45s var(--ease), width 0.45s var(--ease), opacity 0.3s;
}
.menu-toggle .bars span:nth-child(1) { top: 0; }
.menu-toggle .bars span:nth-child(2) { top: 5px; width: 70%; }
.menu-toggle .bars span:nth-child(3) { top: 10px; }
.menu-toggle:hover .bars span:nth-child(2) { width: 100%; }

.brand {
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transition: opacity 0.4s var(--ease);
}
.brand img { height: 66px; width: auto; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.35)); transition: height 0.4s var(--ease); }
.header.solid .brand img { height: 56px; }
.brand .brand-word {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  line-height: 1;
}
.brand .brand-sub {
  font-size: 0.52rem; letter-spacing: 0.44em; text-transform: uppercase;
  color: var(--champagne); opacity: 0.85;
}

.header-actions { justify-self: end; display: flex; align-items: center; gap: 1.6rem; }
.header .btn { padding: 0.95em 1.8em; }
.header-login {
  font-family: var(--font-sans); font-weight: 400; font-size: 0.72rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: inherit;
  transition: color 0.4s var(--ease);
}
.header-login:hover { color: var(--gold-light); }
.header--on-light .header-login:hover { color: var(--gold-deep); }
@media (max-width: 720px) { .header .btn, .header-login { display: none; } }

/* ---------- Full-screen menu overlay ---------- */
.nav-overlay {
  position: fixed; inset: 0;
  background: var(--forest-950);
  z-index: 100;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(1.4rem, 4vw, 2.6rem) var(--gutter) clamp(2rem, 4vw, 3rem);
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.8s var(--ease), opacity 0.5s var(--ease), visibility 0s linear 0.8s;
  overflow-y: auto;
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.85s var(--ease), opacity 0.4s var(--ease), visibility 0s;
}
.nav-overlay::after {
  content: "";
  position: absolute; right: -6%; bottom: -12%;
  width: min(62vw, 760px); aspect-ratio: 1;
  background: url("../assets/images/logo/tiger-mark.png") no-repeat center / contain;
  opacity: 0.06;
  pointer-events: none;
  filter: sepia(1) saturate(2) hue-rotate(3deg);
}
.nav-top {
  display: flex; align-items: center; justify-content: space-between;
  color: var(--champagne);
}
.nav-top .nav-brand { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--gold-light); }
.nav-close {
  display: inline-flex; align-items: center; gap: 0.8em;
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--champagne);
  transition: color 0.3s;
}
.nav-close:hover { color: var(--gold); }
.nav-close .x { position: relative; width: 20px; height: 20px; }
.nav-close .x::before, .nav-close .x::after {
  content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1.5px; background: currentColor;
}
.nav-close .x::before { transform: rotate(45deg); }
.nav-close .x::after { transform: rotate(-45deg); }

.nav-main {
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 0;
}
.nav-list { list-style: none; margin: 0; padding: 0; }
.nav-list li {
  overflow: hidden;
  border-bottom: 1px solid rgba(198, 167, 105, 0.12);
}
.nav-list li:first-child { border-top: 1px solid rgba(198, 167, 105, 0.12); }
.nav-list a {
  display: flex;
  align-items: baseline;
  padding: clamp(0.32rem, 0.7vw, 0.58rem) 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.15;
  transform: translateY(115%);
  transition: color 0.4s var(--ease);
  position: relative;
}
.nav-overlay.open .nav-list a { animation: navrise 0.9s var(--ease) forwards; }
/* Account links (Log In / Become a Member) — smaller, with a gold arrow */
.nav-list li.nav-list__acct a { font-size: 1.15rem; align-items: center; color: var(--champagne); }
.nav-list li.nav-list__acct .arw { color: var(--gold); margin-left: 0.55em; font-size: 0.8em; }
.nav-list a .lbl { position: relative; transition: transform 0.5s var(--ease); }
.nav-list a:hover { color: var(--gold-light); }
.nav-list a:hover .lbl { transform: translateX(0.6rem); }
.nav-list a .lbl-it { font-style: italic; opacity: 0; margin-left: 0.5em; color: var(--gold);
  font-size: 0.5em; transform: translateX(-10px); transition: opacity 0.4s, transform 0.4s; }
.nav-list a:hover .lbl-it { opacity: 0.9; transform: translateX(0); }

@keyframes navrise { to { transform: translateY(0); } }

.nav-foot {
  display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; align-items: end; justify-content: space-between;
  color: var(--champagne); font-size: 0.8rem;
}
.nav-foot .col-label { font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.7rem; }
.nav-foot a:hover { color: var(--gold); }
.nav-socials { display: flex; gap: 1.4rem; letter-spacing: 0.2em; font-size: 0.68rem; text-transform: uppercase; }
.nav-account { display: flex; flex-direction: column; gap: 0.5rem; }
.nav-account a { font-family: var(--font-display); font-size: 1.15rem; color: var(--cream); transition: color 0.4s var(--ease); }
.nav-account a:hover { color: var(--gold-light); }
.nav-account a .arw { color: var(--gold); margin-left: 0.5em; font-size: 0.8em; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  padding-bottom: clamp(3.5rem, 8vh, 6rem);
  padding-top: calc(var(--header-h) + var(--bar-h));
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 2.4s var(--ease);
  will-change: opacity, transform;
}
.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
  animation: heroKen 9s ease-out forwards;
}
@keyframes heroKen { from { transform: scale(1.08); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .hero__slide.is-active { animation: none; transform: none; }
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 60% at 50% 92%, rgba(10,17,12,0.55), transparent 70%),
    radial-gradient(120% 90% at 50% 10%, rgba(13,22,15,0.08), rgba(13,22,15,0.48) 84%),
    linear-gradient(180deg, rgba(13,22,15,0.34) 0%, rgba(13,22,15,0.04) 40%, rgba(13,22,15,0.86) 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: 960px; margin-inline: auto; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 { font-size: clamp(2.5rem, 5.2vw, 4.8rem); font-weight: 300; font-style: italic; line-height: 1.04; text-shadow: 0 2px 40px rgba(8,14,10,0.45); }
.hero h1 .l1 { display: block; color: var(--cream); }
.hero h1 .l2 { display: block; color: var(--cream); }
.hero__sub { max-width: 44ch; margin: 1.9rem auto 0; font-size: 1.08rem; opacity: 0.95; font-weight: 300; text-shadow: 0 1px 24px rgba(8,14,10,0.6); }

.hero__scroll {
  position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center;
}
.hero__scroll .line { height: 34px; }
@media (max-height: 840px) {
  .hero h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
  .hero__scroll { display: none; }
}
.hero__scroll .line { width: 1px; height: 60px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll .line::after { content: ""; position: absolute; top: -60%; left: 0; width: 100%; height: 60%; background: var(--gold-light); animation: scrolldot 2.4s var(--ease-soft) infinite; }
@keyframes scrolldot { 0% { top: -60%; } 60%,100% { top: 110%; } }

/* Reveal animation */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.12s; }
[data-reveal-delay="2"] { transition-delay: 0.24s; }
[data-reveal-delay="3"] { transition-delay: 0.36s; }
[data-reveal-delay="4"] { transition-delay: 0.48s; }

/* ---------- Sections base ---------- */
section { position: relative; }
.pad { padding-block: var(--section-y); }
.on-dark { background: var(--forest-900); color: var(--cream); }
.on-dark .eyebrow { color: var(--gold-light); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--cream); }

/* Faint Shipibo icaro pattern behind the solid dark-green sections */
.offerings, .testimonials, .cta, .footer, .on-dark, .pullquote { position: relative; }
.offerings::after, .testimonials::after, .cta::after, .footer::after, .on-dark::after, .pullquote::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("../assets/images/shipibo-pattern.png") repeat;
  background-size: 300px;
  opacity: 0.05;
  pointer-events: none;
}
.offerings > *, .testimonials > *, .cta > *, .footer > *, .on-dark > *, .pullquote > * { position: relative; z-index: 1; }
.on-forest-950 { background: var(--forest-950); }

/* Mission / intro */
.mission { position: relative; background: var(--cream); color: var(--ink); overflow: hidden; padding-block: clamp(3.2rem, 6.4vw, 6rem); text-align: center; }
.mission::before {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(56vw, 660px); aspect-ratio: 1;
  background: url("../assets/images/logo/tiger-mark.png") center / contain no-repeat;
  opacity: 0.07; z-index: 0; pointer-events: none;
}
.mission .wrap { display: block; position: relative; z-index: 1; }
.mission__body { max-width: 820px; margin: 0 auto; }
.mission__statement { font-family: var(--font-display); font-size: clamp(1.4rem, 2.4vw, 2.15rem); line-height: 1.38; font-weight: 300; color: var(--ink); margin: 1.4rem auto 0; }
.mission__statement em { font-style: italic; color: var(--gold-deep); }
.mission__sign { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-top: 1.8rem; }
.mission__rule { width: 1px; height: 30px; background: linear-gradient(var(--gold), transparent); }
.mission__sign .sig { margin: 0; }

/* Gold emblem in a dark emerald frame */
.mission__mark {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(2.6rem, 5vw, 5rem);
  background: radial-gradient(125% 120% at 50% 28%, var(--forest-800), var(--forest-950));
  border: 1px solid rgba(198,167,105,0.24);
  overflow: hidden;
}
.mission__mark .emblem { width: min(76%, 360px); margin-inline: auto; position: relative; z-index: 1; filter: drop-shadow(0 18px 50px rgba(0,0,0,0.55)); }
.mission__mark::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(198,167,105,0.22), transparent 60%);
  z-index: 0;
}
.mission__mark::after {
  content: ""; position: absolute; inset: 10px;
  border: 1px solid rgba(198,167,105,0.12);
  pointer-events: none;
}
.mission h2 { font-size: clamp(2.2rem, 4.4vw, 3.9rem); margin-bottom: 1.6rem; }
.mission h2 em { color: var(--gold-deep); }
.mission .lead { color: color-mix(in srgb, var(--ink) 82%, transparent); margin-bottom: 2rem; }
.mission .sig { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--gold-deep); margin-top: 1.4rem; }
.mission__sign .sig { margin-top: 0; }
.mission__cta { margin-top: 0.4rem; padding: 0.95em 2rem; }
.mission .sig small { display: block; font-family: var(--font-sans); font-style: normal; font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-soft); opacity: 0.85; margin-top: 0.4rem; }
@media (max-width: 900px) {
  .mission .wrap { grid-template-columns: 1fr; }
  .mission__mark { order: -1; margin-bottom: 0.5rem; }
}

/* Section heading block */
.sec-head { max-width: 760px; margin-bottom: clamp(1.5rem, 3vw, 2.75rem); }
.sec-head.centered { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(1.7rem, 3.1vw, 2.6rem); margin-bottom: 1rem; }
.sec-head p { color: color-mix(in srgb, currentColor 72%, transparent); max-width: 56ch; }
.sec-head.centered p { margin-inline: auto; }

/* Offerings grid */
.offerings { background: var(--forest-900); color: var(--cream); }
.offerings .eyebrow { color: var(--gold-light); }
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 1.8vw, 1.5rem); }
.offer {
  background: linear-gradient(158deg, var(--forest-800), var(--forest-900));
  border: 1px solid rgba(198,167,105,0.16);
  padding: clamp(1.6rem, 2.4vw, 2.4rem) clamp(1.5rem, 2.2vw, 2.4rem);
  min-height: 0;
  border-radius: 2px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  color: var(--cream);
  transition: background 0.6s var(--ease), color 0.6s var(--ease), transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.offer:hover { transform: translateY(-4px); border-color: rgba(198,167,105,0.45); }
.offer::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, var(--forest-700), var(--forest-850));
  opacity: 0; transition: opacity 0.6s var(--ease);
}
.offer > * { position: relative; z-index: 1; }
.offer:hover::before { opacity: 1; }
.offer h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); margin: 0 0 0.8rem; }
.offer h3 em { font-style: italic; color: var(--gold-light); transition: color 0.5s var(--ease); }
.offer:hover h3 em { color: var(--gold-bright); }
.offer p { font-size: 0.94rem; color: rgba(246,241,231,0.7); margin-bottom: 1.6rem; }
.offer .link-arrow { color: var(--gold-light); margin-top: auto; }
.offer:hover .link-arrow { color: var(--gold-bright); }
/* Closing call-to-action tile — dark by default */
.offer--cta { color: var(--cream); }
.offer--cta::before { opacity: 1; }
.offer--cta .num { color: var(--gold-light); }
.offer--cta h3 em { color: var(--gold-light); }
.offer--cta .link-arrow { color: var(--gold-light); }

@media (max-width: 980px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .offer-grid { grid-template-columns: 1fr; } .offer { min-height: 260px; } }

/* Editorial quote band (light) */
.quote-band {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  text-align: center;
  padding-block: clamp(5.5rem, 13vw, 11rem);
  overflow: hidden;
}
.quote-band .quote-rule { display: block; width: 1px; height: clamp(48px, 7vw, 82px); margin: 0 auto clamp(2rem, 4vw, 3rem); background: linear-gradient(var(--gold), transparent); }
.quote-band blockquote { margin: 0 auto; max-width: 20ch; font-family: var(--font-display); font-style: italic; font-size: clamp(2rem, 5.4vw, 4.6rem); line-height: 1.14; }
.quote-band blockquote em { color: var(--gold-deep); font-style: italic; }
.quote-band .attribution { margin-top: 2.2rem; font-size: 0.68rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-deep); }

/* Sacred offerings / medicines row */
.sacred { position: relative; background: var(--cream); color: var(--ink); overflow: hidden; }
.medicine-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.6rem, 3vw, 3rem); max-width: 1180px; margin: 0 auto; }
@media (max-width: 900px) { .medicine-grid { grid-template-columns: repeat(2, 1fr); max-width: 640px; } }
.medicine { display: block; text-align: center; }
.medicine h3 { transition: color 0.3s var(--ease); }
.medicine:hover h3 { color: var(--gold-deep); }
.medicine__more { display: inline-flex; align-items: center; gap: 0.6em; margin-top: 0.9rem; font-family: var(--font-sans); font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); transition: gap 0.3s var(--ease), color 0.3s var(--ease); }
.medicine__more .arw { transition: transform 0.3s var(--ease); }
.medicine:hover .medicine__more { gap: 1em; color: var(--gold); }
.medicine__arch {
  position: relative; aspect-ratio: 3 / 4; overflow: hidden;
  border-radius: 46% 46% 6px 6px / 30% 30% 3px 3px;
  border: 1px solid rgba(163,129,63,0.45);
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease);
}
.medicine:hover .medicine__arch { transform: translateY(-6px); border-color: var(--gold); }
.medicine__arch img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.55) brightness(0.95) contrast(1.05); }
.medicine__arch::after { content: ""; position: absolute; inset: 0; background: rgba(38,68,50,0.5); mix-blend-mode: multiply; }
.medicine h3 { font-family: var(--font-display); font-size: 1.55rem; margin: 1.2rem 0 0.45rem; }
.medicine p { font-size: 0.9rem; color: color-mix(in srgb, var(--ink) 68%, transparent); max-width: 34ch; margin: 0 auto; }
@media (max-width: 760px) { .medicine-grid { grid-template-columns: 1fr; max-width: 340px; } }

/* Testimonials */
.testimonials { background: var(--forest-900); color: var(--cream); overflow: hidden; }
.testimonials .eyebrow { color: var(--gold-light); }
.testi-track { display: flex; gap: clamp(1.4rem, 2.6vw, 2.4rem); }
.testi {
  flex: 0 0 min(88vw, 440px);
  background: var(--forest-850);
  border: 1px solid rgba(198,167,105,0.18);
  padding: clamp(2rem, 3vw, 3rem);
  display: flex; flex-direction: column;
}
.testi .stars { color: var(--gold); letter-spacing: 0.3em; font-size: 0.8rem; margin-bottom: 1.4rem; }
.testi .stars { color: var(--gold-light); }
.testi blockquote { margin: 0 0 1.6rem; font-family: var(--font-display); font-size: clamp(1.2rem, 1.8vw, 1.55rem); font-style: italic; line-height: 1.4; color: var(--cream); }
.testi .who { margin-top: auto; font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-light); }
.testi .who span { display: block; font-family: var(--font-sans); letter-spacing: 0.02em; text-transform: none; color: rgba(246,241,231,0.7); font-size: 0.86rem; margin-top: 0.3rem; }

/* Testimonials — decorative quote mark (replaces star rating) */
.testi__mark { display: block; font-family: var(--font-display); font-size: 3rem; line-height: 0.5; color: var(--gold-light); opacity: 0.6; margin-bottom: 1rem; }
.testi blockquote p { margin: 0 0 0.9em; }
.testi blockquote p:last-child { margin-bottom: 0; }

/* Horizontal card strip — arrows plus native scroll, no drag handler so the
   controls inside the cards (read more, video scrubber) still take clicks. */
.hscroll { position: relative; margin-top: clamp(1.6rem, 3vw, 2.6rem); }
.hscroll__track {
  display: flex; gap: clamp(1.2rem, 2.2vw, 1.8rem); align-items: stretch;
  overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch; padding-bottom: 10px;
}
.hscroll__track > * { flex: 0 0 auto; scroll-snap-align: start; }
.hscroll__track::-webkit-scrollbar { height: 6px; }
.hscroll__track::-webkit-scrollbar-track { background: rgba(198,167,105,.08); }
.hscroll__track::-webkit-scrollbar-thumb { background: rgba(198,167,105,.4); border-radius: 3px; }

/* Testimonials — full-page strip of highlight cards */
.hscroll__track .testi { width: min(84vw, 400px); }
.hscroll__track .video-testi { width: min(70vw, 300px); }
.testi__more {
  margin-top: 1.5rem; align-self: flex-start; background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light);
  display: inline-flex; align-items: center; gap: 0.5rem; transition: gap .25s ease, color .25s ease;
}
.testi__more .arw { transition: transform .25s ease; }
.testi__more:hover { color: var(--gold); }
.testi__more:hover .arw { transform: translateX(4px); }

/* Video testimonials */
.video-testi { margin: 0; }
.video-testi video {
  width: 100%; aspect-ratio: 9 / 16; object-fit: cover; display: block; background: #000;
  border: 1px solid rgba(198,167,105,0.22);
}

/* Photo gallery — horizontal scroll filmstrip */
.gallery { position: relative; margin-top: clamp(1.6rem, 3vw, 2.6rem); }
.gallery__track {
  display: flex; gap: 12px; overflow-x: auto; scroll-behavior: smooth;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; padding-bottom: 8px;
}
.gallery__track::-webkit-scrollbar { height: 6px; }
.gallery__track::-webkit-scrollbar-track { background: rgba(198,167,105,.08); }
.gallery__track::-webkit-scrollbar-thumb { background: rgba(198,167,105,.4); border-radius: 3px; }
.gallery__item {
  flex: 0 0 auto; margin: 0; height: clamp(260px, 40vh, 440px); scroll-snap-align: center; overflow: hidden;
}
.gallery__item img { height: 100%; width: auto; max-width: none; display: block; object-fit: cover; box-shadow: inset 0 0 0 1px rgba(198,167,105,.2); }
.gallery__nav, .hscroll__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(198,167,105,.55);
  background: rgba(11,18,13,.55); color: var(--gold-light); cursor: pointer;
  display: grid; place-items: center; font-size: 1.4rem; line-height: 1; padding-bottom: 3px;
  backdrop-filter: blur(4px); transition: background .2s ease, color .2s ease;
}
.gallery__nav:hover, .hscroll__nav:hover { background: var(--gold-deep); color: var(--cream); }
.gallery__nav--prev, .hscroll__nav--prev { left: -6px; }
.gallery__nav--next, .hscroll__nav--next { right: -6px; }
@media (max-width: 720px) { .gallery__nav, .hscroll__nav { display: none; } }

/* Testimonial modal */
.modal {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem); opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease;
}
.modal.open { opacity: 1; visibility: visible; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(6,12,8,0.82); backdrop-filter: blur(3px); }
.modal__panel {
  position: relative; z-index: 1; max-width: 640px; width: 100%; max-height: 86vh; overflow-y: auto;
  background: var(--forest-850); border: 1px solid rgba(198,167,105,0.3); padding: clamp(2.2rem, 4vw, 3.4rem);
  transform: translateY(18px); transition: transform .35s ease;
}
.modal.open .modal__panel { transform: none; }
.modal__close {
  position: absolute; top: 0.8rem; right: 1.1rem; background: none; border: 0; cursor: pointer;
  font-size: 1.7rem; line-height: 1; color: var(--gold-light); transition: color .2s ease, transform .2s ease;
}
.modal__close:hover { color: var(--cream); transform: rotate(90deg); }
.modal__body { font-family: var(--font-display); font-size: clamp(1.08rem, 1.5vw, 1.28rem); font-style: italic; line-height: 1.55; color: var(--cream); }
.modal__body p { margin: 0 0 1em; }
.modal__body p:last-child { margin-bottom: 0; }
.modal .who { margin-top: 1.8rem; font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-light); }
.modal .who span { display: block; font-family: var(--font-sans); letter-spacing: 0.02em; text-transform: none; color: rgba(246,241,231,0.7); font-size: 0.86rem; margin-top: 0.3rem; }

/* About Blaine */
.about-teaser { background: var(--cream); color: var(--ink); overflow: hidden; }
.about-teaser .btn { --tc: var(--forest-950); border-color: var(--gold-deep); }
.about-teaser .wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.about-teaser__img { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.about-teaser__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.about-teaser__img::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(198,167,105,0.4); }
.about-teaser__img .cap { position: absolute; left: 1.4rem; bottom: 1.4rem; font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); }
.about-teaser h2 { font-size: clamp(1.7rem, 3.1vw, 2.6rem); margin-bottom: 1.2rem; }
.about-teaser h2 em { color: var(--gold-deep); }
.about-teaser p { color: color-mix(in srgb, var(--ink) 76%, transparent); }
@media (max-width: 900px) { .about-teaser .wrap { grid-template-columns: 1fr; } .about-teaser__img { max-width: 460px; } }

/* CTA / join */
.cta {
  background: linear-gradient(180deg, var(--forest-800), var(--forest-950));
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(60vw, 560px); aspect-ratio: 1;
  background: url("../assets/images/logo/tiger-mark.png") center / contain no-repeat;
  opacity: 0.05; pointer-events: none;
}
.cta .eyebrow { color: var(--gold-light); }
.cta .wrap { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); margin-bottom: 1.2rem; }
.cta h2 em { color: var(--gold-light); }
.cta p { max-width: 46ch; margin-inline: auto; color: rgba(246,241,231,0.82); margin-bottom: 2.6rem; }
.cta { padding-bottom: clamp(2rem, 3vw, 3rem); }
/* .cta is a dark band by default; these repaint it when it sits on a light section
   (otherwise its cream text lands on cream and disappears). */
.cta.section--light { background: var(--cream); color: var(--ink); }
.cta.section--light .eyebrow { color: var(--gold-deep); }
.cta.section--light h2 em { color: var(--gold-deep); }
.cta.section--light p { color: var(--ink-soft); }
.cta.section--light::before { opacity: 0.035; }
/* Slim closing band: the primary Apply now lives up with the pricing, so this
   one is a quieter sign-off and doesn't need full section padding. */
.cta.section--light { padding-bottom: 0; }
.cta.section--light > .wrap { padding-block: clamp(2rem, 3.2vw, 2.8rem); }
.cta.section--light h2 { margin-bottom: 0.8rem; }
.cta.section--light p { margin-bottom: 1.6rem; }

/* Apply CTA sitting directly under the price cards */
.price-cta { margin-top: clamp(1.8rem, 3.2vw, 2.6rem); text-align: center; }
.price-cta__note {
  margin: 1rem auto 0; font-family: var(--font-sans); font-size: 0.62rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--champagne);
  opacity: 0.75;
}
.newsletter { display: flex; gap: 0.8rem; max-width: 500px; margin: 0 auto; flex-wrap: wrap; }
.newsletter input {
  flex: 1 1 240px; background: transparent; border: 1px solid rgba(198,167,105,0.4);
  color: var(--cream); padding: 1.1em 1.4em; font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 0.1em;
}
.newsletter input::placeholder { color: rgba(246,241,231,0.5); letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.72rem; }
.newsletter input:focus { outline: none; border-color: var(--gold); }

/* ---------- Footer ---------- */
.footer { background: var(--forest-950); color: var(--champagne); padding-top: clamp(2.5rem, 4vw, 3.5rem); }
.footer .wrap { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); }
.footer .wrap:last-child { display: block; }
.footer__brand img { height: 78px; margin-bottom: 1.4rem; }
.footer__brand p { font-size: 0.8rem; line-height: 1.6; color: rgba(216,196,160,0.7); max-width: 32ch; }
.footer h4 { font-family: var(--font-sans); font-weight: 400; font-size: 0.64rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.footer ul a { font-size: 0.9rem; color: rgba(246,241,231,0.72); transition: color 0.3s, padding-left 0.3s; }
.footer ul a:hover { color: var(--gold-light); padding-left: 0.4rem; }
.footer__bottom {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(198,167,105,0.14);
  padding: 1.4rem 0;
  display: flex; flex-wrap: wrap; gap: 0.5rem 2.5rem; align-items: baseline; justify-content: space-between;
  font-size: 0.6rem; letter-spacing: 0.08em; color: rgba(216,196,160,0.5);
}
.footer__bottom > span:first-child { flex: 0 0 auto; }
.footer__disclaimer { flex: 1 1 auto; max-width: 118ch; text-align: right; line-height: 1.55; }
@media (max-width: 900px) { .footer .wrap { grid-template-columns: 1fr 1fr; } .footer .wrap:last-child { display: block; } .footer__brand { grid-column: 1 / -1; } .footer__disclaimer { text-align: left; max-width: 60ch; } }
@media (max-width: 520px) { .footer .wrap { grid-template-columns: 1fr; } }

/* Marquee strip */
.marquee { background: var(--gold); color: var(--forest-950); overflow: hidden; padding: 0.9rem 0; }
.marquee__inner { display: flex; gap: 3rem; white-space: nowrap; animation: marquee 32s linear infinite; width: max-content; }
.marquee span { font-size: 0.72rem; letter-spacing: 0.34em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 3rem; }
.marquee span::after { content: "✦"; opacity: 0.6; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__inner { animation-play-state: paused; }

/* ============================================================
   Inner pages (Retreats / Ceremonies / Training)
   ============================================================ */
.page-hero {
  position: relative; min-height: 54vh; display: flex; align-items: flex-end;
  justify-content: center; text-align: center; color: var(--cream);
  padding: calc(var(--header-h) + 3rem) var(--gutter) clamp(2.4rem, 5vh, 4rem);
  overflow: hidden; isolation: isolate;
}
/* Short heroes crop hard, so each page sets its own focal point with --hero-pos
   to keep faces out of the crop. Defaults to centre. */
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
/* Default biased upward: every hero photo puts faces in the upper half, and a
   centre crop beheads them. Pages override with --hero-pos where needed. */
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: var(--hero-pos, center 30%); }
/* Phones are narrow and tall — the band needs a little more room for the words. */
@media (max-width: 720px) { .page-hero { min-height: 62vh; } }
/* Utility pages (a form, not a sales pitch) want the content up top, not a big photo. */
.page-hero--compact { min-height: 38vh; }
.page-hero--compact h1 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); }
@media (max-width: 720px) { .page-hero--compact { min-height: 44vh; } }
.page-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,18,13,0.55) 0%, rgba(11,18,13,0.22) 42%, rgba(11,18,13,0.86) 100%);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 900px; }
.page-hero .eyebrow { color: var(--gold-light); justify-content: center; }
.page-hero h1 { font-size: clamp(2.1rem, 4.2vw, 3.5rem); font-weight: 300; font-style: italic; line-height: 1.06; text-shadow: 0 2px 40px rgba(8,14,10,0.5); }
.page-hero h1 .n { font-style: normal; display: block; font-size: 0.44em; letter-spacing: 0.02em; opacity: 0.95; }
.page-hero__sub { margin: 1.3rem auto 0; max-width: 46ch; font-size: 1.06rem; opacity: 0.94; text-shadow: 0 1px 20px rgba(8,14,10,0.6); }
.page-hero__meta { margin-top: 1.5rem; font-size: 0.64rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--champagne); }
.page-hero__cta { margin-top: clamp(1.6rem, 3vw, 2.4rem); }

/* Lead paragraph block */
.lead-block { max-width: 760px; }
.lead-block.centered { margin-inline: auto; text-align: center; }

/* Split text + image */
.split .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split__img { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.split__img img { width: 100%; height: 100%; object-fit: cover; }
.split__img::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(198,167,105,0.4); }
.split__img .cap { position: absolute; left: 1.2rem; bottom: 1.1rem; font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-light); text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
.split h2 { font-size: clamp(1.55rem, 2.6vw, 2.2rem); margin-bottom: 1.1rem; }
.split h2 em { font-style: italic; color: var(--gold-deep); }
.on-dark .split h2 em { color: var(--gold-light); }
.split.img-right .split__img { order: 2; }
@media (max-width: 820px) { .split .wrap { grid-template-columns: 1fr; } .split__img { max-width: 460px; order: -1 !important; } }

/* Feature cards (modalities) — for dark sections */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 2rem); }
.feature { border: 1px solid rgba(198,167,105,0.2); padding: clamp(1.6rem, 2.4vw, 2.4rem); background: rgba(11,18,13,0.28); transition: transform 0.5s var(--ease), border-color 0.5s var(--ease); }
.feature:hover { transform: translateY(-5px); border-color: var(--gold); }
.feature .k { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); }
.feature h3 { font-size: 1.5rem; margin: 0.55rem 0 0.7rem; }
.feature h3 em { font-style: italic; color: var(--gold-light); }
.feature p { font-size: 0.92rem; color: rgba(246,241,231,0.72); margin: 0; }
@media (max-width: 820px) { .feature-grid { grid-template-columns: 1fr; } }
/* .feature is built for dark bands — its cream text and dark translucent panel
   vanish on a light section. Repaint it there. */
.section--light .feature { background: #fffdf8; border-color: rgba(21,21,15,0.1); }
.section--light .feature .k { color: var(--gold-deep); }
.section--light .feature h3 em { color: var(--gold-deep); }
.section--light .feature p { color: var(--ink-soft); }
.section--light .feature:hover { border-color: var(--gold-deep); }

/* Checklist (what's included) */
.checklist { columns: 2; column-gap: 3rem; list-style: none; margin: 0; padding: 0; }
.checklist li { break-inside: avoid; padding: 0.65rem 0 0.65rem 1.9rem; position: relative; border-bottom: 1px solid rgba(21,21,15,0.1); font-size: 0.98rem; }
.on-dark .checklist li { border-color: rgba(198,167,105,0.14); }
.checklist li::before { content: "✦"; position: absolute; left: 0; top: 0.7rem; color: var(--gold-deep); font-size: 0.8em; }
.on-dark .checklist li::before { color: var(--gold-light); }
@media (max-width: 640px) { .checklist { columns: 1; } }

/* Timeline (itinerary) */
.timeline { max-width: 840px; margin: 0 auto; }
.timeline__item { display: grid; grid-template-columns: 8.5rem 1fr; gap: clamp(1rem, 2vw, 2rem); padding: clamp(1.1rem, 2vw, 1.6rem) 0; border-top: 1px solid rgba(198,167,105,0.18); }
.timeline__item:last-child { border-bottom: 1px solid rgba(198,167,105,0.18); }
.timeline__day { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--gold-light); }
.timeline__day small { display: block; font-family: var(--font-sans); font-style: normal; font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--champagne); opacity: 0.75; margin-top: 0.2rem; }
.timeline__item h3 { font-size: 1.2rem; margin: 0 0 0.4rem; }
.timeline__item p { margin: 0; font-size: 0.92rem; color: rgba(246,241,231,0.72); }
@media (max-width: 600px) { .timeline__item { grid-template-columns: 1fr; gap: 0.4rem; } }
/* .timeline is built for dark bands — repaint it on light sections. */
.section--light .timeline__item { border-color: rgba(21,21,15,0.12); }
.section--light .timeline__item:last-child { border-color: rgba(21,21,15,0.12); }
.section--light .timeline__day { color: var(--gold-deep); }
.section--light .timeline__day small { color: var(--gold-deep); opacity: 0.7; }
.section--light .timeline__item p { color: var(--ink-soft); }

/* Price cards */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 2.4vw, 2rem); max-width: 780px; margin: 0 auto; }
.price-card { border: 1px solid rgba(21,21,15,0.16); padding: clamp(1.9rem, 3vw, 2.8rem); text-align: center; }
.on-dark .price-card { border-color: rgba(198,167,105,0.3); background: rgba(11,18,13,0.3); }
.price-card .tier { font-size: 0.64rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-deep); }
.on-dark .price-card .tier { color: var(--gold-light); }
.price-card .amt { font-family: var(--font-display); font-size: clamp(2.1rem, 4vw, 3rem); margin: 0.5rem 0 0.3rem; }
.price-card .amt small { font-size: 0.42em; letter-spacing: 0.1em; opacity: 0.7; }
.price-card .note { font-size: 0.84rem; opacity: 0.72; }
/* Quiet italic line under the price cards */
.price-plans {
  margin: clamp(1.1rem, 2vw, 1.6rem) auto 0; text-align: center;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.15rem); color: var(--gold-deep);
}
.on-dark .price-plans { color: var(--gold-light); }

/* One tier, one card — keeps it centered instead of stranded in a 2-col grid. */
.price-grid--single { grid-template-columns: 1fr; max-width: 420px; }
@media (max-width: 560px) { .price-grid { grid-template-columns: 1fr; } }

/* Light section base (inner pages) */
.section--light { background: var(--cream); color: var(--ink); }

/* Pull quote (dark) */
.pullquote { text-align: center; }
.pullquote blockquote { margin: 0 auto; max-width: 24ch; font-family: var(--font-display); font-style: italic; font-size: clamp(1.6rem, 3.2vw, 2.7rem); line-height: 1.22; color: var(--cream); }
.pullquote blockquote .accent { color: var(--gold-light); }
.pullquote cite { display: block; margin-top: 1.6rem; font-style: normal; font-family: var(--font-sans); font-size: 0.64rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); }

/* Credentials row (light) */
.creds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.6rem); }
.cred { border-top: 1px solid rgba(163,129,63,0.35); padding-top: 1.2rem; }
.cred .k { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-deep); }
.cred h3 { font-family: var(--font-display); font-size: 1.35rem; margin: 0.5rem 0 0.5rem; }
.cred p { font-size: 0.9rem; color: color-mix(in srgb, var(--ink) 68%, transparent); margin: 0; }
@media (max-width: 720px) { .creds-grid { grid-template-columns: 1fr; } }

/* Closing CTA photo band */
.cta-band { position: relative; color: var(--cream); text-align: center; overflow: hidden; isolation: isolate; }
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,18,13,0.82), rgba(11,18,13,0.9)); }
.cta-band .eyebrow { color: var(--gold-light); }
.cta-band h2 { font-size: clamp(1.8rem, 3.3vw, 2.7rem); margin-bottom: 1.1rem; }
.cta-band h2 em { color: var(--gold-light); font-style: italic; }
.cta-band p { max-width: 54ch; margin: 0 auto 2.2rem; color: rgba(246,241,231,0.85); }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Membership
   ============================================================ */
/* Single membership card — the sacred container */
.membership-card {
  max-width: 620px;
  margin: 0 auto;
  background: linear-gradient(158deg, var(--forest-800), var(--forest-950));
  border: 1px solid rgba(198, 167, 105, 0.32);
  border-radius: 3px;
  padding: clamp(2.2rem, 4vw, 3.6rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.membership-card::before {
  content: "";
  position: absolute; right: -14%; bottom: -18%;
  width: min(72%, 420px); aspect-ratio: 1;
  background: url("../assets/images/logo/tiger-mark.png") center / contain no-repeat;
  opacity: 0.06; z-index: -1; pointer-events: none;
  filter: sepia(1) saturate(2) hue-rotate(3deg);
}
.membership-card::after {
  content: ""; position: absolute; inset: 9px;
  border: 1px solid rgba(198, 167, 105, 0.14);
  pointer-events: none;
}
.membership-card .tier {
  font-size: 0.64rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-light);
}
.membership-card .m-name {
  font-family: var(--font-display); font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin: 0.5rem 0 1.4rem; color: var(--cream);
}
.membership-card .m-price {
  display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.4rem;
}
.membership-card .m-price .amt {
  font-family: var(--font-display); font-size: clamp(3rem, 7vw, 4.6rem);
  line-height: 1; color: var(--gold);
}
.membership-card .m-price .per {
  font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(246, 241, 231, 0.7);
}
.membership-card .m-lede {
  color: rgba(246, 241, 231, 0.78); font-size: 0.98rem;
  max-width: 44ch; margin: 1rem 0 2rem;
}
.membership-card .btn { width: 100%; justify-content: center; }
.membership-card .m-includes {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-deep); margin: 2.2rem 0 1.2rem;
}
.on-dark .membership-card .m-includes { color: var(--gold-light); }
.m-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.m-list li {
  display: grid; grid-template-columns: 1.4rem 1fr; gap: 0.9rem;
  align-items: start; font-size: 0.96rem; color: rgba(246, 241, 231, 0.86);
  line-height: 1.5;
}
.m-list li .tick {
  width: 1.4rem; height: 1.4rem; margin-top: 0.1rem;
  border: 1px solid rgba(198, 167, 105, 0.5); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 0.72rem;
}
.m-note {
  text-align: center; font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem; color: var(--gold-light); opacity: 0.85;
  margin: 2.2rem auto 0; max-width: 46ch;
}

/* Benefits detail — three-up on light */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 2.6vw, 2.4rem); }
.benefit { padding: 0; }
.benefit .k {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-deep);
}
.benefit h3 { font-size: 1.35rem; margin: 0.6rem 0 0.6rem; }
.benefit h3 em { font-style: italic; color: var(--gold-deep); }
.benefit p { font-size: 0.92rem; color: color-mix(in srgb, var(--ink) 72%, transparent); margin: 0; }
@media (max-width: 820px) { .benefit-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* Membership FAQ */
.faq { max-width: 780px; margin: 0 auto; }
.faq__item { border-top: 1px solid rgba(21, 21, 15, 0.14); padding: clamp(1.2rem, 2vw, 1.6rem) 0; }
.faq__item:last-child { border-bottom: 1px solid rgba(21, 21, 15, 0.14); }
.on-dark .faq__item { border-color: rgba(198, 167, 105, 0.18); }
.faq__item h3 { font-size: 1.2rem; margin: 0 0 0.5rem; }
.faq__item p { margin: 0; font-size: 0.94rem; color: color-mix(in srgb, currentColor 74%, transparent); }

/* small helpers */
.muted { opacity: 0.72; }

@media (max-width: 720px) {
  :root { --header-h: 68px; --bar-h: 0px; }
  .brand .brand-sub { display: none; }
  .brand img { height: 50px; }

  /* Announcement: one tidy line */
  .announce { padding-inline: 1rem; font-size: 0.54rem; letter-spacing: 0.16em; }
  .announce .intro, .announce .sep { display: none; }
  .announce b { font-weight: 500; letter-spacing: 0.18em; white-space: nowrap; }

  /* Hero: tighter eyebrow + type */
  .eyebrow { font-size: 0.6rem; letter-spacing: 0.24em; }
  .hero .eyebrow::before { width: 20px; }
  .hero { padding-top: calc(var(--header-h) + var(--bar-h) + 1rem); align-items: center; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero__sub { font-size: 1rem; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__scroll { display: none; }

  /* Section rhythm */
  .sec-head h2 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .quote-band blockquote { max-width: 14ch; }
  .newsletter { flex-direction: column; }
  .newsletter input, .newsletter .btn { flex: 0 0 auto; width: 100%; }
  .newsletter .btn { justify-content: center; }
}

@media (max-width: 400px) {
  .announce b { font-size: 0.52rem; letter-spacing: 0.12em; }
}

/* ============================================================
   FORM STATUS — the line js/forms.js writes above a submit button
   ============================================================ */
.form-status {
  margin: 0 0 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.form-status:empty { display: none; }
.form-status--error { color: #8c2f2f; }
.form-status--error::before { content: "⚠ "; }

/* Sending: the button dims but keeps its size, so nothing shifts. */
.btn[disabled] { opacity: 0.55; cursor: progress; pointer-events: none; }
