/* ============================================================================
   Tracy Abdullah - site stylesheet
   One vanilla CSS file. Design tokens, base, layout, components, utilities.
   ========================================================================= */

/* ----- Design tokens ------------------------------------------------------ */
:root {
  /* Surfaces */
  --bg-shell: #f2ede8;
  --bg-dark: #0c0a08;
  --bg-muted: #e6e0da;

  /* Ink */
  --ink-heading: #0c0a08;
  --ink-body: #46372a;
  --ink-caption: #917a63;
  --ink-soft: #5c4a3a;

  /* On-dark */
  --ink-heading-on-dark: #f2ede8;
  --ink-body-on-dark: #b9aea2;
  --ink-caption-on-dark: #917a63;

  /* Accent */
  --accent: #7b0f22;
  --accent-foreground: #f2ede8;
  --destructive: #ef4444;

  /* Borders */
  --border-on-light: rgba(70, 55, 42, 0.12);
  --border-on-dark: rgba(242, 237, 232, 0.12);

  /* Archetype orbs */
  --orb-lover: #a01828;
  --orb-lover-deep: #5c1020;
  --orb-mystic: #2a8898;
  --orb-mystic-deep: #0a3040;
  --orb-mother: #8b7355;
  --orb-mother-deep: #3d2e20;

  /* Type */
  --font-heading: "the-seasons", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "helvetica-lt-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, "Roboto Mono", monospace;

  /* Size scale */
  --fs-12: 0.75rem;
  --fs-14: 0.875rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-24: 1.5rem;
  --fs-32: 2rem;
  --fs-40: 2.5rem;
  --fs-56: 3.5rem;
  --fs-72: 4.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-narrow: 720px;
  --container: 900px;
  --container-wide: 1200px;
  --container-mobile: 500px;

  /* Misc */
  --radius: 0px;
  --ease-smooth: cubic-bezier(0.32, 0.72, 0.24, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-base: 0.3s var(--ease-smooth);
}

/* ----- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  background-color: var(--bg-shell);
  color: var(--ink-body);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--fs-16);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: underline; text-underline-offset: 0.2em; }
a:hover { color: var(--accent); }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
button { font: inherit; cursor: pointer; }
hr { border: 0; border-top: 1px solid var(--border-on-light); margin: var(--space-12) 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--ink-heading);
  line-height: 1.15;
  margin: 0 0 var(--space-4);
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.25rem, 5vw, var(--fs-72)); }
h2 { font-size: clamp(1.875rem, 4vw, var(--fs-56)); }
h3 { font-size: clamp(1.5rem, 3vw, var(--fs-40)); }
h4 { font-size: var(--fs-24); }
h5 { font-size: var(--fs-18); }
h6 { font-size: var(--fs-16); text-transform: uppercase; letter-spacing: 0.2em; }

p, ul.prose, ol.prose { margin: 0 0 var(--space-4); }
.prose p + p { margin-top: var(--space-4); }
.prose li { list-style: disc; margin-left: 1.25rem; }
.prose ol li { list-style: decimal; }

::selection { background: var(--accent); color: var(--accent-foreground); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--ink-heading); color: var(--bg-shell);
  padding: 0.5rem 1rem; z-index: 200;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* ----- Layout helpers ----------------------------------------------------- */
/* Foundational rule: content caps at 500px on mobile, scales up at the 768px
   breakpoint. Each container variant has its own desktop cap. */
.container,
.container-narrow,
.container-wide  { max-width: var(--container-mobile); margin: 0 auto; padding: 0 var(--space-6); }

@media (min-width: 768px) {
  .container        { max-width: var(--container); }
  .container-narrow { max-width: var(--container-narrow); }
  .container-wide   { max-width: var(--container-wide); }
}

.section { padding: var(--space-24) 0; }
.section-sm { padding: var(--space-16) 0; }
.section-lg { padding: var(--space-32) 0; }
.section-light { background-color: var(--bg-shell); color: var(--ink-body); }
.section-dark  { background-color: var(--bg-dark);   color: var(--ink-body-on-dark); }
.section-dark h1, .section-dark h2, .section-dark h3,
.section-dark h4, .section-dark h5, .section-dark h6 { color: var(--ink-heading-on-dark); }
.section-muted { background-color: var(--bg-muted); }

/* Image-backed sections (dark overlay on a hero image) */
.section-image {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-image > .section-image-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-image > .section-image-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(12, 10, 8, 0.72);
}
.section-image.section-image-light > .section-image-overlay {
  background-color: rgba(242, 237, 232, 0.9);
}

/* Eyebrow accent variant - crimson */
.eyebrow-accent { color: var(--accent); }
.section-dark .eyebrow-accent { color: var(--accent); }

/* Wider tracking for hero/eyebrow on key sections */
.eyebrow-wide { letter-spacing: 0.25em; }

.stack > * + * { margin-top: var(--space-6); }
.stack-sm > * + * { margin-top: var(--space-3); }
.stack-lg > * + * { margin-top: var(--space-12); }
.center-text,
.center { text-align: center; }

/* Scroll-reveal: blocks marked [data-reveal] fade up when they enter the
 * viewport (toggled by IntersectionObserver in base.njk). Reduced-motion
 * users get the final state immediately. */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

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

/* ----- Typography utilities ---------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-caption);
  margin: 0 0 var(--space-4);
}
.section-dark .eyebrow { color: var(--ink-caption-on-dark); }
.lede { font-size: var(--fs-18); line-height: 1.55; color: var(--ink-body); max-width: 56ch; }
.section-dark .lede { color: var(--ink-body-on-dark); }
.caption { font-size: var(--fs-14); color: var(--ink-caption); }

/* ----- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 16px 40px;
  border-radius: 0;
  line-height: 1;
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--ink-heading);
  color: var(--ink-heading);
  transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base);
  cursor: pointer;
}
.btn:hover, .btn:focus-visible {
  background: var(--ink-heading);
  color: var(--bg-shell);
  outline: none;
}
.btn-on-dark {
  border-color: var(--bg-shell);
  color: var(--bg-shell);
}
.btn-on-dark:hover, .btn-on-dark:focus-visible {
  background: var(--bg-shell);
  color: var(--ink-heading);
}
.btn-accent {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-accent:hover, .btn-accent:focus-visible {
  background: var(--accent);
  color: var(--accent-foreground);
}

/* ----- Theory / definition list pattern ---------------------------------- */
.theory-list {
  margin: 0;
}
.theory-row {
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--border-on-light);
}
.theory-row:first-child {
  border-top: 1px solid var(--border-on-light);
}
.theory-row dt,
.theory-row .theory-row-title {
  margin: 0 0 var(--space-3);
}
.theory-row-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: var(--fs-18);
  color: var(--ink-heading);
  line-height: 1.3;
}
.theory-row dd {
  margin: 0;
  color: var(--ink-body);
}
.section-dark .theory-row { border-color: var(--border-on-dark); }
.section-dark .theory-row:first-child { border-top-color: var(--border-on-dark); }
.section-dark .theory-row dd { color: var(--ink-body-on-dark); }
.section-dark .theory-row-title { color: var(--ink-heading-on-dark); }

/* ----- FAQ (native <details>) -------------------------------------------- */
.faq { list-style: none; }
.faq-item {
  border-bottom: 1px solid var(--border-on-light);
}
.faq-item:first-child { border-top: 1px solid var(--border-on-light); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-6) 0;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: var(--fs-18);
  line-height: 1.3;
  color: var(--ink-heading);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: var(--fs-24);
  font-weight: 300;
  color: var(--ink-soft);
  transition: transform var(--transition-base);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 0 var(--space-6);
  color: var(--ink-body);
}
.section-dark .faq-item { border-color: var(--border-on-dark); }
.section-dark .faq-item:first-child { border-top-color: var(--border-on-dark); }
.section-dark .faq-item summary { color: var(--ink-heading-on-dark); }
.section-dark .faq-item summary::after { color: var(--ink-caption-on-dark); }
.section-dark .faq-item .faq-body { color: var(--ink-body-on-dark); }

/* ----- Numbered steps ---------------------------------------------------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.step {
  display: flex;
  gap: var(--space-8);
  align-items: baseline;
  border: 1px solid var(--border-on-light);
  padding: var(--space-8);
}
.step-number {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  min-width: 24px;
}
.step-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: var(--fs-18);
  color: var(--ink-heading);
  margin: 0 0 var(--space-2);
  line-height: 1.3;
}
.step-body { margin: 0; color: var(--ink-body); }

/* ----- Cards -------------------------------------------------------------- */
.card {
  border: 1px solid var(--border-on-light);
  background: var(--bg-shell);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.section-dark .card {
  border-color: var(--border-on-dark);
  background: transparent;
}
.card-title { margin: 0; }
.card-body { color: inherit; }
.card-foot { margin-top: auto; padding-top: var(--space-4); }

/* ----- Orbs (archetype motifs) ------------------------------------------- */
.orb {
  display: block;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  box-shadow: 0 0 48px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
}
.orb-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-12);
}
@media (min-width: 768px) {
  .orb-stack { flex-direction: row; justify-content: center; gap: 5rem; }
}
.orb-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.orb-figure-name {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: var(--fs-18);
  color: var(--ink-heading-on-dark);
  margin: 0;
}
.orb-figure-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-caption-on-dark);
  margin: 0;
}
/* 3-stop gradient with a white highlight at top-left for the wet, three-
 * dimensional sphere look. Mother gets a softer (0.20) highlight for a
 * matter feel. Spec: see "The Abdullah Framework Research / Design Examples
 * / fontsdesign.md" §4. */
