/* ==========================================================
   Christoph Sacher, MSc. — Coaching site
   Dark / light alternating, gold accents
   ========================================================== */

:root {
  --bg-dark: #0a0a0a;
  --bg-dark-2: #111111;
  --bg-light: #f4efe7;
  --bg-light-2: #ffffff;
  --bg-cream: #ece5d8;

  --text-on-dark: #ffffff;
  --text-on-dark-muted: #a8a8a8;
  --text-on-light: #1a1a1a;
  --text-on-light-muted: #5e5852;

  --gold: #c9a671;
  --gold-bright: #e3c89c;
  --gold-faint: rgba(201, 166, 113, 0.22);

  --border-on-dark: rgba(255, 255, 255, 0.08);
  --border-on-light: rgba(26, 26, 26, 0.10);
  --gold-line: rgba(201, 166, 113, 0.35);

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;

  --max: 1240px;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-on-light);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ==========================================================
   NAV
   ========================================================== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border-on-dark);
  transition: background .3s ease;
}
.main-nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-on-dark);
}

.nav-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.logo-mark {
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  border: 1px solid var(--gold-line);
  padding: 0.25rem 0.55rem;
  border-radius: 2px;
}
.logo-name {
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
}
.logo-name em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  margin-left: 0.25rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links .nav-cta {
  border: 1px solid var(--gold-line);
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
  color: var(--gold-bright);
}
.nav-links .nav-cta:hover {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}
.nav-lang {
  display: inline-flex;
  align-items: center;
}
.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  padding: 2px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color .3s ease, background .3s ease;
}
.lang-switch:hover {
  border-color: rgba(201, 166, 113, 0.35);
}
.lang-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  padding: 5px 11px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: color .35s ease;
}
.lang-pill:hover:not(.is-active) {
  color: rgba(255, 255, 255, 0.95);
}
.lang-pill.is-active {
  color: #0a0a0a;
  cursor: default;
}
/* Sliding gold thumb */
.lang-switch::before {
  content: '';
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  width: calc(50% - 2px);
  background: var(--gold);
  border-radius: 999px;
  transition: transform .4s cubic-bezier(.65, .05, .25, 1);
  z-index: 1;
  box-shadow: 0 2px 6px rgba(201, 166, 113, 0.25);
}
.lang-switch[data-active="de"]::before {
  transform: translateX(100%);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
}
.nav-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold-bright);
  transition: transform .25s, opacity .25s;
}
.nav-toggle span:nth-child(1) { top: 2px; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 2px; }
.main-nav.open .nav-toggle span:nth-child(1) {
  top: 50%; transform: translateY(-50%) rotate(45deg);
}
.main-nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.main-nav.open .nav-toggle span:nth-child(3) {
  bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg);
}

/* ==========================================================
   HERO — image right, text left
   ========================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 120px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 30%;
  filter: brightness(0.96) contrast(1.06);
  transform-origin: 70% 38%;
  animation: heroZoom 22s ease-in-out infinite alternate;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.4) 12%, #000 38%, #000 100%);
          mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.4) 12%, #000 38%, #000 100%);
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1.22); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-image img { animation: none; transform: scale(1.15); }
}
.hero-image-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, transparent 22%, transparent 78%, rgba(10, 10, 10, 0.55) 100%);
}

.hero-inner {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 1rem var(--pad-x) 2rem;
}

.hero-content {
  max-width: 560px;
  position: relative;
}
.hero-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
  color: #fff;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.6);
}
.hero-title .dot { color: var(--gold); }
.hero-name {
  margin-top: 1rem;
  color: var(--gold);
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-rule {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.4rem 0 1.7rem;
}
.hero-sub {
  max-width: 460px;
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  letter-spacing: 0.005em;
}

/* Hero CTA + rating row */
.hero-cta-row {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn-gold {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
  padding: 1.05rem 1.8rem;
  position: relative;
  overflow: hidden;
}
.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-1px);
}

