/* marcbonavia.com - Author Site */
/* Clean, minimal, thought-leader aesthetic */

:root {
  --bg: #FAFAF8;
  --text: #1A1A1A;
  --text-muted: #5A5A5A;
  --accent: #8b6914;
  --accent-hover: #6d5210;
  --accent-soft: rgba(201, 162, 39, 0.12);
  --accent-glow: rgba(201, 162, 39, 0.06);
  --border: #E5E5E0;
  --surface: #FFFFFF;
  --surface-soft: #F5F5F2;
  --warm-surface: #faf8f3;
  --warm-border: #e8e4d8;
  --gold: #c9a227;
  --gold-muted: #8b6914;
  --max-content: 1100px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* Nav */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.9rem 2rem;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.site-nav-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.site-nav a:hover {
  color: var(--accent);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.lang-switch {
  font-size: 0.9rem;
  font-weight: 500;
}

.lang-switch a {
  color: var(--text-muted);
}

.lang-switch a.active {
  color: var(--text);
}

.lang-switch span {
  color: var(--border);
  margin: 0 0.25rem;
}

.nav-cta {
  padding: 0.45rem 1rem !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: white !important;
  background: var(--text);
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: #1a1a1a !important;
  text-decoration: none !important;
  transform: translateY(-1px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #111827 0%, #16213e 55%, #0f3460 100%);
  color: white;
  text-align: center;
  padding: 6rem 2rem 4rem;
}

.hero-image {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 20%;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  background: rgba(10, 14, 23, 0.03);
  backdrop-filter: none;
}

/* Home hero: cara lliure a dalt, text al pit */
.page-home .hero {
  display: block;
  min-height: clamp(560px, 85vh, 760px);
  padding: 0;
  overflow: hidden;
}

.page-home .hero-image {
  object-position: center 12%;
  opacity: 0.82;
}

.page-home .hero-inner {
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translateX(-50%);
  width: min(700px, calc(100% - 2.5rem));
  margin: 0;
  padding: 1rem 1.2rem 0.85rem;
  box-sizing: border-box;
  background: rgba(10, 14, 23, 0.03);
  border: none;
  border-radius: 8px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-home .hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  line-height: 1.12;
  margin: 0 0 0.65rem;
  text-shadow: none;
}

.page-home .hero-tagline {
  margin: 0 auto 1.15rem;
  max-width: 28rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  opacity: 0.95;
}

.page-home .hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.45;
  margin: 0 auto 1.1rem;
  text-shadow: none;
}

.page-home .hero-sub + .hero-sub {
  margin-top: -0.35rem;
}

.page-home .hero-risk-note {
  margin: 0.75rem auto 0;
  font-size: 0.78rem;
  opacity: 0.88;
}

.home-intro {
  padding: 2.75rem 2rem 3rem;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.home-intro-inner {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.35rem 1.35rem 1.25rem 1.5rem;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold-muted);
  border-radius: 0 14px 14px 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.03);
}

.home-intro-inner p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.home-intro-lead {
  margin: 0 0 0.85rem !important;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.45rem) !important;
  font-weight: 500;
  line-height: 1.45 !important;
  color: var(--text) !important;
}

.home-intro-support {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.home-page {
  padding: 0;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 500;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.hero .subheadline {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 400;
  opacity: 0.95;
  margin-bottom: 0.5rem;
}

.hero .role {
  font-size: 0.95rem;
  opacity: 0.8;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.55;
  opacity: 0.92;
  margin: 0 auto 2rem;
  max-width: 560px;
}

.hero .cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-risk-note {
  margin: 1rem auto 0;
  max-width: 480px;
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.85;
  line-height: 1.45;
}

.hero-risk-note--detail {
  margin-top: 0.35rem;
  font-size: 0.76rem;
  font-weight: 500;
  opacity: 0.72;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: white;
  color: #1a1a2e;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}

.btn-outline-dark:hover {
  background: var(--text);
  color: white;
  text-decoration: none;
}

.btn-dark {
  background: var(--text);
  color: white;
  border: none;
  box-shadow: 0 8px 16px rgba(26, 26, 26, 0.2);
}

.btn-dark:hover {
  background: var(--gold);
  color: #1a1a1a;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
}

/* Sections */
section:not(.home-shell):not(.home-pont) {
  max-width: 720px;
  margin: 0 auto;
  padding: 4.5rem 2rem;
  padding-bottom: 2rem;
}

section.alt-bg {
  background: var(--surface-soft);
  border-radius: 16px;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 1.5rem;
  text-align: center;
}

section h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin: 0.75rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
  opacity: 0.55;
}

section h3 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.book-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0.5rem 0 0.25rem;
}

.book-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.book-meta {
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.section-intro {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.feature-list {
  text-align: left;
  max-width: 520px;
  margin: 1.2rem auto 0;
  color: var(--text-muted);
  padding-left: 1.2rem;
}

.feature-list li {
  margin-bottom: 0.5rem;
}

.section-note {
  margin-top: 1.5rem;
}

.section-cta {
  margin-top: 2rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.quote-line {
  margin: 1.4rem auto 0;
  max-width: 560px;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.1rem;
  text-align: center;
}

/* Video placeholder */
.video-block {
  aspect-ratio: 16/9;
  background: #1a1a2e;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

/* Credibility bar */
.credibility-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem 2rem;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.credibility-bar span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Home page */
.page-home {
  background: var(--bg);
}

/* Home bands — scroll story, less card fatigue */
.home-band {
  padding: 3.5rem 2rem;
}

.home-band--light {
  background: var(--bg);
}

.home-band--offer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.25rem 2rem 3.5rem;
}

.home-band-inner--offer {
  width: min(100%, 50rem);
  margin-inline: auto;
}

.home-offer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.home-section-head--offer,
.home-offer .home-section-head--left {
  width: 100%;
  margin-bottom: 1.35rem;
}

.home-offer-card {
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.home-offer-prose {
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.25rem 1.15rem;
  background: var(--warm-surface);
  border: 1px solid var(--warm-border);
  border-radius: 14px;
  text-align: left;
}

.home-offer-prose .home-offer-lead {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  text-align: left;
}

.home-offer-prose .home-offer-body {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
  text-align: left;
}

.home-offer-split {
  display: grid;
  gap: 1rem;
  text-align: left;
}

@media (min-width: 768px) {
  .home-offer-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1rem;
    align-items: stretch;
  }
}

.home-offer-category {
  margin: 0;
  padding: 1.15rem 1.2rem;
  text-align: left;
  background: var(--surface);
  border: 1px solid rgba(201, 162, 39, 0.24);
  border-radius: 14px;
}

.home-offer-notwhat-no {
  margin: 0 0 0.65rem;
  padding-left: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
  position: static;
}

.home-offer-notwhat-no::before {
  content: none;
}

.home-offer-notwhat-yes {
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(201, 162, 39, 0.22);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.home-offer-outcomes {
  padding: 1.15rem 1.2rem;
  background: var(--warm-surface);
  border: 1px solid var(--warm-border);
  border-radius: 14px;
}

.home-offer-outcomes-label {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
}

.home-offer-outcomes-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.home-offer-outcomes-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.15rem;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
}

.home-offer-outcomes-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.home-offer-outcomes-list li:first-child {
  padding-top: 0;
}

.home-offer-outcomes-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: none;
}

.home-offer-outcomes-list li:first-child::before {
  top: 0.17rem;
}

.home-offer-closing {
  margin-top: 1.25rem;
  padding: 1.15rem 1.25rem 1.05rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.08) 0%, rgba(201, 162, 39, 0.03) 100%);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 14px;
}

.home-offer-mechanism {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
  text-align: center;
}

.home-offer-link {
  margin: 0.85rem 0 0;
  font-size: 0.94rem;
  font-weight: 600;
  text-align: center;
}

.home-offer-link a {
  color: var(--gold-muted);
  text-decoration: none;
}

.home-offer-link a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.home-band--when {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-soft) 100%);
  padding: 3.5rem 2rem 3.75rem;
}

.home-band-inner--when {
  width: min(100%, 40rem);
  margin-inline: auto;
}

.home-section-head--when {
  margin-bottom: 1.75rem;
  text-align: center;
}

.home-section-head--when h2 {
  max-width: none;
  margin-inline: auto;
}

.home-when {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
  text-align: center;
}