.orb-lover  { background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.15) 0%, var(--orb-lover)  45%, var(--orb-lover-deep)  100%); }
.orb-mystic { background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.15) 0%, var(--orb-mystic) 45%, var(--orb-mystic-deep) 100%); }
.orb-mother { background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.20) 0%, var(--orb-mother) 45%, var(--orb-mother-deep) 100%); }

/* ----- Header / nav ------------------------------------------------------- */
/* Sticky glass header - full-width blur layer, 900px inner content
 * (matches --container so the logo lines up with main content).
 * Layers: backdrop blur + black tint + diagonal sheen (::before) +
 * SVG noise (::after). All three layers share the same mask so the
 * bottom edge fades cleanly. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  isolation: isolate;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 40%,
    transparent 62%,
    rgba(255, 255, 255, 0.05) 100%
  );
  -webkit-mask-image: linear-gradient(to bottom, #000 57%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 57%, transparent 100%);
  pointer-events: none;
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 57%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 57%, transparent 100%);
}
.site-header-inner {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header-brand {
  font-family: "the-seasons", "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  letter-spacing: 0.1px;
  color: #ffffff;
  text-decoration: none;
}
.site-header-brand:hover { color: #ffffff; }
.site-header-nav {
  display: none;
  align-items: center;
  gap: 28px;
}
.site-header-nav a {
  font-family: "helvetica-lt-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.site-header-nav a:hover {
  color: #ffffff;
  opacity: 1;
}

/* Dropdown submenus (About > Coaching, Research > Framework + Mythic) */
.site-header-nav-item {
  position: relative;
}
.site-header-nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 24px 20px;
  background: rgba(0, 0, 0, 0.92);
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateY(-4px);
  z-index: 110;
}
.site-header-nav-item:hover .site-header-nav-submenu,
.site-header-nav-item:focus-within .site-header-nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.site-header-nav-submenu a {
  white-space: nowrap;
}

/* Mobile submenu items: indent slightly to indicate hierarchy */
.site-header-mobile-nav-child {
  padding-left: 16px;
  opacity: 0.7;
}

/* Hamburger toggle - three thin lines, visible only below 800px */
.site-header-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.site-header-toggle-line {
  display: block;
  width: 24px;
  height: 1px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-header-toggle[aria-expanded="true"] .site-header-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.site-header-toggle[aria-expanded="true"] .site-header-toggle-line:nth-child(2) {
  opacity: 0;
}
.site-header-toggle[aria-expanded="true"] .site-header-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile dropdown nav - hidden until toggled open */
.site-header-mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px 24px 24px;
  background: rgba(0, 0, 0, 0.92);
}
.site-header-mobile-nav.is-open {
  display: flex;
}
.site-header-mobile-nav a {
  font-family: "helvetica-lt-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.85;
}
.site-header-mobile-nav a:last-child { border-bottom: 0; }
.site-header-mobile-nav a:hover { opacity: 1; }

@media (min-width: 800px) {
  .site-header-nav { display: flex; }
  .site-header-toggle { display: none; }
  .site-header-mobile-nav { display: none !important; }
}
.site-nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.site-brand {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
}
.site-brand:hover { color: var(--ink-heading); }

.site-nav-list {
  display: none;
  gap: var(--space-8);
  align-items: center;
}
.site-nav-link, .site-nav-sublink {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color var(--transition-base);
}
.site-nav-link:hover,
.site-nav-link:focus-visible,
.site-nav-sublink:hover { color: var(--ink-heading); }
.site-nav-link-cta {
  border: 1px solid currentColor;
  padding: 0.5rem 1rem;
}

.site-nav-item-dropdown { position: relative; }
.site-nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-shell);
  border: 1px solid var(--border-on-light);
  padding: var(--space-4) var(--space-6);
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}
.site-nav-item-dropdown:hover .site-nav-submenu,
.site-nav-item-dropdown:focus-within .site-nav-submenu {
  opacity: 1;
  pointer-events: auto;
}

.site-nav-toggle {
  background: transparent;
  border: 0;
  padding: 0.5rem;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.site-nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink-heading);
}

@media (min-width: 768px) {
  .site-nav-list { display: flex; }
  .site-nav-toggle { display: none; }
}

@media (max-width: 767px) {
  .site-nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-shell);
    border-bottom: 1px solid var(--border-on-light);
    padding: var(--space-4) var(--space-6) var(--space-8);
  }
  .site-nav-list.is-open { display: flex; }
  .site-nav-list > li { padding: var(--space-3) 0; border-top: 1px solid var(--border-on-light); }
  .site-nav-list > li:first-child { border-top: 0; }
  .site-nav-submenu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    padding: var(--space-3) 0 0 var(--space-6);
    border: 0;
    background: transparent;
    min-width: 0;
  }
}

/* ----- Footer (ported from preview5) -------------------------------------- */
.site-footer {
  background: #070605;
  color: hsl(30 12% 50%);
  text-align: center;
  padding: 64px 0 31px;
  font-size: 11px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-signature {
  font-family: "the-seasons", "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  color: #f2ede8;
}
.footer-byline {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.29em;
  color: hsl(30 12% 50%);
  margin-top: 8px;
}
.footer-copyright {
  margin-top: 36px;
}


/* ----- Article index ----------------------------------------------------- */
.article-index { display: flex; flex-direction: column; }
.article-card {
  display: block;
  text-decoration: none;
  padding: var(--space-12) var(--space-1);
  border-top: 1px solid var(--border-on-light);
  transition: background-color var(--transition-base);
}
.article-card:hover { background-color: rgba(92, 74, 58, 0.04); }
.article-index > li:last-child .article-card { border-bottom: 1px solid var(--border-on-light); }
.article-card h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  line-height: 1.25;
  margin: 0 0 var(--space-4);
}
.article-card p { color: var(--ink-body); margin: 0 0 var(--space-6); }
.article-card-cta {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ----- Legal pages (Privacy, Terms) -------------------------------------- */
.legal-sections {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  margin-top: var(--space-16);
}
.legal-sections h3 {
  font-size: var(--fs-18);
  color: var(--ink-heading-on-dark);
  margin: 0 0 var(--space-3);
}
.legal-sections p { color: var(--ink-body-on-dark); margin: 0; }
.legal-sections a { color: var(--ink-heading-on-dark); text-decoration: underline; }

/* ----- Reduced motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ============================================================================
   HOMEPAGE
   Plain CSS - literal values, no variables, no clamp().
   Order matches the page top-to-bottom:
     1. Arch mark (shared SVG style)
     2. Hero
     3. Panorama (3 columns)
     4. Quiet link
     5. Currently rail
     6. Doorway
   Mobile rules first; one desktop override per section under @media 768px.
   ========================================================================= */


/* 1. Arch mark - shared SVG ornament. Capped small to act as a wordmark
   above section headers. The panorama uses a separate sized override. */
.arch-mark {
  display: block;
  width: 36px;
  height: auto;
  margin: 0 auto var(--space-6);
  color: #7b0f22;
}


/* 2. HERO ------------------------------------------------------------------ */

.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  background: #f2ede8;
  overflow: hidden;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
.home-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    #0c0a08 0%,
    rgba(12, 10, 8, 0.95) 32%,
    rgba(12, 10, 8, 0.65) 55%,
    rgba(12, 10, 8, 0.50) 78%
  );
}
.home-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 96px 24px 64px;
  text-align: left;
}
.home-hero-title {
  font-family: "the-seasons", "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #f2ede8;
  margin: 0;
  max-width: none;
  text-transform: none;
}
.home-hero-title span {
  display: block;
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out forwards;
}
/* The JS uses temp word spans to measure line breaks - keep them inline so
 * the display:block above doesn't push every word onto its own line. */
.home-hero-title span.hero-word-tmp {
  display: inline;
  opacity: 1;
  animation: none;
}
.home-hero-title span:nth-child(1) { animation-delay: 0.2s; }
.home-hero-title span:nth-child(2) { animation-delay: 0.8s; }
.home-hero-title span:nth-child(3) { animation-delay: 1.4s; }
.home-hero-title span:nth-child(4) { animation-delay: 2.0s; }
.home-hero-title span:nth-child(5) { animation-delay: 2.6s; }
.home-hero-title span:nth-child(n+6) { animation-delay: 3.2s; }

