/* ═══════════════════════════════════════════ FONTS (self-hosted, no external hosts) */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/roboto-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/roboto-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/roboto-700.woff2') format('woff2');
}

/* ═══════════════════════════════════════════ TOKENS */
:root {
  --ink:      #0c0c18;
  --surface:  #12121e;
  --panel:    #171724;
  --vellum:   #d8d0c3;
  --plum:     #6b4275;
  --plum-hi:  #7e528a;
  --plum-dim: #3d2644;
  --brass:    #a07840;
  --brass-dim:#5c441f;
  --border:   #1e1e2e;
  --muted:    #857f97;

  --ff-display: Georgia, 'Times New Roman', serif;
  --ff-body:    system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --ff-mono:    'Courier New', Courier, monospace;

  --t-xs:   0.72rem;
  --t-sm:   0.875rem;
  --t-md:   1rem;
  --t-lg:   1.125rem;
  --t-xl:   1.375rem;
  --t-2xl:  1.875rem;
  --t-3xl:  2.5rem;
  --t-hero: clamp(2.5rem, 5vw, 4rem);
}

/* ═══════════════════════════════════════════ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  background: var(--ink);
  color: var(--vellum);
  font-family: var(--ff-body);
  font-size: var(--t-md);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
:focus-visible { outline: 2px solid var(--plum); outline-offset: 3px; }
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ═══════════════════════════════════════════ UTILITIES */
.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.eyebrow {
  display: block;
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.1rem;
}
.section-rule {
  border: none;
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════ NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--ink);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: none;
  margin: 0;
  padding: 1.1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: var(--t-xl);
  font-weight: 700;
  font-variant: small-caps;
  letter-spacing: 0.1em;
  color: var(--vellum);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: nowrap;
}
.nav-links a {
  font-family: 'Roboto', var(--ff-body);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.12em;
  white-space: nowrap;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.18s;
}
.nav-links a:hover { color: var(--vellum); text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1.5px; }
.nav-cta {
  color: var(--plum) !important;
  border: 1px solid var(--plum);
  padding: 0.38em 0.9em;
  transition: background 0.18s, color 0.18s !important;
}
.nav-cta:hover { background: var(--plum) !important; color: var(--vellum) !important; }

/* ═══════════════════════════════════════════ HERO */
.hero {
  padding: 6.5rem 0 5.5rem;
  border-bottom: 1px solid var(--border);
}
.hero-location {
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 2.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-location::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--brass);
  opacity: 0.45;
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: var(--t-hero);
  font-weight: normal;
  line-height: 1.08;
  text-wrap: balance;
  color: var(--vellum);
  max-width: 740px;
  margin-bottom: 1.75rem;
}
.hero h1 em { font-style: italic; color: var(--plum); }
.hero-sub {
  font-size: var(--t-lg);
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.8;
  margin-bottom: 2.75rem;
}
.hero-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════ BUTTONS */
.btn-primary {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--vellum);
  background: var(--plum);
  padding: 0.9em 1.8em;
  transition: background 0.18s;
}
.btn-primary:hover { background: var(--plum-hi); }
.btn-ghost {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.9em 1.8em;
  transition: border-color 0.18s, color 0.18s;
}
.btn-ghost:hover { border-color: var(--muted); color: var(--vellum); }