/* Rating (inline next to CTA) */
.hero-rating {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.stars {
  display: inline-flex;
  gap: 0.2rem;
  color: var(--gold);
}
.stars svg {
  width: 16px;
  height: 16px;
  filter: drop-shadow(0 0 6px rgba(201, 166, 113, 0.35));
}
.rating-text {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
}
.rating-text strong {
  color: #fff;
  font-weight: 600;
}

/* Hero bottom bar */
.hero-bar {
  border-top: 1px solid var(--border-on-dark);
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
  padding: 1.4rem 0;
  position: relative;
  z-index: 3;
}
.hero-bar::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}
.hero-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color .3s;
  cursor: default;
}
.hero-bar-item:hover {
  color: #fff;
}
.hero-bar-item:hover svg {
  color: var(--gold-bright);
}
.hero-bar-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  transition: color .3s;
}
.hero-bar-sep {
  width: 1px;
  height: 18px;
  background: linear-gradient(180deg, transparent, rgba(201, 166, 113, 0.25), transparent);
}

/* ==========================================================
   SECTIONS — shared
   ========================================================== */
.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  position: relative;
}
.section-light {
  background: var(--bg-light);
  color: var(--text-on-light);
}
.section-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.two-col {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.col-label {
  position: sticky;
  top: 100px;
  align-self: start;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-on-light-muted);
  font-weight: 500;
  border-top: 1px solid var(--border-on-light);
  padding-top: 0.85rem;
}
.section-tag.gold {
  color: var(--gold);
  border-top-color: var(--gold-line);
}
.section-dark .section-tag {
  color: var(--gold);
  border-top-color: var(--gold-line);
}

.display {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--text-on-light);
  margin-bottom: 1.6rem;
}
.display em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.display.light { color: var(--text-on-dark); }

.lead {
  font-size: clamp(1.05rem, 1.15vw, 1.18rem);
  line-height: 1.65;
  color: var(--text-on-light);
  margin-bottom: 1.3rem;
  max-width: 60ch;
}
.lead.light { color: rgba(255, 255, 255, 0.86); }

.col-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-on-light-muted);
  margin-bottom: 1.1rem;
  max-width: 62ch;
}
.section-dark .col-content p { color: var(--text-on-dark-muted); }

.section-head {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head .section-tag { margin-bottom: 1.4rem; }
.section-head .display { margin-bottom: 1.2rem; }
.section-sub {
  color: var(--text-on-light-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 60ch;
}
.section-dark .section-sub { color: rgba(255, 255, 255, 0.72); }
.section-head-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head-center .section-tag { display: inline-block; }

/* ==========================================================
   ABOUT — credentials
   ========================================================== */
.credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.6rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--border-on-light);
}
.credential {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.credential-num {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--gold);
}
.credential-label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--text-on-light-muted);
}

/* About — explore CTAs */
.about-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.4rem 0 0.8rem;
}
.about-btn {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 1.5rem;
  background: var(--bg-light-2);
  border: 1px solid var(--border-on-light);
  border-radius: 3px;
  text-decoration: none;
  color: var(--text-on-light);
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.about-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}
.about-btn:hover {
  border-color: var(--gold-line);
  background: #fffdf6;
  transform: translateY(-2px);
}
.about-btn:hover::before { transform: scaleY(1); }
.about-btn-label {
  grid-column: 1;
  grid-row: 1;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.about-btn-title {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--text-on-light);
  letter-spacing: -0.005em;
  margin-top: 0.2rem;
}
.about-btn-arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.4rem;
  transition: transform .3s ease;
}
.about-btn:hover .about-btn-arrow { transform: translateX(4px); }

@media (max-width: 760px) {
  .about-cta { grid-template-columns: 1fr; }
}

/* ==========================================================
   PROGRAMS (cards)
   ========================================================== */
.programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.program {
  position: relative;
  padding: 2.4rem 2rem 2.2rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-on-dark);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  transition: transform .3s, border-color .3s, background .3s;
}
.program:hover {
  border-color: var(--gold-line);
  background: rgba(201, 166, 113, 0.04);
  transform: translateY(-4px);
}
.program-feature {
  background: rgba(201, 166, 113, 0.05);
  border-color: var(--gold-line);
}
.program-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.program-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.65rem;
  letter-spacing: 0.005em;
  color: #fff;
  margin-bottom: 0.5rem;
}
.program-pitch {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-bright);
  margin-bottom: 1.4rem;
}
.program > p:not(.program-pitch) {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
  margin-bottom: 1.4rem;
  font-size: 0.96rem;
}
.program-list {
  list-style: none;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-on-dark);
}
.program-list li {
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
  padding: 0.4rem 0 0.4rem 1rem;
  position: relative;
}
.program-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.program-cta {
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.7rem;
  padding: 0.95rem 1.1rem;
  background: transparent;
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  color: var(--gold-bright);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
}
.program-cta span { transition: transform .25s; }
.program-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}
.program-cta:hover span { transform: translateX(4px); }
.program-feature .program-cta {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}
.program-feature .program-cta:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