.home-hero-tagline {
  font-family: "helvetica-lt-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #d8cfc4;
  max-width: 56ch;
  margin: 28px 0 0;
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out 1.4s forwards;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .home-hero-title span,
  .home-hero-tagline {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 600px) {
  .home-hero-inner {
    max-width: 700px;
    padding: 112px 24px 80px;
  }
  .home-hero-title { font-size: 44px; }
}

@media (min-width: 800px) {
  .home-hero-scrim {
    background: linear-gradient(
      to top,
      #0c0a08 0%,
      rgba(12, 10, 8, 0.94) 22%,
      rgba(12, 10, 8, 0.65) 42%,
      rgba(12, 10, 8, 0.50) 65%
    );
  }
  .home-hero-inner {
    max-width: 900px;
    padding: 128px 24px 96px;
  }
  .home-hero-title { font-size: 56px; }
}

@media (min-width: 1030px) {
  .home-hero-bg {
    object-position: center top;
  }
}

/* 3. PANORAMA - three noun columns ----------------------------------------- */

.panorama {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.panorama-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.panorama-mark {
  width: 40px;
  height: auto;
  color: #7b0f22;
  opacity: 1;
  margin: 0 auto 16px 0; /* hangs left on mobile */
}
.panorama-title {
  font-family: "the-seasons", "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.15;
  color: #0c0a08;
  margin: 0;
}
.panorama-body {
  font-size: 14px;
  line-height: 1.75;
  color: #46372a;
  margin: 0;
}
.panorama-col .quiet-link {
  margin-top: auto;
  padding-top: 16px;
}

@media (min-width: 768px) {
  .panorama {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .panorama-mark { margin: 0 auto 16px; }
  .panorama-title { font-size: 24px; }
}


/* 4. QUIET LINK - small uppercase text link with arrow --------------------- */

.quiet-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: "helvetica-lt-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  color: #7b0f22;
  transition: color 0.3s ease;
}
.quiet-link span {
  display: inline-block;
  transition: transform 0.3s ease;
}
.quiet-link:hover { color: #0c0a08; }
.quiet-link:hover span { transform: translateX(4px); }

.section-dark .quiet-link { color: #f2ede8; }
.section-dark .quiet-link:hover { color: #f2ede8; }


/* 5. CURRENTLY - live signal rail ------------------------------------------ */

.currently {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px 48px;
  align-items: start;
}
.currently-eyebrow {
  font-family: "helvetica-lt-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #7b0f22;
  margin: 0;
  padding-top: 4px;
}
.currently-list {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.currently-item dt {
  font-family: "helvetica-lt-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #917a63;
  margin: 0 0 8px;
}
.currently-item dd {
  font-family: "the-seasons", "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.45;
  color: #0c0a08;
  margin: 0;
}

@media (min-width: 768px) {
  .currently-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }
}


/* 6. DOORWAY - quiet org-consulting block ---------------------------------- */

.doorway {
  text-align: center;
}
.doorway-title {
  font-size: 26px;
  margin: 12px 0 24px;
}
.doorway-body {
  font-size: 18px;
  line-height: 1.65;
  color: #46372a;
  max-width: 56ch;
  margin: 0 auto 48px;
}

@media (min-width: 768px) {
  .doorway-title { font-size: 32px; }
}

/* 7. ARTICLES -------------------------------------------------------------- */

.article-list { list-style: none; padding: 0; margin: 0; }
.article-list-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-on-light, #d9cfc2);
}
.article-list-item:last-child { border-bottom: 0; }
.article-list-date {
  display: block;
  font-family: "helvetica-lt-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft, #8b7355);
  margin-bottom: 12px;
}
.article-list-title {
  font-family: "the-seasons", "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 12px;
  text-transform: capitalize;
}
.article-list-title a { color: var(--ink-heading, #0c0a08); text-decoration: none; }
.article-list-title a:hover { text-decoration: underline; }
.article-list-excerpt {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-body, #46372a);
  margin: 0;
  max-width: 56ch;
}
.article-list-empty {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-body, #46372a);
  padding: 40px 0;
}

.article-body {
  padding: 64px 0 96px;
}
/* Every direct content element in an article shares one column width
 * (36rem ≈ 576px) so headings and paragraphs align on the same left edge. */
.article-body p,
.article-body ul,
.article-body ol,
.article-body h2,
.article-body h3,
.article-body blockquote {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.article-body p,
.article-body ul,
.article-body ol {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-body, #46372a);
  margin-top: 0;
  margin-bottom: 10px;
}
.article-body h2 {
  font-family: "the-seasons", "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.article-body h3 {
  font-family: "the-seasons", "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.article-body blockquote {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-body, #46372a);
  font-style: italic;
  border-left: 2px solid var(--ink-soft, #8b7355);
  padding-left: 24px;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.article-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2em auto;
}
@media (min-width: 800px) {
  .article-body p,
  .article-body ul,
  .article-body ol,
  .article-body blockquote {
    font-size: 15px;
  }
}
.article-date {
  display: block;
  font-family: "helvetica-lt-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft, #8b7355);
  text-align: center;
  margin-bottom: 32px;
}

/* Author bio block - appears at bottom of every article */
.author-bio {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border-on-light, rgba(70, 55, 42, 0.12));
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.author-bio-headshot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-bio-text { flex: 1; }
.author-bio-name {
  font-family: "the-seasons", "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  margin: 0 0 6px;
}
.author-bio-name a {
  color: var(--ink-heading, #0c0a08);
  text-decoration: none;
}
.author-bio-name a:hover { text-decoration: underline; }
.author-bio-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-body, #46372a);
  margin: 0;
  max-width: 56ch;
}

/* Footnotes (markdown-it-footnote output) */
.footnote-ref a {
  text-decoration: none;
  color: var(--accent, #7b0f22);
  font-size: 0.75em;
  vertical-align: super;
  line-height: 0;
  margin: 0 1px;
}
.footnotes-sep {
  margin: 64px auto 24px;
  max-width: 62ch;
  border: 0;
  border-top: 1px solid var(--border-on-light, rgba(70, 55, 42, 0.12));
}
.footnotes-list {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft, #5c4a3a);
  max-width: 62ch;
  margin: 0 auto;
  padding-left: 1.5em;
  list-style: decimal;
}
.footnotes-list li { margin-bottom: 12px; list-style: decimal; }
.footnotes-list li p { font-size: inherit; line-height: inherit; margin: 0; max-width: none; }
.footnote-backref { text-decoration: none; margin-left: 6px; color: var(--accent, #7b0f22); }

/* Collapsible sources block at the bottom of essays */
.article-sources {
  max-width: 36rem;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--border-on-light, rgba(70, 55, 42, 0.12));
}
.article-sources summary {
  cursor: pointer;
  list-style: none;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "the-seasons", "Cormorant Garamond", Georgia, serif;
  font-size: 16px;
  color: var(--ink-heading, #0c0a08);
  padding: 6px 0;
}
.article-sources summary::-webkit-details-marker { display: none; }
.article-sources summary::after {
  content: "›";
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease;
  color: var(--ink-soft, #8b7355);
}
.article-sources[open] summary::after { transform: rotate(90deg); }
.article-sources ol {
  margin: 16px 0 0;
  padding-left: 1.5em;
  list-style: decimal;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft, #5c4a3a);
}
.article-sources ol li {
  list-style: decimal;
  margin-bottom: 14px;
}
.article-sources em { font-style: italic; }
@media (min-width: 800px) {
  .article-sources ol { font-size: 14px; }
}

/* Middle Third CTA wrapper */
.middle-third-cta {
  margin-top: 48px !important;
  text-align: center;
}

/* Archetypes page - three feminine + masculine mirror pairs */
.archetypes-intro {
  font-size: 16px;
  line-height: 1.65;
  max-width: 56ch;
  margin: 0 auto 64px;
  color: var(--ink-body);
  text-align: center;
}
.archetype-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 48px;
  justify-items: center;
}
@media (min-width: 768px) {
  .archetype-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
.archetype-pair {
  text-align: center;
}
.archetype-pair .orb {
  margin-bottom: 28px;
}
.archetype-names {
  font-family: "the-seasons", "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--ink-heading);
}
.archetype-sub {
  font-family: "helvetica-lt-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-caption);
  margin: 8px 0 0;
}

/* Feminine / Masculine mode switch on the Archetypes page */
.archetype-mode-switch {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 0 auto 56px;
}
.archetype-mode-btn {
  font-family: "helvetica-lt-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  color: var(--ink-soft);
  transition: color 0.2s, border-color 0.2s;
}
.archetype-mode-btn.is-active {
  color: var(--ink-heading);
  border-bottom-color: var(--ink-heading);
}
.archetype-mode-btn:hover {
  color: var(--ink-heading);
}
/* Both name+sub spans share a single grid cell so they overlap, then we
 * fade between them with opacity. Identical-text rows (Freedom + Movement,
 * Spirituality + Seeking) still play the same cross-fade as the differing
 * Mother/Father row, so the whole motion feels uniform. */
.archetype-names,
.archetype-sub {
  display: grid;
  grid-template-areas: "stack";
  justify-items: center;
}
.archetype-names > span,
.archetype-sub > span {
  grid-area: stack;
  transition: opacity 0.45s var(--ease-smooth);
}
.archetype-mode-wrapper[data-mode="feminine"] [data-mode-show="masculine"],
.archetype-mode-wrapper[data-mode="masculine"] [data-mode-show="feminine"] {
  opacity: 0;
  pointer-events: none;
}

/* ============================================================================
   Homepage funnel sections (lifted from landing.html)
   Hero CTA, Threshold, Archetype Discovery session, What Becomes Possible,
   Testimonials, Final Call.
   ========================================================================= */

/* Optional CTA button below the hero tagline */
.home-hero-cta {
  margin: 40px 0 0;
}
.home-hero-cta .btn {
  font-size: 12px;
  padding: 18px 44px;
}

/* Threshold (dark section right under the hero) */
/* .measure is an inner constraint: sits inside .container (900px) and caps
 * prose at 60ch so text stays readable while section edges stay consistent. */
.measure { max-width: 60ch; margin-left: auto; margin-right: auto; }
.threshold .eyebrow { color: var(--ink-heading-on-dark); }
.threshold p {
  font-size: 1.22rem;
  line-height: 1.62;
  margin: 0 0 var(--space-6);
  color: var(--ink-heading-on-dark);
}
.threshold p strong {
  color: var(--ink-heading-on-dark);
  font-weight: 300;
}
.turn {
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.005em;
  text-transform: capitalize;
  color: var(--ink-heading-on-dark);
  text-align: left;
  margin: var(--space-12) 0 0;
}
.possible-h2 {
  font-size: 2rem;
  line-height: 1.2;
}
@media (max-width: 600px) {
  .turn { font-size: 22.5px; }
  .possible-h2 { font-size: 1.5rem; }
}
/* Same emphasis as .turn but for light backgrounds. */
.turn-light {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.25;
  color: var(--ink-heading);
  font-weight: 400;
  margin: var(--space-12) 0;
}

/* Archetype Discovery session list */
.session-list {
  max-width: 640px;
  margin: var(--space-10) auto 0;
  padding: 0;
}
.session-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  padding: var(--space-8) 0;
  list-style: none;
}
.session-list li + li {
  border-top: 1px solid var(--border-on-light);
}
.session-num {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  flex-shrink: 0;
}
.session-list li > div {
  flex: 1 1 auto;
  min-width: 0;
}
.session-list h3 {
  font-size: 1.25rem;
  margin: 0.25rem 0 0.35rem;
}
.session-list p {
  margin: 0;
  color: var(--ink-soft);
}

/* What Becomes Possible grid */
.possible-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  max-width: 640px;
  margin: var(--space-12) auto 0;
}
@media (min-width: 640px) {
  .possible-grid { grid-template-columns: repeat(2, 1fr); }
}
.possible-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.possible-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: none;
  margin-top: 0.5rem;
  background: var(--accent);
}
.possible-item p {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.5;
}

/* Testimonials */
.quote {
  max-width: 52ch;
  margin: var(--space-12) auto 0;
  text-align: center;
}
.quote:first-of-type { margin-top: var(--space-12); }
.quote:last-child { margin-bottom: 0; }
.quote + .quote {
  margin-top: var(--space-16);
  padding-top: var(--space-16);
  border-top: 1px solid var(--border-on-light);
}
.quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.45;
  color: var(--ink-heading);
  margin: 0 0 var(--space-4);
  font-weight: 400;
  font-style: italic;
}
.section-dark .quote blockquote { color: var(--ink-heading-on-dark); }
.quote cite {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 11px;
  color: var(--ink-caption);
  display: inline-block;
  margin-top: var(--space-2);
}

/* Final call */
.final .container { max-width: var(--container-narrow); }
.final h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  max-width: 22ch;
  margin: 0 auto var(--space-8);
}
.final .btn { margin-top: var(--space-6); }

/* ============================================================================
   Framework page (/framework/) - magazine layout adapted from preview2.html
   Scoped under body.framework-page so it does not affect other pages.
   Uses .fw- prefixes to avoid conflicting with site-wide component classes.
   ========================================================================= */

body.framework-page {
  --fw-paper: #fbf7f2;
  --fw-red: #a01828;
  --fw-line: rgba(92, 74, 58, 0.19);
  --fw-line-dark: rgba(242, 237, 232, 0.14);
  --fw-light-on-dark: hsl(30 12% 70%);
}

.framework-page .fw-inner {
  width: min(900px, calc(100% - 52px));
  margin: 0 auto;
}

.framework-page .fw-section {
  padding: 92px 0;
}

.framework-page h2 {
  font-family: "the-seasons", "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink-heading);
}
.framework-page h3 {
  font-family: "the-seasons", "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink-heading);
}
.framework-page .fw-eyebrow {
  font-family: "helvetica-lt-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink-caption);
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  margin-bottom: 22px;
}

/* Buttons (page-scoped) */
.framework-page .fw-btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 31px;
  font-family: "helvetica-lt-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.framework-page .fw-btn-red {
  background: var(--fw-red);
  border-color: var(--fw-red);
  color: #f2ede8;
}
.framework-page .fw-btn-red:hover {
  background: transparent;
  color: var(--fw-red);
}
.framework-page .fw-btn-line {
  border-color: var(--ink-heading);
  color: var(--ink-heading);
}
.framework-page .fw-btn-line:hover {
  background: var(--ink-heading);
  color: #f2ede8;
}
.framework-page .fw-btn-line-dark {
  border-color: var(--ink-heading);
  color: var(--ink-heading);
}
.framework-page .fw-btn-line-dark:hover {
  background: var(--ink-heading);
  color: #f2ede8;
}

/* Opening: lead paragraph + two CTAs, sits between hero and the statement strip */
.framework-page .fw-opening {
  background: var(--bg-shell);
  padding: 88px 0 56px;
}
.framework-page .fw-opening .fw-lead {
  font-family: "the-seasons", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 2.7vw, 31px);
  line-height: 1.4;
  color: var(--ink-heading);
  max-width: 780px;
  margin: 0 0 0;
}
.framework-page .fw-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Statement: shell background, normal page colors */
.framework-page .fw-statement {
  background: var(--bg-shell);
  color: var(--ink-body);
  padding: 88px 0;
}
.framework-page .fw-statement blockquote {
  max-width: 900px;
  margin: 0;
  font-family: "the-seasons", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(27px, 4vw, 46px);
  line-height: 1.32;
  font-weight: 400;
  color: var(--ink-heading);
}
.framework-page .fw-statement p {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--ink-body);
  font-size: 15px;
  line-height: 1.85;
}

/* Intro block above each section grid */
.framework-page .fw-intro {
  max-width: 770px;
  margin-bottom: 50px;
}
.framework-page .fw-intro h2 {
  font-size: clamp(34px, 4.8vw, 57px);
  margin: 0 0 20px;
}
.framework-page .fw-intro p {
  font-size: 16px;
  line-height: 1.9;
  margin: 0;
}

/* 3-column card grid */
.framework-page .fw-cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media (max-width: 900px) {
  .framework-page .fw-cards3 { grid-template-columns: 1fr; }
}

/* Reads section (paper bg, 3 numbered cards) */
.framework-page .fw-reads {
  background: var(--fw-paper);
}
.framework-page .fw-ev {
  padding: 31px;
  background: var(--bg-shell);
  border: 1px solid var(--fw-line);
}
@media (min-width: 901px) {
  .framework-page .fw-ev { min-height: 250px; }
}
.framework-page .fw-ev-num {
  color: var(--fw-red);
  font-family: "the-seasons", "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  margin-bottom: 24px;
}
.framework-page .fw-ev h3 {
  font-size: 26px;
  margin: 0 0 11px;
}
.framework-page .fw-ev p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  color: var(--ink-body);
}

/* Positions section (dark bg) */
.framework-page .fw-positions {
  background: var(--bg-dark);
  color: var(--fw-light-on-dark);
}
.framework-page .fw-positions .fw-intro h2 {
  color: #f2ede8;
}
.framework-page .fw-positions .fw-intro p {
  color: var(--fw-light-on-dark);
}
.framework-page .fw-positions .fw-eyebrow {
  color: var(--ink-caption-on-dark);
}
.framework-page .fw-pos {
  border: 1px solid var(--fw-line-dark);
  padding: 36px 31px;
  background: rgba(242, 237, 232, 0.035);
}
@media (min-width: 901px) {
  .framework-page .fw-pos { min-height: 310px; }
}
.framework-page .fw-pos h3 {
  color: #f2ede8;
  font-size: 34px;
  margin: 0 0 17px;
}
.framework-page .fw-pos p {
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
  color: var(--fw-light-on-dark);
}
.framework-page .fw-pos .fw-eyebrow {
  color: var(--ink-caption-on-dark);
}

/* Direct section (work + record sidebar) */
.framework-page .fw-direct {
  background: var(--bg-shell);
}
.framework-page .fw-workgrid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 62px;
  align-items: start;
}
@media (max-width: 900px) {
  .framework-page .fw-workgrid { grid-template-columns: 1fr; gap: 30px; }
}
.framework-page .fw-copy h2 {
  font-size: clamp(37px, 5vw, 59px);
  margin: 0 0 23px;
}
.framework-page .fw-copy p {
  font-size: 16px;
  line-height: 1.95;
  margin: 0 0 20px;
  color: var(--ink-body);
}
.framework-page .fw-copy p strong {
  font-weight: 400;
  color: var(--ink-heading);
}
.framework-page .fw-record {
  background: var(--fw-paper);
  border: 1px solid var(--fw-line);
  padding: 38px;
}
.framework-page .fw-record h3 {
  font-size: 30px;
  margin: 0 0 23px;
}
.framework-page .fw-record ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.framework-page .fw-record li {
  list-style: none;
  padding: 13px 0;
  border-top: 1px solid var(--fw-line);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-body);
}
.framework-page .fw-record li:first-child {
  border-top: 0;
  padding-top: 0;
}

/* Offers section (3 cards, last is dark) */
.framework-page .fw-offers {
  background: var(--fw-paper);
  border-top: 1px solid var(--fw-line);
}
.framework-page .fw-offer {
  padding: 36px 31px;
  border: 1px solid var(--fw-line);
  background: var(--bg-shell);
  display: flex;
  flex-direction: column;
}
@media (min-width: 901px) {
  .framework-page .fw-offer { min-height: 390px; }
}
.framework-page .fw-offer--dark {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: var(--fw-light-on-dark);
}
.framework-page .fw-offer h3 {
  font-size: 38px;
  margin: 0 0 17px;
}
.framework-page .fw-offer--dark h3 {
  color: #f2ede8;
}
.framework-page .fw-offer--dark .fw-eyebrow {
  color: var(--ink-caption-on-dark);
}
.framework-page .fw-offer p {
  font-size: 14px;
  line-height: 1.9;
  margin: 0 0 18px;
  color: var(--ink-body);
}
.framework-page .fw-offer--dark p {
  color: var(--fw-light-on-dark);
}
.framework-page .fw-tag {
  margin-top: auto;
  padding-top: 27px;
  color: var(--fw-red);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.23em;
  text-decoration: none;
  font-family: "helvetica-lt-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.framework-page .fw-tag--quiet {
  color: var(--ink-caption);
}
.framework-page .fw-offer--dark .fw-tag {
  color: #f2ede8;
}
.framework-page .fw-offer--dark .fw-tag--quiet {
  color: var(--ink-caption-on-dark);
}
.framework-page .fw-offer-note {
  font-size: 11px;
  line-height: 1.55;
  font-style: italic;
  color: var(--ink-caption);
  margin: 12px 0 0;
}

/* Bridge: one bordered card with 2 columns inside */
.framework-page .fw-bridge {
  background: var(--bg-shell);
}
.framework-page .fw-bridgebox {
  border: 1px solid var(--fw-line);
  padding: 54px;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 55px;
  align-items: center;
}
@media (max-width: 900px) {
  .framework-page .fw-bridgebox { grid-template-columns: 1fr; padding: 34px; gap: 28px; }
}
.framework-page .fw-bridgebox h2 {
  font-size: clamp(35px, 4.5vw, 54px);
  margin: 0;
}
.framework-page .fw-bridgebox p {
  font-size: 15px;
  line-height: 1.95;
  margin: 0 0 29px;
  color: var(--ink-body);
}

/* Close: dark, centered */
.framework-page .fw-close {
  padding: 100px 0;
  background: var(--bg-dark);
  color: var(--fw-light-on-dark);
  text-align: center;
}
.framework-page .fw-close .fw-eyebrow {
  color: var(--ink-caption-on-dark);
}
.framework-page .fw-close h2 {
  color: #f2ede8;
  font-size: clamp(42px, 6vw, 72px);
  margin: 0 0 20px;
}
.framework-page .fw-close p {
  max-width: 600px;
  margin: 0 auto 38px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--fw-light-on-dark);
}

