/* ═══════════════════════════════════════════════════════════
   SHAPIRO-MENDOZA LEADERSHIP
   styles.css — single stylesheet for all pages
   ═══════════════════════════════════════════════════════════

   TABLE OF CONTENTS
   ─────────────────
   1.  Design Tokens
   2.  Reset & Base
   3.  Typography Helpers
   4.  Layout Helpers
   5.  Buttons
   6.  Navbar
   7.  Footer
   8.  Animations & Scroll Reveal
   9.  Global Responsive

   PAGE STYLES
   ───────────
   10. Home (index.html)
   11. About (about.html)       ← to be added
   12. Coaching (coaching.html) ← to be added
   13. Contact (contact.html)   ← to be added

   ═══════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────
   1. DESIGN TOKENS
───────────────────────────────────────── */
:root {
  --deep-teal:   #1E4D5C;
  --mid-teal:    #2E7D8C;
  --soft-teal:   #6BAFC0;
  --pale-teal:   #D4ECF0;
  --warm-white:  #F7F4F0;
  --warm-sand:   #E8E0D4;
  --deep-text:   #1A2428;
  --mid-text:    #4A5E64;
  --accent-gold: #B8935A;
  --gold-light:  #D4AD7A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-w:      1120px;
  --section-py: clamp(5rem, 8vw, 9rem);
  --section-px: clamp(1.5rem, 4vw, 3rem);
}


/* ─────────────────────────────────────────
   2. RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--warm-white);
  color: var(--deep-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* Ambient background layer — sits fixed behind all content */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(107,175,192,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 70%, rgba(184,147,90,0.04) 0%, transparent 55%);
}

section, footer, nav { position: relative; z-index: 1; }


/* ─────────────────────────────────────────
   3. TYPOGRAPHY HELPERS
───────────────────────────────────────── */
.label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-teal);
  margin-bottom: 0.85rem;
}

.label--light { color: var(--soft-teal); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.12;
  color: var(--deep-teal);
}

h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 400; }

p {
  font-size: clamp(0.88rem, 1vw, 0.97rem);
  color: var(--mid-text);
  line-height: 1.85;
}

em     { font-style: italic; }
strong { font-weight: 500; color: var(--deep-text); }


/* ─────────────────────────────────────────
   4. LAYOUT HELPERS
───────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section {
  padding: var(--section-py) var(--section-px);
}


/* ─────────────────────────────────────────
   5. BUTTONS
───────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-gold);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(212,236,240,0.32);
  color: rgba(212,236,240,0.82);
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.btn-ghost:hover {
  border-color: rgba(212,236,240,0.65);
  color: var(--pale-teal);
  background: rgba(212,236,240,0.06);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1.5px solid var(--mid-teal);
  color: var(--mid-teal);
  padding: 0.8rem 2rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}

.btn-outline:hover {
  background: var(--mid-teal);
  color: #fff;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mid-teal);
  transition: gap 0.2s, color 0.2s;
}

.link-arrow::after { content: '→'; }
.link-arrow:hover  { gap: 0.9rem; color: var(--deep-teal); }


/* ─────────────────────────────────────────
   6. NAVBAR
───────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem var(--section-px);
  display: flex;
  align-items: center;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

#nav.scrolled {
  background: rgba(247, 244, 240, 0.94);
  box-shadow: 0 1px 0 rgba(30,77,92,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--warm-white);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.5s;
  flex-shrink: 0;
}

#nav.scrolled .nav-logo { color: var(--deep-teal); }

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

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: rgba(247,244,240,0.82);
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

#nav.scrolled .nav-links a { color: var(--mid-text); }
.nav-links a:hover           { color: var(--accent-gold) !important; }

.nav-cta {
  background: var(--accent-gold) !important;
  color: #fff !important;
  padding: 0.52rem 1.3rem !important;
  border-radius: 3px;
  font-weight: 500 !important;
  letter-spacing: 0.07em !important;
  transition: background 0.25s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

/* On pages with light hero — nav logo and links start dark */
#nav.nav-dark .nav-logo         { color: var(--deep-teal); }
#nav.nav-dark .nav-links a      { color: var(--mid-text); }
#nav.nav-dark .nav-toggle span  { background: var(--deep-teal); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--warm-white);
  transition: background 0.5s, transform 0.3s, opacity 0.3s;
}

