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

:root {
  --navy:   #0F1F35;
  --navy2:  #1B3A5C;
  --teal:   #2A7F7F;
  --teal2:  #1F6060;
  --gold:   #C8973A;
  --gold2:  #B07F2A;
  --cream:  #F7F4EF;
  --warm:   #EDE9E2;
  --muted:  #8A9AB0;
  --white:  #FFFFFF;
  --text:   #1A1A1A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(15, 31, 53, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,151,58,0.2);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo span { color: var(--gold); }

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.88);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--white); }

.nav-links a.nav-current { color: var(--gold); }

.nav-links a.nav-training {
  color: var(--gold);
  border: 1px solid rgba(200,151,58,0.5);
  padding: 0.4rem 0.9rem;
}

.nav-links a.nav-training:hover {
  background: var(--gold);
  color: var(--navy);
}

.nav-cta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--teal);
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--teal2); }

.nav-toggle { display: none; }
.nav-burger { display: none; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-left: 0.5rem;
}
.lang-switch a {
  color: rgba(247,244,239,0.55);
  text-decoration: none;
  padding: 0.2rem 0.35rem;
}
.lang-switch a.lang-current { color: var(--gold); }
.lang-switch a:hover { color: var(--white); }

@media (max-width: 880px) {
  nav { padding: 1rem 1.25rem; flex-wrap: wrap; }

  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    order: 2;
  }

  .nav-burger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--white);
  }

  .nav-links {
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
    width: 100%;
  }

  .nav-toggle:checked ~ .nav-links {
    max-height: 500px;
    margin-top: 1.5rem;
  }

  .nav-links a.nav-cta-mobile {
    color: var(--navy);
    background: var(--teal);
    padding: 0.6rem 1.2rem;
  }
}

@media (min-width: 881px) {
  .nav-cta-mobile { display: none; }
}

/* ─── PAGE HERO (sub-pages) ──────────────────────────── */
.page-hero {
  background: var(--navy);
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(42,127,127,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(42,127,127,0.4);
  padding: 0.4rem 1.1rem;
  margin-bottom: 1.75rem;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 1.25rem;
}

.page-hero h1 em { font-style: italic; color: var(--gold); }

.page-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(247,244,239,0.8);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ─── HERO (home) ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 12% 15%, rgba(42,127,127,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 90% 85%, rgba(200,151,58,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
  max-width: 1140px;
  width: 100%;
  position: relative;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(42,127,127,0.4);
  padding: 0.4rem 1.1rem;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--white);
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}

.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(247,244,239,0.8);
  max-width: 480px;
  margin: 0 0 2.25rem;
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.badge {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.72);
  border: 1px solid rgba(247,244,239,0.14);
  padding: 0.35rem 0.8rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--teal2); }

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--gold); color: var(--navy); }

.hero-photo {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #000;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,31,53,0.55) 0%, transparent 40%);
}
.hero-photo-caption {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.75);
}

/* ─── SECTIONS ────────────────────────────────────────── */
section { padding: 6rem 2rem; }
.container { max-width: 1080px; margin: 0 auto; }
.container-narrow { max-width: 760px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 300;
  line-height: 1.22;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--teal); }

.section-body {
  font-size: 1rem;
  font-weight: 300;
  color: #444;
  line-height: 1.85;
  max-width: 640px;
}

.on-navy .section-title { color: var(--white); }
.on-navy .section-body { color: rgba(247,244,239,0.8); }
.on-navy .section-label { color: var(--teal); }

.bg-navy { background: var(--navy); }
.bg-cream { background: var(--cream); }
.bg-warm { background: var(--warm); }
.bg-white { background: var(--white); }

/* ─── TWO COLUMN INTRO (photo + text) ────────────────── */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 3rem;
}
.split.reverse { grid-template-columns: 1.15fr 0.85fr; }
.split.reverse .split-photo { order: 2; }

.split-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--navy);
}
.split-photo img { width: 100%; height: 100%; object-fit: cover; }

