/* ============================================================
   Rank Up Martial Arts. Design System
   Brand: Navy + Gold dojo crest, kids/family Taekwondo, San Jose
   ============================================================ */

:root {
  /* Colors */
  --navy: #173B6C;
  --navy-deep: #0E2547;
  --navy-darker: #081933;
  --gold: #C9A449;
  --gold-light: #E2C46A;
  --gold-soft: #F2E3B5;
  --cream: #FBF7EE;
  --off-white: #F8F5EE;
  --white: #FFFFFF;
  --ink: #16203A;
  --text: #1F2A44;
  --muted: #5C6B85;
  --line: #E4DDC8;
  --shadow: 0 24px 48px -24px rgba(15, 35, 70, 0.35);
  --shadow-sm: 0 8px 20px -12px rgba(15, 35, 70, 0.25);

  /* Type */
  --font-display: 'Oswald', 'Bebas Neue', 'Arial Narrow', system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --max: 1200px;
  --gutter: clamp(1rem, 4vw, 2.25rem);
  --radius: 14px;
  --radius-lg: 22px;

  /* Belt colors (Taekwondo progression) */
  --belt-white: #F8F5EE;
  --belt-white-edge: #C9C2AE;
  --belt-yellow: #F4D04A;
  --belt-orange: #E89642;
  --belt-green: #4F9E5E;
  --belt-blue: #2F6FB4;
  --belt-red: #C03D2D;
  --belt-black: #1E1E2E;

  /* Beginner-tier accent (white/yellow/orange) */
  --beg-bg: #FEF3E2;
  --beg-text: #8C4A14;
  --beg-edge: #F0CFA8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); text-transform: uppercase; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.85rem); text-transform: uppercase; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p { margin: 0 0 1em; }

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .75rem;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { padding: clamp(3rem, 7vw, 5.5rem) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy-deep);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .75rem 0;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.nav-brand img {
  height: 56px;
  width: auto;
}
.nav-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-deep);
  line-height: 1;
}
.nav-brand-text small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
  margin-top: .15rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta { margin-left: .5rem; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--navy-deep);
    flex-direction: column;
    padding: 2.5rem var(--gutter);
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--white); font-size: 1.1rem; }
  .nav-cta { width: 100%; margin: .5rem 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 70% 0%, rgba(201,164,73,0.18), transparent 60%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-darker) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 60px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.hero h1 { color: var(--white); }
.hero .accent { color: var(--gold-light); }
.hero p.lead {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: rgba(255,255,255,0.88);
  max-width: 36rem;
  margin-bottom: 2rem;
}
.hero .cta-row { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero-trustline {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  font-size: .92rem;
  color: rgba(255,255,255,.78);
}
.hero-trustline span {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.hero-trustline svg { color: var(--gold-light); }

/* Hero offer card */
.offer-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
  border: 1px solid rgba(201,164,73,0.4);
  position: relative;
  overflow: hidden;
}
.offer-card::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,73,0.25), transparent 70%);
}
.offer-card .offer-badge {
  display: inline-block;
  background: var(--navy-deep);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.offer-card h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: .35rem;
  color: var(--navy-deep);
}
.offer-price {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 1;
  color: var(--navy-deep);
  margin: .25rem 0 .5rem;
}
.offer-price small {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: .25rem;
}
.offer-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.offer-includes li {
  display: flex;
  gap: .65rem;
  padding: .35rem 0;
  font-weight: 500;
}
.offer-includes li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
}
.offer-card .btn { width: 100%; justify-content: center; }

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

/* ---------- Marquee strip (benefits) ---------- */
.benefit-strip {
  background: var(--navy-deep);
  color: var(--gold-light);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(201,164,73,.25);
  border-bottom: 1px solid rgba(201,164,73,.25);
}
.benefit-strip-inner {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.benefit-strip-inner span { display: inline-flex; align-items: center; gap: .6rem; }
.benefit-strip-inner span::before { content: "★"; color: var(--gold); }

/* ---------- Section heading ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-head p {
  font-size: 1.1rem;
  color: var(--muted);
}
.section-head--left { text-align: left; margin-left: 0; }

/* ---------- Cards / grid ---------- */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.card .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
.card h3 { color: var(--navy-deep); margin-bottom: .5rem; }
.card p { color: var(--text); margin: 0; }

/* Dark variant of the standard card (used on Black Belt block) */
.card-dark {
  background: linear-gradient(135deg, #1E1E2E, #0E2547);
  color: var(--white);
  border-color: rgba(201,164,73,.4);
}
.card-dark h3 { color: var(--gold-light); }
.card-dark p,
.card-dark li,
.card-dark .meta,
.card-dark { color: rgba(255,255,255,.92); }
.card-dark .belt-label { color: var(--gold-light); }
.card-dark a { color: var(--gold-light); }
.card-dark a:hover { color: var(--white); }

/* Belt graphic icons (used on Promotion Path + similar) */
.belt-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  margin-bottom: 1rem;
}
.belt-icon svg { width: 100%; height: 100%; display: block; }

/* Action-icon tile (Core Competencies on About) */
.action-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  margin-bottom: 1rem;
  padding: 12px;
}
.action-icon svg { width: 100%; height: 100%; display: block; color: inherit; }