/* light variant */
.program-light {
  background: var(--bg-light-2);
  border-color: var(--border-on-light);
}
.program-light:hover {
  border-color: var(--gold);
  background: #fffdf9;
}
.program-light.program-feature {
  background: #fdf8ee;
  border-color: var(--gold);
}
.program-light .program-title { color: var(--text-on-light); }
.program-light .program-pitch { color: var(--gold); }
.program-light > p:not(.program-pitch) { color: var(--text-on-light-muted); }
.program-light .program-list { border-top-color: var(--border-on-light); }
.program-light .program-list li { color: var(--text-on-light-muted); }

/* ==========================================================
   APPROACH grid
   ========================================================== */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem 2.6rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-on-dark);
}
.approach-item {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.approach-num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.approach-item h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.2rem;
  color: #fff;
}
.approach-item p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
  font-size: 0.96rem;
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
}
@media (max-width: 1000px) {
  .testimonials { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .testimonials { grid-template-columns: 1fr; }
}
.testimonial {
  background: var(--bg-light-2);
  border: 1px solid var(--border-on-light);
  padding: 1.8rem 1.6rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: border-color .25s ease, transform .25s ease;
}
.testimonial:hover {
  border-color: var(--gold-line);
  transform: translateY(-2px);
}
.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  background: rgba(0, 0, 0, 0.04);
  position: relative;
}
.testimonial-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 166, 113, 0.25);
  pointer-events: none;
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(1.02);
}
.testimonial blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--text-on-light);
  position: relative;
  padding-top: 0.6rem;
  flex: 1;
}
.testimonial blockquote::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: -0.25rem;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.testimonial figcaption {
  border-top: 1px solid var(--border-on-light);
  padding-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.testimonial-name {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.testimonial-role {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-light-muted);
}

/* ==========================================================
   PROCESS — connected timeline
   ========================================================== */
.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.6rem);
  padding: 2rem 0 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 2%, var(--gold-line) 14%, var(--gold-line) 86%, transparent 98%);
  z-index: 0;
}
.process-steps li {
  position: relative;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.process-num {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 0;
  margin-top: -2rem;
  margin-bottom: 0.8rem;
  transition: all .35s ease;
}
.process-num::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 166, 113, 0.15), transparent 70%);
  filter: blur(10px);
  opacity: 0;
  transition: opacity .35s;
  z-index: -1;
}
.process-steps li:hover .process-num {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: scale(1.04);
}
.process-steps li:hover .process-num::before { opacity: 1; }

.process-steps h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.55rem;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.005em;
}
.process-steps p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ==========================================================
   CONTACT
   ========================================================== */
.section-contact { padding-bottom: clamp(5rem, 9vw, 8rem); }
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  background: var(--bg-light-2);
  padding: clamp(2.5rem, 5vw, 4rem);
  border: 1px solid var(--border-on-light);
  border-radius: 2px;
}
.contact-left .section-tag { margin-bottom: 1.4rem; }
.contact-meta {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border-on-light);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.contact-line {
  font-size: 0.94rem;
  color: var(--text-on-light-muted);
  letter-spacing: 0.02em;
}
a.contact-line {
  color: var(--text-on-light);
  font-weight: 500;
}
a.contact-line:hover { color: var(--gold); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-light-muted);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: 1px solid var(--border-on-light);
  background: transparent;
  color: var(--text-on-light);
  border-radius: 0;
  transition: border-color .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 90px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s;
  align-self: flex-start;
}
.btn-primary {
  background: var(--text-on-light);
  color: #fff;
  border-color: var(--text-on-light);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}