.split-text p {
  font-size: 0.98rem;
  font-weight: 300;
  color: #444;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.on-navy .split-text p { color: rgba(247,244,239,0.85); }
.split-text p strong { font-weight: 500; color: var(--navy); }
.on-navy .split-text p strong { color: var(--white); }

/* ─── CARD GRID ───────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.offer-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 2.25rem;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.offer-card:hover { border-color: rgba(42,127,127,0.3); box-shadow: 0 4px 24px rgba(42,127,127,0.08); }

.offer-card .card-eyebrow {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.offer-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.offer-card p {
  font-size: 0.92rem;
  font-weight: 300;
  color: #555;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.card-link:hover { border-bottom-color: var(--teal2); }

/* ─── NOTE / CALLOUT BLOCKS ──────────────────────────── */
.note-block {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--navy);
  color: rgba(247,244,239,0.8);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  border-left: 3px solid var(--gold);
}
.note-block strong { color: var(--gold); font-weight: 500; }

.note-block.light {
  background: var(--warm);
  color: #444;
  border-left-color: var(--teal);
}
.note-block.light strong { color: var(--teal2); }

/* ─── TRAINING BANNER ─────────────────────────────────── */
.training-banner {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%);
  border: 1px solid rgba(200,151,58,0.3);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.training-banner .tb-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.training-banner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.training-banner p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(247,244,239,0.65);
  max-width: 480px;
}

/* ─── CREDENTIAL TIMELINE ─────────────────────────────── */
.credential-stack { position: relative; padding-left: 1.75rem; }
.credential-stack::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 6px; width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(200,151,58,0.1));
}
.credential-item { position: relative; margin-bottom: 1.75rem; }
.credential-item::before {
  content: '';
  position: absolute;
  left: -1.75rem; top: 6px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  border: 1px solid var(--navy);
  outline: 1px solid var(--gold);
  outline-offset: 2px;
}
.cred-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.2rem;
}
.cred-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.45;
}
.on-light .cred-value { color: var(--navy); }

