/*
   ______                            __
  / ____/___  ____ ___  ____  __  __/ /____  _____
 / /   / __ \/ __ `__ \/ __ \/ / / / __/ _ \/ ___/
/ /___/ /_/ / / / / / / /_/ / /_/ / /_/  __/ /
\____/\____/_/ /_/ /_/ .___/\__,_/\__/\___/_/
                    /_/
        Created with Perplexity Computer
        https://www.perplexity.ai/computer
*/

/* ============================================================
   TSALACH LEADERSHIP — Elite Design System
   Art Direction: Black obsidian + warm gold + ivory
   Inspired by Emma Grede / SKIMS editorial confidence
   Fonts: Cormorant Garamond (display) + Switzer (body)
   ============================================================ */

/* — DESIGN TOKENS — */
:root {
  /* Type scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Brand Palette — Obsidian × Gold × Ivory */
  --color-bg:              #0c0c0a;
  --color-surface:         #111110;
  --color-surface-2:       #161614;
  --color-surface-offset:  #1c1b19;
  --color-surface-light:   #f5f3ee;
  --color-divider:         #242320;
  --color-border:          #2e2d2a;
  --color-border-light:    #e8e4dc;

  --color-gold:            #c9a455;
  --color-gold-light:      #e2c07a;
  --color-gold-dark:       #a07d38;
  --color-gold-highlight:  rgba(201, 164, 85, 0.12);

  --color-ivory:           #f5f3ee;
  --color-ivory-muted:     #d8d4cb;
  --color-ivory-faint:     #9e9a90;

  --color-text:            #f0ede7;
  --color-text-muted:      #9e9a90;
  --color-text-faint:      #5a5854;
  --color-text-dark:       #1a1916;

  --color-primary:         #c9a455;
  --color-primary-hover:   #e2c07a;
  --color-primary-active:  #a07d38;

  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Switzer', 'Inter', 'Helvetica Neue', sans-serif;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.75rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.6);

  /* Content widths */
  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:    1280px;
}

/* Light mode variant */
[data-theme="light"] {
  --color-bg:              #f5f3ee;
  --color-surface:         #faf9f6;
  --color-surface-2:       #ffffff;
  --color-surface-offset:  #eeebe4;
  --color-surface-light:   #f5f3ee;
  --color-divider:         #e0ddd6;
  --color-border:          #d4d0c8;
  --color-border-light:    #d4d0c8;
  --color-text:            #1a1916;
  --color-text-muted:      #6b6860;
  --color-text-faint:      #a8a49c;
  --color-text-dark:       #1a1916;
  --color-gold:            #9a7428;
  --color-gold-light:      #b8892e;
  --color-gold-dark:       #7a5818;
  --color-gold-highlight:  rgba(154, 116, 40, 0.08);
  --color-ivory:           #1a1916;
  --color-ivory-muted:     #3d3b36;
  --color-ivory-faint:     #6b6860;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-20);
  font-size: 16px;
}

body {
  min-height: 100dvh;
  line-height: 1.65;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role="list"], ol[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.1; }
p, li { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }

::selection {
  background: rgba(201, 164, 85, 0.3);
  color: var(--color-text);
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-6), 5vw, var(--space-16));
}

.container--narrow {
  max-width: var(--content-default);
}

.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;
}

.text-gold { color: var(--color-gold); }
.text-muted { color: var(--color-text-muted); }
.font-display { font-family: var(--font-display); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  display: block;
  margin-block: var(--space-6);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.9em 2.2em;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-gold);
  color: #0c0c0a;
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: #0c0c0a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 164, 85, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(245,243,238,0.35);
}

