/* Cormorant Garamond (Relliale stand-in) + Jost (body) — free Google Fonts */
/* @import MUST be first — before any other rules */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ================================================================
   GLOBAL.CSS — Seasoned Preneur
   Fresh build matching simonsinek.com structure
   Colors: Navy + Gold + Off-white + Simon's Green (#29362B)
   Fonts: Relliale/Cormorant Garamond (display) + Jost (body)
   ================================================================ */

/* Relliale — purchase Webfont license at myfonts.com, upload relliale-regular.woff2 to /fonts/ on cPanel */
@font-face {
  font-family: 'Relliale';
  src: url('fonts/relliale-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Relliale';
  src: url('fonts/relliale-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ── Tokens ── */
:root {
  /* Brand */
  --navy:         #081a2d;
  --navy-mid:     #0d2a47;
  --gold:         #c29f57;
  --gold-light:   #d4b472;
  --off-white:    #f7f3ed;
  --plum:         #1e1228;

  /* Simon's green (added per brief) */
  --green:        #29362b;
  --green-mid:    #3a4f3e;
  --green-muted:  #5b675d;
  --green-light:  #e8ede9;

  /* Neutrals */
  --cream:        #f0ecdb;
  --near-white:   #f7fffc;
  --body-text:    #2a1e2a;
  --mid-grey:     #6b7280;
  --light-grey:   #e5e7eb;
  --white:        #ffffff;

  /* Typography */
  --font-display: 'Relliale', 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', 'Jost', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;

  /* Layout */
  --section-pad: 88px;
  --container:   1200px;
  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--body-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* Match Advercase: headings are weight 400 (regular), not bold */
h1, h2, h3, h4 { font-weight: 400; }
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
h2 { font-family: var(--font-display); }
/* Body paragraphs match Google Sans Flex metrics */
p { line-height: 1.7; }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
.announcement-bar {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 200;
}
.announcement-bar a { text-decoration: underline; color: inherit; }
.announcement-bar .bar-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; font-size: 18px; cursor: pointer;
  color: var(--navy); opacity: 0.6; padding: 4px;
}

/* ================================================================
   AUDIENCE TABS
   ================================================================ */
.audience-tabs {
  position: sticky;
  top: 0;
  z-index: 199;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.audience-tabs-inner {
  display: flex;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.audience-tab {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.audience-tab:hover { color: rgba(255,255,255,0.9); }
.audience-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ================================================================
   NAVIGATION
   ================================================================ */
nav#nav {
  position: sticky;
  top: 38px;
  z-index: 198;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: 66px;
}
.nav-logo img { height: 38px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links > li > a,
.nav-mega-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  background: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-mega-toggle:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.btn-nav {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: var(--radius) !important;
}
.btn-nav:hover { background: var(--gold-light) !important; }

.nav-caret { font-size: 9px; opacity: 0.6; }

/* ── Mega Dropdown ── */
.nav-mega { position: relative; }
.nav-mega-panel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  padding: 28px;
  min-width: 680px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.nav-mega-panel.narrow {
  grid-template-columns: 1fr;
  min-width: 260px;
}
.nav-mega:hover .nav-mega-panel {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.mega-col {
  padding: 0 20px;
  border-right: 1px solid var(--light-grey);
}
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child { border-right: 0; padding-right: 0; }
.mega-col-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 14px;
}
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 4px;
  transition: background 0.15s;
}
.mega-item:hover { background: var(--off-white); }
.mega-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.mega-item-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.mega-item-text span {
  font-size: 12px;
  color: var(--mid-grey);
  line-height: 1.4;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  padding: 80px 32px 48px;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 30px; color: #fff;
  cursor: pointer; background: none; border: none;
}
.mobile-nav .mob-cta {
  margin-top: 24px;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  display: block;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s;
  text-decoration: none;
  white-space: nowrap;
}
/* Simon-style primary: near-white pill, dark text */
.btn-primary { background: var(--near-white); color: var(--body-text); border-color: var(--near-white); }
.btn-primary:hover { background: #fff; border-color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
/* Gold variant for light sections */
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); border-radius: 100px; }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn-dark { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-green { background: var(--green); color: var(--near-white); border-color: var(--green); }
.btn-green:hover { background: var(--green-mid); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-white { background: transparent; color: var(--near-white); border-color: rgba(247,255,252,0.5); }
.btn-outline-white:hover { background: rgba(247,255,252,0.12); border-color: var(--near-white); }
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ================================================================
   SECTIONS
   ================================================================ */
.section { padding: var(--section-pad) 0; }
.section-navy { background: var(--navy); color: #fff; }
.section-green { background: var(--green); color: var(--near-white); }
.section-cream { background: var(--cream); }
.section-off-white { background: var(--cream); }
.section-plum { background: var(--plum); color: #fff; }
.section-gold { background: var(--gold); color: var(--navy); }
.section-white { background: #fff; }

/* ── Section Header ── */
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-navy .section-label,
.section-green .section-label,
.section-plum .section-label { color: var(--gold); }
.section-gold .section-label { color: var(--navy); opacity: 0.6; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.2;
  color: var(--navy);
  font-weight: 700;
}
.section-navy .section-header h2,
.section-green .section-header h2,
.section-plum .section-header h2 { color: var(--near-white); }
.section-gold .section-header h2 { color: var(--navy); }
.section-header p {
  font-size: 1rem;
  color: var(--mid-grey);
  max-width: 580px;
  margin: 14px auto 0;
  line-height: 1.7;
}
.section-header.center p { margin: 14px auto 0; }
.section-navy .section-header p,
.section-green .section-header p { color: rgba(255,255,255,0.65); }

/* ================================================================
   HERO — Matches simonsinek.com pattern
   - Solid green (#29362b) background
   - 2-col: text left, visual right (flex-row-reverse)
   - H1: Space Mono, weight 400 (like Advercase), ~4.5rem
   - Body copy: 1.25rem, near-white 70% opacity
   ================================================================ */
.hero {
  background: var(--green);
  display: flex;
  align-items: center;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 28px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 80px;
  width: 100%;
}
.hero-visual {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-box {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(255,255,255,0.12);
}
.hero-text { flex: 1; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 400;
  color: var(--near-white);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.hero p {
  font-size: 1.2rem;
  color: rgba(247,255,252,0.7);
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-meta .tag {
  background: rgba(255,255,255,0.1);
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
  font-size: 13px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Hero: Dark (navy/plum bg for business/dark pages) ── */
.hero-dark {
  background: var(--plum);
}
.hero-dark h1 { color: var(--near-white); }

/* ── Hero: Centered (for simple inner pages) ── */
.hero-centered {
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 28px;
  min-height: 380px;
}
.hero-centered h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  color: var(--near-white);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.hero-centered p {
  font-size: 1.15rem;
  color: rgba(247,255,252,0.7);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

/* ── Hero: Navy centered (blog, podcast, faq) ── */
.hero-navy {
  background: var(--navy);
}
.hero-navy h1 { color: var(--near-white); }

/* Legacy .hero-content/.hero-wrap — keep for backward compat */
.hero-content { position: relative; z-index: 2; }
.hero-wrap { max-width: var(--container); margin: 0 auto; }
.hero-overlay { display: none; }

/* ── Hero: Dark (business pages) ── */
.hero-dark {
  min-height: 72vh;
  background: var(--plum);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.hero-dark .hero-img { opacity: 0.35; }
.hero-dark .hero-overlay {
  background: linear-gradient(0deg, rgba(30,18,40,0.95) 0%, rgba(30,18,40,0.5) 60%, transparent 100%);
}
.hero-dark-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 64px;
}
.hero-dark h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--near-white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero-dark p { font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 560px; }
.hero-dark .hero-btns { margin-top: 28px; }

/* ================================================================
   TRUSTED STRIP
   ================================================================ */
.trusted-strip {
  background: var(--green);
  padding: 22px 0;
}
.trusted-strip-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  overflow-x: auto;
  padding: 0 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.trusted-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  flex-shrink: 0;
}
.trusted-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
}
.trusted-logo {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ================================================================
   THREE WAYS / THREE PILLARS
   ================================================================ */
.three-ways { background: var(--off-white); }
.ways-heading {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--mid-grey);
  margin-bottom: 48px;
  font-weight: 400;
}
.ways-heading strong { color: var(--navy); font-weight: 700; }
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.way-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.way-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); }
.way-icon { font-size: 36px; margin-bottom: 18px; }
.way-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
}
.way-card p { font-size: 14px; color: var(--mid-grey); line-height: 1.7; margin-bottom: 20px; }
.way-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  transition: gap 0.2s;
}
.way-link:hover { gap: 10px; }

/* ================================================================
   FEATURE / SPLIT SECTIONS
   ================================================================ */
.feature-section { padding: var(--section-pad) 0; }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.feature-grid.reverse .feature-img { order: 2; }
.feature-grid.reverse .feature-content { order: 1; }
.feature-img { border-radius: var(--radius-xl); overflow: hidden; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-xl); }
.feature-img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 64px;
}
.feature-content .section-label { margin-bottom: 10px; }
.feature-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.2;
}
.feature-content p { color: var(--mid-grey); margin-bottom: 18px; font-size: 15px; line-height: 1.7; }
.feature-meta {
  font-size: 13px;
  font-weight: 700;
  color: var(--mid-grey);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.feature-list { margin: 20px 0 32px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--body-text);
  border-bottom: 1px solid var(--light-grey);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ================================================================
   CARDS / GRIDS
   ================================================================ */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,0.1); }
.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  color: rgba(255,255,255,0.3);
}
.card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.card-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.card h3 { font-family: var(--font-display); font-size: 1rem; color: var(--navy); margin-bottom: 10px; line-height: 1.35; font-weight: 700; }
.card p { font-size: 14px; color: var(--mid-grey); line-height: 1.6; flex: 1; }
.card-footer { padding: 0 26px 24px; }
.card-link { font-size: 13px; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }

/* ── Dark Card ── */
.card.dark { background: var(--navy); border-color: transparent; }
.card.dark h3 { color: var(--near-white); }
.card.dark p { color: rgba(255,255,255,0.65); }
.card.dark .card-label { color: var(--gold); }

/* ── Green Card ── */
.card.green-card { background: var(--green); border-color: transparent; }
.card.green-card h3 { color: var(--near-white); }
.card.green-card p { color: rgba(255,255,255,0.65); }

/* ================================================================
   SERVICE CARDS (Business page)
   ================================================================ */
.service-section { padding: var(--section-pad) 0; }
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.service-block.reverse .service-img { order: 2; }
.service-block.reverse .service-info { order: 1; }
.service-img {
  position: relative;
  min-height: 400px;
}
.service-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-img-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
  color: rgba(255,255,255,0.2);
}
.service-info {
  background: var(--white);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-info h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); margin-bottom: 10px; }
.service-info .service-sub { font-size: 15px; color: var(--gold); font-weight: 600; margin-bottom: 24px; }
.service-detail { margin-bottom: 12px; }
.service-detail strong { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-grey); display: block; margin-bottom: 4px; }
.service-detail p { font-size: 14px; color: var(--body-text); line-height: 1.6; }
.service-topics { margin: 20px 0 28px; }
.service-topics h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-grey); margin-bottom: 12px; }
.topic-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.topic-pill {
  background: var(--off-white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.08);
}

