/*
Theme Name: College Funding Specialists TX
Theme URI: https://www.collegefundingspecialiststx.com/
Author: Sharmila
Description: Custom theme for College Funding Specialists TX — Austin-based college financial planning consultancy.
Version: 1.0
Text Domain: cfstx
*/

/* ================================================
   COLLEGE FUNDING SPECIALISTS v2
   Warm Cream · Gold · Terracotta · Forest Green
   Layout: organic shapes, layered cards, diagonal
   ================================================ */

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

/* Consistent, visible keyboard-focus ring across every interactive element.
   Mouse/touch users never see this (:focus-visible skips pointer-triggered focus). */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.workshop-fab:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}
.form-input:focus-visible {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58,107,62,0.18);
}

/* Skip-to-content link — invisible until a keyboard user tabs to it,
   then jumps straight past the nav/marquee to the main content. */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10001;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

/* Visually hidden but still announced by screen readers — used for form
   <label> elements where a placeholder already shows the same text visually
   (placeholders disappear on input and aren't a substitute for a real label). */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  /* Warm palette */
  --cream:       #FAF6F0;
  --cream-dark:  #F2EBE0;
  --parchment:   #EDE0CC;
  --gold:        #C9892A;
  --gold-text:   #9C6417;     /* darker gold for actual text — the base --gold fails WCAG AA on cream (2.75:1); this passes at 4.59:1 */
  --gold-light:  #F5E4C0;
  --gold-pale:   #FDF5E4;
  --terra:       #C0573A;
  --terra-light: #F5E0D8;
  --green:       #3A6B3E;     /* pulled from logo */
  --green-light: #D6E8D7;
  --green-mid:   #4D8A52;
  --ink:         #2C1A0E;     /* deep warm brown-black */
  --ink-mid:     #5C3D20;
  --muted:       #7C6151;     /* darkened from #8A7060 — fixes WCAG AA contrast fail (was 4.27:1, now 5.29:1) */
  --border:      #E5D5BF;
  --white:       #FFFFFF;

  --radius:    18px;
  --radius-sm: 10px;
  --shadow:    0 4px 24px rgba(44,26,14,0.09);
  --shadow-lg: 0 14px 48px rgba(44,26,14,0.13);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 106.5%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* ---- TYPOGRAPHY ---- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-text);
  margin-bottom: 0.9rem;
}
.eyebrow.light { color: var(--gold-light); }
.eyebrow.center { text-align: center; }

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.section-h2 em { font-style: italic; color: var(--terra); }
.section-h2.light { color: var(--white); }
.section-h2.center { text-align: center; }

.body-text { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.975rem; }
.body-text.muted { font-size: 0.875rem; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 0.875rem 2.1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(58,107,62,0.3);
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(58,107,62,0.38); }

.btn-outline {
  display: inline-block;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 0.875rem 1.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.btn-outline:hover { color: var(--terra); }

.btn-gold {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--gold), #A86E1A);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
  box-shadow: 0 4px 18px rgba(201,137,42,0.38);
  letter-spacing: 0.02em;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,137,42,0.48); }

.btn-white-solid {
  display: inline-block;
  background: var(--white);
  color: var(--green);
  text-decoration: none;
  padding: 0.9rem 2.1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.btn-white-solid:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ---- FORM INPUTS ---- */
.form-input {
  display: block;
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s, background 0.2s;
}
.form-input:focus { outline: none; border-color: var(--green); background: var(--white); }
.form-input option { background: white; }
.form-input.full { margin-bottom: 0.875rem; }
.form-textarea { resize: vertical; min-height: 110px; }

/* ==================== NAVBAR ==================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,246,240,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo { height: 52px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--green); background: var(--green-light); }

.btn-nav {
  flex-shrink: 0;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(58,107,62,0.3);
}
.btn-nav:hover { background: var(--green-mid); transform: translateY(-1px); }

.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink); margin-left: auto; }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--cream);
  gap: 0.1rem;
}
.mobile-menu a { text-decoration: none; color: var(--ink); font-size: 0.95rem; font-weight: 500; padding: 0.7rem 0; border-bottom: 1px solid var(--border); }
.btn-mobile-cta {
  margin-top: 0.75rem;
  background: var(--green) !important;
  color: white !important;
  text-align: center;
  border-radius: 50px;
  padding: 0.8rem !important;
  border: none !important;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  background: linear-gradient(160deg, #FDF8F1 0%, #F7EFE3 50%, #F2E8D8 100%);
  padding: 5.5rem 2rem 0;
  overflow: hidden;
}

/* Decorative dot-grid pattern */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,137,42,0.18) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 80% at 80% 40%, black 0%, transparent 70%);
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--terra);
  margin-bottom: 1.25rem;
  display: inline-block;
  background: var(--terra-light);
  padding: 0.35rem 1rem;
  border-radius: 50px;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero-h1 em { font-style: italic; color: var(--terra); }