#nav.scrolled .nav-toggle span         { background: var(--deep-teal); }
.nav-toggle.open span:nth-child(1)     { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2)     { opacity: 0; }
.nav-toggle.open span:nth-child(3)     { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--deep-teal);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.nav-drawer.open { display: flex; opacity: 1; }

.nav-drawer a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--warm-white);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-drawer a:hover          { color: var(--pale-teal); }
.nav-drawer .btn-primary     { font-size: 0.8rem; margin-top: 1rem; }


/* ─────────────────────────────────────────
   7. FOOTER
───────────────────────────────────────── */
footer {
  position: relative;
  overflow: hidden;
  padding: 5rem var(--section-px) 3rem;
  text-align: center;
  background: linear-gradient(
    to bottom,
    #0c3847 0%,
    #1E4D5C 40%,
    #163845 100%
  );
}

/* Subtle radial depth — no sand, no horizon */
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 20%, rgba(46,125,140,0.25) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(30,77,92,0.3) 0%, transparent 55%);
  pointer-events: none;
}

/* water-shimmer div kept in HTML but repurposed as a no-op — leaving in place so HTML doesn't need to change */
footer .water-shimmer { display: none; }

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  padding-bottom: 0;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--warm-white);
  letter-spacing: 0.01em;
}

.footer-title {
  font-size: 0.74rem;
  font-weight: 300;
  color: rgba(247,244,240,0.5);
  letter-spacing: 0.08em;
}

.footer-links-wrap {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 0.5rem;
}

.footer-links-wrap a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  transition: color 0.2s;
}

.footer-links-wrap a:hover { color: var(--gold-light); }

.footer-divider {
  width: 40px;
  height: 1px;
  background: rgba(184,147,90,0.3);
  margin: 0.25rem auto;
}

.footer-copy {
  font-size: 0.68rem;
  color: var(--accent-gold);
  letter-spacing: 0.06em;
  opacity: 0.65;
}


/* ─────────────────────────────────────────
   8. ANIMATIONS & SCROLL REVEAL
───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(1.06); opacity: 0.5; }
  to   { transform: scale(1);    opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible { opacity: 1; transform: none; }

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-left.visible { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-right.visible { opacity: 1; transform: none; }


/* ─────────────────────────────────────────
   9. GLOBAL RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
}


/* ═══════════════════════════════════════════════════════════
   10. HOME — index.html
   ═══════════════════════════════════════════════════════════ */

/* HERO */
#hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-image-col {
  position: relative;
  overflow: hidden;
}

.hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.82) contrast(1.05);
  animation: zoomIn 1.4s ease forwards;
}

.hero-image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30,77,92,0.6) 0%, transparent 55%);
}

.hero-text-col {
  background: var(--deep-teal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 8vw, 8rem) clamp(2.5rem, 5vw, 5rem) clamp(3rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}

.hero-text-col::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: var(--mid-teal);
  opacity: 0.13;
  pointer-events: none;
}

.hero-text-col::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--soft-teal);
  opacity: 0.08;
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
  opacity: 0.75;
  animation: fadeDown 0.8s 0.35s forwards;
  opacity: 0;
}

.hero-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.6vw, 1.rem);
  color: var(--accent-gold);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeDown 0.8s 0.2s forwards;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--warm-white);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--pale-teal);
  display: block;
}

.hero-rule {
  width: 90px;
  height: 2px;
  background: var(--accent-gold);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeIn 0.6s 0.9s forwards;
}

.hero-sub {
  font-size: clamp(0.88rem, 1.1vw, 1.1rem);
  color: rgba(212,236,240,0.78);
  max-width: 700px;
  line-height: 1.82;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.95s forwards;
}

.hero-bottom-rule {
  position: absolute;
  bottom: 0; left: 10%; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent-gold), transparent);
  opacity: 0;
  animation: fadeIn 0.8s 1.4s forwards;
}

/* ── HOME MAIN — two columns, text only, no cards */
#home-main {
  padding: var(--section-py) var(--section-px);
  background: transparent;
}

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

/* Two columns side by side */
.home-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 7rem);
  align-items: start;
  margin-bottom: clamp(4rem, 6vw, 7rem);
}

