/* ═══════════════════════════════════════════════════════
   SOUL FLOW MECHANICS — site styles
   single shared stylesheet for index, memberships, about,
   thank-you. All design tokens live here.
   ═══════════════════════════════════════════════════════ */

:root {
  /* Navy family */
  --navy-deepest: #0A1628;
  --navy-deep: #0F1E36;
  --navy: #142845;
  --navy-mid: #1C3354;
  --navy-line: #243F66;

  /* Gold accent */
  --gold: #C9A961;
  --gold-warm: #D4B574;
  --gold-pale: #E8D9B0;
  --gold-deep: #9C7F3E;

  /* Bone neutrals */
  --bone: #F4EFE6;
  --bone-warm: #EAE3D5;
  --bone-mute: rgba(244, 239, 230, 0.65);
  --bone-faint: rgba(244, 239, 230, 0.35);
  --bone-trace: rgba(244, 239, 230, 0.12);

  /* Sister-arc colors (mark only) */
  --arc-counteract: #B8FF00;
  --arc-temenos: #2D5016;
  --arc-merlin-start: #8B7FD9;
  --arc-merlin-end: #5FC9E0;

  /* Counteract brand (tier 01 card only) */
  --co-black: #080807;
  --co-bone: #F0EDE6;
  --co-green: #B8FF00;
  --co-line: #2F2F2C;
  --co-mute: #5A5A55;
}

/* ═══════════════════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy-deepest);
  color: var(--bone);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ═══════════════════════════════════════════════════════
   LAYOUT PRIMITIVES
   ═══════════════════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-divider { border-bottom: 1px solid var(--navy-line); }

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 64px 0; }
}

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
   ═══════════════════════════════════════════════════════ */
.eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
}
.eyebrow-mute { color: var(--bone-mute); }

.h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--bone);
}
.h1 em { font-style: italic; color: var(--gold); font-weight: 400; }

.h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--bone);
}
.h2 em { font-style: italic; color: var(--gold); font-weight: 400; }

.h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  color: var(--bone);
}
.h3 em { font-style: italic; color: var(--gold); }

.lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--bone-mute);
}

.body { font-size: 15px; line-height: 1.85; color: var(--bone-mute); }
.body em { font-style: italic; color: var(--bone); }

.body-lg { font-size: 17px; line-height: 1.85; color: var(--bone-mute); }
.body-lg em { font-style: italic; color: var(--bone); }

.body-sm { font-size: 13px; line-height: 1.75; color: var(--bone-mute); }

.italic-accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--bone-mute);
}

.mono-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone-faint);
}

/* Text alignment helpers */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-prose { max-width: 720px; }
.max-prose-narrow { max-width: 580px; }

/* Vertical rhythm */
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mt-8 { margin-top: 64px; }

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 22px 40px;
  border-bottom: 1px solid var(--navy-line);
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.navbar-mark { width: 36px; height: 36px; flex-shrink: 0; }
.navbar-words {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
}
.navbar-words .name {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--bone);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}
.navbar-words .name .flow { color: var(--gold); }
.navbar-words .mech {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 7px;
  color: var(--bone-mute);
  letter-spacing: 0.55em;
  text-transform: uppercase;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar-link {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone-mute);
  transition: color 0.2s;
}
.navbar-link:hover, .navbar-link.active { color: var(--gold); }
.navbar-cta {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 11px 22px;
  transition: background 0.2s, color 0.2s;
}
.navbar-cta:hover { background: var(--gold); color: var(--navy-deepest); }
@media (max-width: 768px) {
  .navbar { padding: 16px 20px; }
  .navbar-inner { gap: 16px; }
  .navbar-links { gap: 18px; }
  .navbar-link { font-size: 10px; letter-spacing: 0.2em; }
  .navbar-cta { padding: 9px 14px; font-size: 9px; letter-spacing: 0.25em; }
  .navbar-words .name { font-size: 13px; letter-spacing: 0.14em; }
  .navbar-mark { width: 30px; height: 30px; }
}
@media (max-width: 540px) {
  .navbar-words .mech { display: none; }
  .navbar-link[data-secondary] { display: none; }
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--navy-line);
  padding: 64px 0;
  margin-top: 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand svg { width: 40px; height: 40px; }