.hero-sub {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.78;
  max-width: 470px;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; }

.hero-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--muted);
  box-shadow: 0 2px 8px rgba(44,26,14,0.06);
}

.hero-divider { line-height: 0; margin-top: 4rem; }
.hero-divider svg { width: 100%; height: 70px; display: block; }

/* Hero right */
.hero-right { position: relative; }
.hero-img-wrap { position: relative; }
.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 28px 28px 28px 0;
  box-shadow: var(--shadow-lg);
  display: block;
}

.hero-stat-card {
  position: absolute;
  bottom: -22px;
  left: -28px;
  background: var(--white);
  border-radius: 16px;
  padding: 1.1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--terra);
}
.hsc-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--terra);
  line-height: 1;
}
.hsc-label { display: block; font-size: 0.7rem; color: var(--muted); margin-top: 0.3rem; max-width: 120px; line-height: 1.35; }

.hero-badge-card {
  position: absolute;
  top: 22px;
  right: -18px;
  background: var(--green);
  color: white;
  border-radius: 16px;
  padding: 0.9rem 1.2rem;
  max-width: 195px;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  box-shadow: 0 8px 28px rgba(58,107,62,0.3);
}
.hbc-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.hero-badge-card strong { display: block; font-size: 0.85rem; margin-bottom: 0.2rem; }
.hero-badge-card span { font-size: 0.75rem; opacity: 0.85; line-height: 1.35; }