/* ============================================================================
   Research page (/research/) - magazine layout adapted from preview5.html
   Scoped under body.research-page. Uses .rs- prefix for component classes.
   ========================================================================= */

body.research-page {
  --rs-paper: #fbf7f2;
  --rs-red: #a01828;
  --rs-line: rgba(70, 55, 42, 0.18);
  --rs-line-dark: rgba(242, 237, 232, 0.14);
  --rs-light-on-dark: hsl(30 12% 70%);
}

.research-page .rs-inner {
  width: min(900px, calc(100% - 52px));
  margin: 0 auto;
}

.research-page .rs-section {
  padding: 92px 0;
}

.research-page h2 {
  font-family: "the-seasons", "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-heading);
}
.research-page h3 {
  font-family: "the-seasons", "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink-heading);
}
.research-page .rs-eyebrow {
  font-family: "helvetica-lt-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--ink-caption);
  margin-bottom: 22px;
}

/* Thesis: crimson strip with serif blockquote */
.research-page .rs-thesis {
  background: var(--rs-red);
  color: #f2ede8;
  padding: 68px 0;
}
.research-page .rs-thesis blockquote {
  font-family: "the-seasons", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4vw, 45px);
  line-height: 1.34;
  font-weight: 400;
  color: #f2ede8;
  margin: 0;
  max-width: 980px;
}
.research-page .rs-thesis p {
  color: rgba(242, 237, 232, 0.83);
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 15px;
  line-height: 1.85;
}