.footer-words {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.18em;
  color: var(--bone);
  text-transform: uppercase;
}
.footer-words .flow { color: var(--gold); }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--bone-mute);
  margin-top: 4px;
  letter-spacing: 0.01em;
}
.footer-meta {
  text-align: right;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  line-height: 1.9;
  color: var(--bone-faint);
  letter-spacing: 0.06em;
}
.footer-meta a { color: var(--gold); }
.footer-meta a:hover { color: var(--gold-warm); }
@media (max-width: 600px) {
  .footer-meta { text-align: left; }
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { background: var(--gold); color: var(--navy-deepest); }
.btn-solid { background: var(--gold); color: var(--navy-deepest); }
.btn-solid:hover { background: var(--gold-warm); }
.btn-ghost {
  border-color: var(--bone-faint);
  color: var(--bone-mute);
}
.btn-ghost:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   HERO (home page)
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 64px 24px;
}
.hero-rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 97, 0.12);
  transform: translate(-50%, -50%);
}
.hero-ring-1 { width: 420px; height: 420px; }
.hero-ring-2 { width: 620px; height: 620px; opacity: 0.7; }
.hero-ring-3 { width: 820px; height: 820px; opacity: 0.4; }
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}
.hero-cta-row {
  margin-top: 56px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   PHILOSOPHY SECTION
   ═══════════════════════════════════════════════════════ */
.philosophy-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
}
.philosophy-stack p { text-align: center; }
.philosophy-divider {
  width: 64px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 16px auto;
}

/* ═══════════════════════════════════════════════════════
   MEMBERSHIPS — TIER CARDS (used on memberships.html)
   ═══════════════════════════════════════════════════════ */
.tier-divider-block {
  text-align: center;
  margin-bottom: 56px;
}
.tier-divider-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tier-divider-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 52px);
  color: var(--bone);
  line-height: 1.1;
}
.tier-divider-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.tier-divider-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--bone-mute);
  margin-top: 14px;
}

.tier {
  border: 1px solid var(--navy-line);
  background: var(--navy-deep);
  padding: 64px 72px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  position: relative;
}
.tier.flagship {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-color: var(--gold);
}
.tier.flagship::before {
  content: 'FLAGSHIP · BY APPLICATION';
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.5em;
  color: var(--gold);
}
.tier-num {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.45em;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 42px);
  line-height: 1.1;
  color: var(--bone);
  margin-bottom: 12px;
}
.tier-name em { font-style: italic; color: var(--gold); }
.tier-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--bone-mute);
  line-height: 1.5;
  margin-bottom: 32px;
}
.tier-description {
  font-size: 14px;
  line-height: 1.85;
  color: var(--bone-mute);
  margin-bottom: 36px;
}
.tier-description em { font-style: italic; color: var(--bone); }
.tier-description p + p { margin-top: 16px; }

.tier-pricing {
  border-top: 1px solid var(--navy-line);
  padding-top: 24px;
}
.tier.flagship .tier-pricing { border-top-color: rgba(201, 169, 97, 0.3); }
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--navy-line);
  gap: 24px;
}
.pricing-row:last-child { border-bottom: none; }
.tier.flagship .pricing-row { border-bottom-color: rgba(201, 169, 97, 0.15); }
.pricing-label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--bone-mute);
  text-transform: uppercase;
  flex-shrink: 0;
}
.pricing-amount {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--gold);
  text-align: right;
  white-space: nowrap;
}
.pricing-amount .unit {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: var(--bone-faint);
  letter-spacing: 0.18em;
  margin-left: 6px;
  text-transform: uppercase;
}

.tier-includes-label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.includes-list li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--navy-line);
  font-size: 14px;
  color: var(--bone);
  line-height: 1.65;
  position: relative;
}
.includes-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 23px;
  width: 14px;
  height: 1px;
  background: var(--gold);
}
.tier.flagship .includes-list li { border-bottom-color: rgba(201, 169, 97, 0.15); }
.includes-list li:last-child { border-bottom: none; }
.includes-list li em { font-style: italic; color: var(--gold); }

.tier-cta { margin-top: 36px; }

@media (max-width: 900px) {
  .tier { grid-template-columns: 1fr; gap: 48px; padding: 40px 28px; }
}

/* ═══════════════════════════════════════════════════════
   COUNTERACT TIER OVERRIDES (Tier 01)
   ═══════════════════════════════════════════════════════ */
.tier-counteract {
  background: var(--co-black);
  border-color: var(--co-line);
  color: var(--co-bone);
}
.tier-counteract::before {
  content: 'COUNTERACT';
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--co-green);
}
.tier-counteract .tier-num {
  color: var(--co-green);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.3em;
}
.counteract-logo { margin-bottom: 28px; }
.counteract-logo .ca-counter,
.counteract-logo .ca-act {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 6.5vw, 80px);
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 0.92;
}
.counteract-logo .ca-counter { color: var(--co-bone); }
.counteract-logo .ca-act { color: var(--co-green); margin-top: -3px; }
.counteract-divider {
  width: 100%;
  height: 3px;
  background: var(--co-green);
  margin: 16px 0 14px;
}
.counteract-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--co-mute);
  text-transform: uppercase;
  margin-bottom: 32px;
  line-height: 1.5;
}
.tier-counteract .tier-description { color: rgba(240, 237, 230, 0.65); font-family: 'Barlow', sans-serif; }
.tier-counteract .tier-pricing,
.tier-counteract .pricing-row { border-color: var(--co-line); }
.tier-counteract .pricing-label,
.tier-counteract .tier-includes-label {
  color: rgba(240, 237, 230, 0.5);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.3em;
}
.tier-counteract .pricing-amount {
  color: var(--co-green);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.01em;
}
.tier-counteract .pricing-amount .unit {
  color: rgba(240, 237, 230, 0.4);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.2em;
}
.tier-counteract .includes-list li {
  color: var(--co-bone);
  border-color: var(--co-line);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
}
.tier-counteract .includes-list li::before { background: var(--co-green); }
.tier-counteract .btn {
  border-color: var(--co-green);
  color: var(--co-green);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.3em;
}
.tier-counteract .btn:hover { background: var(--co-green); color: var(--co-black); }

