/* ============================================================
   STRASBURG COACHING — DESIGN SYSTEM
   Homepage Rebuild v1.0 — May 2026
   ============================================================ */

/* ============================================================
   PART 1 — FONT SYSTEM
   ============================================================ */
:root {
  --font-display: 'Lora', Georgia, serif;
  --font-hand:    'Moontime', cursive;
  --font-body:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}

/* ============================================================
   PART 2 — COLOR SYSTEM
   ============================================================ */
:root {
  --cream:   #F5F3EF;
  --white:   #FFFFFF;
  --navy:    #1B3A5C;
  --gold:    #B88917;
  --warm:    #8B5E3C;
  --text:    #4A4A4A;
  --muted:   #7A7069;
  --border:  #D6CFC4;

  /* Spacing */
  --section-pad: 80px 0;
  --section-pad-sm: 48px 0;
  --container-max: 1100px;
  --container-narrow: 760px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(27, 58, 92, 0.08);
  --shadow-md:   0 4px 20px rgba(27, 58, 92, 0.12);
  --shadow-lg:   0 8px 40px rgba(27, 58, 92, 0.16);

  /* Border Radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;

  /* Transitions */
  --transition:  all 0.25s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
  text-decoration: none;
  font-family: var(--font-body);
  transition: var(--transition);
}

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

/* ============================================================
   TYPOGRAPHY — Global heading and body scale
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
}

h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 700; line-height: 1.1; }
h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; line-height: 1.15; }
h3 { font-size: clamp(20px, 3vw, 28px); font-weight: 600; line-height: 1.2; }
p  { font-size: 17px; font-weight: 300; line-height: 1.75; font-family: var(--font-body); }

body, p, li, a, button, input, nav, label, span, footer {
  font-family: var(--font-body);
}

/* Moontime — only where explicitly specified */
.hand {
  font-family: var(--font-hand);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-pad);
}

/* Section backgrounds */
.section-cream { background-color: #F5F3EF; }
.section-white { background-color: #FFFFFF; }
.section-sage  { background-color: #EAF0EC; }
.section-dark  { background-color: #1B3A5C; color: #FFFFFF; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  line-height: 1;
  white-space: nowrap;
}

/* Primary CTA — gold */
.btn-primary {
  background-color: #B88917;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 500;
  border: none;
  border-radius: 4px;
  padding: 14px 28px;
  font-size: 16px;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #A07814;
  color: #FFFFFF;
}

/* Secondary — outlined navy */
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: 4px;
  padding: 13px 28px;
  font-size: 16px;
}

.btn-secondary:hover {
  background: var(--navy);
  color: #FFFFFF;
}

/* White outlined — for dark backgrounds */
.btn-white {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: 4px;
  padding: 13px 28px;
  font-size: 16px;
}

.btn-white:hover {
  background: rgba(255,255,255,0.1);
  color: #FFFFFF;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  font-weight: 500;
}

.nav-cta a {
  background-color: #B88917 !important;
  color: #FFFFFF !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 500 !important;
  font-size: 0.875rem;
  transition: var(--transition);
}

.nav-cta a:hover {
  background-color: #A07814 !important;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child {
    border-bottom: none;
    padding-top: 16px;
  }

  .nav-cta a {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background-color: #F5F3EF;
  padding: 80px 0 60px;
}

.hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 520px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
}

.hero-subheadline {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.hero-link-secondary {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.hero-link-secondary:hover {
  border-bottom-color: var(--navy);
  color: var(--navy);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 460px;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    height: 420px;
    max-width: 100%;
  }

  .hero-actions .btn-primary {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section {
  background-color: var(--white);
  padding: var(--section-pad);
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 32px;
}

.problem-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border-top: 3px solid var(--gold);
}

.problem-card-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

.problem-closing {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  text-align: center;
  margin-top: 32px;
}

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

/* ============================================================
   GUIDE SECTION
   ============================================================ */
.guide-section {
  background-color: var(--white);
  padding: var(--section-pad);
}

.guide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.guide-image img {
  width: 100%;
  max-width: 420px;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.guide-content h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 28px;
}

.guide-content p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 20px;
}

.guide-quote {
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin: 28px 0;
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.guide-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.guide-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
  transition: var(--transition);
}

.guide-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

@media (max-width: 768px) {
  .guide-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .guide-image img {
    height: 380px;
    max-width: 100%;
  }
}

/* ============================================================
   THREE STEPS SECTION
   ============================================================ */
.steps-section {
  background-color: #EAF0EC;
  padding: var(--section-pad);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
}

.step-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

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

/* ============================================================
   WHAT'S POSSIBLE SECTION
   ============================================================ */
.possible-section {
  background-color: var(--cream);
  padding: var(--section-pad);
}

.possible-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.possible-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.possible-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.possible-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.possible-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

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

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  background-color: var(--white);
  padding: var(--section-pad);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}

.testimonial-card p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
  padding-top: 24px;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}

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