/* ═══════════════════════════════════════════ CREDENTIAL STRIP */
.cred-strip { border-bottom: 1px solid var(--border); }
.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cred-cell {
  padding: 2rem;
  border-right: 1px solid var(--border);
}
.cred-cell:first-child { padding-left: 0; }
.cred-cell:last-child { border-right: none; }
.cred-label {
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 0.35rem;
}
.cred-value {
  font-family: var(--ff-display);
  font-size: var(--t-lg);
  color: var(--vellum);
  font-weight: normal;
  line-height: 1.35;
}
@media (max-width: 640px) {
  .cred-grid { grid-template-columns: 1fr; }
  .cred-cell { border-right: none; border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
  .cred-cell:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════ SHARED SECTION */
.section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.section--alt { background: var(--surface); }
.section h2 {
  font-family: var(--ff-display);
  font-size: var(--t-3xl);
  font-weight: normal;
  line-height: 1.15;
  text-wrap: balance;
  color: var(--vellum);
  margin-bottom: 1rem;
}
.section-intro {
  font-size: var(--t-lg);
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.8;
  margin-bottom: 3.5rem;
}

/* ═══════════════════════════════════════════ WHO THIS IS FOR */
.for-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2.5rem;
}
.for-cell {
  background: var(--ink);
  padding: 1.75rem 2rem;
}
.for-cell-label {
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum);
  display: block;
  margin-bottom: 0.5rem;
}
.for-cell p {
  font-size: var(--t-sm);
  color: var(--muted);
  line-height: 1.75;
  max-width: 38ch;
}
@media (max-width: 600px) {
  .for-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════ ABOUT */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.about-sidebar {}
.about-name {
  font-family: var(--ff-display);
  font-size: var(--t-2xl);
  font-weight: normal;
  color: var(--vellum);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.about-credentials {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.about-credentials li {
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  color: var(--muted);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.about-credentials li::before {
  content: '·';
  color: var(--brass);
  flex-shrink: 0;
}
.about-body p {
  color: var(--muted);
  line-height: 1.85;
  max-width: 60ch;
}
.about-body p + p { margin-top: 1.1rem; }
.about-body p strong { color: var(--vellum); font-weight: normal; }
@media (max-width: 680px) {
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
}

/* ═══════════════════════════════════════════ COACHING TIERS */
.tier-list { display: flex; flex-direction: column; }
.tier {
  border: 1px solid var(--border);
  border-bottom: none;
  padding: 2.25rem 2.25rem 2.25rem 2.5rem;
  position: relative;
  transition: border-color 0.2s;
}
.tier:last-child { border-bottom: 1px solid var(--border); }
.tier:hover { border-color: var(--plum); z-index: 1; }
.tier:hover + .tier { border-top-color: var(--plum); }
.tier-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--plum);
  opacity: 0;
  transition: opacity 0.2s;
}
.tier:hover .tier-bar { opacity: 1; }
.tier-tag {
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.6rem;
}
.tier-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.tier h3 {
  font-family: var(--ff-display);
  font-size: var(--t-xl);
  font-weight: normal;
  color: var(--vellum);
  line-height: 1.25;
}
.tier-investment {
  font-family: var(--ff-mono);
  font-size: var(--t-sm);
  color: var(--brass);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.tier-desc {
  color: var(--muted);
  font-size: var(--t-sm);
  max-width: 58ch;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.tier-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.tier-includes li {
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.06em;
  color: var(--muted);
  padding-left: 1.25em;
  position: relative;
}
.tier-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--border);
}
.conduct-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--plum);
  background: var(--panel);
}
.conduct-note p {
  font-size: var(--t-sm);
  color: var(--muted);
  line-height: 1.75;
  max-width: 66ch;
}
.conduct-note a { color: var(--plum); text-decoration: underline; text-underline-offset: 3px; }

/* ═══════════════════════════════════════════ CLASSES */
.class-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.class-card {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
}
.class-card:last-child { border-right: none; }
.class-card-tag {
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 0.65rem;
}
.class-card h3 {
  font-family: var(--ff-display);
  font-size: var(--t-xl);
  font-weight: normal;
  color: var(--vellum);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.class-card-investment {
  font-family: var(--ff-mono);
  font-size: var(--t-sm);
  color: var(--brass);
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.9rem;
  display: block;
}
.class-card p { font-size: var(--t-sm); color: var(--muted); line-height: 1.75; }
@media (max-width: 680px) {
  .class-grid { grid-template-columns: 1fr; }
  .class-card { border-right: none; border-bottom: 1px solid var(--border); }
  .class-card:last-child { border-bottom: none; }
}

/* topics list */
.topics-row {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}
.topics-label {
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.15rem;
  white-space: nowrap;
}
.topics-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topic-tag {
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.08em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.3em 0.7em;
}
@media (max-width: 600px) {
  .topics-row { grid-template-columns: 1fr; gap: 1rem; }
}

/* ═══════════════════════════════════════════ IMMERSIVE (PILLAR III) */
.immersive-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.immersive-copy h2 { margin-bottom: 1rem; }
.immersive-copy p {
  color: var(--muted);
  font-size: var(--t-lg);
  line-height: 1.8;
  max-width: 50ch;
  margin-bottom: 1.5rem;
}
.immersive-copy .investment-range {
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 2rem;
  display: block;
}
.immersive-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 2rem;
}
.immersive-panel-label {
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 1.25rem;
}
.immersive-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.immersive-includes li {
  font-size: var(--t-sm);
  color: var(--muted);
  line-height: 1.65;
  padding-left: 1.25em;
  position: relative;
}
.immersive-includes li::before { content: '—'; position: absolute; left: 0; color: var(--brass); opacity: 0.5; }
.coming-badge {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--plum);
  border: 1px solid var(--plum-dim);
  padding: 0.3em 0.8em;
  margin-top: 1.5rem;
}
@media (max-width: 680px) {
  .immersive-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ═══════════════════════════════════════════ MAILING LIST */
.list-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--plum-dim);
}
.list-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.list-copy h3 {
  font-family: var(--ff-display);
  font-size: var(--t-2xl);
  font-weight: normal;
  color: var(--vellum);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.list-copy p {
  font-size: var(--t-sm);
  color: var(--muted);
  max-width: 44ch;
  line-height: 1.7;
}
.list-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}
.list-form input[type="email"] {
  font-family: var(--ff-mono);
  font-size: var(--t-sm);
  letter-spacing: 0.06em;
  color: var(--vellum);
  background: var(--ink);
  border: 1px solid var(--border);
  border-right: none;
  padding: 0.85em 1.2em;
  outline: none;
  width: 240px;
}
.list-form input[type="email"]::placeholder { color: var(--muted); }
.list-form input[type="email"]:focus { border-color: var(--plum); }
.list-form button {
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vellum);
  background: var(--plum);
  border: 1px solid var(--plum);
  padding: 0.85em 1.4em;
  cursor: pointer;
  transition: background 0.18s;
}
.list-form button:hover { background: var(--plum-hi); }
@media (max-width: 640px) {
  .list-inner { flex-direction: column; }
  .list-form { flex-direction: column; }
  .list-form input[type="email"] { border-right: 1px solid var(--border); border-bottom: none; width: 100%; }
  .list-form input[type="email"]:focus { border-color: var(--plum); }
}

