/* =========================================
   Petra Coaching — Design System
   Inspired by McKinsey, BCG, Bain

   Philosophy:
   - Space is the primary design element
   - Typography conveys authority
   - One accent color, used sparingly
   - Editorial structure, not startup cards
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ---- Reset & Tokens ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #122461;
  --navy-deep:  #0c1840;
  --emerald:    #225857;
  --amber:      #F4A500;
  --amber-dark: #c98900;
  --sky:        #7ECBE3;

  --white:      #FFFFFF;
  --snow:       #F7F8FA;
  --border:     #E4E6EC;
  --muted:      #6B7585;
  --body-text:  #2C3142;
  --ink:        #0D0F1A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Montserrat', -apple-system, sans-serif;

  --max-w:     1200px;
  --nav-h:     96px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: var(--font-sans);
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

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

/* ---- Typography ---- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1.display { font-size: clamp(2.8rem, 6vw, 5rem); }
h2.display { font-size: clamp(2rem, 4vw, 3.2rem); }

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; font-weight: 600; }

p { line-height: 1.75; }
.lead {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted);
}

/* ---- Layout ---- */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-content { margin-top: var(--nav-h); }

/* Section spacing: generous */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
section.spacious { padding: 128px 0; }

/* ---- Labels ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

/* ---- Dividers ---- */
.rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}
.rule-short {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--amber);
  margin: 24px 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: all 0.22s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn-arrow::after { content: '→'; font-size: 1em; }

.btn-primary {
  background: var(--amber);
  color: var(--navy-deep);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.40);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-outline-dark {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-text {
  padding: 0;
  border: none;
  background: none;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  gap: 6px;
}
.btn-text:hover { color: var(--amber); }

/* ---- Navigation ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--white);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo img {
  height: 68px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--navy); }

.nav-cta .btn {
  padding: 11px 24px;
  font-size: 0.72rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: all 0.25s;
}

/* ---- Hero ---- */
.hero {
  background: var(--navy-deep);
  color: var(--white);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}

/* Subtle geometric accent */
.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  height: 360px;
  border: 1px solid rgba(244,165,0,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-body {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 0 64px;
}

.hero-content { max-width: 680px; position: relative; z-index: 1; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Credential bar at bottom of hero */
.hero-cred {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 28px 0;
  position: relative;
  z-index: 1;
}
.hero-cred-inner {
  display: flex;
  align-items: center;
  gap: 56px;
}
.hero-cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-cred-item .cred-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.hero-cred-item .cred-label {
  font-size: 0.75rem;
  line-height: 1.35;
  color: rgba(255,255,255,0.55);
  max-width: 100px;
}
.hero-cred-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ---- Intro Statement ---- */
.intro-statement {
  background: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.intro-statement blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  font-style: normal;
  max-width: 820px;
  position: relative;
  padding-left: 36px;
  border-left: 3px solid var(--amber);
}
.intro-statement blockquote em {
  font-style: italic;
  color: var(--navy);
}

/* ---- Services Overview (Editorial Grid) ---- */
.services-overview {
  background: var(--snow);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.svc-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  transition: background 0.25s var(--ease);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--amber);
  transition: height 0.3s var(--ease);
}
.svc-card:hover::before { height: 100%; }
.svc-card:hover { background: #FAFBFF; }

.svc-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.25s;
}
.svc-card:hover .svc-num { color: rgba(244,165,0,0.20); }
.svc-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.01em; }
.svc-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; max-width: none; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap 0.2s, color 0.2s;
}
.svc-link:hover { color: var(--amber); gap: 10px; }

/* ---- About Teaser ---- */
.about-teaser { background: var(--white); }
.about-teaser-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: center;
}
.about-teaser-copy h2 { margin-bottom: 8px; }
.about-teaser-copy .lead { margin: 16px 0 24px; }
.about-teaser-copy p { color: var(--muted); margin-bottom: 16px; font-size: 0.95rem; }

.credentials-panel {
  background: var(--navy);
  border-radius: 4px;
  padding: 40px;
}
.cred-row {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cred-row:last-child { border-bottom: none; padding-bottom: 0; }
.cred-row:first-child { padding-top: 0; }
.cred-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 8px;
  flex-shrink: 0;
}
.cred-row-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 2px;
}
.cred-row-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.50);
}

/* ---- Approach ---- */
.approach {
  background: var(--ink);
  color: var(--white);
}
.approach-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 64px;
}
.approach-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
}
.approach-header p { color: rgba(255,255,255,0.55); font-size: 1rem; max-width: 500px; }
.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.approach-step { }
.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 16px;
}
.approach-step h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.approach-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.50);
  max-width: none;
  line-height: 1.7;
}

/* ---- CTA Band ---- */
.cta-band {
  background: var(--navy);
  padding: 88px 0;
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}
.cta-band h2 em { font-style: italic; color: var(--amber); }
.cta-band p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-top: 10px; max-width: 480px; }
.cta-band-action { flex-shrink: 0; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }

/* ---- About Page ---- */
.page-hero {
  background: var(--navy-deep);
  color: var(--white);
  padding: 88px 0 72px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero .lead { color: rgba(255,255,255,0.65); max-width: 560px; }

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.bio-copy h2 { margin-bottom: 8px; }
.bio-copy p { color: var(--muted); font-size: 0.95rem; margin-bottom: 14px; line-height: 1.8; }

.timeline { margin-top: 8px; }
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--amber);
  padding-top: 2px;
}
.timeline-title { font-size: 0.92rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.timeline-sub { font-size: 0.82rem; color: var(--muted); }

.principles { background: var(--snow); }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.principle {
  background: var(--white);
  padding: 40px;
  position: relative;
}
.principle-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}
.principle h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.principle p { font-size: 0.88rem; color: var(--muted); max-width: none; line-height: 1.7; }