/* ================================================================
   BROWSE BY CHALLENGE PILLS
   ================================================================ */
.challenge-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.challenge-pill {
  background: var(--white);
  border: 2px solid var(--light-grey);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.challenge-pill:hover { border-color: var(--gold); color: var(--gold); background: rgba(194,159,87,0.06); }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.1);
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 2px; }
.testimonial-role { font-size: 12px; color: rgba(255,255,255,0.5); }

/* Single featured testimonial */
.testimonial-feature {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.testimonial-feature blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--near-white);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ================================================================
   QUOTE SECTION
   ================================================================ */
.quote-section {
  background: var(--green);
  padding: 88px 0;
  text-align: center;
}
.quote-dividers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}
.quote-divider { width: 40px; height: 1px; background: rgba(255,255,255,0.3); }
.quote-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.quote-section blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--near-white);
  max-width: 820px;
  margin: 0 auto 28px;
  line-height: 1.55;
  padding: 0 28px;
}
.quote-section cite {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  font-style: normal;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.quote-section .cite-name { color: rgba(255,255,255,0.8); font-weight: 700; letter-spacing: 0.06em; }

/* ================================================================
   EMAIL SIGNUP
   ================================================================ */
.email-signup {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
}
.email-signup h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #fff;
  margin-bottom: 14px;
}
.email-signup p { color: rgba(255,255,255,0.65); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.email-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}
.email-form input {
  flex: 1;
  padding: 15px 20px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.15);
  font-family: var(--font-body);
  font-size: 15px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.email-form input::placeholder { color: rgba(255,255,255,0.45); }