/* ═══════════════════════════════════════════ INTAKE / APPLY */
.intake-section {
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.intake-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.intake-copy h2 { margin-bottom: 1rem; }
.intake-copy p {
  color: var(--muted);
  font-size: var(--t-lg);
  line-height: 1.8;
  max-width: 50ch;
  margin-bottom: 2rem;
}
.intake-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.intake-step {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.intake-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  color: var(--plum);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.step-text {
  font-size: var(--t-sm);
  color: var(--muted);
  line-height: 1.6;
}
.intake-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 2rem;
}
.intake-panel-label {
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 1.25rem;
}
.intake-panel h3 {
  font-family: var(--ff-display);
  font-size: var(--t-xl);
  font-weight: normal;
  color: var(--vellum);
  margin-bottom: 0.5rem;
}
.intake-panel .investment {
  font-family: var(--ff-mono);
  font-size: var(--t-sm);
  color: var(--brass);
  font-variant-numeric: tabular-nums;
  display: block;
  margin-bottom: 1rem;
}
.intake-panel p {
  font-size: var(--t-sm);
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
@media (max-width: 680px) {
  .intake-layout { grid-template-columns: 1fr; gap: 2rem; }
}

/* ═══════════════════════════════════════════ FOOTER */
.site-footer {
  padding: 3.5rem 0 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand-name {
  font-family: var(--ff-display);
  font-size: var(--t-lg);
  font-variant: small-caps;
  letter-spacing: 0.08em;
  color: var(--vellum);
  display: block;
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  line-height: 1.6;
}
.footer-col-label {
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 0.9rem;
}
.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col-links a {
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.18s;
}
.footer-col-links a:hover { color: var(--vellum); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-legal {
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.06em;
  color: var(--muted);
  opacity: 0.55;
  max-width: 60ch;
  line-height: 1.6;
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════ FADE IN */
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
  }

/* ═══════════════════════════════════════════ HOMEPAGE REDESIGN · HERO ATMOSPHERE */
.hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
}
.hero > .wrap { position: relative; z-index: 1; }
/* plum light emerging from shadow — upper right */
.hero::before {
  content: '';
  position: absolute;
  top: -32%;
  right: -12%;
  width: 820px;
  height: 820px;
  background: radial-gradient(circle at center,
      rgba(126, 82, 138, 0.32) 0%,
      rgba(107, 66, 117, 0.12) 34%,
      transparent 66%);
  pointer-events: none;
  z-index: 0;
}
/* deeper pool of shadow — lower left, adds depth */
.hero::after {
  content: '';
  position: absolute;
  bottom: -42%;
  left: -18%;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle at center,
      rgba(61, 38, 68, 0.38) 0%,
      rgba(61, 38, 68, 0.12) 40%,
      transparent 68%);
  pointer-events: none;
  z-index: 0;
}
/* larger, more commanding headline + halo on the accent word */
.hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  letter-spacing: -0.01em;
  max-width: 820px;
}
.hero h1 em {
  text-shadow: 0 0 42px rgba(126, 82, 138, 0.45);
}


/* ═══════════════════════════════════════════ HOMEPAGE REDESIGN · PASS 2 */

/* (1) Section eyebrows read as editorial chapter markers — leading brass rule */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--brass);
  opacity: 0.5;
  flex-shrink: 0;
}

