/* ============================================================
   Clipper Ship Marketing — style.css
   Brand: Navy #2e3192 | Blue #78a6d8 | Crimson #a61630 | Gold #d8c335
   Design: Minimalist heritage / nautical authority
   Breakpoints: 375px | 768px | 1024px | 1440px
   ============================================================ */

/* -----------------------------------------------------------
   1. Google Fonts
   ----------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* -----------------------------------------------------------
   2. CSS Custom Properties
   ----------------------------------------------------------- */
:root {
  /* Brand Colors */
  --color-navy:    #2e3192;
  --color-blue:    #78a6d8;
  --color-crimson: #a61630;
  --color-gold:    #d8c335;

  /* Derived tones */
  --color-navy-dark:  #222578;
  --color-navy-light: #3d42b8;
  --color-gold-dark:  #b8a52a;
  --color-crimson-dark: #8a1128;

  /* Neutrals */
  --color-white:   #ffffff;
  --color-bg:      #f9f8f4;       /* warm off-white — heritage feel */
  --color-bg-alt:  #f0eee7;       /* slightly deeper warm */
  --color-text:    #1a1a2e;       /* near-black with blue undertone */
  --color-text-muted: #5a5a7a;
  --color-border:  #dddacd;
  --color-rule:    rgba(46,49,146,0.15);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type scale (fluid, clamped) */
  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg:   1.125rem;   /* 18px */
  --text-xl:   1.25rem;    /* 20px */
  --text-2xl:  1.5rem;     /* 24px */
  --text-3xl:  1.875rem;   /* 30px */
  --text-4xl:  2.25rem;    /* 36px */
  --text-5xl:  3rem;       /* 48px */
  --text-6xl:  3.75rem;    /* 60px */

  /* Spacing scale */
  --space-xs:  0.25rem;    /* 4px */
  --space-sm:  0.5rem;     /* 8px */
  --space-md:  1rem;       /* 16px */
  --space-lg:  1.5rem;     /* 24px */
  --space-xl:  2rem;       /* 32px */
  --space-2xl: 3rem;       /* 48px */
  --space-3xl: 4rem;       /* 64px */
  --space-4xl: 5rem;       /* 80px */
  --space-5xl: 6rem;       /* 96px */

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1440px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 24px rgba(0,0,0,0.10);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.12);

  /* Transitions */
  --ease-default: all 220ms ease;
  --ease-fast:    all 150ms ease;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--color-navy);
  text-decoration: underline;
  transition: var(--ease-fast);
}

a:hover {
  color: var(--color-crimson);
}

a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  border: none;
  background: none;
  cursor: pointer;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: var(--text-base);
}

/* -----------------------------------------------------------
   4. Typography
   ----------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text);
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 5vw, var(--text-5xl)); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, var(--text-4xl)); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2.5vw, var(--text-2xl)); }
h4 { font-size: clamp(1.1rem, 2vw, var(--text-xl)); }

p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-text);
  max-width: 68ch;
}

p + p { margin-top: var(--space-md); }

.text-sm    { font-size: var(--text-sm); }
.text-lg    { font-size: var(--text-lg); }
.text-xl    { font-size: var(--text-xl); }
.text-muted { color: var(--color-text-muted); }
.text-white { color: var(--color-white); }

.prose p { max-width: 72ch; }
.prose p + p { margin-top: var(--space-md); }

/* Section label (all-caps eyebrow) */
.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-crimson);
  display: block;
  margin-bottom: var(--space-sm);
}

/* Pull quote */
.pull-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, var(--text-3xl));
  font-style: italic;
  color: var(--color-navy);
  line-height: 1.35;
  border-left: 4px solid var(--color-gold);
  padding-left: var(--space-xl);
  margin: var(--space-2xl) 0;
}

/* -----------------------------------------------------------
   5. Layout Containers
   ----------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}

@media (max-width: 768px) {
  .container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }
}

@media (max-width: 375px) {
  .container {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
}

.section {
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-5xl);
}

.section-sm {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

@media (max-width: 768px) {
  .section { padding-top: var(--space-3xl); padding-bottom: var(--space-3xl); }
  .section-sm { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
}

.section-bg-white { background-color: var(--color-white); }
.section-bg-alt   { background-color: var(--color-bg-alt); }
.section-bg-navy  { background-color: var(--color-navy); }

.section-header {
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

/* Two-column grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
}

/* Three-column grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
}

/* Divider rule */
.rule {
  border: none;
  border-top: 1px solid var(--color-rule);
  margin: var(--space-2xl) 0;
}

