/* ============================================================
   Born to Speak — Design System
   ============================================================ */

:root {
  --navy: #0a0a0a;          /* near-black — kept variable name for compatibility */
  --navy-soft: #1a1a1a;
  --cream: #f5f1ea;
  --cream-warm: #ebe5d6;
  --gold: #c9a961;
  --gold-light: #e0c785;
  --charcoal: #141414;
  --muted: #6b6b6b;
  --line: #e2dccd;
  --max: 1200px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --shadow-sm: 0 1px 2px rgba(11, 29, 58, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 29, 58, 0.08);
  --shadow-lg: 0 20px 60px rgba(11, 29, 58, 0.12);
  --radius: 4px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; font-family: 'Inter', sans-serif; font-weight: 600; }

p { margin-bottom: 1rem; color: #2a2a2a; }
p.lead { font-size: 1.15rem; color: #3a3a3a; max-width: 60ch; }

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

/* ---- Layout helpers ---- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.section--dark {
  background: var(--navy);
  color: var(--cream);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(250, 248, 243, 0.8); }
.section--dark .eyebrow { color: var(--gold-light); }

.section--cream { background: var(--cream-warm); }

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }

.section-header { max-width: 48rem; margin-bottom: 3rem; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
}
.btn--primary {
  background: var(--navy);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--navy-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn--gold {
  background: var(--gold);
  color: #fff;
}
.btn--gold:hover { background: #97742e; }

.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold-light);
  border-radius: 2px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
}

/* Brand wordmark uppercase treatment for Born to Speak */
.brand .wordmark {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.brand .wordmark em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

/* Pillar number — large display numeral used on home/pillars pages */
.pillar-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.25rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}

/* YouTube card */
.yt-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.25s var(--ease);
}
.yt-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.yt-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.yt-thumb::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='white'><polygon points='8,5 19,12 8,19'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  transition: background 0.2s;
}
.yt-card:hover .yt-thumb::after { background-color: var(--gold); }
.yt-meta { padding: 1rem 1.25rem 1.25rem; }
.yt-meta h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.yt-meta span {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Pull quote */
.pull {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.3;
  color: var(--navy);
  font-style: italic;
  max-width: 38ch;
}
.section--dark .pull { color: var(--cream); }

/* Price card */
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
}
.price-card.highlight {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.price-card.highlight h3 { color: #fff; }
.price-card.highlight .price-amt { color: var(--gold-light); }
.price-card.highlight ul li { color: rgba(245,241,234,0.85); border-color: rgba(255,255,255,0.1); }
.price-card.highlight .price-tag { background: var(--gold); color: var(--navy); }
.price-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  background: var(--cream-warm);
  color: var(--navy);
  border-radius: 2px;
  align-self: flex-start;
  margin-bottom: 1rem;
}
.price-amt {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin: 0.5rem 0 0.25rem;
}
.price-amt small {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 0.25rem;
}
.price-card h3 { margin-bottom: 0.5rem; }
.price-card > p { color: #4a4a4a; margin-bottom: 1.25rem; }
.price-card.highlight > p { color: rgba(245,241,234,0.8); }
.price-card ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}
.price-card ul li {
  font-size: 0.95rem;
  padding: 0.7rem 0 0.7rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: #2a2a2a;
}
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.05em;
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
}
.price-card .btn { width: 100%; justify-content: center; }

/* Social row */
.socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: rgba(245,241,234,0.7);
  transition: all 0.2s var(--ease);
}
.socials a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: #3a3a3a;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
}