/* (2) Credentials strip — plum top accent + hover lift */
.cred-strip { border-top: 1px solid var(--plum-dim); }
.cred-cell { transition: background 0.18s; }
.cred-cell:hover { background: var(--surface); }
.cred-cell:hover .cred-value { color: var(--plum-hi); }

/* (3) "Who this is for" cells become cards: plum edge + hover */
.for-cell { position: relative; transition: background 0.18s; }
.for-cell::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--plum);
  opacity: 0;
  transition: opacity 0.18s;
}
.for-cell:hover { background: var(--surface); }
.for-cell:hover::before { opacity: 1; }
.for-cell:hover .for-cell-label { color: var(--plum-hi); }

/* (4) Immersive (premium) section echoes the hero atmosphere */
#immersive { position: relative; overflow: hidden; }
#immersive > .wrap { position: relative; z-index: 1; }
#immersive::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 640px; height: 640px;
  background: radial-gradient(circle at center,
      rgba(126, 82, 138, 0.20) 0%,
      rgba(107, 66, 117, 0.08) 38%,
      transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* (5) Buttons use the header-menu font (Roboto) */
.btn-primary, .btn-ghost, .nav-cta {
  font-family: 'Roboto', var(--ff-body);
}


/* ═══════════════════════════════════════════ HOMEPAGE REDESIGN · PASS 3 */

/* (2) Brand mark — restrained SPL monogram lockup (footer) */
.brand-monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid var(--brass);
  font-family: var(--ff-display);
  font-size: var(--t-lg);
  letter-spacing: 0.06em;
  color: var(--brass);
  margin-bottom: 1.1rem;
}

/* (1a) Mailing list — richer plum band w/ atmosphere; button matches header font */
.list-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--plum-dim) 0%, #2c1c33 100%);
  border-top: 1px solid var(--brass-dim);
}
.list-section > .wrap { position: relative; z-index: 1; }
.list-section::before {
  content: '';
  position: absolute;
  top: -60%; right: 8%;
  width: 520px; height: 520px;
  background: radial-gradient(circle at center, rgba(126, 82, 138, 0.28) 0%, transparent 66%);
  pointer-events: none;
  z-index: 0;
}
.list-form input[type="email"],
.list-form button { font-family: 'Roboto', var(--ff-body); }

/* (1b) Intake — plum-topped panel + hover on steps */
.intake-panel { border-top: 2px solid var(--plum); }
.intake-step { transition: background 0.18s; }
.intake-step:hover { background: var(--panel); }


/* Standalone page main heading (h1) matches section headings */
.section h1 {
  font-family: var(--ff-display);
  font-size: var(--t-3xl);
  font-weight: normal;
  line-height: 1.15;
  text-wrap: balance;
  color: var(--vellum);
  margin-bottom: 1rem;
}


/* footer 4-col */
.footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
@media (max-width: 680px) { .footer-top { grid-template-columns: 1fr 1fr; } }


/* ═══════════════════════════════════════════ FLUENT FORMS · brand styling */
.frm-fluent-form .ff-el-form-control {
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--vellum);
  font-family: var(--ff-body);
  font-size: var(--t-sm);
  padding: 0.85em 1.1em;
  transition: border-color 0.18s;
}
.frm-fluent-form .ff-el-form-control::placeholder { color: var(--muted); }
.frm-fluent-form .ff-el-form-control:focus {
  border-color: var(--plum);
  outline: none;
  box-shadow: none;
}
.frm-fluent-form .ff-el-input--label label { color: var(--vellum); font-family: var(--ff-body); }
.frm-fluent-form .ff-el-is-required label::after,
.frm-fluent-form .asterisk-right label::after { color: var(--brass) !important; }
.frm-fluent-form .ff-btn-submit {
  background: var(--plum) !important;
  border: 1px solid var(--plum) !important;
  border-radius: 0 !important;
  color: var(--vellum) !important;
  font-family: 'Roboto', var(--ff-body) !important;
  font-size: var(--t-xs) !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9em 1.9em !important;
  box-shadow: none !important;
  transition: background 0.18s;
}
.frm-fluent-form .ff-btn-submit:hover { background: var(--plum-hi) !important; }