.home-when-list {
  width: 100%;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.home-when-list li {
  position: relative;
  padding: 1rem 1.15rem 1rem 2.65rem;
  font-size: 0.96rem;
  line-height: 1.52;
  color: var(--text);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.home-when-list li:last-child {
  border-bottom: none;
}

.home-when-list li::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1.22rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

.home-when-list li:hover {
  background: rgba(201, 162, 39, 0.04);
}

@media (min-width: 720px) {
  .home-when-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .home-when-list li {
    min-height: 100%;
    padding: 1.05rem 1.2rem 1.05rem 2.65rem;
    border-bottom: 1px solid var(--border);
  }

  .home-when-list li:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .home-when-list li:nth-child(5) {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: none;
  }
}

.home-confidentiality-note {
  width: 100%;
  margin: 1.15rem 0 0;
  padding: 0.95rem 1.1rem;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  text-align: center;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 12px;
}

.home-band--process {
  padding: 3.25rem 2rem 3.75rem;
  background: linear-gradient(165deg, #1a1a1a 0%, #2a3140 55%, #1f2937 100%);
}

.home-band--book {
  padding: 3rem 2rem;
  background: var(--surface-soft);
  border-top: 1px solid var(--border);
}

.home-band-inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.home-band-inner--narrow {
  max-width: 44rem;
}

.home-band-inner--readable {
  max-width: 38rem;
}

.home-band-inner--wide {
  max-width: 52rem;
}

.home-band--problem {
  padding-top: 2.75rem;
  padding-bottom: 3.25rem;
  background: var(--bg);
  border-bottom: none;
}

.home-panel.home-problem {
  text-align: left;
}

.home-section-head {
  margin-bottom: 2rem;
  text-align: center;
}

.home-section-head .section-eyebrow::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin: 0.65rem auto 0;
  background: var(--gold);
  opacity: 0.55;
}

.home-section-head h2 {
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

.home-section-head--left {
  text-align: left;
}

.home-section-head--left .section-eyebrow::after {
  margin-left: 0;
  margin-right: auto;
}

.home-section-head--left h2 {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.home-problem .home-section-head h2 {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-style: italic;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.home-problem-panel {
  margin-top: 0.25rem;
  padding: 1.35rem 1.25rem 1.2rem;
  text-align: left;
  background: var(--warm-surface);
  border: 1px solid var(--warm-border);
  border-radius: 14px;
}

.home-problem-panel .home-problem-bridge {
  margin: 0 0 0.85rem;
  max-width: none;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.home-problem-panel .home-problem-punch {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.home-problem-panel .home-problem-punch em {
  font-style: normal;
  color: var(--gold-muted);
}

.home-problem-panel .home-problem-close {
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(201, 162, 39, 0.22);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-muted);
}

.home-callout--resolve {
  margin-top: 1.35rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.11) 0%, rgba(201, 162, 39, 0.04) 100%);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(201, 162, 39, 0.08);
}

.home-callout--resolve .home-problem-bridge {
  margin-bottom: 1rem;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}

.home-callout--resolve .home-problem-punch {
  margin-bottom: 0.5rem;
  font-size: clamp(1.55rem, 3.5vw, 2rem);
  letter-spacing: -0.02em;
}

.home-callout--resolve .home-problem-punch em {
  font-style: normal;
  color: var(--gold-muted);
}

.home-process-header .section-eyebrow::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin: 0.65rem auto 0;
  background: rgba(201, 162, 39, 0.65);
  opacity: 1;
}

.home-split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .home-split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .home-problem {
    padding-right: 1.5rem;
    border-right: 1px solid var(--border);
  }
}

.home-panel {
  text-align: center;
}

.home-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  text-align: center;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.home-panel .section-eyebrow {
  margin-bottom: 0.65rem;
}

.home-panel-link {
  margin: 1.75rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

.home-panel-link a {
  color: var(--gold-muted);
  text-decoration: none;
}

.home-panel-link a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.home-offer-lead {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  text-align: center;
}

.home-offer-body {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
  text-align: center;
}


.section-eyebrow--light {
  color: rgba(201, 162, 39, 0.85);
}

.contact-risk-note--light {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.82rem;
}

.home-process-panel {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  color: white;
}

@media (min-width: 960px) {
  .home-process-panel {
    max-width: 56rem;
  }

  .home-process-panel .home-process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: stretch;
    position: relative;
  }

  .home-process-steps--path li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2rem;
    right: -0.5rem;
    width: 1rem;
    height: 2px;
    background: rgba(201, 162, 39, 0.45);
    z-index: 1;
  }

  .home-process-panel .home-process-steps li {
    padding: 3.15rem 1.15rem 1.25rem;
    text-align: center;
    margin: 0 0.5rem;
  }

  .home-process-panel .home-process-steps li::before {
    left: 50%;
    top: 1.15rem;
    transform: translateX(-50%);
  }
}

.home-process-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 600;
  margin: 0 0 1.5rem;
  color: white;
  line-height: 1.2;
}

.home-process-panel .home-process-steps li {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.home-process-panel .home-process-steps strong {
  color: white;
}

.home-process-panel .home-process-steps span {
  color: rgba(255, 255, 255, 0.78);
}

.home-process-panel .section-cta {
  margin-top: 1.75rem;
}

.home-recognition-bar {
  margin-top: 2rem;
  padding: 1.5rem 1.25rem;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
}

.home-recognition-bar .home-trust-verdict-label {
  margin-bottom: 1rem;
}

.home-resonance-list--grid {
  max-width: 52rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .home-resonance-list--grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* Legacy shells — other pages */
.home-page > .home-shell,
.home-page > .home-consulting,
.home-page > .home-trust-bar {
  margin-top: 2rem;
}

.home-page > .home-shell:first-child {
  margin-top: 2.5rem;
}

.home-trust-bar {
  padding: 2.75rem 2rem 3rem;
  background: linear-gradient(180deg, var(--surface) 0%, var(--warm-surface) 100%);
  border-bottom: 1px solid var(--warm-border);
}

.home-pain {
  padding: 2.25rem 2rem 2.5rem;
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.home-pain-inner {
  max-width: 640px;
  margin: 0 auto;
}

.home-pain-lead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 0.35rem;
  color: var(--text);
}

.home-pain-bridge {
  margin: 1.1rem 0 0;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Home page — problem → offer → when → process → trajectory */
.home-page > .home-shell,
.home-page > .home-consulting,
.home-page > .home-trust-bar {
  margin-top: 2rem;
}

.home-page > .home-shell:first-child {
  margin-top: 2.5rem;
}

.home-problem {
  text-align: left;
}

.home-problem h2 {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.home-symptom-list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  max-width: 100%;
  text-align: left;
  display: grid;
  gap: 0.65rem;
}

.home-symptom-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  font-size: 0.96rem;
  line-height: 1.52;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.025);
}

.home-symptom-dot {
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

@media (min-width: 720px) {
  .home-symptom-list--grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1rem;
  }

  .home-symptom-list--grid li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.5rem);
    margin-left: auto;
    margin-right: auto;
  }
}

.home-problem-bridge {
  margin: 0 0 0.75rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.home-problem-punch {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 600;
  color: var(--text);
}

.home-problem-close {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-muted);
}

.home-offer p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
  text-align: center;
}

.home-offer-lead {
  font-size: 1.08rem !important;
  color: var(--text) !important;
}

.home-offer-outcomes-intro {
  margin-bottom: 0.65rem !important;
  font-weight: 600;
  color: var(--text) !important;
}

.home-outcome-list {
  margin: 0 auto 1.25rem;
  padding: 0;
  list-style: none;
  max-width: 26rem;
  display: grid;
  gap: 0.45rem;
}

.home-outcome-list li {
  padding: 0.65rem 0.85rem 0.65rem 2rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--text);
  background: rgba(201, 162, 39, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: 10px;
  position: relative;
}

.home-outcome-list li::before {
  content: "→";
  position: absolute;
  left: 0.85rem;
  color: var(--gold-muted);
  font-weight: 600;
}

.home-offer .card-notwhat {
  text-align: center;
  margin: 0 auto 0.5rem;
  max-width: 32rem;
}

.home-when h2 {
  margin-bottom: 0;
}

.home-resonance-list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.home-resonance-list li {
  padding: 0.95rem 1rem 0.95rem 2.5rem;
  font-size: 0.95rem;
  line-height: 1.52;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.home-resonance-list li:hover {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.home-resonance-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid var(--gold-muted);
  border-radius: 50%;
  background: transparent;
}

.home-process .home-consulting-inner {
  text-align: center;
}

.home-process h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin: 0 0 1.35rem;
}

.home-process-steps {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  counter-reset: process-step;
  text-align: left;
  display: grid;
  gap: 0.85rem;
}

.home-process-steps li {
  counter-increment: process-step;
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem 1.15rem 1.1rem 3.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
}

.home-process-steps li::before {
  content: counter(process-step);
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  width: 1.65rem;
  height: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--surface);
  background: var(--gold);
  border-radius: 50%;
}

.home-process-steps strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}