.nav-cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: all 0.3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 1rem 0;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s var(--ease);
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { padding: 0 var(--pad); }
  .nav-links a { display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
  .nav-links li:last-child a { border: none; }
  .nav-cta { margin: 0.5rem var(--pad); justify-content: center; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}
.hero--home {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.hero--page {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
}
.hero--page h1 { color: #fff; }
.hero--page p { color: rgba(250, 248, 243, 0.85); }
.hero--page .eyebrow { color: var(--gold-light); }

.hero-inner { max-width: 56rem; }
.hero h1 { margin-bottom: 1.25rem; }
.hero p.lead { margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-decor {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 138, 62, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Cards ---- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s var(--ease);
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--cream-warm);
  color: var(--navy);
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.card h3 { margin-bottom: 0.75rem; }
.card p { color: #4a4a4a; margin-bottom: 0; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.card-link:hover { color: var(--gold); }

/* ---- Stats ---- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  gap: 2.5rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.92rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.section--dark .stat-label { color: rgba(250, 248, 243, 0.7); }

/* ---- Quote / Testimonial ---- */
.quote {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.section--dark .quote-text { color: #fff; }
.quote-author { font-size: 0.95rem; }
.quote-author strong { color: inherit; }
.quote-author span { color: var(--muted); display: block; font-size: 0.88rem; margin-top: 0.25rem; }

/* ---- Logo strip (clients) ---- */
.logo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  opacity: 0.7;
}
.logo-strip span {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 500;
}

/* ---- Service detail ---- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.service-row:last-child { border-bottom: none; }
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.service-row h3 { margin-bottom: 0.75rem; }
.service-list {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 0.5rem 1.5rem;
}
.service-list li {
  font-size: 0.95rem;
  color: #3a3a3a;
  padding-left: 1.25rem;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7em;
  width: 6px; height: 1px;
  background: var(--gold);
}
@media (max-width: 720px) {
  .service-row { grid-template-columns: 1fr; gap: 1rem; }
  .service-num { font-size: 2rem; }
}

/* ---- Team ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 2.5rem;
}
.team-card { text-align: left; }
.team-photo {
  aspect-ratio: 4 / 5;
  background: var(--cream-warm);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--navy);
  background: linear-gradient(135deg, #e8e1cf 0%, #d4c89f 100%);
  overflow: hidden;
  position: relative;
}
.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 29, 58, 0.15));
}
.team-card h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.team-title {
  display: block;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.team-card p { font-size: 0.92rem; color: #4a4a4a; }

/* ---- Events ---- */
.event-list { display: flex; flex-direction: column; gap: 1.25rem; }
.event {
  display: grid;
  grid-template-columns: 7rem 1fr auto;
  gap: 2rem;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: center;
  transition: all 0.25s var(--ease);
}
.event:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.event-date {
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 2rem;
}
.event-month {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
}
.event-day {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--navy);
  line-height: 1;
}
.event-year { display: block; font-size: 0.82rem; color: var(--muted); }
.event-body h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.event-meta {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.event-meta span + span::before { content: '•'; margin: 0 0.5rem; color: var(--line); }
.event p { font-size: 0.95rem; color: #4a4a4a; margin-bottom: 0; }
.event-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  background: var(--cream-warm);
  color: var(--navy);
}
.event-tag.tag--past { background: #ececec; color: var(--muted); }
@media (max-width: 720px) {
  .event { grid-template-columns: 1fr; gap: 1rem; }
  .event-date { display: flex; gap: 0.6rem; align-items: baseline; border-right: none; border-bottom: 1px solid var(--line); padding: 0 0 1rem; }
  .event-day { font-size: 1.75rem; }
}

/* ---- Form ---- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11, 29, 58, 0.08);
}
.field textarea { min-height: 8rem; resize: vertical; }
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ---- Contact info ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.contact-block { padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.contact-block:last-child { border-bottom: none; }
.contact-block h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-block p { margin-bottom: 0; }
.contact-block a { color: var(--navy); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.contact-block a:hover { border-color: var(--gold); }

/* ---- Values ---- */
.value {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.value h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* ---- Timeline ---- */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0.45rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: var(--line);
}
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.7rem;
  top: 0.5rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream);
}
.timeline-year {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.timeline-item p { color: #4a4a4a; margin-bottom: 0; }

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: rgba(250, 248, 243, 0.75);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { color: #fff; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand-mark { background: var(--gold); color: var(--navy); }
.footer-brand p {
  margin-top: 1rem;
  color: rgba(250, 248, 243, 0.65);
  max-width: 22rem;
  font-size: 0.92rem;
}

.footer-col h5 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  font-size: 0.92rem;
  color: rgba(250, 248, 243, 0.7);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(250, 248, 243, 0.55);
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---- CTA banner ---- */
.cta-banner {
  background: var(--navy);
  color: #fff;
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; max-width: 38rem; margin: 0 auto 1rem; }
.cta-banner p { color: rgba(250, 248, 243, 0.8); max-width: 38rem; margin: 0 auto 2rem; }

/* ---- Reveal on scroll ---- */
/* Visible by default so content always shows even if JS is blocked. */
.reveal { opacity: 1; transform: none; }
/* Only hide for animation once JS has flagged the document. */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---- Industry tile (B2B) ---- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.25rem;
}
.industry-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.industry-tile::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease);
}
.industry-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.industry-tile:hover::before { transform: scaleY(1); }
.industry-tile h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.industry-tile p {
  font-size: 0.9rem;
  color: #4a4a4a;
  margin-bottom: 0.75rem;
}
.industry-tile .arrow {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.section--dark .industry-tile {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  color: var(--cream);
}
.section--dark .industry-tile h3 { color: #fff; }
.section--dark .industry-tile p { color: rgba(245,241,234,0.75); }

/* ---- Program / offer card (B2B tiers) ---- */
.program-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s var(--ease);
}
.program-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.program-card.featured {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--gold);
}
.program-card.featured h3 { color: #fff; }
.program-card.featured ul li { color: rgba(245,241,234,0.85); border-color: rgba(255,255,255,0.1); }
.program-card.featured .program-meta { color: var(--gold-light); }
.program-card.featured .program-price { color: var(--gold-light); }
.program-meta {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}
.program-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0.75rem 0 1.25rem;
  line-height: 1.2;
}
.program-price small {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 0.25rem;
}
.program-card h3 { margin-bottom: 0.5rem; }
.program-card > p { color: #4a4a4a; margin-bottom: 1.25rem; font-size: 0.95rem; }
.program-card.featured > p { color: rgba(245,241,234,0.8); }
.program-card ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}
.program-card ul li {
  font-size: 0.92rem;
  padding: 0.65rem 0 0.65rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.program-card ul li:last-child { border-bottom: none; }
.program-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 1em;
  width: 7px; height: 7px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
}
.program-card .btn { width: 100%; justify-content: center; }

/* ---- Region pill ---- */
.region-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--gold);
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.region-pill::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ---- Industry detail block ---- */
.industry-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.industry-block:last-child { border-bottom: none; }
.industry-block h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.industry-block .industry-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.industry-block .outcomes {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 0.4rem 1.5rem;
}
.industry-block .outcomes li {
  font-size: 0.92rem;
  color: #3a3a3a;
  padding-left: 1.1rem;
  position: relative;
}
.industry-block .outcomes li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 6px; height: 1px;
  background: var(--gold);
}
.industry-block .examples {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
  font-style: italic;
}
@media (max-width: 720px) {
  .industry-block { grid-template-columns: 1fr; gap: 1rem; }
}

/* ---- Utilities ---- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