.btn-outline:hover {
  background: rgba(201,164,85,0.12);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-ghost {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-ghost:hover {
  background: var(--color-gold-highlight);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* Always dark — never changes with theme toggle */
  background: rgba(10, 10, 8, 0.82) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(201, 164, 85, 0.18) !important;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav--scrolled {
  background: rgba(10, 10, 8, 0.97) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 1px 0 rgba(201,164,85,0.15) !important;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--space-2);
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 1vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1;
}

.nav__logo-sub {
  display: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex-wrap: nowrap;
}

.nav__links a {
  font-size: clamp(0.52rem, 0.8vw, 0.64rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff !important;
  transition: color 0.2s ease, background 0.2s ease;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  padding: 0.42em clamp(0.5em, 0.8vw, 0.85em);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: #ffffff !important;
  background: rgba(201, 164, 85, 0.28) !important;
  border-color: rgba(201, 164, 85, 0.5) !important;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.nav__theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: color var(--transition), background var(--transition);
  border: 1px solid transparent;
}

.nav__theme-toggle:hover {
  color: var(--color-gold);
  border-color: var(--color-border);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: var(--space-2);
}

.nav__hamburger span {
  display: block;
  height: 1px;
  background: var(--color-text);
  transition: all var(--transition);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  background: var(--color-bg);
  padding: var(--space-8) var(--space-6);
  z-index: 99;
  flex-direction: column;
  gap: var(--space-6);
  overflow-y: auto;
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile a {
  font-size: var(--text-lg);
  font-family: var(--font-display);
  color: var(--color-text);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-divider);
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__actions .btn { display: none; }
}

/* ============================================================
   HERO — FULL BLEED EDITORIAL
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.92;
  filter: contrast(1.08) brightness(0.95) saturate(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 12, 10, 0.15) 0%,
    rgba(12, 12, 10, 0.05) 25%,
    rgba(12, 12, 10, 0.55) 65%,
    rgba(12, 12, 10, 0.96) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-32));
  padding-top: var(--space-32);
}

.hero__eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
  font-weight: 500;
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 600;
  line-height: 1.0;
  color: #ffffff;
  max-width: 14ch;
  margin-bottom: var(--space-6);
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.4);
}

.hero__heading em {
  font-style: italic;
  color: var(--color-gold-light);
}

.hero__sub {
  font-size: var(--text-lg);
  color: rgba(240, 237, 231, 0.75);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: var(--space-10);
  font-weight: 300;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  right: clamp(var(--space-6), 5vw, var(--space-16));
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* ============================================================
   MARQUEE / CREDIBILITY BAR
   ============================================================ */
.marquee-bar {
  background: var(--color-gold);
  padding: var(--space-3) 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: var(--space-10);
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0c0c0a;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.marquee-item::after {
  content: '◆';
  font-size: 0.5em;
  opacity: 0.6;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
}

.section--dark {
  background: var(--color-surface);
}

.section--darker {
  background: var(--color-bg);
}

.section--light {
  background: var(--color-ivory);
  color: var(--color-text-dark);
}

.section--gold {
  background: var(--color-gold);
  color: #0c0c0a;
}

.section-header {
  margin-bottom: clamp(var(--space-12), 6vw, var(--space-24));
}

.section-header--center {
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
}

.section-title em { font-style: italic; color: var(--color-gold); }

[data-theme="light"] .section-title em { color: var(--color-gold-dark); }

.section-body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
  line-height: 1.7;
}

/* ============================================================
   STATS / IMPACT BAR
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-1);
}

.stat-item {
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  border-right: 1px solid var(--color-divider);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ============================================================
   ABOUT / TWO-COLUMN EDITORIAL
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-24));
  align-items: center;
}

.about-grid--reverse {
  direction: rtl;
}

.about-grid--reverse > * {
  direction: ltr;
}

.about-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image:hover img { transform: scale(1.03); }

.about-image__accent {
  display: none;
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  line-height: 1.75;
  max-width: 58ch;
}

.about-content p:last-child { margin-bottom: 0; }

.about-content strong { color: var(--color-text); font-weight: 600; }

/* ============================================================
   PILLARS / THREE COLUMN
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-1);
}

.pillar-card {
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.pillar-card:hover {
  border-color: var(--color-gold);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--color-gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: var(--space-4);
}

.pillar-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.pillar-body {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: clamp(var(--space-8), 4vw, var(--space-10));
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-gold), var(--color-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.service-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::after { transform: scaleX(1); }

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-6);
  color: var(--color-gold);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.service-card__body {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.service-card__link {
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--transition);
}

.service-card__link:hover { gap: var(--space-3); }

/* ============================================================
   COACHES
   ============================================================ */
.coaches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
}

.coach-card {
  position: relative;
}

.coach-card__image {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: var(--space-6);
  position: relative;
}

.coach-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: grayscale(20%);
}

.coach-card:hover .coach-card__image img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.coach-card__badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--color-gold);
  color: #0c0c0a;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
}

.coach-card__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.coach-card__title {
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
}

.coach-card__bio {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-6);
}

.coach-card__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.credential-tag {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  padding: var(--space-1) var(--space-3);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.coach-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.testimonial-card {
  padding: clamp(var(--space-8), 4vw, var(--space-10));
  border: 1px solid var(--color-border);
  position: relative;
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.8;
  color: var(--color-gold);
  opacity: 0.3;
  margin-bottom: var(--space-4);
  font-weight: 300;
}

.testimonial-card__text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-6);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-card__author-info {}

.testimonial-card__name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.testimonial-card__role {
  font-size: var(--text-xs);
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   VAULT / FEATURE BLOCK
   ============================================================ */
.vault-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-24));
  align-items: center;
}