.email-form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.15); }
.email-form button {
  padding: 15px 26px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.email-form button:hover { background: var(--gold-light); }

/* ================================================================
   PODCAST / EPISODE LIST
   ================================================================ */
.episode-list { border-top: 1px solid rgba(255,255,255,0.1); }
.episode-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.15s;
}
.episode-num {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--gold);
  min-width: 90px;
  flex-shrink: 0;
}
.episode-info { flex: 1; }
.episode-season { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; margin-bottom: 4px; }
.episode-title { font-size: 15px; font-weight: 600; color: var(--near-white); margin-bottom: 4px; line-height: 1.4; }
.episode-dur { font-size: 12px; color: rgba(255,255,255,0.45); }
.episode-play {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.episode-play:hover { background: var(--gold); color: var(--navy); }

/* ================================================================
   BLOG STRIP
   ================================================================ */
.blog-meta { font-size: 12px; color: var(--mid-grey); margin-bottom: 10px; }

/* ================================================================
   FAQ
   ================================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--light-grey); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 16px;
  gap: 16px;
}
.faq-answer {
  font-size: 15px;
  color: var(--mid-grey);
  line-height: 1.75;
  padding-bottom: 22px;
  display: none;
}
.faq-item.open .faq-answer { display: block; }
.faq-toggle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--navy);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
  line-height: 1;
  font-weight: 300;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--gold); color: var(--navy); }

/* ================================================================
   CONTACT FORM
   ================================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-group label span { font-weight: 400; color: var(--mid-grey); margin-left: 4px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--light-grey);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
  color: var(--body-text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(194,159,87,0.15);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* ================================================================
   PRICING
   ================================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 44px; }
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 2px solid var(--light-grey);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-card.featured { border-color: var(--gold); box-shadow: 0 8px 40px rgba(194,159,87,0.15); }
.pricing-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.pricing-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.pricing-price { font-family: var(--font-display); font-size: 2.8rem; color: var(--navy); margin: 12px 0 4px; line-height: 1; }
.pricing-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 8px; }
.pricing-period { font-size: 13px; color: var(--mid-grey); margin-bottom: 28px; }
.pricing-features { border-top: 1px solid var(--light-grey); padding-top: 24px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--body-text);
  padding: 7px 0;
}
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ================================================================
   PEOPLE / TEAM CARDS
   ================================================================ */
.people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.person-card { text-align: center; }
.person-avatar {
  width: 100%; aspect-ratio: 1;
  border-radius: var(--radius-lg);
  object-fit: cover;
  margin-bottom: 14px;
}
.person-avatar-placeholder {
  width: 100%; aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  margin-bottom: 14px;
}
.person-name { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.person-role { font-size: 13px; color: var(--mid-grey); }
.section-navy .person-name { color: var(--near-white); }
.section-navy .person-role { color: rgba(255,255,255,0.55); }
.section-green .person-name { color: var(--near-white); }
.section-green .person-role { color: rgba(255,255,255,0.55); }

/* ================================================================
   VALUES GRID
   ================================================================ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.1);
}
.value-icon { font-size: 28px; margin-bottom: 16px; }
.value-card h3 { font-family: var(--font-display); font-size: 0.95rem; color: var(--near-white); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.7; }

/* ================================================================
   CTA STRIP
   ================================================================ */
.cta-strip {
  background: var(--gold);
  padding: 64px 0;
  text-align: center;
}
.cta-strip h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--navy); margin-bottom: 12px; }
.cta-strip p { color: rgba(8,26,45,0.7); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ================================================================
   FOOTER
   ================================================================ */
footer.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 56px;
}
.footer-logo img { height: 36px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.48);
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
  font-style: normal;
}
.social-icon:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.38); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.38); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ================================================================
   UTILITIES
   ================================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-green { color: var(--green); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-4 { gap: 16px; }
.gap-8 { gap: 32px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .feature-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ways-grid { grid-template-columns: 1fr 1fr; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .people-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  :root { --section-pad: 64px; }
  .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid.reverse .feature-img,
  .feature-grid.reverse .feature-content { order: unset; }
  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse .service-img { order: unset; }
  .service-block.reverse .service-info { order: unset; }
  .service-img { min-height: 280px; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .form-group.full { grid-column: auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-pad: 52px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-mega-panel { display: none !important; }
  .ways-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
  .hero-btns { flex-direction: column; }
  .three-ways .ways-grid { grid-template-columns: 1fr; }
  .audience-tabs-inner { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .card-grid-4 { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.8rem; }
}

/* ================================================================
   SHARED JS BEHAVIOURS (add class via JS)
   ================================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