/* Left column — idea #1 */
.home-col-left h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.home-col-left p {
  font-size: 0.96rem;
  color: var(--mid-text);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.home-col-left p:last-of-type { margin-bottom: 0; }

/* The three "It requires..." lines — styled within left column */
.home-requires {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
}

.home-requires-item {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(30,77,92,0.07);
}

.home-requires-item:first-child { border-top: 1px solid rgba(30,77,92,0.07); }

.home-requires-item p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem) !important;
  font-style: italic;
  font-weight: 300;
  color: var(--deep-teal) !important;
  line-height: 1.35;
  margin-bottom: 0 !important;
}

/* Right column — idea #2 */
.home-col-right {
  padding-top: clamp(1rem, 2vw, 3rem);
}

.home-col-right p {
  font-size: 0.96rem;
  color: var(--mid-text);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.home-col-right p:last-of-type { margin-bottom: 0; }

/* Inline quote in right column */
.home-col-right .home-inline-quote {
  border-left: 3px solid var(--accent-gold);
  padding: 1.25rem 0 1.25rem 1.75rem;
  margin-top: 1.5rem;
}

.home-col-right .home-inline-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem) !important;
  font-style: italic;
  font-weight: 300;
  color: var(--deep-teal) !important;
  line-height: 1.6;
  margin-bottom: 0 !important;
}

/* RESPONSIVE — HOME */
@media (max-width: 860px) {
  .home-two-col { grid-template-columns: 1fr; gap: 3rem; }
  .home-col-right { padding-top: 0; }
}

@media (max-width: 600px) {
  .home-requires-item p { font-size: 1.15rem !important; }
}

/* HOME ABOUT — after conclusion */
#home-about {
  padding: 0 var(--section-px) var(--section-py);
  background: transparent;
}

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

.about-card {
  display: grid;
  grid-template-columns: 8px 1fr;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 2px 4px rgba(30,77,92,0.04),
    0 8px 24px rgba(30,77,92,0.07),
    0 20px 40px rgba(30,77,92,0.05);
}

/* Color mark — three stacked teal/gold bands */
.about-card-mark {
  background: linear-gradient(
    to bottom,
    var(--deep-teal) 0%,
    var(--deep-teal) 40%,
    var(--accent-gold) 40%,
    var(--accent-gold) 60%,
    var(--mid-teal) 60%,
    var(--mid-teal) 100%
  );
  flex-shrink: 0;
}

.about-card-text {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
}

.about-card-text h3 {
  font-size: 1.35rem;
  color: var(--deep-teal);
  line-height: 1.3;
}

.about-card-text p {
  font-size: 0.88rem;
  color: var(--mid-text);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* CONCLUSION */
#conclusion {
  padding: 0 var(--section-px) var(--section-py);
  background: transparent;
}

.conclusion-island {
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--deep-teal);
  border-radius: 24px;
  padding: clamp(3.5rem, 6vw, 6rem) clamp(2.5rem, 5vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 8px rgba(30,77,92,0.1),
    0 20px 60px rgba(30,77,92,0.2),
    0 48px 96px rgba(30,77,92,0.12);
}

.conclusion-island::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--mid-teal);
  opacity: 0.15;
  pointer-events: none;
}

.conclusion-island::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 10%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--soft-teal);
  opacity: 0.08;
  pointer-events: none;
}