/* Section head: 2-col (eyebrow+h2 on left, paragraph on right) */
.research-page .rs-head {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 58px;
  align-items: end;
  margin-bottom: 53px;
}
.research-page .rs-head h2 {
  font-size: clamp(37px, 4.7vw, 59px);
  margin: 0;
}
.research-page .rs-head p {
  max-width: 660px;
  margin: 0;
  font-size: 15px;
  line-height: 1.92;
}
@media (max-width: 920px) {
  .research-page .rs-head { grid-template-columns: 1fr; gap: 24px; }
}

/* Tracks: 2 large cards with rounded corners (the only rounded element on the site) */
.research-page .rs-tracks {
  background: var(--rs-paper);
  border-bottom: 1px solid var(--rs-line);
}
.research-page .rs-trackgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
@media (max-width: 920px) {
  .research-page .rs-trackgrid { grid-template-columns: 1fr; }
}
.research-page .rs-track {
  background: var(--bg-shell);
  border: 1px solid var(--rs-line);
  border-radius: 28px;
  padding: 39px;
  min-height: 370px;
}
.research-page .rs-track h3 {
  font-size: 38px;
  margin: 0 0 18px;
}
.research-page .rs-track p {
  font-size: 15px;
  line-height: 1.92;
  margin: 0 0 18px;
  color: var(--ink-body);
}
.research-page .rs-smalllink {
  display: block;
  margin-top: 32px;
  font-size: 10px;
  color: var(--rs-red);
  letter-spacing: 0.23em;
  text-transform: uppercase;
  text-decoration: none;
}

/* Streams: 3 horizontal cards with 250px sidebar + main content */
.research-page .rs-streams {
  background: var(--bg-shell);
}
.research-page .rs-streamgrid {
  display: grid;
  gap: 14px;
}
.research-page .rs-stream {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 34px;
  border: 1px solid var(--rs-line);
  background: var(--rs-paper);
  padding: 37px 38px;
}
@media (max-width: 920px) {
  .research-page .rs-stream { grid-template-columns: 1fr; gap: 20px; }
}
.research-page .rs-index {
  font-family: "the-seasons", "Cormorant Garamond", Georgia, serif;
  font-size: 48px;
  color: var(--rs-red);
  line-height: 1;
}
.research-page .rs-type {
  margin-top: 17px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink-caption);
}
.research-page .rs-stream h3 {
  font-size: 33px;
  margin: 0 0 15px;
}
.research-page .rs-stream p {
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
  color: var(--ink-body);
}