/* ─── PROCESS STEPS ───────────────────────────────────── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
}

.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 2.5rem;
  padding: 2.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.step-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step-meta {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal2);
  background: rgba(42,127,127,0.08);
  padding: 0.25rem 0.65rem;
  margin-bottom: 0.85rem;
}

.step-body p {
  font-size: 0.94rem;
  font-weight: 300;
  color: #444;
  line-height: 1.8;
  max-width: 600px;
}

.step-photo {
  margin-top: 1.5rem;
  aspect-ratio: 16/10;
  overflow: hidden;
  max-width: 600px;
}
.step-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ─── FAQ ─────────────────────────────────────────────── */
.faq-group { margin-bottom: 3rem; }
.faq-group-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(42,127,127,0.25);
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-item:first-of-type { border-top: 1px solid rgba(0,0,0,0.08); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 0;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-answer {
  padding: 0 0 1.5rem;
  font-size: 0.92rem;
  font-weight: 300;
  color: #444;
  line-height: 1.85;
  max-width: 680px;
}
.faq-item .faq-answer p { margin-bottom: 0.9rem; }
.faq-item .faq-answer p:last-child { margin-bottom: 0; }
.faq-item .faq-answer ul { padding-left: 1.2rem; margin: 0.5rem 0 0.9rem; }
.faq-item .faq-answer li { margin-bottom: 0.4rem; }

/* ─── START / CONTACT BLOCK ──────────────────────────── */
.start-block {
  background: var(--navy);
  padding: 5rem 2rem;
  text-align: center;
}
.start-block .section-title { color: var(--white); }
.start-block-sub {
  font-size: 0.98rem;
  font-weight: 300;
  color: rgba(247,244,239,0.6);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.start-options {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ─── CERTIFICATE GALLERY ─────────────────────────────── */
.cert-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.cert-card {
  background: rgba(247,244,239,0.04);
  border: 1px solid rgba(200,151,58,0.2);
  padding: 1.25rem;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s;
}
.cert-card:hover { border-color: rgba(200,151,58,0.5); }
.cert-frame {
  height: 280px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1rem;
}
.cert-frame img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cert-caption-title { font-size: 0.85rem; font-weight: 500; color: var(--white); line-height: 1.4; margin-bottom: 0.25rem; }
.cert-caption-meta { font-size: 0.72rem; font-weight: 300; color: rgba(247,244,239,0.68); }

.verify-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.verify-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(200,151,58,0.4); padding: 0.6rem 1.1rem;
  text-decoration: none; transition: all 0.2s;
}
.verify-link:hover { background: var(--gold); color: var(--navy); }

/* ─── LEGAL PAGES ─────────────────────────────────────── */
.legal-doc { max-width: 720px; margin: 0 auto; }
.legal-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.legal-doc h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
}
.legal-doc h2:first-child { margin-top: 0; }
.legal-doc p {
  font-size: 0.94rem;
  font-weight: 300;
  color: #444;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.legal-doc ul { margin: 0 0 1.1rem 1.2rem; }
.legal-doc li {
  font-size: 0.94rem;
  font-weight: 300;
  color: #444;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.legal-doc strong { color: var(--navy); font-weight: 500; }
.legal-doc a { color: var(--teal2); text-decoration: underline; }
.legal-placeholder {
  background: rgba(200,151,58,0.15);
  color: var(--gold2);
  padding: 0.1rem 0.4rem;
  font-weight: 500;
}

/* ─── MINI FORM (forms request, etc.) ────────────────── */
.mini-form-card {
  background: rgba(247,244,239,0.04);
  border: 1px solid rgba(200,151,58,0.25);
  padding: 2.25rem;
  margin-top: 2.5rem;
}
.mini-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0.75rem;
  align-items: end;
}
.mini-form-row label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.55);
  display: block;
  margin-bottom: 0.4rem;
}
.mini-form-row input, .mini-form-row select {
  background: rgba(247,244,239,0.06);
  border: 1px solid rgba(247,244,239,0.15);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  padding: 0.7rem 0.85rem;
  width: 100%;
  outline: none;
}
.mini-form-row input::placeholder { color: rgba(247,244,239,0.3); }
.mini-form-row select option { background: var(--navy); color: var(--white); }
.mini-form-row button {
  background: var(--teal);
  color: var(--white);
  border: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.4rem;
  cursor: pointer;
  white-space: nowrap;
}
.mini-form-row button:hover { background: var(--teal2); }
.mini-form-note {
  font-size: 0.75rem;
  color: rgba(247,244,239,0.5);
  margin-top: 1rem;
}
.mini-form-success {
  display: none;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(42,127,127,0.15);
  border: 1px solid rgba(42,127,127,0.4);
  font-size: 0.9rem;
  color: rgba(247,244,239,0.85);
  line-height: 1.7;
}
.mini-form-success a { color: var(--gold); font-weight: 500; }

@media (max-width: 720px) {
  .mini-form-row { grid-template-columns: 1fr; }
}

/* ─── CONTACT CHANNELS ────────────────────────────────── */
.contact-channels {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.contact-channel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(247,244,239,0.6);
  text-decoration: none;
}
.contact-channel:hover { color: var(--white); }

/* ─── TESTIMONIAL ─────────────────────────────────────── */
.testimonial { max-width: 760px; margin: 0 auto; }
.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.65;
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}
.testimonial-attribution {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--teal2);
}
.testimonial-attribution span { color: var(--muted); font-weight: 300; }

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: #080F1A;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
}
.footer-logo span { color: var(--gold); }
.footer-text {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(247,244,239,0.48);
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(247,244,239,0.4);
  text-decoration: none;
}
.footer-links a:hover { color: rgba(247,244,239,0.7); }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { max-width: 360px; margin: 0 auto; order: -1; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 2rem; }
  .split-photo, .split.reverse .split-photo { order: -1; max-width: 360px; margin: 0 auto; }
  .card-grid { grid-template-columns: 1fr; }
  .training-banner { grid-template-columns: 1fr; text-align: left; }
  .step { grid-template-columns: 1fr; gap: 0.75rem; }
  .step-num { font-size: 1.6rem; }
  footer { flex-direction: column; text-align: center; }
}