.conclusion-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.conclusion-content h2 {
  color: var(--warm-white);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

.conclusion-content h2 em {
  color: var(--pale-teal);
  display: block;
}

.conclusion-content p {
  color: rgba(212,236,240,0.7);
  line-height: 1.88;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
}

.conclusion-actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.conclusion-note {
  font-size: 0.72rem !important;
  color: rgba(212,236,240,0.32) !important;
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
  font-style: italic;
  letter-spacing: 0.04em;
}

/* RESPONSIVE — HOME */
@media (max-width: 860px) {
  #hero { grid-template-columns: 1fr; }
  .hero-image-col { display: none; }
  .hero-text-col  { min-height: 100svh; padding: 6rem 1.75rem 4rem; }
  .intro-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .coaching-panel { grid-template-columns: 1fr; }
  .coaching-visual { min-height: 200px; }
  .about-card     { grid-template-columns: 1fr; }
  .about-card-accent { display: none; }
  .conclusion-island { border-radius: 16px; }
}

@media (max-width: 600px) {
  .hero-text-col  { padding: 5rem 1.25rem 3.5rem; }
  .hero-actions   { flex-direction: column; align-items: flex-start; }
}


/* ═══════════════════════════════════════════════════════════
   11. ABOUT — about.html
   ═══════════════════════════════════════════════════════════ */

/* ── ABOUT HERO
   Warmer and more personal than home.
   A large faded "30+" as ambient texture — her career in the room.
   Subtle vertical grain lines, warm gold bleed from left. */
.about-hero {
  min-height: 60svh;
  background: var(--deep-teal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(5rem, 8vw, 9rem) var(--section-px) clamp(3rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 120px,
      rgba(107,175,192,0.035) 120px,
      rgba(107,175,192,0.035) 121px
    ),
    radial-gradient(ellipse 80% 100% at 0% 60%, rgba(184,147,90,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 10%, rgba(46,125,140,0.2) 0%, transparent 50%);
  pointer-events: none;
}

/* Large ambient number — "30" as background texture */
.about-hero::after {
  content: '30';
  position: absolute;
  right: -1rem;
  bottom: -4rem;
  font-family: var(--font-display);
  font-size: clamp(16rem, 26vw, 24rem);
  font-weight: 300;
  color: rgba(107,175,192,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.about-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.about-hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft-teal);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeDown 0.8s 0.3s forwards;
}

.about-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--warm-white);
  max-width: 760px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.about-hero-headline em {
  font-style: italic;
  color: var(--pale-teal);
}

.about-hero-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--accent-gold), rgba(184,147,90,0.2), transparent);
  margin-top: clamp(2.5rem, 4vw, 4rem);
  opacity: 0;
  animation: fadeIn 0.8s 0.9s forwards;
}

/* ── ABOUT INTRO
   Sticky photo + scrolling narrative text.
   Photo has gold corner detail — personal, not clinical. */
.about-intro {
  padding: var(--section-py) var(--section-px);
  background: transparent;
}

.about-intro-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: start;
}

.about-img-wrap {
  position: sticky;
  top: 5.5rem;
}

.about-img-frame {
  position: relative;
  border-radius: 4px;
  overflow: visible;
  aspect-ratio: 3/4;
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.9) sepia(0.06);
  border-radius: 4px;
  box-shadow:
    0 4px 8px rgba(30,77,92,0.08),
    0 20px 56px rgba(30,77,92,0.14),
    0 48px 80px rgba(30,77,92,0.08);
}

/* Gold L-bracket — bottom right corner */
.about-img-frame::after {
  content: '';
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 64px;
  height: 64px;
  border-right: 2px solid var(--accent-gold);
  border-bottom: 2px solid var(--accent-gold);
}

/* Gold L-bracket — top left corner */
.about-img-frame::before {
  content: '';
  position: absolute;
  top: -14px;
  left: -14px;
  width: 64px;
  height: 64px;
  border-left: 2px solid var(--accent-gold);
  border-top: 2px solid var(--accent-gold);
  z-index: 1;
}

.about-intro-text { padding-top: 0.5rem; }

.about-intro-text h2 {
  margin-top: 0.6rem;
  margin-bottom: 1.75rem;
}

.about-intro-text p {
  font-size: 0.96rem;
  color: var(--mid-text);
  line-height: 1.88;
  margin-bottom: 1.25rem;
}

.about-intro-text p:last-of-type { margin-bottom: 0; }

.about-pullquote {
  border-left: 3px solid var(--accent-gold);
  padding: 1.5rem 0 1.5rem 2rem;
  margin: 2rem 0;
}

.about-pullquote p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--deep-teal);
  line-height: 1.55;
  margin-bottom: 0 !important;
}

/* ── PROFESSIONAL BACKGROUND
   Numbered chapter statements — large staggered layout.
   No cards. Each reality reads like a page in a book.
   Left: context paragraph. Right: five numbered statements. */
.about-background {
  padding: 0 var(--section-px) var(--section-py);
  background: transparent;
}

.about-background-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-bg-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 5rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(30,77,92,0.1);
}

.about-bg-header h2 { margin-top: 0.6rem; }

.about-bg-header p {
  font-size: 0.95rem;
  color: var(--mid-text);
  line-height: 1.88;
}

/* Numbered statements — staggered, editorial */
.about-statements {
  display: flex;
  flex-direction: column;
}

.about-statement {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(30,77,92,0.08);
  align-items: start;
  transition: background 0.2s;
}

.about-statement:first-child { border-top: 1px solid rgba(30,77,92,0.08); }