/* Applied: 3 cards, one featured (red) */
.research-page .rs-applied {
  background: var(--rs-paper);
}
.research-page .rs-appliedgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media (max-width: 920px) {
  .research-page .rs-appliedgrid { grid-template-columns: 1fr; }
}
.research-page .rs-apply {
  background: var(--bg-shell);
  border: 1px solid var(--rs-line);
  padding: 35px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.research-page .rs-apply--featured {
  background: var(--rs-red);
  border-color: var(--rs-red);
  color: #f2ede8;
}
.research-page .rs-apply .rs-label {
  font-size: 10px;
  color: var(--ink-caption);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 20px;
}
.research-page .rs-apply--featured .rs-label {
  color: rgba(242, 237, 232, 0.7);
}
.research-page .rs-apply h3 {
  font-size: 33px;
  margin: 0 0 16px;
}
.research-page .rs-apply--featured h3 {
  color: #f2ede8;
}
.research-page .rs-apply p {
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
  color: var(--ink-body);
}
.research-page .rs-apply--featured p {
  color: rgba(242, 237, 232, 0.9);
}
.research-page .rs-apply a {
  margin-top: auto;
  padding-top: 28px;
  color: var(--rs-red);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.23em;
  text-decoration: none;
}
.research-page .rs-apply--featured a {
  color: #f2ede8;
}

/* Current work: one large bordered box with 2-col inside */
.research-page .rs-current {
  background: var(--bg-shell);
}
.research-page .rs-currentbox {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 57px;
  border: 1px solid var(--rs-line);
  padding: 54px;
  background: var(--rs-paper);
}
@media (max-width: 920px) {
  .research-page .rs-currentbox { grid-template-columns: 1fr; padding: 34px; gap: 30px; }
}
.research-page .rs-currentbox h2 {
  font-size: clamp(37px, 4.6vw, 55px);
  margin: 0 0 20px;
}
.research-page .rs-currentbox p {
  margin: 0;
  font-size: 15px;
  line-height: 1.92;
  color: var(--ink-body);
}
.research-page .rs-current-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.research-page .rs-current-list li {
  border-top: 1px solid var(--rs-line);
  padding: 15px 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-body);
  list-style: none;
}
.research-page .rs-current-list li:first-child {
  border-top: 0;
  padding-top: 0;
}
.research-page .rs-status {
  font-size: 9px;
  color: var(--rs-red);
  letter-spacing: 0.23em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

/* Collab: centered dark, with email button */
.research-page .rs-collab {
  background: var(--bg-dark);
  color: var(--rs-light-on-dark);
  padding: 94px 0;
  text-align: center;
}
.research-page .rs-collab .rs-eyebrow {
  color: var(--ink-caption-on-dark);
}
.research-page .rs-collab h2 {
  font-size: clamp(42px, 5.8vw, 72px);
  color: #f2ede8;
  margin: 0 auto 22px;
  max-width: 850px;
}
.research-page .rs-collab p {
  max-width: 720px;
  margin: 0 auto 36px;
  font-size: 15px;
  line-height: 1.92;
}
.research-page .rs-email {
  display: inline-flex;
  background: var(--rs-red);
  color: #f2ede8;
  padding: 16px 33px;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-decoration: none;
  font-family: "helvetica-lt-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.research-page .rs-email:hover {
  background: transparent;
  color: #f2ede8;
  border: 1px solid #f2ede8;
  padding: 15px 32px;
}

/* ============================================================
   /salon page styles - INAUGURAL SALON, mobile-first conversion
   Scoped under body.salon-page so they do not bleed elsewhere.
   No site header, no global nav, minimal footer.
   Own design system: warm-dark hero + cream body + terracotta CTA.
   Visually distinct from tracyabdullah.com main site.
   ============================================================ */

body.salon-page {
  /* Local design tokens, scoped to this page */
  --sp-cream: #F4ECE0;
  --sp-cream-soft: #EFE5D6;
  --sp-aubergine: #2A1B26;
  --sp-umber: #1A1410;
  --sp-terracotta: #C4623A;
  --sp-terracotta-hover: #B0552F;
  --sp-saffron: #E8A33D;
  --sp-ink: #2A1B26;
  --sp-ink-muted: #6B5848;
  --sp-on-dark: #F4ECE0;
  --sp-on-dark-muted: rgba(244, 236, 224, 0.7);
  --sp-border: rgba(42, 27, 38, 0.15);
  --sp-border-strong: rgba(42, 27, 38, 0.35);
  --sp-border-on-dark: rgba(244, 236, 224, 0.2);

  --sp-font-display: var(--font-heading, "the-seasons"), Georgia, "Times New Roman", serif;
  --sp-font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --sp-radius-card: 12px;
  --sp-radius-btn: 8px;
  --sp-radius-pill: 999px;

  --sp-shadow-sticky: 0 -2px 12px rgba(26, 20, 16, 0.12);
  --sp-shadow-focus: 0 0 0 3px rgba(196, 98, 58, 0.25);

  background-color: var(--sp-cream);
  color: var(--sp-ink);
  font-family: var(--sp-font-ui);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  /* Reserve room for the sticky bar so footer is never covered */
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
}

/* Kill any inherited site chrome if a partial slipped through */
body.salon-page .site-header,
body.salon-page .site-nav,
body.salon-page .site-footer,
body.salon-page header[role="banner"]:not(.salon-hero),
body.salon-page footer[role="contentinfo"]:not(.salon-footer) {
  display: none !important;
}

body.salon-page *,
body.salon-page *::before,
body.salon-page *::after { box-sizing: border-box; }

body.salon-page img,
body.salon-page video { max-width: 100%; height: auto; display: block; }

body.salon-page a { color: inherit; }

/* ---------- Section primitives ---------- */
body.salon-page .salon-section {
  padding: 48px 16px;
  position: relative;
}
body.salon-page .salon-section-inner {
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}
body.salon-page .salon-section-dark {
  background-color: var(--sp-aubergine);
  color: var(--sp-on-dark);
}
body.salon-page .salon-section-darker {
  background-color: var(--sp-umber);
  color: var(--sp-on-dark);
}
body.salon-page .salon-section-cream-soft { background-color: var(--sp-cream-soft); }

body.salon-page .salon-section-heading {
  font-family: var(--sp-font-display);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--sp-ink);
  margin: 0 0 20px;
}
body.salon-page .salon-section-dark .salon-section-heading,
body.salon-page .salon-section-darker .salon-section-heading { color: var(--sp-on-dark); }

body.salon-page .salon-eyebrow {
  display: inline-block;
  font-family: var(--sp-font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sp-ink-muted);
  margin: 0 0 12px;
}
body.salon-page .salon-section-dark .salon-eyebrow,
body.salon-page .salon-section-darker .salon-eyebrow { color: var(--sp-on-dark-muted); }

/* ============================================================
   HERO - text + warm-dark color only, no portrait on mobile.
   Must close around 600px so CTA lands on first screen at 375x667.
   ============================================================ */
body.salon-page .salon-hero {
  background-color: var(--sp-aubergine);
  background-image:
    radial-gradient(120% 80% at 50% 0%, rgba(196, 98, 58, 0.18) 0%, rgba(196, 98, 58, 0) 60%),
    radial-gradient(80% 60% at 100% 100%, rgba(232, 163, 61, 0.08) 0%, rgba(232, 163, 61, 0) 70%);
  color: var(--sp-on-dark);
  padding: 24px 16px 40px;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
body.salon-page .salon-hero-inner {
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

body.salon-page .salon-wordmark {
  font-family: var(--sp-font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--sp-on-dark);
  text-decoration: none;
  height: 32px;
  display: inline-flex;
  align-items: center;
  margin: 0;
}

body.salon-page .salon-date-strip {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--sp-border-on-dark);
  border-radius: var(--sp-radius-pill);
  font-family: var(--sp-font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sp-on-dark);
  background-color: rgba(244, 236, 224, 0.04);
}

body.salon-page .salon-hero-headline {
  font-family: var(--sp-font-display);
  font-size: clamp(34px, 9.5vw, 40px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--sp-on-dark);
  margin: 0;
  text-wrap: balance;
}

body.salon-page .salon-hero-sub {
  font-family: var(--sp-font-ui);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--sp-on-dark-muted);
  margin: 0;
}

body.salon-page .salon-hero-promise {
  font-family: var(--sp-font-ui);
  font-size: 15px;
  line-height: 1.45;
  color: var(--sp-on-dark);
  margin: 0;
}

/* Dominant CTA in hero - sticky-positioned at fold close */
body.salon-page .salon-hero-cta-wrap {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ============================================================
   BUTTONS - one primary action color, big tap targets.
   ============================================================ */
body.salon-page .salon-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 14px 20px;
  background-color: var(--sp-terracotta);
  color: var(--sp-cream);
  font-family: var(--sp-font-ui);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  border: 0;
  border-radius: var(--sp-radius-btn);
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 150ms ease-out, transform 100ms ease-out;
}
body.salon-page .salon-btn-primary:hover { background-color: var(--sp-terracotta-hover); }
body.salon-page .salon-btn-primary:active { transform: translateY(1px); }
body.salon-page .salon-btn-primary:focus-visible {
  outline: 0;
  box-shadow: var(--sp-shadow-focus);
}

body.salon-page .salon-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 12px 20px;
  background: transparent;
  color: var(--sp-on-dark);
  font-family: var(--sp-font-ui);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--sp-border-on-dark);
  border-radius: var(--sp-radius-btn);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 150ms ease-out, border-color 150ms ease-out;
}
body.salon-page .salon-btn-ghost:hover {
  background-color: rgba(244, 236, 224, 0.08);
  border-color: var(--sp-on-dark-muted);
}

body.salon-page .salon-social-proof {
  font-family: var(--sp-font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--sp-on-dark-muted);
  margin: 0;
  text-align: center;
}
body.salon-page .salon-social-proof[hidden] { display: none !important; }

/* ============================================================
   LECTURE SAMPLE CLIP - portrait 9:16 thumb, tap-to-play.
   ============================================================ */
body.salon-page .salon-clip {
  text-align: center;
  background-color: var(--sp-cream);
}
body.salon-page .salon-clip-bridge {
  font-family: var(--sp-font-display);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--sp-ink-muted);
  max-width: 36ch;
  margin: 0 auto 16px;
}
body.salon-page .salon-clip-frame {
  position: relative;
  width: 280px;
  max-width: 100%;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: var(--sp-radius-card);
  overflow: hidden;
  background-color: var(--sp-aubergine);
  cursor: pointer;
  isolation: isolate;
}
body.salon-page .salon-clip-frame img,
body.salon-page .salon-clip-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.salon-page .salon-clip-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(26, 20, 16, 0) 40%, rgba(26, 20, 16, 0.35) 100%);
  transition: background 200ms ease-out;
  border: 0;
  color: var(--sp-cream);
  cursor: pointer;
}
body.salon-page .salon-clip-frame:hover .salon-clip-play { background: rgba(26, 20, 16, 0.35); }
body.salon-page .salon-clip-play-glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sp-cream);
  color: var(--sp-aubergine);
  font-size: 20px;
}
body.salon-page .salon-clip-play-glyph::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--sp-aubergine);
  margin-left: 4px;
}