.home-process-steps span {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.home-process .contact-risk-note {
  margin-top: 0.75rem;
}

.home-band--trajectory {
  padding: 3.5rem 2rem 3.75rem;
  background: var(--bg);
}

.home-band-inner--trajectory {
  width: min(100%, 52rem);
  margin-inline: auto;
}

.home-trajectory {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
  text-align: center;
}

.home-section-head--trajectory {
  width: 100%;
  margin-bottom: 1.75rem;
  text-align: center;
}

.home-section-head--trajectory h2 {
  max-width: none;
  margin-inline: auto;
}

.home-trajectory-intro {
  width: 100%;
  max-width: 38rem;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.home-world-cards {
  display: grid;
  gap: 1rem;
  width: 100%;
  margin: 0 0 1.5rem;
}

.home-band-inner--trajectory .home-recognition-bar {
  width: 100%;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .home-band-inner--trajectory .home-world-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 960px) {
  .home-band-inner--trajectory .home-world-cards {
    gap: 1.15rem;
  }
}

.home-world-card {
  padding: 1.35rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.03);
  text-align: left;
}

.home-world-head {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.home-world-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.home-world-num {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-muted);
  flex-shrink: 0;
}

.home-world-fact {
  margin: 0 0 0.75rem;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--text);
}

.home-world-lesson {
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  font-style: italic;
}

.home-thread-close {
  width: 100%;
  margin-top: 0;
  padding: 1.5rem 1.5rem 1.35rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.09) 0%, rgba(201, 162, 39, 0.03) 100%);
  border: 1px solid rgba(201, 162, 39, 0.24);
  border-radius: 14px;
}

.home-thread-label {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.home-thread-close p:last-child {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text);
}

.home-trust-bar--recognition {
  padding: 2rem 2rem 2.25rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}

@media (min-width: 640px) {
  .home-world-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .home-world-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }
}

.home-trust-inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.home-trust-act {
  margin-bottom: 1.5rem;
}

.home-trust-act:last-child {
  margin-bottom: 0;
}

.home-trust-act--hook {
  text-align: center;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--border);
}

.home-trust-worlds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 1.15rem;
}

.home-trust-world {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--warm-border);
  border-radius: 999px;
  line-height: 1.2;
}

.home-trust-tension {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0 auto;
  max-width: 560px;
}

.home-trust-tension-hook {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: 500;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.45;
}