/* Alternate: every other statement indented slightly */
.about-statement:nth-child(even) {
  padding-left: clamp(2rem, 4vw, 5rem);
}

.about-statement:hover .statement-num { color: var(--accent-gold); }

.statement-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--pale-teal);
  line-height: 1;
  transition: color 0.3s;
  padding-top: 0.2rem;
  letter-spacing: -0.02em;
}

.statement-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 300;
  color: var(--deep-teal);
  line-height: 1.45;
  padding-top: 0.5rem;
}

/* ── CREDENTIALS
   CV-style — minimal, restrained.
   No island, no cards. Just clean lines and typography.
   The gravitas comes from what's said, not how it's packaged. */
.about-credentials {
  padding: 0 var(--section-px) var(--section-py);
  background: transparent;
}

.about-credentials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Header row — label + heading + CTA */
.about-cred-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(30,77,92,0.08);
}

.about-cred-header h2 { margin-top: 0.6rem; }

.about-cred-header p {
  font-size: 0.95rem;
  color: var(--mid-text);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.about-cred-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-cred-note {
  font-size: 0.82rem;
  color: var(--mid-text);
  font-style: italic;
  letter-spacing: 0.04em;
  opacity: 0.7;
}

/* Three badges in a row */
.cred-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.cred-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.cred-badge img {
  width: clamp(120px, 16vw, 180px);
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.cred-badge:hover img { transform: scale(1.04); }

.cred-badge-label {
  font-size: 0.82rem;
  color: var(--mid-text);
  line-height: 1.55;
  max-width: 180px;
}

.cred-badge-label strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-teal);
  margin-bottom: 0.3rem;
}

/* ICF text credential — below badges */
.cred-icf {
  margin-top: clamp(2rem, 3vw, 3rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(30,77,92,0.08);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.cred-icf-bar {
  width: 2px;
  min-height: 40px;
  background: var(--accent-gold);
  flex-shrink: 0;
  align-self: stretch;
}

.cred-icf p {
  font-size: 0.92rem;
  color: var(--deep-text);
  line-height: 1.7;
}

.cred-icf p strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-teal);
  margin-bottom: 0.4rem;
}

/* RESPONSIVE — ABOUT */
@media (max-width: 860px) {
  .about-intro-layout    { grid-template-columns: 1fr; }
  .about-img-wrap        { position: static; max-width: 320px; }
  .about-bg-header       { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-cred-header     { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-statement:nth-child(even) { padding-left: 0; }
  .cred-badges           { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .about-hero     { min-height: 50svh; }
  .about-img-wrap { max-width: 100%; }
  .about-statement { grid-template-columns: 60px 1fr; gap: 1rem; }
  .cred-badges    { grid-template-columns: 1fr; max-width: 200px; margin: 0 auto; }
}



/* ═══════════════════════════════════════════════════════════
   12. COACHING — coaching.html
   ═══════════════════════════════════════════════════════════ */

/* ── COACHING HERO
   Architectural, precise. Subtle grid pattern — feels like
   a space where decisions get examined carefully. */
.coaching-hero {
  min-height: 60svh;
  background: var(--deep-teal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(5rem, 8vw, 9rem) var(--section-px) clamp(3rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}

/* Precise grid texture */
.coaching-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(107,175,192,0.04) 80px,
      rgba(107,175,192,0.04) 81px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(107,175,192,0.04) 80px,
      rgba(107,175,192,0.04) 81px
    ),
    radial-gradient(ellipse 70% 80% at 100% 100%, rgba(46,125,140,0.18) 0%, transparent 55%);
  pointer-events: none;
}

/* Gold accent diagonal */
.coaching-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: 8%;
  width: 1px;
  height: 140%;
  background: linear-gradient(to bottom, transparent, rgba(184,147,90,0.2), transparent);
  transform: rotate(-12deg);
  pointer-events: none;
}

.coaching-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.coaching-hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft-teal);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeDown 0.8s 0.3s forwards;
}

.coaching-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--warm-white);
  max-width: 700px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.coaching-hero-headline em {
  font-style: italic;
  color: var(--pale-teal);
}

.coaching-hero-sub {
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  color: rgba(212,236,240,0.72);
  max-width: 560px;
  line-height: 1.82;
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

.coaching-hero-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--accent-gold), rgba(184,147,90,0.2), transparent);
  margin-top: clamp(2.5rem, 4vw, 4rem);
  opacity: 0;
  animation: fadeIn 0.8s 0.9s forwards;
}