/* ==================== STATS BAR ==================== */
.stats-bar {
  background: linear-gradient(135deg, #2C1A0E 0%, #4A2D14 60%, #3A6B3E 100%);
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.stats-bar::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.stats-bar-inner { max-width: 1180px; margin: 0 auto; }
.sbi-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.stat-block {
  text-align: center;
  padding: 0 2.5rem;
  flex: 1;
  min-width: 160px;
}
.sb-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.sb-num sup { font-size: 1.4rem; vertical-align: super; }
.count { font-variant-numeric: tabular-nums; }
.sb-unit { font-size: 1.6rem; }
.sb-desc { display: block; font-size: 0.76rem; color: rgba(255,255,255,0.55); line-height: 1.4; max-width: 140px; margin: 0 auto; }

.stat-sep { width: 1px; height: 56px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* ==================== MISSION ==================== */
.mission {
  padding: 7rem 2rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal stripe pattern */
.mission-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(201,137,42,0.04) 40px,
    rgba(201,137,42,0.04) 41px
  );
  pointer-events: none;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mv-stack { position: relative; height: 460px; }
.mv-img { position: absolute; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-lg); }
.mv-img-main { width: 74%; height: 330px; top: 0; left: 0; border-radius: 24px 24px 24px 0; }
.mv-img-secondary { width: 58%; height: 240px; bottom: 0; right: 0; border: 6px solid var(--white); border-radius: 0 20px 20px 20px; }

.mv-float-badge {
  position: absolute;
  top: 200px;
  right: -8px;
  background: var(--terra);
  color: white;
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(192,87,58,0.38);
  z-index: 2;
}
.mv-float-badge span { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; }
.mv-float-badge small { display: block; font-size: 0.67rem; line-height: 1.35; margin-top: 0.25rem; opacity: 0.9; }

.mission-alert {
  display: flex;
  gap: 1rem;
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0 2rem;
  align-items: flex-start;
}
.ma-icon { font-size: 1.5rem; flex-shrink: 0; }
.mission-alert strong { display: block; color: var(--ink); margin-bottom: 0.3rem; font-size: 0.95rem; }
.mission-alert p { font-size: 0.87rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ==================== THE FACTS TABLE ==================== */
.facts-section { padding: 7rem 2rem; background: var(--cream); }

.facts-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.eyebrow-dash {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.76rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--green); margin-bottom: 0.9rem;
}
.eyebrow-dash::before { content: ''; display: block; width: 22px; height: 2px; background: var(--gold); }
.facts-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.facts-callout {
  position: relative;
  min-width: 240px;
  padding-bottom: 0.5rem;
  text-align: right;
}
.fc-label {
  position: relative; z-index: 1;
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.fc-giant {
  display: block;
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 0.7;
  color: var(--green);
  opacity: 0.16;
  margin-top: -0.3rem;
}

.facts-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.ft-cell {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s;
}
.ft-cell:nth-child(3n) { border-right: none; }
.ft-cell:nth-child(n+4) { border-bottom: none; }
.ft-cell:hover { background: var(--cream); }
.ft-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.ft-num sup { font-size: 1.2rem; }
.ft-num i { font-style: normal; font-size: 1.3rem; font-weight: 500; }
.ft-cell p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; margin: 0; }
.ft-cell strong { color: var(--ink-mid); }

@media (max-width: 800px) {
  .facts-callout { text-align: left; }
  .facts-table { grid-template-columns: 1fr 1fr; }
  .ft-cell:nth-child(3n) { border-right: 1px solid var(--border); }
  .ft-cell:nth-child(2n) { border-right: none; }
  .ft-cell:nth-child(n+4) { border-bottom: 1px solid var(--border); }
  .ft-cell:nth-child(n+5) { border-bottom: none; }
}
@media (max-width: 520px) {
  .facts-table { grid-template-columns: 1fr; }
  .ft-cell { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .ft-cell:last-child { border-bottom: none !important; }
  .fc-giant { font-size: 4rem; }
}

/* ==================== WORKSHOPS ==================== */
.workshops {
  position: relative;
  padding: 7rem 2rem;
  background: linear-gradient(145deg, #1E0F06 0%, #2C1A0E 50%, #3A6B3E 100%);
  overflow: hidden;
}

.ws-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.ws-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.ws-body { color: rgba(255,255,255,0.72); line-height: 1.8; margin-bottom: 1.75rem; font-size: 0.97rem; }
.ws-body strong { color: var(--gold-light); }

.ws-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2.5rem; }
.ws-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; color: rgba(255,255,255,0.78);
}
.ws-list li::before {
  content: '✓';
  width: 22px; height: 22px; flex-shrink: 0;
  background: rgba(201,137,42,0.25);
  border: 1px solid rgba(201,137,42,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; color: var(--gold-light);
  margin-top: 0.15rem;
}

.ws-trust { display: flex; gap: 0; align-items: center; }
.wt-item { text-align: center; padding: 0 1.5rem; }
.wt-num { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.wt-label { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }
.wt-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* Form card */
.ws-form-wrap {
  background: var(--cream);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

.ws-form-header {
  background: linear-gradient(135deg, var(--gold-pale), var(--cream-dark));
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--border);
}
.wsf-icon { font-size: 2rem; display: block; margin-bottom: 0.4rem; }
.ws-form-header h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); margin-bottom: 0.2rem; }
.ws-form-header p { font-size: 0.83rem; color: var(--muted); }

.ws-form { padding: 1.75rem 2rem; display: flex; flex-direction: column; gap: 0.875rem; }
.form-note { font-size: 0.74rem; color: var(--muted); text-align: center; }

/* Limited-seats alert strip (sits above the reserve form) */
.ws-alert-banner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1.5rem 2rem 0;
  padding: 0.8rem 1.1rem;
  background: var(--terra-light);
  border-radius: var(--radius-sm);
  color: var(--terra);
  font-size: 0.82rem;
  font-weight: 600;
}
.ws-alert-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
  animation: wsAlertPulse 1.8s ease-in-out infinite;
}
@keyframes wsAlertPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(192,87,58,0.35); }
  50%      { opacity: 0.7; box-shadow: 0 0 0 6px rgba(192,87,58,0); }
}
.ws-form-title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1.5rem 2rem 0;
}
.ws-form-title-bar {
  width: 4px;
  height: 1.9rem;
  border-radius: 2px;
  background: var(--terra);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.ws-form-title-row h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); margin: 0; }
.ws-form-subtext { padding: 0.35rem 2rem 0; color: var(--muted); font-size: 0.88rem; }
.ws-field-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.35rem; display: block; }
.ws-field-label .req { color: var(--terra); margin-left: 2px; }
.ws-field-group { display: flex; flex-direction: column; }