/* Program-style card with belt stripe */
.program-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.program-card .belt {
  height: 14px;
  background: linear-gradient(90deg, var(--belt-color) 0%, var(--belt-color-2, var(--belt-color)) 100%);
}
.program-card .body { padding: 1.75rem; }
.program-card h3 { color: var(--navy-deep); }
.program-card .belt-label {
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: .25rem;
  display: block;
}
.program-card.is-dark .belt-label { color: var(--gold-light); }
.program-card .meta {
  display: flex;
  gap: 1.25rem;
  font-size: .92rem;
  color: var(--muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
/* Ensure program-card body text stays readable even inside dark sections */
.program-card .body p { color: var(--text); }
.section-dark .program-card .body p { color: var(--text); }
.section-dark .program-card .body h3 { color: var(--navy-deep); }

/* ---------- Why us section ---------- */
.section-dark {
  background: var(--navy-deep);
  color: var(--white);
}
.section-dark h2 { color: var(--white); }
.section-dark .kicker { color: var(--gold-light); }
.section-dark .section-head p { color: rgba(255,255,255,.78); }
.section-dark .card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(201,164,73,0.25);
  color: var(--white);
}
.section-dark .card h3 { color: var(--gold-light); }
.section-dark .card p { color: rgba(255,255,255,.85); }
.section-dark .card:hover { border-color: var(--gold); background: rgba(255,255,255,0.06); }

/* ---------- Schedule grid ---------- */
.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.schedule-table th, .schedule-table td {
  padding: 1rem .75rem;
  text-align: center;
  border-radius: 8px;
  font-weight: 500;
}
.schedule-table thead th {
  background: var(--navy-deep);
  color: var(--gold-light);
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: .85rem;
}
.schedule-table tbody th {
  background: var(--white);
  color: var(--navy-deep);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  font-size: .9rem;
  border: 1px solid var(--line);
}
.schedule-table tbody td {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--line);
}
.schedule-table tbody td.empty {
  background: transparent;
  border: 1px dashed rgba(94,107,133,.3);
  color: rgba(94,107,133,.5);
  font-style: italic;
}
.schedule-table tbody td.beg { background: var(--beg-bg); color: var(--beg-text); border-color: var(--beg-edge); }
.schedule-table tbody td.int { background: #E8F1FB; color: #133A6E; border-color: #B7D2EC; }
.schedule-table tbody td.adv { background: #FBE9E0; color: #6B2A12; border-color: #EBC1A8; }
.schedule-table tbody td.bb  { background: #1E1E2E; color: var(--gold-light); border-color: #2D2D45; }
.schedule-table tbody td.both { background: var(--navy); color: var(--gold-light); border-color: var(--navy-deep); }

@media (max-width: 720px) {
  .schedule-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .schedule-table { min-width: 640px; }
}

.belt-legend {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
  justify-content: center;
}
.belt-chip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
}
.belt-chip .swatch {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,.1);
}

/* ---------- Big CTA band ---------- */
.cta-band {
  background:
    linear-gradient(135deg, rgba(14,37,71,0.95), rgba(23,59,108,0.92)),
    radial-gradient(circle at 20% 50%, rgba(201,164,73,0.4), transparent 50%);
  color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(226,196,106,0.18), transparent 40%);
}
.cta-band-inner { position: relative; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.88); font-size: 1.15rem; margin-bottom: 2rem; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: 1rem;
  max-width: 560px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-deep);
  font-weight: 600;
  margin-bottom: .35rem;
  display: block;
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,164,73,0.18);
}
.form textarea { min-height: 140px; resize: vertical; }
.form .btn { justify-self: start; }
.form-note { font-size: .85rem; color: var(--muted); }

/* ---------- Page hero (small) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 300px at 70% 0%, rgba(201,164,73,0.18), transparent 60%);
}
.page-hero-inner { position: relative; max-width: 800px; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.15rem; margin: 0; max-width: 640px; }
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .75rem;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}
.crumbs a { color: var(--gold-light); }
.crumbs a:hover { color: var(--white); }

/* ---------- Map / location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: stretch;
}
@media (max-width: 880px) { .location-grid { grid-template-columns: 1fr; } }
.location-info {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.location-info h3 { color: var(--navy-deep); margin-bottom: 1rem; }
.location-info ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.location-info li {
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
  display: flex; gap: .8rem; align-items: flex-start;
  font-size: .98rem;
}
.location-info li:last-child { border-bottom: 0; }
.location-info li strong {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  font-size: .8rem;
  min-width: 80px;
  flex-shrink: 0;
  padding-top: 2px;
}
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq details[open] { border-color: var(--gold); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform .25s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 1.5rem 1.25rem; color: var(--text); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-darker);
  color: rgba(255,255,255,.78);
  padding: 3.5rem 0 2rem;
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 {
  color: var(--gold-light);
  font-size: .9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: .35rem 0; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--gold-light); }
.footer-brand img { height: 64px; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,.7); max-width: 32ch; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}

/* ---------- Misc ---------- */
.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .5rem;
}
.eyebrow-row .stripe {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.testimonial blockquote {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 1rem;
  font-style: italic;
}
.testimonial cite {
  font-style: normal;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--gold);
  font-weight: 600;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bullet-list li {
  padding: .55rem 0 .55rem 1.75rem;
  position: relative;
}
.bullet-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

/* Skip link for a11y */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px; height: 1px;
}
.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto; height: auto;
  background: var(--gold);
  color: var(--navy-deep);
  padding: .75rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  z-index: 100;
}

/* ---------- Global keyboard focus styles (WCAG 2.4.7) ---------- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}
/* Suppress default focus styles where focus-visible takes over */
:focus:not(:focus-visible) { outline: none; }

/* ---------- Footer h3 (was h4 for heading-hierarchy fix) ---------- */
.site-footer h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin: 0 0 1rem;
}