.btn-outline {
  background: transparent;
  color: var(--gold-bright, #d9b885);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0a0a0a;
}
.btn-outline svg { width: 1.05em; height: 1.05em; }
.form-note {
  font-size: 0.92rem;
  color: var(--gold);
  margin-top: 0.5rem;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border-on-dark);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.65rem;
}
.footer-links {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.footer-links a:hover { color: var(--gold); }
.footer-meta {
  display: flex;
  gap: 1.3rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}
.footer-meta a:hover { color: var(--gold); }

/* ==========================================================
   QUALIFICATION MODAL (assessment) — adapted from dpre/mesut
   ========================================================== */
:root {
  --qm-cream: #faf8f4;
  --qm-bone: #f6f2ec;
  --qm-obsidian: #0b0b0c;
  --qm-text: #3a3a3d;
  --qm-text-muted: #787879;
  --qm-line: rgba(11, 11, 12, 0.1);
  --qm-gold: #c9a671;
  --qm-gold-dark: #8a6d42;
  --qm-ease: cubic-bezier(0.25, 0.8, 0.35, 1);
}

.qm {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.qm.is-open { display: flex; }

.qm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 8, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: qmFade 0.4s var(--qm-ease);
}
@keyframes qmFade { from { opacity: 0; } to { opacity: 1; } }

.qm-panel {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 80px);
  background: var(--qm-cream);
  border: 1px solid rgba(11, 11, 12, 0.06);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(201, 166, 113, 0.18);
  animation: qmRise 0.55s var(--qm-ease);
  font-family: var(--font-sans);
  color: var(--qm-text);
}
@keyframes qmRise {
  from { opacity: 0; transform: translateY(24px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.qm-close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 5;
  background: none;
  border: none;
  color: var(--qm-text-muted);
  font-size: 1.5rem;
  line-height: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s var(--qm-ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qm-close:hover {
  color: var(--qm-gold);
  background: rgba(11, 11, 12, 0.05);
}

.qm-head {
  padding: 26px 40px 18px;
  border-bottom: 1px solid var(--qm-line);
  display: flex;
  align-items: center;
  gap: 24px;
}
.qm-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
}
.qm-brand-mark {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--qm-obsidian);
  border-right: 1px solid rgba(11, 11, 12, 0.2);
  padding-right: 10px;
}
.qm-brand-text {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--qm-text-muted);
}
.qm-progress {
  flex: 1;
  height: 2px;
  background: rgba(11, 11, 12, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.qm-progress-bar {
  height: 100%;
  width: 20%;
  background: var(--qm-gold);
  transition: width 0.5s var(--qm-ease);
}
.qm-step-indicator {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  color: var(--qm-gold-dark);
  letter-spacing: 0.08em;
  min-width: 38px;
  text-align: right;
}
.qm-step-sep {
  margin: 0 2px;
  color: rgba(11, 11, 12, 0.25);
}

.qm-body {
  padding: 32px 40px 28px;
  overflow-y: auto;
  flex: 1;
}

.qm-step {
  display: none;
  animation: qmStep 0.45s var(--qm-ease);
}
.qm-step.is-active { display: block; }
@keyframes qmStep {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.qm-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--qm-gold-dark);
  margin-bottom: 16px;
}
.qm-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.05rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--qm-obsidian);
  margin-bottom: 12px;
}
.qm-title em {
  color: var(--qm-gold);
  font-style: italic;
}
.qm-lede {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--qm-text);
  margin-bottom: 26px;
  max-width: 540px;
}

/* Choice cards */
.qm-choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qm-choice { cursor: pointer; }
.qm-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.qm-choice-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(11, 11, 12, 0.1);
  border-radius: 2px;
  transition: all 0.3s var(--qm-ease);
  background: #ffffff;
}
.qm-choice:hover .qm-choice-inner {
  border-color: rgba(201, 166, 113, 0.55);
  background: rgba(201, 166, 113, 0.04);
  transform: translateX(2px);
}
.qm-choice input:checked + .qm-choice-inner {
  border-color: var(--qm-gold);
  background: rgba(201, 166, 113, 0.08);
  box-shadow: inset 0 0 0 1px var(--qm-gold);
}
.qm-choice-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--qm-gold);
  min-width: 24px;
  text-align: center;
}
.qm-choice-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.qm-choice-text strong {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--qm-obsidian);
  letter-spacing: -0.005em;
}
.qm-choice-text em {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--qm-text-muted);
  line-height: 1.5;
}
.qm-choices-compact .qm-choice-inner { padding: 13px 18px; }
.qm-choices-compact .qm-choice-text strong { font-size: 0.93rem; }