/* Post-submit status banner (contact + workshop forms) */
.cfstx-status-banner {
  margin: 1.25rem auto;
  max-width: 900px;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}
.cfstx-status-banner.cfstx-success { background: var(--green-light); color: var(--green); }
.cfstx-status-banner.cfstx-error   { background: var(--terra-light); color: var(--terra); }

/* ==================== MEDIA / FOX 7 ==================== */
.media {
  padding: 7rem 2rem;
  background: var(--white);
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4.5rem;
  align-items: center;
}

.media-tag {
  display: inline-block;
  background: var(--terra-light);
  color: var(--terra);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.1rem;
}

.fox-logo { height: 46px; object-fit: contain; display: block; margin-bottom: 1.5rem; }

.video-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  background: #000;
  border: 4px solid var(--parchment);
}
.video-wrap iframe { width: 100%; height: 100%; display: block; border: none; }

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  padding: 7rem 2rem;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.testi-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 50px,
    rgba(192,87,58,0.04) 50px,
    rgba(192,87,58,0.04) 51px
  );
  pointer-events: none;
}

.testimonials .section-h2 { margin-bottom: 3rem; }

.testi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.testi-featured {
  background: linear-gradient(145deg, var(--gold-pale), var(--white));
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.testi-featured::before {
  content: '⭐ Featured';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  white-space: nowrap;
}

.tc-stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.tc-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.tc-quote::before { content: '\201C'; }
.tc-quote::after { content: '\201D'; }

.tc-author { display: flex; align-items: center; gap: 0.75rem; }
.tc-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.tc-author strong { display: block; font-size: 0.88rem; color: var(--ink); }
.tc-author small { font-size: 0.74rem; color: var(--muted); }

/* ==================== CTA BAND ==================== */
.cta-band {
  background: var(--terra);
  padding: 4.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-band-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-band-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.cta-band-text p { color: rgba(255,255,255,0.75); font-size: 1rem; }

/* ==================== CONTACT ==================== */
.contact {
  padding: 7rem 2rem;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-items { margin: 2rem 0; display: flex; flex-direction: column; gap: 1.3rem; }
.ci { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon { font-size: 1.25rem; margin-top: 0.1rem; flex-shrink: 0; }
.ci div { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.ci strong { display: block; color: var(--ink); margin-bottom: 0.1rem; font-size: 0.9rem; }
.ci a { color: var(--green); text-decoration: none; }
.ci a:hover { text-decoration: underline; }

.contact-logo-wrap { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.contact-logo { height: 60px; width: auto; object-fit: contain; }

.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-form h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); margin-bottom: 1.5rem; font-weight: 600; }

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; margin-bottom: 0.875rem; }

/* ==================== FOOTER ==================== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 3rem 2rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 2.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.25rem;
}

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 0.9rem;
}

.footer-col-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 0.85rem; }
.footer-logo-chip { background: var(--white); display: inline-flex; padding: 0.45rem 0.75rem; border-radius: 10px; width: fit-content; }
.footer-logo { height: 36px; width: auto; object-fit: contain; display: block; }
.footer-tagline { font-size: 0.82rem; line-height: 1.55; max-width: 260px; margin: 0; }

.footer-social { display: flex; gap: 0.6rem; }
.footer-social-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}
.footer-social-icon:hover { background: var(--gold); color: var(--ink); }
.footer-social-icon svg { width: 15px; height: 15px; }

.footer-links-list, .footer-contact-list { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links-list a, .footer-contact-list a, .footer-contact-list span {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.83rem;
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-links-list a:hover, .footer-contact-list a:hover { color: var(--white); }
.footer-contact-list span { color: rgba(255,255,255,0.45); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.32); margin: 0; }
.footer-bottom-nav { display: flex; gap: 1.25rem; }
.footer-bottom-nav a { font-size: 0.76rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-bottom-nav a:hover { color: var(--white); }

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .mission-grid { grid-template-columns: 1fr; }
  .mv-stack { display: none; }
  .ws-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testi-row { grid-template-columns: 1fr; }
  .testi-featured { transform: none; }
  .stats-row { gap: 2rem; }
  .stat-sep { display: none; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .about-photo-band img { height: 220px; }
  .about-photo-caption { padding: 1.25rem 1.5rem; }
  .about-photo-caption strong { font-size: 1.1rem; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: block; }
}

@media (max-width: 600px) {
  .cf-row { grid-template-columns: 1fr; }
  .ws-trust { flex-direction: column; gap: 1rem; }
  .wt-divider { width: 80px; height: 1px; }
  .hero { padding: 5rem 1.25rem 0; }
  .container { padding: 0 1.25rem; }
}

/* ==================== SCROLL REVEAL ==================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ==================== WORKSHOP STATUS PANEL (dynamic: scheduled / coming soon) ==================== */
.ws-status-panel { display: block; }

.ws-form-wrap {
  background: var(--cream);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

/* --- Scheduled state --- */
.ws-next-date {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 2rem 0.5rem;
}
.wnd-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.9rem;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.wnd-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.wnd-value { font-size: 0.88rem; font-weight: 600; color: var(--ink); text-align: right; }

/* --- Coming soon state --- */
.ws-soon-wrap { text-align: center; padding: 2.75rem 2.25rem; }
.ws-soon-icon {
  width: 64px; height: 64px; margin: 0 auto 1.1rem;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
}
.ws-soon-wrap h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); margin-bottom: 0.75rem; line-height: 1.25; }
.ws-soon-text { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.ws-soon-wrap .ws-form { padding: 0; }
.ws-soon-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--terra-light); color: var(--terra);
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.3rem 0.85rem; border-radius: 50px; margin-bottom: 1rem;
}

/* ==================== FLOATING WORKSHOP WIDGET ==================== */
.workshop-fab {
  position: fixed;
  right: 1.75rem;
  bottom: 1.75rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold), #A86E1A);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.85rem 1.3rem 0.85rem 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 10px 32px rgba(168,110,26,0.42);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.workshop-fab:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(168,110,26,0.5); }
.wfab-icon { font-size: 1.15rem; line-height: 1; }
.wfab-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.35);
  flex-shrink: 0;
}
.wfab-dot.dot-soon { background: var(--terra); }