/* -----------------------------------------------------------
   6. Navigation
   ----------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 200ms ease;
}

.nav-logo:hover img { opacity: 0.85; }

/* Desktop menu */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 200ms ease;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--color-gold); }
.nav-links a:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 2px; }

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: 0.03em;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 200ms ease;
  white-space: nowrap;
}

.nav-dropdown-toggle:hover { color: var(--color-gold); }

.dropdown-arrow {
  width: 14px;
  height: 14px;
  transition: transform 220ms ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  overflow: hidden;
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
  border-bottom: 1px solid var(--color-border);
}

.nav-dropdown-menu a:last-child { border-bottom: none; }

.nav-dropdown-menu a:hover {
  background: var(--color-bg);
  color: var(--color-navy);
}

/* Nav CTA button (small) */
.nav-cta {
  background-color: var(--color-crimson);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: var(--ease-fast);
  white-space: nowrap;
}

.nav-cta:hover {
  background-color: var(--color-crimson-dark);
  color: var(--color-white);
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: var(--ease-default);
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  background: var(--color-navy-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-lg) var(--space-xl);
}

.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  padding: var(--space-sm) 0;
  font-size: var(--text-base);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 150ms ease;
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--color-gold); }

.nav-mobile-services-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  padding-bottom: var(--space-xs);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 var(--space-lg); }
}

@media (max-width: 768px) {
  .nav-inner { height: 64px; }
  .nav-logo img { height: 40px; }
}

/* -----------------------------------------------------------
   7. Footer
   ----------------------------------------------------------- */
.site-footer {
  background-color: var(--color-navy);
  color: rgba(255,255,255,0.75);
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
}

.footer-brand img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 28ch;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.footer-col ul li { margin-bottom: var(--space-sm); }

.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  transition: color 150ms ease;
}

.footer-col a:hover { color: var(--color-white); }

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease;
}

.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-navy);
}

.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  max-width: none;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 150ms ease;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.85); }

/* -----------------------------------------------------------
   8. Buttons
   ----------------------------------------------------------- */

/* Primary: navy background, gold text */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 48px;
  transition: var(--ease-default);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-navy);
  color: var(--color-gold);
  border-color: var(--color-navy);
}

.btn-primary:hover {
  background-color: var(--color-navy-dark);
  border-color: var(--color-navy-dark);
  color: var(--color-gold);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* On dark (navy) backgrounds: gold background, navy text */
.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}