.vault-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-block: var(--space-8);
}

.vault-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.vault-feature__icon {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.vault-feature__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.vault-visual {
  position: relative;
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.vault-visual__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-divider);
  margin-bottom: var(--space-6);
}

.vault-visual__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
}

.vault-visual__title {
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.vault-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-divider);
}

.vault-metric__label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
}

.vault-metric__value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-gold);
  font-weight: 600;
}

/* ============================================================
   TEAM GRID
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-6);
}

.team-card {
  text-align: center;
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition);
}

.team-card:hover { border-color: var(--color-gold); }

.team-card__avatar {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-full);
  background: var(--color-surface-offset);
  margin: 0 auto var(--space-4);
  overflow: hidden;
  border: 2px solid rgba(201,164,85,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-gold);
  transition: border-color 0.3s ease;
}

.team-card:hover .team-card__avatar {
  border-color: var(--color-gold);
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-card__avatar--placeholder {
  background: rgba(201,164,85,0.06);
  border-style: dashed;
}

.team-card__name {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.team-card__role {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  line-height: 1.4;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 164, 85, 0.08) 0%, transparent 70%);
}

.cta-section__content {
  position: relative;
  z-index: 1;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  margin-bottom: var(--space-6);
  max-width: 18ch;
  margin-inline: auto;
  line-height: 1.1;
}

.cta-section__title em { font-style: italic; color: var(--color-gold); }

.cta-section__body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 48ch;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  line-height: 1.7;
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: var(--space-3);
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item--large { grid-column: span 7; grid-row: span 2; aspect-ratio: 4/3; }
.gallery-item--medium { grid-column: span 5; aspect-ratio: 3/2; }
.gallery-item--small { grid-column: span 5; aspect-ratio: 3/2; }
.gallery-item--full { grid-column: span 12; aspect-ratio: 16/5; }

/* ============================================================
   CONTACT / FOOTER
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-24));
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-8);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.contact-detail__icon {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

.contact-detail__text a {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition);
}

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

.social-links {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition);
  text-decoration: none;
}

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

.footer {
  background: #080807;
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  border-top: 1px solid var(--color-divider);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  margin-bottom: var(--space-16);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.footer__brand-tagline {
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
}

.footer__brand-desc {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  line-height: 1.7;
  max-width: 36ch;
}

.footer__col-title {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  font-weight: 600;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.05em;
}

.footer__attribution {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer__attribution a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer__faith {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--color-gold);
  opacity: 0.7;
}

/* ============================================================
   GOLD RULE DIVIDER
   ============================================================ */
.gold-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  opacity: 0.3;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .coaches-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .vault-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid--reverse { direction: ltr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--large { grid-column: span 12; }
  .gallery-item--medium { grid-column: span 6; }
  .gallery-item--small { grid-column: span 6; }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--color-divider); }
  .stat-item:nth-child(even) { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .gallery-item--large, .gallery-item--medium, .gallery-item--small, .gallery-item--full {
    grid-column: span 12;
  }
  .hero__heading { font-size: clamp(2.5rem, 8vw, 4rem); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   LOGO MARQUEE — INFINITE HORIZONTAL SCROLL
   ============================================================ */
.logo-marquee {
  padding: 2rem 0 2.25rem;
  background: #0e0e0c !important;
  border-top: 1px solid rgba(201,164,85,0.1);
  border-bottom: 1px solid rgba(201,164,85,0.1);
  overflow: hidden;
}

.logo-marquee__eyebrow {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201,164,85,0.4);
  text-align: center;
  margin-bottom: 1.5rem;
}

.logo-marquee__track-wrap {
  /* Fade edges for elegance */
  -webkit-mask-image: linear-gradient(to right,
    transparent 0%, black 8%,
    black 92%, transparent 100%);
  mask-image: linear-gradient(to right,
    transparent 0%, black 8%,
    black 92%, transparent 100%);
  overflow: hidden;
}

.logo-marquee__track {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 0;
  width: max-content !important;
  animation: logoScroll 38s linear infinite !important;
}

.logo-marquee__track:hover {
  animation-play-state: paused;
}

@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-marquee__item {
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 2.5rem;
  height: 56px;
  border-right: 1px solid rgba(201,164,85,0.1);
}

.logo-marquee__item img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.35s ease;
  display: block;
}

.logo-marquee__track:hover .logo-marquee__item:hover img {
  opacity: 1;
}

/* Text-only item (TVision) */
.logo-marquee__item--text span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201,164,85,0.45);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.logo-marquee__track:hover .logo-marquee__item--text:hover span {
  color: var(--color-gold);
}