.workshop-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(44,26,14,0.55);
  backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.workshop-modal-overlay.active { display: flex; }

.workshop-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--cream);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  animation: wm-pop 0.28s ease;
}
@keyframes wm-pop {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wm-close {
  position: absolute;
  top: 0.85rem; right: 0.85rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--ink-mid);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(44,26,14,0.15);
  z-index: 2;
}
.wm-close:hover { color: var(--terra); }

@media (max-width: 600px) {
  .workshop-fab { right: 1rem; bottom: 1rem; padding: 0.8rem 1.05rem 0.8rem 0.9rem; }
  .wfab-text { display: none; }
}

/* ==================== INNER PAGE HEADER (banner) ==================== */
.page-header {
  position: relative;
  padding: 6.5rem 2rem 4.5rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(18,11,5,0.92) 0%, rgba(18,11,5,0.82) 50%, rgba(18,11,5,0.90) 100%);
}
.page-header-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; text-align: center; }
.page-header .eyebrow.light { display: inline-block; margin-bottom: 0.75rem; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.4);
}
.page-header p { color: rgba(255,255,255,0.9); font-size: 1rem; max-width: 620px; margin: 0 auto; line-height: 1.7; text-shadow: 0 1px 12px rgba(0,0,0,0.5); }
.page-header .eyebrow.light { text-shadow: 0 1px 10px rgba(0,0,0,0.5); }

/* ==================== ABOUT PAGE ==================== */

/* ---- Founder Hero (replaces the generic stock-photo banner) ---- */
.founder-hero {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 2rem 6rem;
  background: linear-gradient(150deg, var(--ink) 0%, #3d2412 55%, var(--green) 145%);
}
.founder-hero .ws-bg-pattern { position: absolute; inset: 0; opacity: 0.5; }
.founder-hero-inner {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem; align-items: center;
}
.founder-hero-inner > * { min-width: 0; }
.founder-hero-text .eyebrow.light { margin-bottom: 1rem; }
.founder-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 3.6vw, 3.1rem);
  font-weight: 700; color: var(--white); line-height: 1.16;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.founder-hero-sub { color: rgba(255,255,255,0.8); font-size: 1.02rem; line-height: 1.75; max-width: 480px; margin-bottom: 2rem; }