/* ═══════════════════════════════════════════════════════
   MEMBERSHIPS PREVIEW (home page mini-cards)
   ═══════════════════════════════════════════════════════ */
.tier-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.tier-mini {
  border: 1px solid var(--navy-line);
  background: var(--navy-deep);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.tier-mini.flagship {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.tier-mini-num {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tier-mini-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  color: var(--bone);
  margin-bottom: 8px;
}
.tier-mini-name em { font-style: italic; color: var(--gold); }
.tier-mini-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--bone-mute);
  margin-bottom: 24px;
  line-height: 1.4;
}
.tier-mini-price {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--navy-line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.tier-mini.flagship .tier-mini-price { border-top-color: rgba(201, 169, 97, 0.25); }
.tier-mini-price-label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--bone-mute);
  text-transform: uppercase;
}
.tier-mini-price-value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--gold);
  white-space: nowrap;
}
.tier-mini-price-value .unit {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 9px;
  color: var(--bone-faint);
  letter-spacing: 0.18em;
  margin-left: 4px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .tier-mini-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ═══════════════════════════════════════════════════════
   FOUNDERS / ABOUT BLOCKS
   ═══════════════════════════════════════════════════════ */
.founder {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  padding: 56px 0;
  border-top: 1px solid var(--navy-line);
}
.founder:first-of-type { border-top: none; padding-top: 0; }
.founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--bone);
  letter-spacing: 0.005em;
  margin-bottom: 6px;
}
.founder-role {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.founder-bio { font-size: 14px; line-height: 1.85; color: var(--bone-mute); }
.founder-bio p + p { margin-top: 16px; }
@media (max-width: 800px) {
  .founder { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
}

/* Foundation tenets */
.tenet-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.tenet {
  border-left: 1px solid rgba(201, 169, 97, 0.3);
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--bone);
}

/* ═══════════════════════════════════════════════════════
   ENQUIRY FORM
   ═══════════════════════════════════════════════════════ */
.form {
  max-width: 640px;
  margin: 56px auto 0;
}
.form-field {
  margin-bottom: 28px;
}
.form-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.form-label .req { color: var(--gold); margin-left: 4px; }
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--navy-line);
  padding: 12px 0;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--bone);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Jost', sans-serif;
  line-height: 1.6;
}
.form-select {
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 12px) center;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 32px;
}
.form-select option {
  background: var(--navy-deep);
  color: var(--bone);
  padding: 8px;
}
.form-submit-row {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.form-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--bone-mute);
}
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* Bottom note (centered italic) */
.bottom-note {
  text-align: center;
  padding: 64px 0 80px;
}
.bottom-note p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--bone-mute);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   PAGE HEADER (memberships, about)
   ═══════════════════════════════════════════════════════ */
.page-header {
  padding: 100px 0 72px;
  text-align: center;
  border-bottom: 1px solid var(--navy-line);
}
.page-header .eyebrow { margin-bottom: 24px; }

/* ═══════════════════════════════════════════════════════
   FADE-IN ANIMATIONS (driven by IntersectionObserver in JS)
   ═══════════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════════
   THANK-YOU PAGE
   ═══════════════════════════════════════════════════════ */
.thanks-wrap {
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
}
.thanks-wrap .h1 { max-width: 720px; margin: 0 auto; }

/* hidden helper */
.hidden { display: none; }

/* ═══════════════════════════════════════════════════════
   PRACTICES SECTION (home — Body / Movement / Spirit)
   ═══════════════════════════════════════════════════════ */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.practice-card {
  border: 1px solid var(--navy-line);
  background: var(--navy-deep);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}
.practice-card:hover {
  border-color: rgba(201, 169, 97, 0.4);
}
.practice-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.practice-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  color: var(--bone);
  letter-spacing: 0.005em;
  margin-bottom: 18px;
}
.practice-title em { font-style: italic; color: var(--gold); }
.practice-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--bone-mute);
  margin-bottom: 32px;
  flex: 1;
}
.practice-link {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.2s, color 0.2s;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}
.practice-link:hover {
  color: var(--gold-warm);
  gap: 16px;
  border-bottom-color: var(--gold-warm);
}
.practice-link .arrow {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 900px) {
  .practice-grid { grid-template-columns: 1fr; gap: 16px; }
  .practice-card { padding: 32px 28px; }
}