/* ============================================================
   TIER CARDS - the conversion centerpiece.
   Radio-driven. Entire card is the tap target.
   ============================================================ */
body.salon-page .salon-tiers { background-color: var(--sp-cream); }
body.salon-page .salon-tier-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
body.salon-page .salon-tier-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body.salon-page .salon-tier-card {
  position: relative;
  display: block;
  padding: 20px;
  background-color: var(--sp-cream);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-card);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 150ms ease-out, background-color 150ms ease-out, box-shadow 150ms ease-out;
}
body.salon-page .salon-tier-card:hover { border-color: var(--sp-border-strong); }

/* Selected state - 2px terracotta border via box-shadow inset, plus tint */
body.salon-page .salon-tier-input:checked + .salon-tier-card {
  border-color: var(--sp-terracotta);
  background-color: rgba(196, 98, 58, 0.04);
  box-shadow: inset 0 0 0 1px var(--sp-terracotta);
}
body.salon-page .salon-tier-input:focus-visible + .salon-tier-card {
  box-shadow: inset 0 0 0 1px var(--sp-terracotta), var(--sp-shadow-focus);
}

body.salon-page .salon-tier-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
body.salon-page .salon-tier-label {
  font-family: var(--sp-font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sp-ink-muted);
}
body.salon-page .salon-tier-price {
  font-family: var(--sp-font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: var(--sp-ink);
  letter-spacing: -0.01em;
}

body.salon-page .salon-tier-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.salon-page .salon-tier-benefits li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--sp-ink);
}
body.salon-page .salon-tier-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--sp-ink-muted);
  border-bottom: 2px solid var(--sp-ink-muted);
  transform: rotate(-45deg);
  opacity: 0.6;
}
body.salon-page .salon-tier-input:checked + .salon-tier-card .salon-tier-benefits li::before {
  border-color: var(--sp-terracotta);
  opacity: 1;
}

body.salon-page .salon-tier-foot {
  margin-top: 12px;
  font-family: var(--sp-font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--sp-ink-muted);
}

/* Scarcity pill on VIP card */
body.salon-page .salon-tier-scarcity {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background-color: var(--sp-aubergine);
  color: var(--sp-saffron);
  font-family: var(--sp-font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--sp-radius-pill);
  margin-bottom: 8px;
}

/* Selected checkmark badge bottom-right of card */
body.salon-page .salon-tier-check {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--sp-terracotta);
  color: var(--sp-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 150ms ease-out, transform 150ms ease-out;
}
body.salon-page .salon-tier-check::before {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--sp-cream);
  border-bottom: 2px solid var(--sp-cream);
  transform: rotate(-45deg) translate(1px, -1px);
}
body.salon-page .salon-tier-input:checked + .salon-tier-card .salon-tier-check {
  opacity: 1;
  transform: scale(1);
}

body.salon-page .salon-tier-compare {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  color: var(--sp-ink-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   REGISTRATION FORM - 2 fields, conditional CC reveal.
   ============================================================ */
body.salon-page .salon-form-section { background-color: var(--sp-cream-soft); }
body.salon-page .salon-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

body.salon-page .salon-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.salon-page .salon-field-label {
  font-family: var(--sp-font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sp-ink-muted);
}
body.salon-page .salon-field-input {
  height: 52px;
  padding: 0 16px;
  background-color: var(--sp-cream);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-card);
  font-family: var(--sp-font-ui);
  font-size: 16px;
  line-height: 1.4;
  color: var(--sp-ink);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 150ms ease-out, box-shadow 150ms ease-out;
}
body.salon-page .salon-field-input::placeholder { color: rgba(107, 88, 72, 0.5); }
body.salon-page .salon-field-input:focus {
  outline: 0;
  border-color: var(--sp-terracotta);
  box-shadow: var(--sp-shadow-focus);
}

/* Honeypot - kept off-screen, never visible */
body.salon-page .salon-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Conditional CC block - revealed when VIP selected.
   Default closed: max-height 0, opacity 0, pointer-events none. */
body.salon-page .salon-cc-block {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    max-height 250ms ease-out,
    opacity 200ms ease-out 50ms,
    transform 250ms ease-out;
}
body.salon-page .salon-cc-block[data-open="true"],
body.salon-page.tier-vip .salon-cc-block {
  max-height: 600px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
body.salon-page .salon-cc-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}
body.salon-page .salon-cc-express {
  min-height: 48px;
  border-radius: var(--sp-radius-btn);
  background-color: var(--sp-cream);
  border: 1px dashed var(--sp-border);
  padding: 8px;
}
body.salon-page .salon-cc-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sp-ink-muted);
}
body.salon-page .salon-cc-divider::before,
body.salon-page .salon-cc-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--sp-border);
}

body.salon-page .salon-form-submit { margin-top: 4px; }

/* Hide in-flow submit on mobile - sticky bar carries it */
@media (max-width: 767.98px) {
  body.salon-page .salon-form-submit-mobile-hide { display: none; }
}

body.salon-page .salon-form-fine {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--sp-ink-muted);
}

/* ============================================================
   WHY I AM HOSTING - first-person bio with pull quote.
   ============================================================ */
body.salon-page .salon-host { background-color: var(--sp-cream); }
body.salon-page .salon-host-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: left;
}
body.salon-page .salon-host-portrait {
  width: 220px;
  aspect-ratio: 4 / 5;
  margin: 0;
  border-radius: var(--sp-radius-card);
  overflow: hidden;
  background-color: var(--sp-aubergine);
}
body.salon-page .salon-host-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
body.salon-page .salon-host-body {
  font-family: var(--sp-font-display);
  font-size: 17px;
  line-height: 1.55;
  color: var(--sp-ink);
  margin: 0;
  max-width: 540px;
}
body.salon-page .salon-host-body p { margin: 0 0 12px; }
body.salon-page .salon-host-body p:last-child { margin-bottom: 0; }
body.salon-page .salon-host-sig {
  font-family: var(--sp-font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--sp-ink);
  margin: 16px 0 0;
}

body.salon-page .salon-pullquote {
  position: relative;
  font-family: var(--sp-font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.25;
  color: var(--sp-ink);
  margin: 32px auto 0;
  padding: 0 24px;
  max-width: 540px;
  text-align: left;
}
body.salon-page .salon-pullquote::before {
  content: "\201C";
  position: absolute;
  left: -8px;
  top: -24px;
  font-size: 96px;
  line-height: 1;
  color: var(--sp-terracotta);
  opacity: 0.18;
  font-family: var(--sp-font-display);
}

/* ============================================================
   FAQ - compact native disclosure accordion.
   ============================================================ */
body.salon-page .salon-faq { background-color: var(--sp-cream-soft); }
body.salon-page .salon-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
body.salon-page .salon-faq-item {
  border-top: 1px solid var(--sp-border);
}
body.salon-page .salon-faq-item:last-child { border-bottom: 1px solid var(--sp-border); }
body.salon-page .salon-faq-item > summary {
  list-style: none;
  cursor: pointer;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  font-family: var(--sp-font-ui);
  font-size: 16px;
  font-weight: 600;
  color: var(--sp-ink);
  -webkit-tap-highlight-color: transparent;
}
body.salon-page .salon-faq-item > summary::-webkit-details-marker { display: none; }
body.salon-page .salon-faq-item > summary::after {
  content: "+";
  font-family: var(--sp-font-ui);
  font-size: 22px;
  font-weight: 400;
  color: var(--sp-ink-muted);
  line-height: 1;
  transition: transform 200ms ease-out;
  flex-shrink: 0;
}
body.salon-page .salon-faq-item[open] > summary::after {
  content: "\2212";
}
body.salon-page .salon-faq-body {
  padding: 0 0 16px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--sp-ink);
}
body.salon-page .salon-faq-body p { margin: 0 0 8px; }
body.salon-page .salon-faq-body p:last-child { margin-bottom: 0; }

/* ============================================================
   FINAL CTA BAND - warm-dark repeat surface.
   ============================================================ */