/* ---- Services Page ---- */
.service-entry {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 2fr 5fr;
  gap: 80px;
  align-items: start;
}
.service-entry:first-child { padding-top: 0; }
.service-entry:last-child { border-bottom: none; }
.service-meta-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.service-meta h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.service-body p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; }
.service-outcomes {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
.service-outcomes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--body-text);
}
.service-outcomes li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--snow);
  border: 2px solid var(--border);
  flex-shrink: 0;
  margin-top: 2px;
}
.ideal-tag {
  display: inline-flex;
  margin-top: 24px;
  padding: 8px 16px;
  background: var(--snow);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.78rem;
  color: var(--muted);
}
.ideal-tag strong { color: var(--navy); margin-right: 4px; }

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 56px;
}
.method-step {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  position: relative;
}
.method-step:last-child { border-right: none; }
.method-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}
.method-step h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.method-step p { font-size: 0.85rem; color: var(--muted); max-width: none; line-height: 1.7; }

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info-col h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--navy); }
.contact-info-col p { color: var(--muted); font-size: 0.92rem; margin-bottom: 36px; line-height: 1.75; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--body-text);
}
.contact-detail:first-of-type { border-top: 1px solid var(--border); }
.contact-detail-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--emerald);
}
.contact-detail-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.contact-expect {
  margin-top: 40px;
  padding: 28px;
  background: var(--snow);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.contact-expect h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 14px; }
.contact-expect li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}
.contact-expect li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-expect li::before { content: '→'; color: var(--emerald); font-weight: 700; flex-shrink: 0; }

/* Contact Form */
.contact-form-wrapper { }
.contact-form-wrapper h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--body-text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 16px; justify-content: center; }
.form-disclaimer { font-size: 0.74rem; color: var(--muted); margin-top: 10px; text-align: center; }

/* ---- Footer ---- */
.site-footer {
  background: var(--white);
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-brand img { height: 72px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; color: var(--muted); }
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
}
.footer-bottom a:hover { color: var(--amber); }

/* ---- Diamond Concept Callout (About page) ---- */
.diamond-concept {
  background: var(--navy);
  border-radius: 4px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.diamond-concept::before {
  content: '◈';
  position: absolute;
  right: 24px; top: 16px;
  font-size: 5rem;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  line-height: 1;
}
.diamond-concept-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.diamond-concept p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.70);
  max-width: none;
}
.diamond-concept p + p { margin-top: 14px; }
.diamond-concept strong { color: rgba(255,255,255,0.90); font-weight: 600; }

/* ---- Testimonials ---- */
.testimonials {
  background: var(--snow);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.testimonial-card {
  background: var(--white);
  padding: 56px 48px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial-mark {
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 0.65;
  margin-bottom: 28px;
  opacity: 0.45;
  letter-spacing: -0.02em;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.85;
  color: var(--body-text);
  flex: 1;
  margin-bottom: 32px;
}
.testimonial-attr {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-attr-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 2px;
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Award badge */
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(244,165,0,0.10);
  border: 1px solid rgba(244,165,0,0.30);
  border-radius: 2px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 24px;
}
.award-badge::before { content: '★'; }

/* ---- Resources Page ---- */
.resources-intro {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.resource-category {
  padding-top: 64px;
}
.resource-cat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.resource-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 32px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
  position: relative;
}
.resource-card:hover {
  box-shadow: 0 8px 32px rgba(18,36,97,0.08);
  transform: translateY(-2px);
}
.resource-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.resource-type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.resource-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.resource-badge-free {
  background: rgba(34,88,87,0.10);
  color: var(--emerald);
  border: 1px solid rgba(34,88,87,0.20);
}
.resource-badge-soon {
  background: var(--snow);
  color: var(--muted);
  border: 1px solid var(--border);
}
.resource-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.resource-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  max-width: none;
}
.resource-card-footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.resource-meta {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.resource-meta::before {
  content: '⏱';
  font-size: 0.7rem;
}
.resource-card-cta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s, color 0.2s;
}
.resource-card-cta:hover { color: var(--amber); gap: 8px; }

.resource-card-placeholder {
  border: 1px dashed var(--border);
  background: var(--snow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
  border-radius: 4px;
  padding: 36px;
  color: var(--muted);
  font-size: 0.85rem;
  gap: 8px;
}
.resource-card-placeholder .placeholder-icon {
  font-size: 1.5rem;
  opacity: 0.4;
  margin-bottom: 4px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .about-teaser-grid { grid-template-columns: 1fr; gap: 48px; }
  .approach-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .bio-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-entry { grid-template-columns: 1fr; gap: 32px; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .method-step { border-bottom: 1px solid var(--border); }
  .method-step:last-child { border-right: none; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .resource-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .approach-header { grid-template-columns: 1fr; gap: 24px; }
  .approach-steps { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { grid-template-columns: 1fr; }
  .cta-band-action { align-items: flex-start; }
  .principles-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-cred-inner { gap: 32px; flex-wrap: wrap; }
  .service-outcomes { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-h: 80px; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    padding: 28px;
    gap: 20px;
    border-top: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  }
  .nav-links.open a { font-size: 0.9rem; color: var(--navy); }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