.btn-gold:hover {
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  color: var(--color-navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Ghost: outlined */
.btn-outline {
  background-color: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn-outline:hover {
  background-color: var(--color-navy);
  color: var(--color-gold);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}

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

/* -----------------------------------------------------------
   9. Hero Section
   ----------------------------------------------------------- */
.hero {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-5xl);
  position: relative;
  overflow: hidden;
}

/* Subtle nautical texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(120,166,216,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(46,49,146,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.hero h1 {
  color: var(--color-white);
  max-width: 18ch;
  margin-bottom: var(--space-lg);
}

.hero-subhead {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.80);
  max-width: 55ch;
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero { padding-top: var(--space-3xl); padding-bottom: var(--space-3xl); }
  .hero h1 { max-width: none; }
  .hero-subhead { font-size: var(--text-lg); }
}

/* Page hero (inner pages — shorter) */
.page-hero {
  background-color: var(--color-navy);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 30% 50%, rgba(120,166,216,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 { color: var(--color-white); margin-bottom: var(--space-md); }
.page-hero p  { color: rgba(255,255,255,0.78); font-size: var(--text-xl); max-width: 56ch; }

/* -----------------------------------------------------------
   10. Inquiry / CTA Band
   ----------------------------------------------------------- */
.inquiry-band {
  background-color: var(--color-crimson);
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inquiry-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(0,0,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.inquiry-band .container { position: relative; z-index: 1; }

.inquiry-band h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

.inquiry-band p {
  color: rgba(255,255,255,0.88);
  font-size: var(--text-lg);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-2xl);
  max-width: 56ch;
}

.inquiry-band .email-direct {
  display: block;
  margin-top: var(--space-lg);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms ease;
}

.inquiry-band .email-direct:hover { color: var(--color-white); }

/* -----------------------------------------------------------
   11. Card Component
   ----------------------------------------------------------- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  transition: box-shadow 220ms ease, transform 220ms ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.card-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-crimson);
  margin-bottom: var(--space-sm);
}

.card h3 {
  margin-bottom: var(--space-md);
  color: var(--color-navy);
}

.card p { flex: 1; }

.card-footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.card-footer .meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  transition: color 150ms ease, gap 150ms ease;
}

.card-link:hover {
  color: var(--color-crimson);
  gap: var(--space-sm);
}

.card-link::after {
  content: '→';
}

/* Service cards */
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-navy);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-card h3 { color: var(--color-navy); margin-bottom: var(--space-md); }

/* Two-paths comparison */
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

@media (max-width: 768px) {
  .paths-grid { grid-template-columns: 1fr; }
}

.path-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-gold);
}

.path-card.path-dfy { border-left-color: var(--color-navy); }
.path-card.path-dwy { border-left-color: var(--color-blue); }

.path-card h3 {
  color: var(--color-navy);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
}

.path-card .path-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.path-dfy .path-tag { background: rgba(46,49,146,0.1); color: var(--color-navy); }
.path-dwy .path-tag { background: rgba(120,166,216,0.2); color: #2c6aa0; }

/* -----------------------------------------------------------
   12. Credibility Strip
   ----------------------------------------------------------- */
.credentials-strip {
  background: var(--color-navy-dark);
  padding: var(--space-xl) 0;
  text-align: center;
}

.credentials-strip p {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-sm);
  font-style: italic;
  max-width: none;
  margin: 0 auto;
}

.credentials-strip strong {
  color: var(--color-gold);
  font-style: normal;
}

/* -----------------------------------------------------------
   13. Forms
   ----------------------------------------------------------- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 200ms ease, box-shadow 200ms ease;
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(46,49,146,0.12);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
  line-height: 1.65;
}

.form-submit { margin-top: var(--space-xl); }

/* -----------------------------------------------------------
   14. Lead Magnet Block
   ----------------------------------------------------------- */
.lead-magnet {
  background: var(--color-navy-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
}

.lead-magnet h3 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.lead-magnet p {
  color: rgba(255,255,255,0.78);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-xl);
  max-width: 52ch;
}

/* -----------------------------------------------------------
   15. Stats / Proof Strip
   ----------------------------------------------------------- */
.stats-strip {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-2xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; gap: var(--space-md); }
}

.stat-item h3 {
  font-size: clamp(1.75rem, 4vw, var(--text-4xl));
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.stat-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: none;
}

/* -----------------------------------------------------------
   16. Principle / Lesson items (Our Inspiration)
   ----------------------------------------------------------- */
.principle-item {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-rule);
}

.principle-item:last-child { border-bottom: none; }

.principle-number {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  color: rgba(46,49,146,0.10);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.principle-item h3 {
  color: var(--color-navy);
  margin-bottom: var(--space-md);
}

/* -----------------------------------------------------------
   17. Testimonial / Case Study
   ----------------------------------------------------------- */
.case-study {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-lg);
  border-left: 6px solid var(--color-crimson);
}

.case-study-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, var(--text-3xl));
  color: var(--color-navy);
  font-style: italic;
  margin-bottom: var(--space-xl);
  line-height: 1.3;
}

/* -----------------------------------------------------------
   18. Accessibility
   ----------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-md);
  background: var(--color-gold);
  color: var(--color-navy);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  transition: top 200ms ease;
}

.skip-link:focus { top: var(--space-md); }

/* -----------------------------------------------------------
   19. Utility classes
   ----------------------------------------------------------- */
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.max-prose { max-width: 68ch; }

/* Active nav link */
.nav-links a.active,
.nav-mobile a.active {
  color: var(--color-gold);
}