/* Sub-questions */
.qm-sub {
  display: none;
  margin-top: 4px;
}
.qm-sub.is-visible {
  display: block;
  animation: qmStep 0.4s var(--qm-ease);
}

/* Fields */
.qm-field { margin-bottom: 20px; }
.qm-field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--qm-gold-dark);
  margin-bottom: 10px;
}
.qm-field input[type="text"],
.qm-field input[type="email"],
.qm-field input[type="tel"],
.qm-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(11, 11, 12, 0.18);
  padding: 10px 0;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: var(--qm-obsidian);
  transition: border-color 0.3s var(--qm-ease);
  border-radius: 0;
}
.qm-field input::placeholder,
.qm-field textarea::placeholder {
  color: var(--qm-text-muted);
  opacity: 0.6;
}
.qm-field input:focus,
.qm-field textarea:focus {
  outline: none;
  border-bottom-color: var(--qm-gold);
}
.qm-field textarea {
  resize: vertical;
  min-height: 72px;
}

.qm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* Pill bar selector */
.qm-pillbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.qm-pillbar button {
  background: #ffffff;
  color: var(--qm-text);
  border: 1px solid rgba(11, 11, 12, 0.15);
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s var(--qm-ease);
}
.qm-pillbar button:hover {
  border-color: rgba(201, 166, 113, 0.6);
  color: var(--qm-obsidian);
  background: rgba(201, 166, 113, 0.06);
}
.qm-pillbar button.is-active {
  background: var(--qm-gold);
  border-color: var(--qm-gold);
  color: #0a0a0a;
}

.qm-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--qm-text);
  margin-top: 12px;
  cursor: pointer;
  line-height: 1.55;
}
.qm-consent input {
  margin-top: 4px;
  accent-color: var(--qm-gold);
}

/* Footer */
.qm-footer {
  padding: 18px 40px;
  border-top: 1px solid var(--qm-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--qm-bone);
}
.qm-footer-note {
  font-size: 0.76rem;
  color: var(--qm-text-muted);
  letter-spacing: 0.06em;
  flex: 1;
  text-align: center;
}
.qm-btn {
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.3s var(--qm-ease);
  white-space: nowrap;
}
.qm-btn-ghost {
  background: transparent;
  color: var(--qm-text-muted);
  border-color: rgba(11, 11, 12, 0.2);
}
.qm-btn-ghost:hover {
  color: var(--qm-obsidian);
  border-color: rgba(11, 11, 12, 0.45);
  background: #ffffff;
}
.qm-btn-ghost:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.qm-btn-primary {
  background: var(--qm-obsidian);
  color: var(--qm-cream);
  border-color: var(--qm-obsidian);
}
.qm-btn-primary:hover:not(:disabled) {
  background: var(--qm-gold);
  border-color: var(--qm-gold);
  color: var(--qm-obsidian);
}
.qm-btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: rgba(11, 11, 12, 0.2);
  border-color: transparent;
  color: rgba(255, 255, 255, 0.7);
}