/* ── CHALLENGES
   Manifesto style — full width, no columns, no boxes.
   Each challenge is a single statement on its own line.
   Separated by thin rules. The text IS the design. */
.coaching-challenges {
  padding: var(--section-py) var(--section-px);
  background: transparent;
}

.coaching-challenges-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.challenges-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: end;
  
}

.challenges-header h2 { margin-top: 0.6rem; }

.challenges-header p {
  font-size: 0.95rem;
  color: var(--mid-text);
  line-height: 1.88;
}

/* Full-width manifesto lines */
.challenges-manifesto {
  display: flex;
  flex-direction: column;
}

.challenge-line {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(30,77,92,0.07);
  transition: padding-left 0.3s ease;
  cursor: default;
}

.challenge-line:first-child { border-top: 1px solid rgba(30,77,92,0.07); }
.challenge-line:hover .challenge-index { color: var(--accent-gold); }

.challenge-index {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(30,77,92,0.25);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  width: 2rem;
  transition: color 0.3s;
}

.challenge-text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--deep-teal);
  line-height: 1.35;
}

/* ── ENGAGEMENTS
   Three cards — kept as is, visitors need to compare.
   Cards have a clean elevated look on the warm white bg. */
.coaching-engagements {
  padding: 0 var(--section-px) var(--section-py);
  background: transparent;
}

.coaching-engagements-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.engagements-heading {
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.engagements-heading h2 { margin-top: 0.6rem; margin-bottom: 1rem; }

.engagements-heading p {
  max-width: 560px;
  font-size: 0.95rem;
  color: var(--mid-text);
  line-height: 1.85;
}

.eng-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.eng-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 2px 4px rgba(30,77,92,0.04),
    0 8px 24px rgba(30,77,92,0.08),
    0 20px 48px rgba(30,77,92,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.eng-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 8px rgba(30,77,92,0.06),
    0 16px 40px rgba(30,77,92,0.14),
    0 32px 64px rgba(30,77,92,0.08);
}

.eng-card.featured {
  box-shadow:
    0 4px 8px rgba(30,77,92,0.08),
    0 16px 48px rgba(30,77,92,0.16),
    0 32px 64px rgba(30,77,92,0.1);
}

.eng-card-head {
  background: var(--deep-teal);
  padding: 2rem 2rem 1.75rem;
}

.eng-card.featured .eng-card-head { background: var(--mid-teal); }

.eng-card-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft-teal);
  display: block;
  margin-bottom: 0.6rem;
}

.eng-card.featured .eng-card-tag { color: var(--pale-teal); }

.eng-card-head h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.eng-card-duration {
  font-size: 0.85rem;
  color: rgba(212,236,240,0.55);
  font-style: italic;
}

.eng-card-body {
  padding: 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.eng-card-desc {
  font-size: 0.87rem;
  color: var(--mid-text);
  line-height: 1.78;
}

.eng-card-includes {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.eng-card-includes li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--deep-text);
  line-height: 1.5;
  align-items: flex-start;
}

.eng-check {
  color: var(--mid-teal);
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 0.05rem;
}

.eng-card-foot { padding: 0 2rem 2rem; }

.eng-card-foot .btn-primary,
.eng-card-foot .btn-outline { width: 100%; justify-content: center; }

.eng-fee-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--mid-text);
  font-style: italic;
}

/* ── FAQ */
.coaching-faq {
  padding: 0 var(--section-px) var(--section-py);
  background: transparent;
}

.coaching-faq-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: start;
}

.faq-intro-col { position: sticky; top: 5.5rem; }
.faq-intro-col h2 { margin-top: 0.6rem; margin-bottom: 1rem; }
.faq-intro-col p { font-size: 0.9rem; color: var(--mid-text); line-height: 1.8; }

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid rgba(30,77,92,0.09); }
.faq-item:first-child { border-top: 1px solid rgba(30,77,92,0.09); }

.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem; padding: 1.4rem 0; text-align: left;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 400;
  color: var(--deep-teal); line-height: 1.3; transition: color 0.2s;
}

.faq-q:hover { color: var(--mid-teal); }

.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px;
  border: 1px solid rgba(30,77,92,0.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}

.faq-icon svg {
  width: 10px; height: 10px; stroke: var(--mid-teal); fill: none;
  stroke-width: 2.5; stroke-linecap: round; transition: transform 0.3s;
}