.founder-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.founder-hero-trust { margin-top: 1.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.btn-outline-light {
  display: inline-flex; align-items: center;
  padding: 0.95rem 1.9rem;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  color: var(--white);
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

.founder-hero-portrait-wrap {
  position: relative; width: 100%; max-width: 340px; margin: 0 auto;
}
.founder-hero-portrait {
  position: relative; width: 100%;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  border: 4px solid rgba(255,255,255,0.15);
}
/* Decorative offset frame behind the photo for depth */
.founder-hero-portrait-wrap::before {
  content: '';
  position: absolute;
  top: 18px; left: -18px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: 20px;
  opacity: 0.55;
  z-index: 0;
}
.founder-hero-portrait { position: relative; z-index: 1; }
.founder-hero-portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
/* Small accent badge on the photo's top corner — doesn't cover his face */
.founder-hero-corner {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  border: 2px solid rgba(255,255,255,0.6);
}
.founder-hero-corner span { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--ink); line-height: 1; }
.founder-hero-corner small { font-size: 0.56rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink); }

/* Name badge — sits clear below the photo, never overlapping his face */
.founder-hero-badge {
  position: relative; z-index: 1;
  margin: 1.1rem auto 0;
  max-width: 260px;
  background: var(--white);
  border-radius: 14px;
  padding: 0.9rem 1.3rem;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
  text-align: left;
}
.founder-hero-badge strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }
.founder-hero-badge span { display: block; font-size: 0.76rem; color: var(--muted); margin-top: 0.15rem; }

/* ---- Founder pull-quote ---- */
.founder-quote {
  position: relative;
  margin: 2rem 0 2.25rem;
  padding: 1.75rem 2rem 1.75rem 2.5rem;
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.founder-quote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 0.6rem !important;
}
.founder-quote cite {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--terra);
}

.about-section { padding: 6rem 2rem; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4.5rem; align-items: start; max-width: 1180px; margin: 0 auto; }
.about-copy p { color: var(--muted); line-height: 1.85; margin-bottom: 1.25rem; font-size: 0.98rem; }
.about-copy strong { color: var(--ink); }

.about-side { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 100px; }
.about-stat-card {
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
}
.about-stat-card .as-num { display: block; font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--terra); line-height: 1; margin-bottom: 0.4rem; }
.about-stat-card .as-label { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

.isd-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
}
.isd-card h4 { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); margin-bottom: 0.85rem; }
.isd-list { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; }
.isd-list li {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink-mid);
  font-size: 0.76rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
}

.about-photo-band {
  position: relative;
  max-width: 1180px;
  margin: 4rem auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo-band img { width: 100%; height: 300px; object-fit: cover; display: block; }
.about-photo-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.3rem;
  padding: 2rem 2.25rem;
  background: linear-gradient(0deg, rgba(20,12,6,0.82) 0%, rgba(20,12,6,0.35) 55%, transparent 100%);
  color: var(--white);
}
.about-photo-caption strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; }
.about-photo-caption span { font-size: 0.9rem; color: rgba(255,255,255,0.82); max-width: 480px; line-height: 1.6; }

.founder-timeline { max-width: 1180px; margin: 4rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ft-item { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.ft-year { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--green); margin-bottom: 0.5rem; display: block; }
.ft-item p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; }

/* ==================== FULL TESTIMONIALS GRID (testimonials.html) ==================== */
.testi-full { padding: 6rem 2rem; background: var(--cream-dark); }
.testi-full-grid {
  max-width: 1180px; margin: 0 auto;
  columns: 3 320px;
  column-gap: 1.5rem;
}
.testi-full-grid .testi-card { break-inside: avoid; margin-bottom: 1.5rem; }
.testi-full-grid .tc-quote { font-size: 0.95rem; }