/* Done step */
.qm-done {
  text-align: center;
  padding: 16px 0;
}
.qm-done-mark {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid var(--qm-gold);
  color: var(--qm-gold);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: qmCheck 0.7s var(--qm-ease);
}
@keyframes qmCheck {
  0% { opacity: 0; transform: scale(0.6); }
  60% { transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
.qm-done .qm-lede {
  margin-left: auto;
  margin-right: auto;
}
.qm-done a {
  color: var(--qm-gold-dark);
  border-bottom: 1px solid rgba(138, 109, 66, 0.4);
}
.qm-done-summary {
  margin: 24px auto 0;
  max-width: 420px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.qm-done-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--qm-line);
  font-size: 0.88rem;
}
.qm-done-summary-item:last-child { border-bottom: 0; }
.qm-done-summary-item .label {
  color: var(--qm-text-muted);
  letter-spacing: 0.04em;
}
.qm-done-summary-item .value {
  color: var(--qm-obsidian);
  font-weight: 500;
}

body.qm-open { overflow: hidden; }

@media (max-width: 720px) {
  .qm { padding: 0; }
  .qm-panel {
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    max-width: 100%;
  }
  .qm-head { padding: 20px 22px 16px; gap: 14px; }
  .qm-body { padding: 24px 22px; }
  .qm-footer { padding: 14px 22px; }
  .qm-row { grid-template-columns: 1fr; gap: 14px; }
  .qm-brand-text { display: none; }
  .qm-footer-note { display: none; }
  .qm-btn { padding: 12px 20px; }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1100px) {
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 0; }
  .hero-image {
    position: relative;
    width: 100%;
    height: 42vh;
    min-height: 280px;
    max-height: 420px;
  }
  .hero-image img {
    object-position: 72% 32%;
    transform-origin: 72% 32%;
    animation: heroZoomMobile 22s ease-in-out infinite alternate;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 45%, rgba(0,0,0,0.25) 75%, transparent 92%);
            mask-image: linear-gradient(180deg, #000 0%, #000 45%, rgba(0,0,0,0.25) 75%, transparent 92%);
  }
  @keyframes heroZoomMobile {
    from { transform: scale(1.30); }
    to   { transform: scale(1.42); }
  }
  .hero-image-fade {
    background:
      linear-gradient(180deg, transparent 0%, transparent 50%, rgba(10, 10, 10, 0.4) 80%, rgba(10, 10, 10, 0.85) 100%);
  }
  .hero-inner {
    padding: 1.5rem var(--pad-x) 2rem;
  }
  .hero-content { max-width: 720px; margin: 0 auto; text-align: center; }
  .hero-rule { margin-left: auto; margin-right: auto; }
  .hero-sub { margin: 0 auto; }
  .hero-cta-row { justify-content: center; }

  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .col-label { position: static; }

  .programs { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .testimonials { grid-template-columns: 1fr; }
  .process-steps {
    grid-template-columns: 1fr;
    padding: 1rem 0 0;
    gap: 1.8rem;
    position: relative;
  }
  .process-steps::before {
    top: 1.5rem;
    bottom: 1.5rem;
    left: 23px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent 0%, var(--gold-line) 8%, var(--gold-line) 92%, transparent 100%);
  }
  .process-steps li {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .process-num {
    width: 48px;
    height: 48px;
    font-size: 1.05rem;
    margin: 0;
    flex: none;
  }
  .process-content {
    flex: 1;
    min-width: 0;
    padding-top: 0.4rem;
  }
  .process-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  .process-content p {
    font-size: 0.92rem;
  }
  .contact-card { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem var(--pad-x) 2rem;
    gap: 1.2rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s, transform .25s;
    border-bottom: 1px solid var(--border-on-dark);
  }
  .main-nav.open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links .nav-cta { width: 100%; text-align: center; }
  .logo-name { display: none; }

  .hero { padding-top: 88px; }
  .hero-image { height: 38vh; min-height: 240px; max-height: 320px; }
  .hero-image img { object-position: 65% 22%; }
  .hero-inner { padding: 0.5rem var(--pad-x) 2rem; margin-top: -3.5rem; }
  .hero-title { font-size: clamp(2.6rem, 13vw, 3.6rem) !important; }
  .hero-name { font-size: 0.78rem; letter-spacing: 0.28em; }
  .hero-sub { font-size: 0.95rem; }
  .hero-cta-row {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.8rem;
  }
  .hero-cta-row .btn {
    align-self: center;
    width: 100%;
    max-width: 320px;
  }
  .hero-rating { align-items: center; }

  .hero-bar { padding: 1rem 0; }
  .hero-bar-inner { gap: 0.7rem 1.2rem; flex-direction: column; }
  .hero-bar-sep { display: none; }
  .hero-bar-item { font-size: 0.72rem; letter-spacing: 0.22em; gap: 0.7rem; }
  .hero-bar-item svg { width: 17px; height: 17px; }

  .credentials { grid-template-columns: 1fr; gap: 1.2rem; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================
   BURNOUT LANDING PAGE
   ========================================================== */
body.page-burnout { background: var(--bg-dark); }

/* Minimal nav variant */
.main-nav-minimal .nav-inner {
  justify-content: space-between;
}
.nav-back {
  display: inline-flex;
  align-items: baseline;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color .2s;
}
.nav-back:hover { color: var(--gold); }
.nav-back-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 0.7rem;
}
.nav-back-name {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.nav-back-name em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  margin-left: 0.25rem;
}
.nav-right {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.nav-cta-solo {
  background: var(--gold);
  color: #0a0a0a;
  border: 1px solid var(--gold);
  padding: 0.65rem 1.3rem;
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s;
}
.nav-cta-solo:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

/* Burnout hero — serif headline + eyebrow */
.burnout-hero .hero-content { max-width: 620px; }
.burnout-hero .hero-eyebrow {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-title-serif {
  font-family: var(--font-serif) !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-size: clamp(2.8rem, 6vw, 5rem) !important;
  line-height: 1.0 !important;
  letter-spacing: -0.015em !important;
  text-transform: none !important;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-title-serif em {
  font-style: italic;
  color: var(--gold);
}

/* Signals grid */
.signals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-on-light);
  border: 1px solid var(--border-on-light);
  margin-top: 1rem;
}
.signal-card {
  background: var(--bg-light);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: background .2s;
}
.signal-card:hover { background: #fffdf6; }
.signal-num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}
.signal-card p {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.18rem;
  line-height: 1.45;
  color: var(--text-on-light);
  letter-spacing: -0.005em;
  margin: 0;
}

/* Phases */
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 3rem;
}
.phase {
  position: relative;
  padding: 2.4rem 2rem 2.2rem;
  background: var(--bg-light-2);
  border: 1px solid var(--border-on-light);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: all .3s;
}
.phase:hover {
  border-color: var(--gold-line);
  transform: translateY(-3px);
}
.phase-feature {
  background: #fdf6ea;
  border-color: var(--gold-line);
}
.phase-num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.phase-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--text-on-light);
  letter-spacing: -0.005em;
}
.phase-pitch {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-dark, #8a6d42);
  color: var(--gold);
}
.phase > p:not(.phase-pitch) {
  color: var(--text-on-light-muted);
  line-height: 1.7;
  font-size: 0.96rem;
}