.faq-item.open .faq-icon     { background: var(--mid-teal); border-color: var(--mid-teal); }
.faq-item.open .faq-icon svg { stroke: #fff; transform: rotate(45deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 600px; }

.faq-a-inner {
  padding-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--mid-text);
  line-height: 1.85;
}

.faq-a-inner ul { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.4rem; }
.faq-a-inner ul li { display: flex; gap: 0.6rem; align-items: flex-start; }
.faq-a-inner ul li::before { content: '–'; color: var(--accent-gold); flex-shrink: 0; }

/* ── OUTCOMES — large italic statements, stacked
   No cards. Typography does the work. */
.coaching-outcomes {
  padding: 0 var(--section-px) var(--section-py);
  background: transparent;
}

.coaching-outcomes-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.outcomes-header {
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.outcomes-header h2 { margin-top: 0.6rem; margin-bottom: 1rem; }

.outcomes-header p {
  font-size: 0.95rem;
  color: var(--mid-text);
  line-height: 1.85;
  max-width: 640px;
}

/* Italic statement list */
.outcomes-statements {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}

.outcome-statement {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(30,77,92,0.06);
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}

.outcome-statement:first-child { border-top: 1px solid rgba(30,77,92,0.06); }

.outcome-tick {
  color: var(--accent-gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.outcome-statement p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--deep-teal);
  line-height: 1.4;
}

/* ── TESTIMONIALS CAROUSEL
   Floating text. No boxes. No arrows.
   Auto-rotates with generous pause. Draggable. Pauses on hover/drag. */
.testimonials-carousel-wrap {
  background: var(--deep-teal);
  border-radius: 20px;
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 8px rgba(30,77,92,0.1),
    0 20px 60px rgba(30,77,92,0.2);
}

.testimonials-carousel-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 100px,
      rgba(107,175,192,0.03) 100px,
      rgba(107,175,192,0.03) 101px
    );
  pointer-events: none;
}

.carousel-track {
  position: relative;
  z-index: 1;
  min-height: 240px;
  display: flex;
  align-items: center;
  user-select: none;
  cursor: grab;
}

.carousel-track:active { cursor: grabbing; }

.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.carousel-slide.exit {
  opacity: 0;
  transform: translateX(-30px);
}

.carousel-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-style: italic;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 720px;
}

.carousel-quote::before {
  content: '\201C';
  font-size: 3rem;
  line-height: 0.5;
  color: var(--accent-gold);
  opacity: 0.6;
  display: block;
  margin-bottom: 0.75rem;
}

.carousel-author-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--pale-teal);
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.carousel-author-title {
  font-size: 0.78rem;
  color: rgba(212,236,240,0.5);
  letter-spacing: 0.04em;
}

/* Progress dots */
.carousel-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(212,236,240,0.25);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent-gold);
  transform: scale(1.3);
}

/* ── CTA below testimonials */
.outcomes-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.outcomes-note {
  font-size: 0.82rem;
  color: var(--mid-text);
  font-style: italic;
  letter-spacing: 0.04em;
}

/* RESPONSIVE — COACHING */
@media (max-width: 960px) { .eng-cards { grid-template-columns: 1fr; } }

@media (max-width: 860px) {
  .challenges-header  { grid-template-columns: 1fr; gap: 1.5rem; }
  .coaching-faq-inner { grid-template-columns: 1fr; }
  .outcomes-header    { grid-template-columns: 1fr; }
  .faq-intro-col      { position: static; }
}

@media (max-width: 600px) {
  .coaching-hero { min-height: 50svh; }
  .challenge-text { font-size: 1.1rem; }
  .outcome-statement p { font-size: 1.1rem; }
}

/* ═══════════════════════════════════════════════════════════
   13. CONTACT — contact.html
   ═══════════════════════════════════════════════════════════ */

/* ── CONTACT HERO
   The quietest hero of all four pages.
   No pattern, no circles, no grid.
   Just deep teal with a soft centered vignette.
   The headline floats in silence. */
.contact-hero {
  min-height: 65svh;
  background: var(--deep-teal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(5rem, 8vw, 9rem) var(--section-px) clamp(3rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}

/* Soft centered vignette — nothing else */
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    rgba(46,125,140,0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Very faint gold horizontal rule through center */
.contact-hero::after {
  content: '';
  position: absolute;
  left: 20%;
  right: 20%;
  top: 50%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,147,90,0.12), transparent);
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
}

.contact-hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft-teal);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeDown 0.8s 0.3s forwards;
}