/* ==================== HELPFUL LINKS PAGE ==================== */
.links-section { padding: 6rem 2rem; background: var(--white); }
.links-grid { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.25rem; }
.link-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  transition: all 0.25s;
}
.link-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.link-card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
  display: flex; align-items: center; justify-content: center; font-size: 1.35rem; flex-shrink: 0;
}
.link-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.4rem; }
.link-card h3 a { color: var(--ink); text-decoration: none; }
.link-card h3 a:hover { color: var(--green); }
.link-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin: 0; }
.links-photo-wrap { max-width: 1000px; margin: 3rem auto 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.links-photo-wrap img { width: 100%; display: block; max-height: 340px; object-fit: cover; }

/* ==================== CONTACT PAGE ==================== */
.contact-page { padding: 6rem 2rem; background: var(--cream); }
.contact-page-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 2rem; border: 1px solid var(--border); }
.contact-map iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ==================== WORKSHOPS PAGE (full) ==================== */
.workshops-page { padding: 6rem 2rem; background: var(--white); }
.wp-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: start; }
.wp-copy p { color: var(--muted); line-height: 1.85; margin-bottom: 1.25rem; font-size: 0.98rem; }
.wp-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin: 1.75rem 0 0; }
.wp-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.92rem; color: var(--ink-mid); line-height: 1.55;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}
.wp-list li::before {
  content: '✓';
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; color: var(--green);
  margin-top: 0.1rem;
}
.wp-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 1.5rem; }
.wp-photo img { width: 100%; display: block; object-fit: cover; max-height: 260px; }

@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-side { position: static; }
  .founder-timeline { grid-template-columns: 1fr; }
  .testi-full-grid { columns: 1 320px; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .wp-grid { grid-template-columns: 1fr; }
  .link-card { grid-template-columns: 1fr; }
  .founder-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .founder-hero-sub { margin-left: auto; margin-right: auto; }
  .founder-hero-cta { justify-content: center; }
  .founder-hero-portrait-wrap { order: -1; max-width: 260px; }
  .founder-hero-badge { text-align: center; }
}

/* ==================== PREMIUM FX LAYER ==================== */

/* ---- View Transitions (native, graceful no-op if unsupported) ---- */
@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root) { animation: vt-out 0.35s ease both; }
  ::view-transition-new(root) { animation: vt-in 0.45s ease both; }
}
@keyframes vt-out { to { opacity: 0; transform: translateY(-8px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(10px); } }

html { scroll-behavior: smooth; }

/* ---- Grain texture (subtle, sits above everything, never blocks clicks) ---- */
.grain-overlay {
  position: fixed; inset: 0; z-index: 9990; pointer-events: none;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Scroll progress bar ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--terra), var(--gold), var(--green));
  z-index: 9999; transition: width 0.08s linear;
}

/* ---- Page loader ---- */
.page-loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.pl-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.pl-mark {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 700; font-style: italic;
  color: var(--ink);
  opacity: 0; animation: pl-fade 0.7s ease forwards 0.15s;
}
.pl-mark em { color: var(--terra); }
.pl-bar { width: 130px; height: 2px; background: var(--border); border-radius: 2px; overflow: hidden; opacity: 0; animation: pl-fade 0.7s ease forwards 0.35s; }
.pl-bar::after { content: ''; display: block; height: 100%; width: 40%; background: linear-gradient(90deg, var(--terra), var(--gold)); animation: pl-sweep 1.1s ease-in-out infinite; }
@keyframes pl-fade { to { opacity: 1; } }
@keyframes pl-sweep { 0% { transform: translateX(-120%); } 100% { transform: translateX(340%); } }

/* (custom cursor removed per feedback — using native cursor everywhere) */

/* ---- Magnetic buttons ---- */
.btn-primary, .btn-outline, .btn-gold, .btn-white-solid, .btn-nav, .workshop-fab {
  will-change: transform;
  transition: transform 0.25s cubic-bezier(0.2,0.8,0.2,1), background 0.2s, box-shadow 0.25s, color 0.2s;
}

/* ---- Button shine sweep on hover ---- */
.btn-primary, .btn-gold, .btn-white-solid {
  position: relative;
  overflow: hidden;
}
.btn-primary::before, .btn-gold::before, .btn-white-solid::before {
  content: '';
  position: absolute; top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s ease;
}
.btn-primary:hover::before, .btn-gold:hover::before, .btn-white-solid:hover::before { left: 130%; }

/* ---- 3D tilt cards ---- */
.testi-card, .link-card, .ft-item, .about-stat-card, .isd-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.3s;
}

/* ---- Aurora / mesh gradient blobs (hero backdrop) ---- */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.aurora span {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.35;
  animation: aurora-float 16s ease-in-out infinite;
}
.aurora span:nth-child(1) { width: 380px; height: 380px; background: var(--gold-light); top: -120px; right: 8%; animation-delay: 0s; }
.aurora span:nth-child(2) { width: 320px; height: 320px; background: var(--terra-light); bottom: -100px; left: 6%; animation-delay: -5s; }
.aurora span:nth-child(3) { width: 260px; height: 260px; background: var(--green-light); top: 30%; left: 40%; animation-delay: -10s; }
@keyframes aurora-float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-24px) scale(1.08); }
  66% { transform: translate(-24px,18px) scale(0.94); }
}
.hero-inner, .hero-divider { position: relative; z-index: 1; }