.phases-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
}
.phases-cta .btn { align-self: center; }
.phases-cta-note {
  font-size: 0.82rem;
  color: var(--text-on-light-muted);
  letter-spacing: 0.04em;
}

.btn-lg {
  padding: 1.15rem 2.4rem;
  font-size: 0.9rem;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1rem;
  border-top: 1px solid var(--border-on-light);
}
.faq-item {
  border-bottom: 1px solid var(--border-on-light);
  padding: 1.4rem 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--text-on-light);
  letter-spacing: -0.005em;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform .3s;
  flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item:hover summary { color: var(--gold-dark, #8a6d42); }
.faq-item p {
  margin-top: 0.9rem;
  color: var(--text-on-light-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 65ch;
  animation: faqIn .3s ease;
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Final CTA */
.section-final-cta { padding-top: clamp(4rem, 7vw, 6rem); padding-bottom: clamp(5rem, 9vw, 8rem); }
.final-cta-card {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.final-cta-card .section-tag {
  display: inline-block;
  margin-bottom: 1.4rem;
}
.final-cta-actions {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.final-cta-actions .btn { align-self: center; }
.final-cta-mail {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
  transition: color .2s;
}
.final-cta-mail:hover { color: var(--gold); }

/* ==========================================================
   Bio card (compact founder/coach card on burnout pages)
   ========================================================== */
.section-bio { padding: 5rem 0; }
.bio-card {
  background: linear-gradient(180deg, #fbf6e9, #f6efdc);
  border: 1px solid rgba(201, 166, 113, 0.3);
  border-radius: 18px;
  padding: 2.5rem 2.6rem;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
}
.bio-card-head { text-align: left; margin-bottom: 1.6rem; }
.bio-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.bio-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 2.6rem);
  line-height: 1.05;
  color: #1a1a1a;
  margin: 0.5rem 0 0.35rem;
  letter-spacing: -0.01em;
}
.bio-sub {
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: rgba(26, 26, 26, 0.62);
  margin: 0;
}
.bio-card-body {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 2rem;
  align-items: start;
}
.bio-portrait {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold);
  background: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}
.bio-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bio-text p {
  color: #2a2a2a;
  line-height: 1.7;
  margin: 0;
}
.bio-quote {
  margin: 1.4rem 0 0;
  background: rgba(201, 166, 113, 0.16);
  border-left: 3px solid var(--gold);
  padding: 1.1rem 1.3rem;
  border-radius: 8px;
}
.bio-quote p {
  font-style: italic;
  font-size: 0.98rem;
  color: #2a2a2a;
  margin: 0;
}
.bio-quote footer {
  margin-top: 0.7rem;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a6f3f;
  font-weight: 500;
}
@media (max-width: 760px) {
  .section-bio { padding: 3rem 0; }
  .bio-card { padding: 1.8rem 1.4rem; border-radius: 14px; }
  .bio-card-body {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    justify-items: center;
    text-align: center;
  }
  .bio-portrait { width: 110px; height: 110px; border-width: 3px; }
  .bio-text { text-align: left; }
}

/* Burnout responsive */
@media (max-width: 1100px) {
  .signals-grid { grid-template-columns: repeat(2, 1fr); }
  .phases { grid-template-columns: 1fr; gap: 1rem; }
}
@media (max-width: 760px) {
  .nav-back-name { display: none; }
  .nav-cta-solo { padding: 0.55rem 1rem; font-size: 0.7rem; letter-spacing: 0.16em; }
  .signals-grid { grid-template-columns: 1fr; }
  .signal-card { padding: 1.5rem 1.2rem; }
  .signal-card p { font-size: 1.05rem; }
  .faq-item summary { font-size: 1.1rem; }

}

/* ==========================================================
   Sticky WhatsApp button — liquid glass, gold accent, smooth pulse
   ========================================================== */
.wa-sticky {
  position: fixed;
  right: max(1.5rem, env(safe-area-inset-right));
  bottom: calc(1.5rem + env(safe-area-inset-bottom));
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.42));
  -webkit-backdrop-filter: blur(28px) saturate(190%);
          backdrop-filter: blur(28px) saturate(190%);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 2px 2px rgba(255, 255, 255, 0.85),
    inset 0 -2px 3px rgba(0, 0, 0, 0.06),
    inset 0 0 0 1px rgba(201, 166, 113, 0.22),
    0 14px 36px rgba(0, 0, 0, 0.28),
    0 2px 8px rgba(0, 0, 0, 0.14);
  transition: transform .4s cubic-bezier(0.22, 0.61, 0.36, 1),
              background .35s ease,
              color .25s ease,
              box-shadow .35s ease;
}
.wa-sticky:hover {
  transform: translateY(-4px) scale(1.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.55));
  color: var(--gold-bright, #d9b885);
  box-shadow:
    inset 0 2px 2.5px rgba(255, 255, 255, 0.95),
    inset 0 -2px 3px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(201, 166, 113, 0.36),
    0 22px 50px rgba(0, 0, 0, 0.34),
    0 4px 12px rgba(0, 0, 0, 0.18);
}
.wa-sticky:active { transform: translateY(-2px) scale(1.02); }
.wa-sticky svg { width: 32px; height: 32px; display: block; }
.wa-sticky svg path { fill: currentColor; }

.wa-sticky::before,
.wa-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 166, 113, 0.55);
  pointer-events: none;
  z-index: -1;
  animation: waPulse 3.2s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}