/* ============================================================
   WHERE TO START SECTION
   ============================================================ */
.start-section {
  background-color: var(--white);
  padding: var(--section-pad);
}

.start-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.start-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
}

.start-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.start-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}

.start-card p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .start-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   COST OF WAITING SECTION
   ============================================================ */
.cost-section {
  background-color: #1B3A5C;
  color: #FFFFFF;
  padding: var(--section-pad);
}

.cost-section .section-label {
  color: rgba(184, 137, 23, 0.9);
}

.cost-section h2 {
  color: #FFFFFF;
}

.cost-section > .container > p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 40px;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.cost-card {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.12);
}

.cost-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.cost-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

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

/* ============================================================
   EMAIL SIGNUP / CHALLENGE CTA SECTION
   ============================================================ */
.signup-section {
  background-color: #1B3A5C;
  padding: var(--section-pad);
  text-align: center;
}

.signup-section .section-label {
  color: rgba(184, 137, 23, 0.9);
}

.signup-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.signup-section .signup-sub {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.signup-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
}

.signup-form input {
  flex: 1;
  min-width: 160px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 15px;
}

.signup-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.signup-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.15);
}

.signup-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
}

@media (max-width: 480px) {
  .signup-form {
    flex-direction: column;
  }

  .signup-form input,
  .signup-form .btn-primary {
    width: 100%;
  }
}

/* ============================================================
   PODCAST SECTION
   ============================================================ */
.podcast-section {
  background-color: var(--cream);
  padding: var(--section-pad);
}

.podcast-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.podcast-content h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.podcast-content p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 16px;
}

.podcast-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.podcast-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.podcast-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--navy);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: var(--transition);
}

.podcast-link:hover {
  background: var(--navy);
  color: #FFFFFF;
}

.podcast-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: #FFFFFF;
  text-align: center;
}

.podcast-show-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.3;
}

.podcast-show-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.podcast-episode-list {
  list-style: none;
  text-align: left;
}

.podcast-episode-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.podcast-episode-list li:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .podcast-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   CLOSING CTA SECTION
   ============================================================ */
.closing-section {
  background-color: #F5F3EF;
  padding: var(--section-pad);
  text-align: center;
}

.closing-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.closing-section p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 36px;
}

.closing-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background-color: #1B3A5C;
  color: #FFFFFF;
  font-family: var(--font-body);
}

.site-footer {
  background-color: #1B3A5C;
  color: #FFFFFF;
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-contact {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

.footer-contact a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-family: var(--font-body);
}

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

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: var(--transition);
}

.footer-nav-links a:hover {
  color: #FFFFFF;
}

.footer-nav-links span {
  font-family: var(--font-body);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0 0 24px;
}

.footer-bottom {
  text-align: center;
}

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

/* ============================================================
   ACCORDION (FAQ)
   ============================================================ */
.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.accordion-trigger:hover {
  color: var(--gold);
}

.accordion-trigger::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: var(--transition);
}

.accordion-trigger[aria-expanded="true"]::after {
  content: '−';
}

.accordion-body {
  display: none;
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

.accordion-body.open {
  display: block;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-navy   { color: var(--navy); }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--muted); }
.text-white  { color: #FFFFFF; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

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