.home-trust-tension-scenes {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.home-trust-tension-thread {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.28rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.home-trust-summits-intro {
  margin: 0 0 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.home-trust-summits-intro::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin: 0.55rem auto 0;
  background: var(--gold);
  opacity: 0.65;
}

.home-trust-summits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-trust-summits li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.summit-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  height: 100%;
  padding: 1rem 1.05rem 0.9rem;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--warm-border);
  border-left: 3px solid #d9d2c4;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.summit-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.summit-domain {
  margin: 0 0 0.15rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.summit-from {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-muted);
  min-height: 3.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.summit-from .summit-geo {
  display: block;
  margin-top: 0.2rem;
  font-weight: 600;
  color: var(--gold-muted);
  line-height: 1.35;
}

.summit-geo {
  font-weight: 600;
  color: var(--gold-muted);
}

.summit-peak {
  margin: 0.35rem 0 0;
  padding-top: 0.45rem;
  border-top: 1px solid var(--warm-border);
  font-family: var(--font-display);
  font-size: clamp(0.96rem, 2.1vw, 1.06rem);
  font-weight: 600;
  line-height: 1.38;
  color: var(--text);
}

.summit-peak::before {
  content: "→ ";
  color: var(--gold);
  font-weight: 700;
}

.summit-peak em {
  font-style: italic;
}

.summit-peak-meta {
  margin: 0.15rem 0 0;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

.trust-domain {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0.15rem;
  padding: 0.2rem 0.55rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.trust-from {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-to {
  display: block;
  line-height: 1.35;
}

.trust-to-mark {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.trust-to-peak {
  display: block;
  margin-top: 0.1rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.home-trust-act--verdict {
  text-align: center;
  margin-top: 0.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--warm-border);
}

.home-trust-verdict-label {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.verdict-label-dot {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: #c0392b;
  vertical-align: middle;
  transform: translateY(-1px);
}

.home-trust-recognition.recognition-strip {
  margin-bottom: 0;
}

.home-trust-recognition {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.home-trust-recognition .recognition-plaque {
  flex: 1 1 15rem;
  max-width: 18.5rem;
}

.home-trust-recognition .recognition-plaque--home {
  flex: 0 1 13.5rem;
  max-width: 14.5rem;
  padding: 0.85rem 1rem 0.75rem;
}

.home-trust-recognition .recognition-issuer {
  margin-bottom: 0.4rem;
  font-size: 0.62rem;
}

.home-trust-recognition .recognition-award {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.home-trust-recognition .recognition-scope {
  font-size: 0.74rem;
}

.home-trust-badge {
  display: inline-block;
  padding: 0.5rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  line-height: 1.3;
}

.home-trust-act--close {
  text-align: center;
  padding-top: 1.15rem;
  padding-bottom: 0;
  border-top: 1px solid var(--warm-border);
}

.home-trust-bridge {
  margin: 0 auto;
  max-width: 560px;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  font-weight: 600;
  font-style: italic;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.45;
}

.home-trust-handoff {
  display: none;
}

.home-trust-thread {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin: 0 auto 0.85rem;
  max-width: 520px;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--warm-border);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.home-trust-thread-q {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.home-trust-thread-a {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.3rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.home-trust-bar em {
  font-style: italic;
}

@media (min-width: 520px) {
  .home-trust-summits {
    grid-template-columns: repeat(2, 1fr);
  }

  .summit-from {
    min-height: 4rem;
  }
}

@media (min-width: 960px) {
  .home-trust-summits {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
  }

  .summit-card {
    padding: 1rem 0.9rem 0.9rem;
  }

  .summit-from {
    min-height: 4.5rem;
  }

  .summit-peak {
    font-size: 0.98rem;
  }
}

.section-eyebrow {
  display: block;
  margin: 0 0 0.5rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--gold-muted);
}

.home-shell {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 2.75rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}

.home-entry {
  max-width: 36rem;
  margin: 2.5rem auto 0;
  text-align: center;
  border-color: var(--accent-soft);
  box-shadow: 0 20px 48px var(--accent-glow);
}

.home-entry .what-i-do--single {
  max-width: 100%;
  width: 100%;
  margin: 1.25rem 0 0;
}

.home-entry .card {
  text-align: center;
}

.home-entry .card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.home-entry .card-link {
  display: inline-block;
}

.home-shell h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  text-align: center;
  margin: 0 0 0.75rem;
}

.home-shell h2::after {
  content: none;
}

.home-entry-intro {
  text-align: center;
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.home-consulting-lead {
  text-align: center;
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.home-consulting {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

.home-consulting--panel .home-consulting-inner {
  padding: 2.25rem 2rem 2rem;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.home-consulting-inner {
  padding: 0.5rem 0 0;
}

.home-consulting .work-blockers {
  margin-bottom: 1.5rem;
}

.home-consulting .section-cta {
  margin-top: 1.5rem;
}

.home-consulting .work-blockers-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 600;
  text-align: center;
  margin: 0 0 1rem;
  color: var(--text);
}

.home-shell .work-blockers {
  margin-bottom: 1.5rem;
}

.home-more-link,
.home-deeper-link {
  text-align: center;
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
}

.home-deeper-link a {
  color: var(--text-muted);
  font-weight: 500;
}

.home-deeper-link a:hover {
  color: var(--accent);
}

.book-method-note {
  text-align: center;
  margin: 0 0 1.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text);
}

.home-pull-quote {
  margin: 1.25rem auto;
  padding: 0.9rem 1.35rem;
  max-width: 540px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.25rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.35;
  text-align: center;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold-muted);
  border-radius: 0 12px 12px 0;
}

.home-pull-quote--gold {
  border-left-color: var(--gold);
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.06) 0%, var(--surface) 28%);
}

.home-book .section-intro {
  text-align: center;
}

.home-book p:not(.section-intro):not(.home-pull-quote):not(.quote-line):not(.contact-risk-note) {
  color: var(--text-muted);
  line-height: 1.65;
}

.home-book-more {
  margin: 0;
  padding: 0;
  border: 1px solid var(--warm-border);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--warm-surface) 0%, var(--surface) 100%);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.home-book-more summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s ease;
}

.home-book-more summary:hover {
  background: rgba(255, 255, 255, 0.45);
}

.home-book-more summary::-webkit-details-marker {
  display: none;
}

.home-book-summary-inner {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.home-book-summary-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.home-book-summary-title em {
  font-style: italic;
}

.home-book-summary-meta {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

.home-book-summary-chevron {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--gold-muted);
  border-bottom: 2px solid var(--gold-muted);
  transform: rotate(45deg);
  margin-top: -0.2rem;
  transition: transform 0.2s ease;
}

.home-book-more[open] .home-book-summary-chevron {
  transform: rotate(225deg);
  margin-top: 0.15rem;
}

.home-book-more[open] summary {
  border-bottom: 1px solid var(--warm-border);
  background: rgba(255, 255, 255, 0.35);
}

.home-book-more-body {
  padding: 1.75rem 1.5rem 1.5rem;
}

.home-book-act {
  margin-bottom: 1.75rem;
}

.home-book-act:last-child {
  margin-bottom: 0;
}

.home-book-act--hook {
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.home-book-intro {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.home-book-question {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.01em;
}

.home-book-act--punch {
  padding: 0.25rem 0 0.5rem;
}

.home-book-aside {
  margin: 0.5rem auto 1rem;
  max-width: 32rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.45;
  text-align: center;
  color: var(--text-muted);
}

.home-book-act--prose {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0.25rem;
  border-top: 1px solid var(--warm-border);
}

.home-book-act--prose p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.home-book-act--prose p:last-child {
  margin-bottom: 0;
}

.home-book-close {
  margin: 1.75rem auto 0;
  padding-top: 1.25rem;
  max-width: 32rem;
  border-top: 1px solid var(--warm-border);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.45;
  text-align: center;
  color: var(--text);
}

.home-book-more-body p {
  margin: 0 0 0.85rem;
}

.home-book-more-body p:last-child {
  margin-bottom: 0;
}

.home-pont {
  max-width: none;
  margin: 0;
  padding: 3rem 2rem 4rem;
  text-align: center;
  border-top: none;
}

.home-pont--closing {
  background: linear-gradient(180deg, #1a1a1a 0%, #242019 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 3.5rem 2rem 4.25rem;
}

.home-pont--closing::before {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin: 0 auto 2rem;
  background: var(--gold);
  opacity: 0.75;
  border-radius: 2px;
}

.home-pont--closing .home-pont-insight {
  color: white;
  max-width: 34rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.28;
}

.home-pont--closing .home-pont-links a {
  color: rgba(255, 255, 255, 0.72);
}

.home-pont--closing .home-pont-links a:hover {
  color: white;
}

.home-pont--closing .contact-risk-note {
  color: rgba(255, 255, 255, 0.65);
}

.home-pont--closing .btn-dark {
  background: white;
  color: var(--text);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.home-pont--closing .btn-dark:hover {
  background: #f2f2f2;
  color: var(--text);
}

.home-pont-insight {
  margin: 0 auto 1.25rem;
  max-width: 520px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.55rem);
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  line-height: 1.3;
}

.home-pont .section-cta {
  margin-top: 0;
  margin-bottom: 1rem;
}

.home-pont-links {
  margin: 0;
  font-weight: 600;
  font-size: 0.92rem;
}

.home-pont-links a {
  color: var(--text-muted);
}

.home-pont-links a:hover {
  color: var(--accent);
}

.home-sticky-cta {
  display: none;
}

@media (max-width: 767px) {
  .page-home {
    padding-bottom: 5rem;
  }

  .page-home .site-footer {
    padding-bottom: 1rem;
  }

  .home-sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
  }

  .home-sticky-cta .btn {
    margin: 0;
    width: 100%;
    text-align: center;
  }
}

.home-shell .what-i-do {
  margin-top: 0;
  margin-bottom: 0;
}

.home-entry .what-i-do {
  margin: 1.25rem 0 0;
}

.what-i-do--single {
  grid-template-columns: 1fr;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.card-outcome {
  margin: 0.65rem 0 0.35rem;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--text-muted);
}

.card-notwhat {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--text-muted);
}

.home-how-it-works {
  margin: 0 0 1.35rem;
  padding: 1rem 1.15rem;
  text-align: left;
  background: rgba(201, 162, 39, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
}

.home-how-it-works-label {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.home-how-it-works-steps {
  margin: 0;
  padding: 0 0 0 1.15rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text);
}

.home-how-it-works-steps li {
  margin-bottom: 0.25rem;
}

.home-how-it-works-steps li:last-child {
  margin-bottom: 0;
}

.home-consulting-lead {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.55;
  text-align: center;
  color: var(--text);
}

.home-book--compact {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 2.25rem;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.home-book--compact .home-book-more {
  margin-bottom: 1.15rem;
}

.home-book--flat {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2.25rem 1.75rem 2.5rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.home-book--flat h2 {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.home-book-pull {
  margin: 0.5rem auto 1.25rem;
  padding: 1.25rem 1.5rem;
  max-width: 26rem;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.03) 100%);
  border: none;
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
}

.home-book-pull .home-book-question {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.3;
  color: var(--text);
}

.home-book--flat .home-book-body {
  max-width: 34rem;
  margin: 0 auto;
}

.home-book--flat .home-book-body p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.home-book--flat .home-book-body p:last-child {
  margin-bottom: 0;
}

.home-book--flat .home-book-question {
  margin: 0.35rem 0 1rem;
}

.home-book-notify {
  text-align: center;
  margin: 0;
}

.home-shell .section-cta {
  margin-top: 1.5rem;
}

.btn-secondary-link {
  font-weight: 600;
}

@media (min-width: 640px) {
  .home-shell {
    padding: 3rem 2.5rem;
  }
}

/* What I Do grid */
.what-i-do {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.what-i-do .card {
  position: relative;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.what-i-do .card--primary {
  border-color: rgba(26, 26, 26, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.what-i-do .card--primary:hover {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.09);
}

.what-i-do .card--secondary {
  background: var(--surface-soft);
}

.card-badge {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-muted);
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 999px;
}

.what-i-do .card--primary .card-link {
  color: var(--gold-muted);
}

.what-i-do .card--primary .card-link:hover {
  color: var(--accent-hover);
}

.what-i-do .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.what-i-do .card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.what-i-do .card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.what-i-do.three-col {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .what-i-do.three-col {
    grid-template-columns: 1fr;
  }
}

.what-i-do .card .card-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Quiz CTA block */
.quiz-block {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 8px;
  text-align: center;
  margin: 2rem 0;
}

.quiz-block h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.quiz-block p {
  margin: 0 0 1.5rem;
  opacity: 0.9;
}

.quiz-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.quiz-links a {
  color: white;
  font-weight: 600;
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.85);
  padding: 4.5rem 2rem 2.25rem;
}

.footer-inner {
  max-width: 720px;
  margin: 0 auto;
}

.newsletter-form {
  display: none;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: white;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form .btn {
  padding: 0.75rem 1.5rem;
}

.footer-contact {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-top: 2rem;
}

.footer-contact a {
  color: white;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* About page */
.page-about {
  background: var(--bg);
}

.page-about .about-page {
  padding-left: 2rem;
  padding-right: 2rem;
}

.page-about .about-conversion,
.page-about .about-story,
.page-about .bio-narrative {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.about-intro {
  padding: 6.5rem 2rem 2.75rem;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.about-intro-inner {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 3rem;
  align-items: center;
}

.about-intro-copy h1 {
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  line-height: 1.15;
  margin: 0 0 0.85rem;
  text-align: left;
}

.about-subhead {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-style: italic;
  color: var(--text-muted);
  margin: 0;
  max-width: 34rem;
  line-height: 1.5;
  text-align: left;
}

.about-portrait {
  margin: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border: 3px solid #fff;
  flex-shrink: 0;
}

.about-portrait .profile-image {
  width: 130%;
  height: 130%;
  object-fit: cover;
  object-position: 78% 22%;
  margin-left: -15%;
  margin-top: -10%;
}

.about-cta {
  margin-top: 3rem;
  text-align: center;
}

.about-cta--early {
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.about-risk-note {
  text-align: center;
  margin-bottom: 0;
}

.about-conversion {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-conversion--mid {
  margin-top: 2.5rem;
}

.about-conversion--closing {
  margin-top: 2.5rem;
  margin-bottom: 3.5rem;
}

.about-conversion-inner {
  text-align: center;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(180deg, var(--warm-surface) 0%, var(--surface) 100%);
  border: 1px solid var(--warm-border);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.about-conversion--closing .about-conversion-inner {
  padding: 1.5rem;
  background: var(--surface);
  border-color: var(--border);
}

.about-conversion-inner .btn {
  margin: 0;
}

.about-conversion-inner .about-risk-note {
  margin: 0.85rem auto 0;
  max-width: 420px;
  font-size: 0.82rem;
}

.about-story {
  max-width: 820px;
  margin: 2.25rem auto 0;
  padding: 0 2rem;
}

.about-manifest {
  margin: 0 auto 2rem;
  padding: 0 1rem;
  max-width: 34rem;
  border: none;
  text-align: center;
}

.about-manifest p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.55rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  color: var(--text);
}

.about-manifest p + p {
  margin-top: 0.35rem;
  color: var(--gold-muted);
  font-weight: 600;
}

.bio-expand-link {
  margin: 0 auto 1.25rem;
  text-align: center;
}

.bio-expand-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.bio-expand-link a:hover {
  color: var(--text);
  border-color: var(--gold-muted);
  background: var(--warm-surface);
}

.bio-narrative {
  text-align: left;
  max-width: 40rem;
  margin: 0 auto;
  padding: 2rem 1.75rem 1.75rem;
  background: linear-gradient(180deg, var(--surface) 0%, var(--warm-surface) 100%);
  border: 1px solid var(--warm-border);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
  scroll-margin-top: 5.5rem;
}

.bio-narrative-lead {
  margin: 0 0 1.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.25;
  text-align: center;
  color: var(--text);
}

.bio-narrative-act {
  margin-bottom: 1.5rem;
}

.bio-narrative-act:last-child {
  margin-bottom: 0;
}

.bio-narrative-act p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.bio-narrative-act p:last-child {
  margin-bottom: 0;
}

.bio-narrative-book {
  margin: 1.75rem 0;
  padding: 1rem 1.15rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.45;
  text-align: center;
  color: var(--text);
  background: rgba(201, 162, 39, 0.07);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 10px;
}

.bio-narrative-close {
  margin: 1.75rem 0 0;
  padding: 1rem 1.15rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.45;
  text-align: center;
  color: var(--text);
  background: rgba(201, 162, 39, 0.07);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 10px;
}

.bio-pull-quote {
  margin: 0 0 1rem;
  padding: 0.9rem 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  background: var(--surface);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.credential-panel {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 2rem 2rem;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.05);
}

.page-about .credential-panel {
  margin-top: -1.25rem;
  position: relative;
  z-index: 1;
}

.credential-thesis {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.credential-thesis-kicker {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.credential-thesis-hook {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.credential-thesis-hook strong {
  color: var(--text);
  font-weight: 600;
}

.path-block {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.path-intro {
  margin: 0 0 1.15rem;
  max-width: 560px;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: var(--text-muted);
}

.path-eyebrow,
.path-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.path-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.path-timeline {
  position: relative;
}

.path-timeline::before {
  content: "";
  position: absolute;
  left: 1.125rem;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 2px;
  background: linear-gradient(180deg, var(--border) 0%, rgba(201, 162, 39, 0.35) 50%, var(--border) 100%);
}

.path-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.75rem 1.15rem;
  padding: 1.15rem 0;
  position: relative;
}

.path-item:first-child {
  padding-top: 0;
}

.path-item:last-child {
  padding-bottom: 0;
}

.path-item + .path-item {
  border-top: none;
}

.path-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 0.05rem;
  font-size: 1.2rem;
  line-height: 1;
  background: var(--warm-surface);
  border: 1px solid var(--warm-border);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  z-index: 1;
}

.path-content h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin: 0 0 0.45rem;
  line-height: 1.25;
}

.path-content p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.path-milestone,
.path-footnote {
  margin-top: 0.55rem !important;
  padding: 0.55rem 0 0.55rem 0.75rem;
  border-left: 2px solid var(--gold);
  font-size: 0.86rem !important;
  line-height: 1.5;
  color: var(--text) !important;
  font-weight: 500;
}

.path-milestone em,
.path-footnote em {
  font-style: italic;
  font-weight: 500;
}

.path-formacion {
  margin: 1.15rem 0 0;
  padding-top: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-align: center;
}

.credential-verdict-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 0.85rem;
}

.recognition-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.recognition-plaque {
  flex: 1 1 15rem;
  max-width: 18.5rem;
  padding: 1.15rem 1.25rem 1rem;
  text-align: center;
  background: linear-gradient(180deg, var(--warm-surface) 0%, var(--surface) 100%);
  border: 1px solid var(--warm-border);
  border-top: 2px solid var(--gold);
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.footer-tagline {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: white;
  line-height: 1.35;
}

.recognition-issuer {
  margin: 0 0 0.55rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.recognition-award {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.recognition-visa {
  font-family: var(--font-body);
  font-size: 0.82em;
  font-weight: 500;
  color: var(--text-muted);
}

.recognition-plaque > .recognition-visa {
  margin: -0.1rem 0 0.45rem;
  font-size: 0.82rem;
}

.recognition-scope {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

.recognition-badge {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  background: linear-gradient(135deg, #f8f6f0 0%, #fff 100%);
  border: 1px solid #e8e4d8;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
}

.credential-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 400;
}

.credential-close {
  margin-top: 0.25rem;
  padding: 0;
  background: linear-gradient(180deg, var(--warm-surface) 0%, var(--surface) 100%);
  border: 1px solid var(--warm-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.credential-close-insight {
  padding: 1.65rem 1.5rem 1.35rem;
  text-align: center;
  border-bottom: 1px solid var(--warm-border);
}

.credential-insight {
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 2.4vw, 1.35rem);
  font-weight: 500;
  font-style: italic;
  text-align: center;
  line-height: 1.45;
  margin: 0 auto 1rem;
  max-width: 36rem;
  color: var(--text);
}

.credential-insight-sub {
  display: inline-block;
  margin: 0;
  padding: 0.45rem 1rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.35;
  color: var(--text);
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 999px;
}

.credential-today {
  text-align: center;
  padding: 1.15rem 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.45);
}

.credential-today-roles {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
}

.credential-today-prefix {
  color: var(--gold-muted);
  font-weight: 600;
}

.credential-today-langs {
  margin: 0 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

.section-hook {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 600;
  margin: 0 0 1rem;
  text-align: center;
}

.credential-signoff {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-style: italic;
  text-align: center;
  margin: 2rem auto 0.5rem;
  max-width: 520px;
  color: var(--text-muted);
}

.headshot-placeholder {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  margin: 2rem 0;
}

.credentials-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.credentials-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.credentials-list li:last-child {
  border-bottom: none;
}

/* Work With Me */
.page-work {
  background: var(--bg);
}

.work-page {
  padding-bottom: 4rem;
}

.work-page .home-more-link,
.work-page .home-deeper-link {
  padding: 0;
  margin-top: 0;
}

.work-page-footer {
  max-width: 820px;
  margin: 2rem auto 0;
  padding: 1.35rem 1.5rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.work-page-footer .home-more-link {
  margin-bottom: 0.65rem;
}

.work-hero {
  padding: 7rem 2rem 2.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--warm-surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--warm-border);
}

.work-hero-inner {
  max-width: 42rem;
  margin: 0 auto;
  padding-bottom: 0;
  border-bottom: none;
}

.work-eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.work-hero h1 {
  font-size: clamp(2rem, 4.8vw, 3rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.work-tagline {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--text);
}

.work-equation {
  margin: 0 auto;
  max-width: 34rem;
  padding: 0.85rem 1.1rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--warm-border);
  border-radius: 10px;
}

.work-shell {
  max-width: 42rem;
  margin: 2rem auto 0;
  padding: 2rem 1.75rem;
  background: linear-gradient(180deg, var(--surface) 0%, var(--warm-surface) 100%);
  border: 1px solid var(--warm-border);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.04);
}

.work-shell--problem {
  text-align: center;
}

.work-shell--role {
  text-align: center;
}

.work-shell--role .work-role-callout {
  margin-bottom: 0;
}

.work-problem-hook {
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--warm-border);
}

.work-shell--problem .section-hook {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.15;
  color: var(--text);
}

.work-intro {
  margin: 0 auto;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.work-blockers {
  text-align: left;
  margin-bottom: 1.75rem;
}

.work-blockers-title {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
  color: var(--text-muted);
  text-align: center;
}

.work-blockers-intro {
  margin: 0 auto 1.15rem;
  max-width: 34rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-muted);
  text-align: center;
}

.work-blockers-intro a {
  font-weight: 600;
  color: var(--gold-muted);
  text-decoration: none;
}

.work-blockers-intro a:hover {
  text-decoration: underline;
}

.work-blocker-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.work-blocker-list li {
  display: grid;
  gap: 0.15rem;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.work-blocker-when {
  display: block;
  font-weight: 600;
  color: var(--text);
  font-size: 0.98rem;
}

.work-blocker-but {
  display: block;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
}

.work-blocker-but::before {
  content: "→ ";
  font-style: normal;
  color: var(--gold-muted);
  font-weight: 600;
}

.work-role-callout {
  padding: 1.15rem 1.25rem;
  background: rgba(201, 162, 39, 0.07);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 12px;
  text-align: center;
}

.work-role-callout p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.work-role-callout p + p {
  margin-top: 0.85rem;
}

.work-role-callout strong {
  color: var(--text);
}

.work-shell--offer {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  background: var(--surface);
  border-color: var(--border);
}

.work-offer-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.work-offer-eyebrow {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.work-offer-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.work-offer-header h2::after {
  content: none;
}

.work-offer-card {
  padding: 1.75rem 1.5rem;
  background: linear-gradient(165deg, #1a1a1a 0%, #2a3140 55%, #1f2937 100%);
  border-radius: 16px;
  color: white;
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.work-offer-lead {
  margin: 0 0 1.35rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.work-offer-outcomes {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.work-offer-outcome {
  position: relative;
  padding: 0.65rem 0.85rem 0.65rem 2rem;
  font-size: 0.94rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.work-offer-outcome::before {
  content: "✓";
  position: absolute;
  left: 0.75rem;
  top: 0.72rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
}

.work-offer-outcome--primary {
  background: rgba(201, 162, 39, 0.12);
  border-color: rgba(201, 162, 39, 0.28);
  font-weight: 600;
  color: white;
}

.work-offer-outcome--primary::before {
  color: var(--gold);
}

.work-offer-quote {
  margin: 0 0 1.35rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 10px 10px 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-style: italic;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.work-offer-trust {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.work-offer-trust-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.work-offer-ctas {
  display: grid;
  gap: 0.75rem;
}

.work-offer-card .btn-dark {
  background: white;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.work-offer-card .btn-dark:hover {
  background: var(--gold);
  color: #1a1a1a;
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
  color: white;
  text-decoration: none;
}

.work-intro--hero {
  margin: 0 auto 0.85rem;
}

.work-intro--hero:last-of-type {
  margin-bottom: 0;
}

.work-section-lead {
  margin: 0.35rem 0 0;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--text-muted);
  font-style: italic;
}

.work-prose {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.work-prose--emphasis {
  margin-top: 0.25rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.work-subheading {
  margin: 1.5rem 0 0.85rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.work-subheading--section {
  margin-top: 0;
  text-align: center;
}

.work-shell--sessions,
.work-shell--first-call,
.work-shell--fit,
.work-shell--retainer {
  margin-top: 1.5rem;
}

.work-tier-details {
  max-width: 54rem;
  margin: 1.75rem auto 0;
  display: grid;
  gap: 1.25rem;
}

.work-tier-detail {
  max-width: none;
  margin: 0;
  padding: 1.5rem 1.35rem 1.2rem;
  scroll-margin-top: 5rem;
}

.work-tier-detail-header {
  margin-bottom: 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.work-tier-detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.work-tier-detail-kicker-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-muted);
}

.work-tier-detail-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.work-tier-detail-lead {
  margin: 0.4rem 0 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--text-muted);
  font-style: italic;
}

.work-tier-detail-panel {
  padding: 1.15rem 1.15rem 1.05rem;
  background: var(--warm-surface);
  border: 1px solid var(--warm-border);
  border-radius: 14px;
}

.work-tier-detail-intro {
  margin: 0 0 1.1rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.work-tier-detail-prose {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.work-tier-detail-prose p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.work-tier-detail-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0 0;
  padding-top: 0.95rem;
  border-top: 1px solid var(--border);
}

.work-tier-detail-specs span {
  padding: 0.28rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.work-tier-detail-panel .work-detail-meta--tier {
  margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--border);
}

.work-tier-detail-panel .work-detail-meta--tier div {
  padding: 0.7rem 0.6rem;
  background: var(--surface);
  border-color: rgba(201, 162, 39, 0.16);
}

.work-tier-detail--1 .work-tier-detail-panel .work-detail-meta--tier div:first-child {
  border-color: rgba(201, 162, 39, 0.32);
  background: rgba(201, 162, 39, 0.06);
}

.work-tier-detail-col {
  min-width: 0;
}

.work-tier-detail-col--highlight {
  padding: 1rem 1.05rem;
  background: var(--surface);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 12px;
}

.work-tier-detail-col--highlight .work-detail-punch {
  border-top-color: var(--border);
}

.work-step-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  counter-reset: work-step;
}

.work-step-list li {
  position: relative;
  display: grid;
  gap: 0.2rem;
  padding-left: 2.35rem;
  counter-increment: work-step;
}

.work-step-list li::before {
  content: counter(work-step);
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 50%;
}

.work-step-list strong {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text);
}

.work-step-list span {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.work-outcome-list--compact li {
  padding: 0.55rem 0.75rem 0.55rem 1.85rem;
  font-size: 0.92rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: 0;
}

.work-outcome-list--compact li:last-child {
  border-bottom: none;
}

.work-outcome-list--compact li::before {
  left: 0.35rem;
  top: 0.62rem;
}

.work-feature-grid--compact li {
  padding: 0.85rem 0.95rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold-muted);
  border-radius: 0 10px 10px 0;
}

.work-detail-callouts--compact {
  gap: 0.5rem;
}

.work-fit-lead {
  margin: 0 auto;
  max-width: 30rem;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

.work-fit-card {
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
}

.work-fit-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.work-fit-card--yes {
  background: var(--warm-surface);
  border: 1px solid rgba(201, 162, 39, 0.28);
}

.work-fit-card--no {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
  border: 1px dashed var(--border);
}

.work-fit-card--no p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.work-tier-detail-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(201, 162, 39, 0.45);
}

.work-tier-detail--1 .work-tier-detail-num {
  color: var(--gold-muted);
}

.work-tier-detail-headcopy {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.work-tier-detail-headcopy .work-offer-eyebrow {
  margin-bottom: 0.25rem;
}

.work-tier-detail-headcopy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.work-tier-detail-headcopy .work-section-lead {
  margin-top: 0.45rem;
}

.work-tier-detail--1 {
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.05) 0%, var(--surface) 28%);
  border-color: rgba(201, 162, 39, 0.28);
}

.work-tier-detail--2 {
  background: var(--surface);
}

.work-tier-detail--3 {
  background: linear-gradient(180deg, var(--surface) 0%, rgba(201, 162, 39, 0.05) 100%);
  border-color: rgba(201, 162, 39, 0.22);
}

.work-prose--intro {
  margin-bottom: 1.25rem;
  max-width: 40rem;
}

.work-tier-detail-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 768px) {
  .work-tier-detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
  }

  .work-tier-detail-grid--split {
    align-items: stretch;
  }
}

.work-detail-block {
  min-width: 0;
}

.work-detail-block--aside {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.1rem 1.15rem;
  background: var(--warm-surface);
  border: 1px solid var(--warm-border);
  border-radius: 14px;
}

.work-detail-block--outcomes {
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.15rem;
  background: rgba(201, 162, 39, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 14px;
}

.work-detail-block--outcomes .work-outcome-list {
  flex: 1;
  margin-bottom: 0.85rem;
}

.work-detail-label {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
}

.work-detail-label--center {
  text-align: center;
  margin-bottom: 1rem;
}

.work-detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.work-detail-list li {
  position: relative;
  padding: 0.8rem 1rem 0.8rem 2.35rem;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--warm-surface);
  border: 1px solid var(--warm-border);
  border-radius: 10px;
}

.work-detail-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.16);
}

.work-detail-block--aside .work-prose {
  margin: 0;
}

.work-detail-list--plain li {
  padding: 0.55rem 0 0.55rem 1.15rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
}

.work-detail-list--plain li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.work-detail-list--plain li:first-child {
  padding-top: 0;
}

.work-detail-list--plain li::before {
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  box-shadow: none;
}

.work-detail-list--plain li:first-child::before {
  top: 0.17rem;
}

.work-detail-note {
  margin: 0;
  padding: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-muted);
  font-style: italic;
  background: transparent;
  border: none;
  border-radius: 0;
}

.work-detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0;
}

@media (min-width: 520px) {
  .work-detail-meta {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.work-detail-confidential {
  margin: 0;
  padding: 0.75rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  text-align: center;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.24);
  border-radius: 10px;
}

.work-detail-meta div {
  padding: 0.65rem 0.55rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.work-detail-meta dt {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.work-detail-meta dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.work-detail-punch {
  margin: 0.85rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(201, 162, 39, 0.22);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
  text-align: left;
}

.work-feature-grid {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .work-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.work-feature-grid li {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.05rem;
  background: var(--warm-surface);
  border: 1px solid var(--warm-border);
  border-left: 3px solid var(--gold-muted);
  border-radius: 0 12px 12px 0;
}

.work-feature-grid strong {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text);
}

.work-feature-grid span {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.work-feature-grid span a {
  font-weight: 600;
  color: var(--gold-muted);
  text-decoration: none;
}

.work-feature-grid span a:hover {
  text-decoration: underline;
}

.work-confidentiality {
  max-width: 54rem;
  margin: 1.25rem auto 0;
  padding: 1.35rem 1.4rem 1.25rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.07) 0%, var(--surface) 100%);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
  scroll-margin-top: 5rem;
}

.work-confidentiality-header {
  max-width: 34rem;
  margin: 0 auto 0.75rem;
}

.work-confidentiality-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.work-confidentiality-lead {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.work-confidentiality-commitments {
  margin: 0 auto 0.85rem;
  max-width: 36rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--text);
}

.work-confidentiality-punch {
  margin: 0.85rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
}

.work-confidentiality-close {
  margin: 0 auto;
  max-width: 28rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.work-detail-callouts {
  display: grid;
  gap: 0.65rem;
}

.work-detail-callout {
  margin: 0;
  padding: 0.85rem 0.95rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: left;
}

.work-detail-callout--emphasis {
  font-weight: 600;
  color: var(--text);
  background: rgba(201, 162, 39, 0.08);
  border-color: rgba(201, 162, 39, 0.24);
}

.work-tier-detail-foot {
  margin-top: 1.15rem;
  padding-top: 0;
  border-top: none;
  text-align: center;
}

.work-shell--fit {
  max-width: 54rem;
  margin-top: 1.75rem;
  padding: 1.65rem 1.35rem;
}

.work-fit-header {
  text-align: center;
  margin-bottom: 1.1rem;
}

.work-fit-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.65rem);
  font-weight: 600;
  margin: 0 0 0.45rem;
  line-height: 1.15;
}

.work-fit-header .work-section-lead {
  margin: 0 auto;
  max-width: 30rem;
}

.work-fit-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .work-fit-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: stretch;
  }
}

.work-detail-block--fit .work-detail-list li {
  background: var(--surface);
}

.work-detail-block--not {
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.15rem;
  background: var(--warm-surface);
  border: 1px solid var(--warm-border);
  border-radius: 14px;
}

.work-detail-block--not .work-not-for {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  font-style: normal;
}

.work-closing-band {
  max-width: 54rem;
  margin: 1.75rem auto 2.5rem;
  padding: 2.25rem 1.75rem 2rem;
  background: linear-gradient(165deg, #1a1a1a 0%, #2a3140 55%, #1f2937 100%);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.18);
}

.work-closing-inner {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.work-closing-band .work-closing-lead {
  color: white;
}

.work-closing-prose {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.work-closing-band .work-closing-punch {
  color: rgba(255, 255, 255, 0.92);
}

.work-closing-band .work-cta {
  margin-top: 1.35rem;
  margin-bottom: 0;
}

@media (max-width: 639px) {
  .work-tier-detail {
    padding: 1.25rem 1.1rem 1rem;
  }

  .work-tier-detail-panel {
    padding: 1rem;
  }

  .work-tier-detail-foot .btn {
    width: 100%;
    justify-content: center;
  }
}

.work-shell--ladder {
  max-width: 54rem;
  padding: 2.25rem 1.75rem 2rem;
  background: linear-gradient(180deg, var(--surface) 0%, var(--warm-surface) 100%);
}

.work-ladder-header {
  text-align: center;
  margin-bottom: 1.65rem;
}

.work-ladder-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  font-weight: 600;
  margin: 0 0 0.85rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text);
}

.work-ladder-trail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.55rem;
  margin: 0 auto 0.95rem;
  max-width: 38rem;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-muted);
}

.work-ladder-trail-dot {
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: var(--gold-muted);
  opacity: 0.75;
  flex-shrink: 0;
}

.work-ladder-header .work-section-lead {
  margin: 0 auto;
  max-width: 32rem;
}

.work-ladder-panel {
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.05);
}

.work-ladder {
  display: grid;
  gap: 0.75rem;
}

.work-ladder-connector {
  display: none;
}

.work-tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 100%;
  padding: 1.25rem 1.15rem 1.1rem;
  background: var(--warm-surface);
  border: 1px solid var(--warm-border);
  border-radius: 14px;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.work-tier-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.work-tier-card--entry {
  background: linear-gradient(165deg, rgba(201, 162, 39, 0.1) 0%, var(--surface) 72%);
  border-color: rgba(201, 162, 39, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.work-tier-card--entry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--gold-muted), var(--gold));
}

.work-tier-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  min-height: 1.75rem;
}

.work-tier-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(201, 162, 39, 0.55);
}

.work-tier-card--entry .work-tier-num {
  color: var(--gold-muted);
}

.work-tier-badge {
  padding: 0.22rem 0.6rem;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(201, 162, 39, 0.16);
  border: 1px solid rgba(201, 162, 39, 0.32);
  border-radius: 999px;
  white-space: nowrap;
}

.work-tier-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.22;
}

.work-tier-title a {
  color: var(--text);
  text-decoration: none;
}

.work-tier-title a:hover {
  color: var(--gold-muted);
}

.work-tier-lead {
  flex: 1;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.work-tier-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.15rem;
}

.work-tier-tag {
  padding: 0.28rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.work-tier-card--entry .work-tier-tag {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(201, 162, 39, 0.22);
  color: var(--text);
}

.work-tier-link {
  margin-top: 0.35rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gold-muted);
  text-decoration: none;
}

.work-tier-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

@media (min-width: 900px) {
  .work-ladder-panel {
    padding: 1.15rem;
  }

  .work-ladder {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
  }

  .work-ladder-connector {
    display: block;
    align-self: center;
    width: 1.35rem;
    height: 2px;
    margin-inline: 0.15rem;
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.55), rgba(201, 162, 39, 0.15));
    position: relative;
  }

  .work-ladder-connector::after {
    content: "";
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid rgba(201, 162, 39, 0.55);
  }

  .work-tier-card {
    padding: 1.35rem 1.15rem 1.15rem;
  }
}

@media (max-width: 899px) {
  .work-tier-card {
    padding-left: 1.15rem;
    border-left: 3px solid rgba(201, 162, 39, 0.35);
  }

  .work-tier-card--entry {
    border-left-color: var(--gold);
  }
}

.work-shell--retainer {
  background: linear-gradient(180deg, var(--surface) 0%, rgba(201, 162, 39, 0.04) 100%);
}

.work-blocker-list--sessions {
  margin-bottom: 0.5rem;
}

.work-outcome-list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.work-outcome-list li {
  padding: 0.65rem 0.85rem 0.65rem 2rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--text);
  background: rgba(201, 162, 39, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: 10px;
  position: relative;
}

.work-outcome-list li::before {
  content: "→";
  position: absolute;
  left: 0.85rem;
  color: var(--gold-muted);
  font-weight: 600;
}

.work-check-list {
  margin: 0 0 1rem;
  padding: 0 0 0 1.15rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.work-check-list li {
  margin-bottom: 0.35rem;
}

.work-check-list li:last-child {
  margin-bottom: 0;
}

.work-meta-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.work-meta-list div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.5rem;
  align-items: baseline;
}

.work-meta-list dt {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.work-meta-list dd {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text);
}

.work-not-for {
  margin: 1.25rem 0 0;
  padding: 1rem 1.15rem;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--text-muted);
  font-style: italic;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  border-radius: 0 10px 10px 0;
}

.work-closing {
  text-align: center;
}

.work-closing-lead {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.55rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.25;
  color: var(--text);
}

.work-closing-punch {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-muted);
}

.work-cta {
  margin: 0;
  text-align: center;
}

@media (min-width: 640px) {
  .work-offer-ctas {
    grid-template-columns: 1fr 1fr;
  }

  .work-shell {
    padding: 2.25rem 2rem;
  }

  .work-blocker-list {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
}

@media (max-width: 639px) {
  .work-hero {
    padding: 6rem 1.25rem 2rem;
  }

  .work-shell {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 1.65rem 1.25rem;
  }

  .work-page-footer {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .work-offer-card {
    padding: 1.5rem 1.2rem;
  }
}

/* Legacy offerings (if used elsewhere) */
.offerings {
  margin: 2rem 0;
}

.offering {
  padding: 2rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.offering h3 {
  margin-top: 0;
}

/* Contact page */
.page-contact {
  background: var(--bg);
}

.contact-page {
  padding-bottom: 4rem;
}

.contact-hero {
  padding: 7rem 2rem 2.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--warm-surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--warm-border);
}

.contact-hero-inner {
  max-width: 40rem;
  margin: 0 auto;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.contact-hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  margin: 0 0 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.contact-lead {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.contact-lead em {
  font-style: italic;
  color: var(--text);
}

.contact-trust-bar {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0;
  padding: 0.55rem 1.1rem;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
}

.contact-confidentiality-note {
  margin: 0.85rem auto 0;
  max-width: 28rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  text-align: center;
}

.contact-trust-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-muted);
  flex-shrink: 0;
  opacity: 0.55;
}

.contact-shell {
  max-width: 50rem;
  margin: 1.5rem auto 0;
  padding: 1.35rem 1.25rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.contact-shell-header {
  text-align: center;
  margin-bottom: 1rem;
}

.contact-shell-header--left {
  text-align: left;
}

.contact-shell-eyebrow {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-shell-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.contact-paths {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: stretch;
}

@media (min-width: 720px) {
  .contact-paths {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 0.85rem;
  }
}

.contact-path-or {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0;
  position: relative;
}

@media (min-width: 720px) {
  .contact-path-or {
    padding: 0;
  }

  .contact-path-or::before,
  .contact-path-or::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 1px;
    background: var(--warm-border);
    transform: translateX(-50%);
  }

  .contact-path-or::before {
    top: 0;
    bottom: calc(50% + 1.1rem);
  }

  .contact-path-or::after {
    top: calc(50% + 1.1rem);
    bottom: 0;
  }
}

.contact-path-or span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
}

.contact-path {
  padding: 1rem 1.05rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--warm-surface);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.contact-path--primary {
  background: var(--surface);
  border-color: rgba(201, 162, 39, 0.32);
  border-left: 3px solid var(--gold-muted);
}

.contact-path--primary .contact-path-desc {
  color: var(--text-muted);
}

.contact-path--primary h3 {
  color: var(--text);
}

.contact-path--primary .contact-path-num {
  background: rgba(201, 162, 39, 0.12);
  color: var(--text);
  border-color: rgba(201, 162, 39, 0.28);
}

.contact-path--form {
  background: var(--warm-surface);
  border-color: var(--border);
}

.contact-path--form .contact-path-num {
  background: var(--surface);
  border-color: var(--border);
}

.contact-path-header {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.contact-path-headcopy {
  flex: 1;
  min-width: 0;
}

.contact-path-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.contact-path-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.contact-path-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  margin-top: 0.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-path-badge {
  padding: 0.25rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-muted);
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 999px;
}

.contact-path h3 {
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 2vw, 1.22rem);
  font-weight: 600;
  margin: 0 0 0.2rem;
  line-height: 1.2;
}

.contact-path-desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.contact-path-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
}

.contact-path-specs li {
  padding: 0.22rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  background: var(--warm-surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.contact-path--primary .contact-path-specs li {
  background: rgba(201, 162, 39, 0.08);
  border-color: rgba(201, 162, 39, 0.2);
}

.contact-path .btn-block {
  margin-top: auto;
  padding: 0.72rem 1rem;
  font-size: 0.92rem;
}

.contact-path-benefits {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  flex-grow: 1;
}

.contact-path-benefit {
  position: relative;
  padding: 0.6rem 0.8rem 0.6rem 2rem;
  font-size: 0.9rem;
  line-height: 1.4;
  border-radius: 10px;
}

.contact-path--primary .contact-path-benefit {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-path-benefit--primary {
  font-weight: 600;
  color: white;
  background: rgba(201, 162, 39, 0.12);
  border-color: rgba(201, 162, 39, 0.28);
}

.contact-path-benefit::before {
  content: "✓";
  position: absolute;
  left: 0.7rem;
  top: 0.68rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-muted);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.contact-form {
  max-width: 100%;
  margin: 0;
  text-align: left;
}

.form-field {
  margin-bottom: 0.65rem;
}

.contact-form-grid {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 520px) {
  .contact-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
}

.contact-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.62rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0;
  background: var(--surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-muted);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.contact-form textarea {
  min-height: 84px;
  resize: vertical;
}

.contact-form .btn-outline-dark {
  margin-top: 0.15rem;
  padding: 0.72rem 1rem;
  font-size: 0.92rem;
  border-color: var(--border);
}

.contact-form .btn-outline-dark:hover {
  border-color: var(--gold-muted);
  color: var(--gold-muted);
}

.contact-success {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 12px;
  background: rgba(201, 162, 39, 0.06);
}

.contact-success h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
}

.contact-success p {
  margin: 0;
  color: var(--text-muted);
}

.contact-alt {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.contact-alt--compact {
  margin-top: 0.95rem;
  padding-top: 0.75rem;
}

.contact-alt-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.65rem;
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: center;
}

.contact-alt-strip a {
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.contact-alt-strip a:hover {
  color: var(--gold-muted);
  text-decoration: underline;
}

.contact-alt-static {
  color: var(--text-muted);
}

.contact-alt-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-muted);
  opacity: 0.45;
  flex-shrink: 0;
}

.contact-alt-label {
  margin: 0 0 0.85rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-alt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.contact-alt-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--warm-border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-alt-card:hover {
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 6px 18px rgba(201, 162, 39, 0.08);
  transform: translateY(-1px);
  text-decoration: none;
}

.contact-alt-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.contact-alt-card-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  word-break: normal;
  overflow-wrap: anywhere;
}

.contact-alt-card--email .contact-alt-card-value {
  font-size: clamp(0.82rem, 2.5vw, 0.92rem);
  letter-spacing: -0.01em;
}

a.contact-alt-card:hover .contact-alt-card-value {
  color: var(--gold-muted);
}

.contact-alt-card--static {
  cursor: default;
  background: rgba(255, 255, 255, 0.45);
}

.contact-alt-card--static:hover {
  transform: none;
  border-color: var(--warm-border);
  box-shadow: none;
}

@media (min-width: 640px) {
  .contact-alt-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-alt-card--email {
    grid-column: 1 / -1;
    text-align: center;
  }
}

@media (min-width: 720px) {
  .contact-shell {
    padding: 1.5rem 1.35rem 1.15rem;
  }
}

/* Legacy contact (index sections) */

.contact-direct {
  max-width: 560px;
  margin: 1.25rem auto 0;
  padding: 2rem 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.contact-direct p {
  margin: 0.5rem 0;
}

.contact-direct p:first-child {
  margin-bottom: 1rem;
}

.contact-direct strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.contact-direct a {
  font-weight: 600;
}

.contact-linkedin {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  background: #f7f8fb;
  transition: all 0.2s ease;
  text-decoration: none;
}

.contact-linkedin:hover {
  color: #1a1a1a;
  background: var(--gold);
  border-color: var(--gold-muted);
  text-decoration: none;
  transform: translateY(-1px);
}

.contact-risk-note {
  margin-top: 1rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 920px;
  margin: 0 auto 2rem;
}

.contact-option-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.contact-option-card h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
}

.contact-option-card p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

@media (min-width: 720px) {
  .contact-options {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

/* Page titles */
.page-hero {
  padding: 7rem 2rem 3rem;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.5rem;
}

.page-hero p {
  color: var(--text-muted);
  margin: 0.5rem 0 0;
}

.about-hero p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 720px) {
  .about-intro {
    padding: 5.5rem 1.25rem 2rem;
  }

  .about-intro-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: center;
  }

  .about-intro-copy h1,
  .about-subhead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-portrait {
    margin: 0 auto;
    width: 168px;
    height: 168px;
  }

  .page-about .credential-panel {
    margin: 0 1rem;
    margin-top: -0.5rem;
    padding: 1.75rem 1.25rem 1.5rem;
  }

  .path-timeline::before {
    left: 1rem;
  }

  .path-item {
    grid-template-columns: 2.25rem 1fr;
    gap: 0.65rem 0.9rem;
  }

  .credential-close-insight {
    padding: 1.35rem 1.1rem 1.1rem;
  }

  .credential-today {
    padding: 1rem 1.1rem 1.1rem;
  }

  .about-conversion,
  .about-story {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about-conversion-inner {
    padding: 1.35rem 1.15rem;
  }

  .bio-narrative {
    padding: 1.5rem 1.15rem 1.35rem;
  }

  .bio-narrative-lead {
    font-size: 1.35rem;
  }
}

/* Responsive */
@media (max-width: 640px) {
  .site-nav {
    padding: 0.75rem 1rem;
  }

  .nav-links {
    gap: 1.25rem;
  }

  .hero {
    min-height: 80vh;
    padding: 5rem 1rem 3rem;
  }

  .page-home .hero {
    min-height: clamp(500px, 82vh, 680px);
  }

  .page-home .hero-image {
    object-position: center 10%;
  }

  .page-home .hero-inner {
    top: 54%;
    width: calc(100% - 1.5rem);
    padding: 0.9rem 1rem 0.8rem;
  }

  .page-home .hero h1 {
    font-size: clamp(1.65rem, 6vw, 2rem);
  }

  .page-home .hero-tagline {
    font-size: clamp(1.05rem, 4vw, 1.25rem);
    margin-bottom: 1rem;
  }

  .home-intro {
    padding: 2rem 1.25rem;
  }

  .home-band {
    padding: 2.5rem 1.25rem;
  }

  .home-band--process {
    padding: 2.5rem 1.25rem 3rem;
  }

  .home-split {
    gap: 2rem;
  }

  .home-problem {
    padding-right: 0;
    border-right: none;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
  }

  .credibility-bar {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: 100%;
  }

  .home-shell {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 2rem 1.25rem;
  }

  .home-consulting {
    padding: 2rem 1rem;
  }

  .home-consulting--panel .home-consulting-inner {
    padding: 1.75rem 1.25rem 1.5rem;
  }

  .home-trust-bar {
    padding: 2rem 1rem 2.5rem;
  }

  .nav-cta {
    padding: 0.4rem 0.75rem !important;
    font-size: 0.82rem !important;
  }
}