.wa-sticky::after { animation-delay: 1.6s; }

@keyframes waPulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  80%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

@media (max-width: 760px) {
  .wa-sticky {
    width: 54px;
    height: 54px;
    right: max(1rem, env(safe-area-inset-right));
    bottom: calc(1rem + env(safe-area-inset-bottom));
    box-shadow:
      inset 0 1.5px 1.5px rgba(255, 255, 255, 0.55),
      inset 0 -1.5px 2px rgba(0, 0, 0, 0.08),
      inset 0 0 0 1px rgba(201, 166, 113, 0.18),
      0 8px 20px rgba(0, 0, 0, 0.34),
      0 1px 4px rgba(0, 0, 0, 0.14);
  }
  .wa-sticky:hover {
    box-shadow:
      inset 0 1.5px 2px rgba(255, 255, 255, 0.7),
      inset 0 -1.5px 2px rgba(0, 0, 0, 0.1),
      inset 0 0 0 1px rgba(201, 166, 113, 0.32),
      0 12px 26px rgba(0, 0, 0, 0.42),
      0 2px 6px rgba(0, 0, 0, 0.18);
  }
  .wa-sticky svg { width: 28px; height: 28px; }
}

@media (min-width: 761px) {
  .main-nav-minimal .nav-links {
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
  }
}