body.salon-page .salon-closer {
  background-color: var(--sp-aubergine);
  color: var(--sp-on-dark);
  text-align: center;
}
body.salon-page .salon-closer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  max-width: 480px;
  margin: 0 auto;
}
body.salon-page .salon-closer-line {
  font-family: var(--sp-font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--sp-on-dark);
  margin: 0;
}
body.salon-page .salon-closer-meta {
  font-family: var(--sp-font-ui);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sp-on-dark-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   FOOTER - minimal, no nav.
   ============================================================ */
body.salon-page .salon-footer {
  background-color: var(--sp-cream);
  padding: 32px 16px 24px;
  text-align: center;
}
body.salon-page .salon-footer-mark {
  font-family: var(--sp-font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--sp-ink);
  margin: 0 0 8px;
}
body.salon-page .salon-footer-link {
  display: inline-block;
  font-size: 13px;
  color: var(--sp-ink-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin: 0 0 12px;
}
body.salon-page .salon-footer-legal {
  font-size: 11px;
  color: var(--sp-ink-muted);
  margin: 0;
}

/* ============================================================
   STICKY BOTTOM CTA BAR - mobile only, persistent.
   First-paint visible. No animation. Hides when form is in view.
   ============================================================ */
body.salon-page .salon-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background-color: var(--sp-aubergine);
  border-top: 1px solid var(--sp-terracotta);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom)) 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--sp-shadow-sticky);
  transition: opacity 200ms ease-out, transform 200ms ease-out;
}
body.salon-page .salon-sticky-cta[data-hidden="true"] {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}
body.salon-page .salon-sticky-context {
  flex: 0 0 38%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
body.salon-page .salon-sticky-line1 {
  font-family: var(--sp-font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sp-on-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.salon-page .salon-sticky-line2 {
  font-family: var(--sp-font-ui);
  font-size: 12px;
  color: var(--sp-on-dark-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.salon-page .salon-sticky-cta-btn {
  flex: 1 1 62%;
  min-height: 52px;
  padding: 12px 16px;
  background-color: var(--sp-terracotta);
  color: var(--sp-cream);
  font-family: var(--sp-font-ui);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
  border: 0;
  border-radius: var(--sp-radius-btn);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background-color 150ms ease-out;
  -webkit-tap-highlight-color: transparent;
}
body.salon-page .salon-sticky-cta-btn:hover { background-color: var(--sp-terracotta-hover); }
body.salon-page .salon-sticky-cta-btn:focus-visible {
  outline: 0;
  box-shadow: var(--sp-shadow-focus);
}

/* ============================================================
   SCROLL REVEAL - subtle, opt-in via data attribute.
   ============================================================ */
body.salon-page [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 400ms ease-out, transform 400ms ease-out;
}
body.salon-page [data-reveal][data-revealed="true"] {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   TABLET / DESKTOP - 768px and up.
   Sticky CTA bar removed. Hero gets a portrait column.
   Tier cards go side-by-side. Form constrained.
   ============================================================ */
@media (min-width: 768px) {
  body.salon-page { padding-bottom: 0; }

  body.salon-page .salon-section { padding: 80px 32px; }
  body.salon-page .salon-section-inner { max-width: 1120px; }

  body.salon-page .salon-section-heading {
    font-size: 28px;
    margin-bottom: 28px;
  }

  /* Hero becomes two-column */
  body.salon-page .salon-hero {
    padding: 32px 32px 80px;
    min-height: auto;
  }
  body.salon-page .salon-hero-inner {
    max-width: 1120px;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 48px;
    align-items: center;
  }
  body.salon-page .salon-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  body.salon-page .salon-hero-headline {
    font-size: clamp(48px, 5vw, 64px);
    line-height: 1.02;
  }
  body.salon-page .salon-hero-cta-wrap {
    margin-top: 0;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  body.salon-page .salon-btn-primary {
    width: auto;
    min-width: 220px;
    padding: 16px 28px;
  }
  body.salon-page .salon-social-proof { text-align: left; }
  body.salon-page .salon-hero-portrait {
    display: block;
    aspect-ratio: 4 / 5;
    border-radius: var(--sp-radius-card);
    overflow: hidden;
    background-color: var(--sp-umber);
  }
  body.salon-page .salon-hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Clip column */
  body.salon-page .salon-clip-frame { width: 360px; }
  body.salon-page .salon-clip-bridge { font-size: 18px; }

  /* Tier cards side-by-side */
  body.salon-page .salon-tier-list {
    flex-direction: row;
    max-width: 720px;
    margin: 0 auto;
    align-items: stretch;
  }
  body.salon-page .salon-tier-list > li { flex: 1 1 0; display: flex; }
  body.salon-page .salon-tier-card { width: 100%; padding: 28px; }

  /* Form: submit visible in-flow */
  body.salon-page .salon-form { max-width: 480px; }
  body.salon-page .salon-form-submit-mobile-hide { display: inline-flex; }

  /* Host section: portrait floats left */
  body.salon-page .salon-host-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    max-width: 960px;
  }
  body.salon-page .salon-host-portrait {
    width: 320px;
    flex-shrink: 0;
  }
  body.salon-page .salon-host-body { font-size: 18px; }
  body.salon-page .salon-pullquote {
    font-size: 30px;
    text-align: center;
    max-width: 720px;
    padding: 0 48px;
  }

  /* FAQ tighter */
  body.salon-page .salon-faq-list { max-width: 720px; margin: 0 auto; }

  /* Final CTA wider */
  body.salon-page .salon-closer-inner { max-width: 640px; }
  body.salon-page .salon-closer-line { font-size: 22px; }

  /* Footer */
  body.salon-page .salon-footer { padding: 48px 32px 32px; }

  /* Sticky bar removed entirely on desktop */
  body.salon-page .salon-sticky-cta { display: none !important; }
}

/* Larger viewports */
@media (min-width: 1024px) {
  body.salon-page .salon-section { padding: 96px 48px; }
  body.salon-page .salon-hero { padding: 40px 48px 96px; }
}

/* ============================================================
   REDUCED MOTION - kill all transitions over 100ms.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  body.salon-page *,
  body.salon-page *::before,
  body.salon-page *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  body.salon-page [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   PRINT - hide sticky bar, simplify dark sections.
   ============================================================ */
@media print {
  body.salon-page .salon-sticky-cta,
  body.salon-page .salon-clip-frame { display: none !important; }
  body.salon-page .salon-hero,
  body.salon-page .salon-closer,
  body.salon-page .salon-section-dark {
    background: #fff !important;
    color: #000 !important;
  }
}

/* ============================================================
   /salon - fix: designer named the generic wrapper .salon-section-inner
   but the frontend produced specific *-inner classes. Unify them so
   every section gets the same padding + max-width treatment.
   ============================================================ */
body.salon-page .salon-clip-inner,
body.salon-page .salon-tiers-inner,
body.salon-page .salon-rsvp-inner,
body.salon-page .salon-faq-inner,
body.salon-page .salon-final-inner,
body.salon-page .salon-footer-inner {
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}

body.salon-page .salon-clip,
body.salon-page .salon-tiers,
body.salon-page .salon-rsvp,
body.salon-page .salon-host,
body.salon-page .salon-faq,
body.salon-page .salon-final,
body.salon-page .salon-footer {
  padding: 56px 20px;
}

body.salon-page .salon-host-inner {
  max-width: 560px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  body.salon-page .salon-clip-inner,
  body.salon-page .salon-tiers-inner,
  body.salon-page .salon-rsvp-inner,
  body.salon-page .salon-faq-inner,
  body.salon-page .salon-final-inner,
  body.salon-page .salon-footer-inner {
    max-width: 720px;
  }
  body.salon-page .salon-clip,
  body.salon-page .salon-tiers,
  body.salon-page .salon-rsvp,
  body.salon-page .salon-host,
  body.salon-page .salon-faq,
  body.salon-page .salon-final {
    padding: 96px 32px;
  }
  body.salon-page .salon-host-inner {
    max-width: 960px;
  }
}

/* ----- Forms (Discovery application) ------------------------------------- */
.tf-form { margin: 0 auto; max-width: 46rem; }
.tf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.tf-field { margin-bottom: var(--space-8); }
.tf-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: var(--space-3);
  color: var(--ink-caption-on-dark);
}
.tf-field input,
.tf-field textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: var(--fs-16);
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-heading-on-dark);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-on-dark);
  border-radius: 0;
  padding: var(--space-3) 0;
  transition: border-color var(--transition-base);
}
.tf-field textarea { resize: vertical; }
.tf-field input:focus,
.tf-field textarea:focus {
  outline: none;
  border-bottom-color: var(--ink-heading-on-dark);
}
.tf-submit { margin-top: var(--space-12); text-align: center; }
.tf-submit .btn { cursor: pointer; font-family: var(--font-body); }

/* Light-section variant, if the form is ever placed on paper */
.section-light .tf-field label { color: var(--ink-caption); }
.section-light .tf-field input,
.section-light .tf-field textarea {
  color: var(--ink-heading);
  border-bottom-color: var(--border-on-light);
}
.section-light .tf-field input:focus,
.section-light .tf-field textarea:focus { border-bottom-color: var(--ink-heading); }

/* ----- Coaching application: plain-form additions ------------------------ */
.tf-helper {
  font-size: var(--fs-12);
  line-height: 1.5;
  color: var(--ink-caption-on-dark);
  margin: 0 0 var(--space-3);
  opacity: 0.8;
}
.section-light .tf-helper { color: var(--ink-caption); }
.tf-field select {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: var(--fs-16);
  font-weight: 300;
  color: var(--ink-heading-on-dark);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-on-dark);
  border-radius: 0;
  padding: var(--space-3) 0;
  appearance: none;
  cursor: pointer;
}
.tf-field select option { color: #1d1a17; background: #f6efe7; }
.tf-field select:focus { outline: none; border-bottom-color: var(--ink-heading-on-dark); }

/* ----- Coaching application: intro line above the form ------------------- */
.tc-lede {
  color: var(--ink-body-on-dark);
  max-width: 52ch;
  margin: var(--space-4) auto var(--space-12);
}