/* ---- Cursor spotlight for dark sections ---- */
.spotlight { position: relative; }
.spotlight::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(480px circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.07), transparent 65%);
  transition: opacity 0.3s ease;
  opacity: 0;
}
.spotlight:hover::before { opacity: 1; }
.stats-bar-inner, .ws-grid { position: relative; z-index: 1; }

/* ---- Marquee ticker ---- */
.marquee {
  background: var(--ink);
  overflow: hidden;
  padding: 0.85rem 0;
  position: relative;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee-scroll 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0 2rem;
  white-space: nowrap;
}
.marquee-item strong { color: var(--gold-light); font-weight: 600; }
.marquee-item .mq-dot { color: var(--terra); }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Hero split-text entrance ---- */
.split-word { display: inline-block; overflow: hidden; vertical-align: top; }
.split-word span {
  display: inline-block;
  transform: translateY(115%);
  animation: word-up 0.85s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes word-up { to { transform: translateY(0); } }
.hero-tag, .hero-sub, .hero-actions, .hero-pills { opacity: 0; animation: fade-up 0.8s ease forwards; }
.hero-tag { animation-delay: 0.05s; }
.hero-sub { animation-delay: 0.55s; }
.hero-actions { animation-delay: 0.68s; }
.hero-pills { animation-delay: 0.8s; }
.hero-right { opacity: 0; animation: fade-up 0.9s ease forwards 0.4s; }
@keyframes fade-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ---- Refined scroll reveal (blur + rise) ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1), filter 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; filter: blur(0); }

/* ---- Nav polish: active link underline + scrolled shrink ---- */
.nav-links a { position: relative; }
.nav-links a::after {
  content: '';
  position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.15rem;
  height: 2px; background: var(--terra);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.navbar { transition: box-shadow 0.3s ease, background 0.3s ease; }
.navbar.nav-scrolled .nav-inner { height: 58px; transition: height 0.3s ease; }
.nav-inner { transition: height 0.3s ease; }

/* ---- Number glow pulse on count completion ---- */
.count.count-done { animation: count-pulse 0.5s ease; }
@keyframes count-pulse { 0% { text-shadow: 0 0 0 rgba(201,137,42,0); } 40% { text-shadow: 0 0 18px rgba(201,137,42,0.55); } 100% { text-shadow: 0 0 0 rgba(201,137,42,0); } }

/* ==================== REDUCED MOTION SUPPORT ====================
   Respects the OS-level "reduce motion" preference (vestibular
   disorders, motion sensitivity). Autoplaying/looping animations
   are switched off entirely; one-shot entrance animations are
   shortened to a near-instant fade instead of removed outright,
   so content doesn't just pop in with no transition at all. */
@media (prefers-reduced-motion: reduce) {
  .aurora span { animation: none; }
  .marquee-track { animation: none; }
  .pl-bar::after { animation: none; }
  .split-word span { animation: none; transform: translateY(0); }
  .hero-tag, .hero-sub, .hero-actions, .hero-pills, .hero-right {
    animation: fade-up 0.01s linear forwards;
  }
  .reveal { transition-duration: 0.01s; }
  .count.count-done { animation: none; }
  .workshop-modal { animation: none; }
  .btn-primary, .btn-outline, .btn-gold, .btn-white-solid, .btn-nav, .workshop-fab,
  .ft-cell, .testi-card, .link-card, .about-stat-card, .isd-card {
    transition: none !important;
  }
}

/* ---- Section eyebrow shimmer accent ---- */
.eyebrow { position: relative; display: inline-block; }
.eyebrow.center::after, .eyebrow:not(.center):not(.light)::after {
  content: ''; display: block; width: 30px; height: 2px;
  background: linear-gradient(90deg, var(--terra), var(--gold));
  margin-top: 0.5rem;
}
.eyebrow.center::after { margin-left: auto; margin-right: auto; }

@media (max-width: 700px) {
  .marquee-item { font-size: 0.74rem; padding: 0 1.25rem; }
}