.contact-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--warm-white);
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.contact-hero-headline em {
  font-style: italic;
  color: var(--pale-teal);
  display: block;
}

.contact-hero-rule {
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
  margin: 2rem auto 0;
  opacity: 0;
  animation: fadeIn 0.8s 0.9s forwards;
}

/* ── CONTACT BODY — two columns side by side */
.contact-body {
  padding: var(--section-py) var(--section-px);
  background: transparent;
}

.contact-body-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

/* Left text card */
.contact-text-card {
  background: #fff;
  border-radius: 20px;
  padding: clamp(2.5rem, 4vw, 3.5rem);
  box-shadow:
    0 2px 4px rgba(30,77,92,0.04),
    0 12px 40px rgba(30,77,92,0.08),
    0 32px 64px rgba(30,77,92,0.05);
  height: 100%;
}

.contact-text-card .label { margin-bottom: 1.25rem; }

.contact-text-card p {
  font-size: 1rem;
  color: var(--mid-text);
  line-height: 1.95;
  margin-bottom: 1.25rem;
}

.contact-text-card p:last-of-type { margin-bottom: 0; }

/* Right CTA card */
.contact-cta-island {
  background: #fff;
  border-radius: 20px;
  padding: clamp(2.5rem, 4vw, 3.5rem);
  text-align: left;
  box-shadow:
    0 2px 4px rgba(30,77,92,0.04),
    0 12px 40px rgba(30,77,92,0.09),
    0 32px 64px rgba(30,77,92,0.06);
  position: relative;
}

/* Gold top accent */
.contact-cta-island::before {
  content: '';
  position: absolute;
  top: 0; left: 3rem; right: 3rem;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
  border-radius: 2px;
}

.contact-cta-island h2 {
  margin-top: 0.6rem;
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
}

.contact-cta-island > p {
  font-size: 0.95rem;
  color: var(--mid-text);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--mid-text);
}

.contact-detail-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-gold);
  flex-shrink: 0;
}

.contact-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-btn-wrap .btn-primary {
  font-size: 0.82rem;
  padding: 1rem 2.75rem;
}

.contact-sub-note {
  font-size: 0.78rem;
  color: var(--mid-text);
  font-style: italic;
  opacity: 0.55;
  letter-spacing: 0.04em;
}

/* ── CONCLUSION
   One line. That's it. Calm and final. */
.contact-conclusion {
  padding: 0 var(--section-px) var(--section-py);
  background: transparent;
}

.contact-conclusion-inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.contact-conclusion-line {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--mid-text);
  line-height: 1.65;
}

/* RESPONSIVE — CONTACT */
@media (max-width: 760px) {
  .contact-body-inner  { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .contact-hero            { min-height: 55svh; text-align: left; align-items: flex-start; }
  .contact-hero-rule       { margin-left: 0; }
  .contact-conclusion-inner { text-align: left; }
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-teal);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--deep-text);
  background: var(--warm-white);
  border: 1px solid rgba(30,77,92,0.15);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--mid-teal);
  box-shadow: 0 0 0 3px rgba(46,125,140,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-primary { align-self: flex-start; margin-top: 0.5rem; }

/* Contact FAQ */
.contact-faq {
  padding: 0 var(--section-px) var(--section-py);
  background: transparent;
}

.contact-faq-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: start;
}

@media (max-width: 860px) {
  .contact-faq-inner { grid-template-columns: 1fr; }
}

/* ── COACHING HOW THIS WORK IS DONE */
.coaching-how {
  padding: var(--section-py) var(--section-px) 0;
  background: transparent;
}

.coaching-how-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  max-width: 720px;
}

.coaching-how h2 {
  margin-top: 0.6rem;
  margin-bottom: 1.5rem;
}

.coaching-how p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--deep-text);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

.nav-linkedin {
  color: var(--soft-teal);
  display: flex;
  align-items: center;
  transition: color 0.2s;
  flex-shrink: 0;
}
.nav-linkedin:hover { color: var(--warm-white); }
.scrolled .nav-linkedin { color: var(--mid-teal); }
.scrolled .nav-linkedin:hover { color: var(--deep-teal); }

.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}