/* =========================================================
   Christian Leadership Care Australia — Stylesheet
   Design System: Deep Navy + Gold + Sage
   ========================================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --navy:        #0D1B2A;
  --navy-mid:    #152436;
  --navy-light:  #1E3350;
  --gold:        #C9A84C;
  --gold-light:  #E4C97A;
  --gold-pale:   #F5E9C8;
  --sage:        #4A6741;
  --sage-light:  #6A8F60;
  --cream:       #F5F0E8;
  --white:       #FFFFFF;
  --grey-mid:    #8A9BB0;
  --grey-light:  #C5D0DC;
  --glass-bg:    rgba(255,255,255,0.06);
  --glass-border:rgba(201,168,76,0.2);

  /* Typography */
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;
  --sp-xl:  6rem;
  --sp-xxl: 10rem;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  /* Shadows */
  --shadow-card: 0 8px 40px rgba(0,0,0,0.35);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.2);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur: 0.4s;

  /* Layout */
  --max-width: 1180px;
  --nav-h: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--navy);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--white);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; color: var(--gold); }

p { color: var(--grey-light); font-weight: 300; font-size: 1.05rem; }
p + p { margin-top: var(--sp-sm); }

strong { color: var(--cream); font-weight: 600; }

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.section {
  padding: var(--sp-xl) 0;
  position: relative;
}

.section--alt {
  background: var(--navy-mid);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-sm);
  display: block;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--sp-lg);
}

.section-header p {
  margin-top: var(--sp-sm);
  font-size: 1.1rem;
}

/* --- Gold Divider --- */
.gold-divider {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin: var(--sp-md) 0;
  opacity: 0.5;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.gold-divider svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.nav.scrolled {
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  text-decoration: none;
}

.nav__logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav__logo-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--navy);
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
}

.nav__logo-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.nav__logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-light);
  letter-spacing: 0.04em;
  transition: color var(--dur) var(--ease);
  position: relative;
  padding-bottom: 2px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--dur) var(--ease);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--gold);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease) !important;
}

.nav__cta::after { display: none !important; }

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4) !important;
  color: var(--navy) !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
}

.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}

.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}

.nav__mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav__mobile a {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--cream);
  font-weight: 600;
  transition: color var(--dur) var(--ease);
}

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

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('hero.png');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,27,42,0.95) 0%,
    rgba(13,27,42,0.75) 60%,
    rgba(13,27,42,0.3) 100%
  );
  z-index: 1;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: var(--sp-xxl) 0 var(--sp-xl);
  max-width: 700px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
}

.hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--sp-md);
}

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

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--grey-light);
  font-weight: 300;
  max-width: 550px;
  margin-bottom: var(--sp-lg);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  align-items: center;
}

.hero__credentials {
  margin-top: var(--sp-xl);
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.hero__cred-badge {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  color: var(--grey-mid);
  letter-spacing: 0.06em;
}

.hero__scroll {
  position: absolute;
  bottom: var(--sp-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--grey-mid);
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  border: none;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
  color: var(--navy);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255,255,255,0.25);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.btn--sage {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
  color: var(--white);
}

.btn--sage:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,103,65,0.4);
  color: var(--white);
}

/* =========================================================
   STAT BAR
   ========================================================= */
.stat-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: var(--sp-md) 0;
}

.stat-bar__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-md);
}

.stat-item {
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-item__label {
  font-size: 0.8rem;
  color: var(--grey-mid);
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

/* =========================================================
   CHALLENGE SECTION
   ========================================================= */
.challenge__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.challenge__video-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--navy-light);
  aspect-ratio: 9/16;
  max-height: 560px;
}

.challenge__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.challenge__content h2 {
  margin-bottom: var(--sp-md);
}

.challenge__content p {
  margin-bottom: var(--sp-md);
}

.challenge__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xs);
  margin-top: var(--sp-md);
}

.challenge__tag {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold-pale);
  font-size: 0.82rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-weight: 500;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--sp-lg) var(--sp-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201,168,76,0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.service-card__badge {
  position: absolute;
  top: var(--sp-md);
  right: var(--sp-md);
  background: rgba(74,103,65,0.2);
  border: 1px solid var(--sage-light);
  color: var(--sage-light);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.service-card h3 {
  margin-bottom: var(--sp-xs);
  color: var(--white);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-card__list {
  margin-top: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--grey-light);
}

.service-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55rem;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about__grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

.about__photo-wrap {
  position: relative;
}

.about__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: block;
}

.about__photo-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

.about__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xs);
  margin: var(--sp-md) 0;
}

.about__cred {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  color: var(--gold-pale);
  font-weight: 500;
}

.about__bio p + p {
  margin-top: var(--sp-md);
}

/* =========================================================
   WHO WE HELP
   ========================================================= */
.who__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}

.who-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  transition: all var(--dur) var(--ease);
  text-align: center;
}

.who-card:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}

.who-card__icon {
  font-size: 2.2rem;
  margin-bottom: var(--sp-sm);
  display: block;
}

.who-card h3 {
  font-size: 1.05rem;
  margin-bottom: var(--sp-xs);
}

.who-card p {
  font-size: 0.88rem;
}

/* =========================================================
   FRAMEWORK
   ========================================================= */
.framework__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.framework__pillars {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding: var(--sp-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all var(--dur) var(--ease);
}

.pillar:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.05);
}

.pillar__number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}

.pillar h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.pillar p {
  font-size: 0.9rem;
}

/* =========================================================
   TESTIMONIALS / RESEARCH QUOTES
   ========================================================= */
.quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.quote-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--sp-lg) var(--sp-md) var(--sp-md);
  position: relative;
  transition: transform var(--dur) var(--ease);
}

.quote-card:hover { transform: translateY(-4px); }

.quote-card::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -0.5rem;
  left: var(--sp-md);
  line-height: 1;
}

.quote-card__text {
  font-style: italic;
  color: var(--grey-light);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--sp-md);
  position: relative;
  z-index: 1;
}

.quote-card__source {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

.how__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-step {
  display: flex;
  gap: var(--sp-md);
  position: relative;
}

.how-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 46px;
  width: 2px;
  bottom: 0;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.3;
}

.how-step__num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-head);
}

.how-step__content {
  padding-bottom: var(--sp-lg);
}

.how-step__content h4 {
  margin-bottom: 0.25rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}

.how-step__content p {
  font-size: 0.9rem;
}

.how__principles {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.principle {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  padding: var(--sp-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all var(--dur) var(--ease);
}

.principle:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.3);
}

.principle__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.principle h4 {
  margin-bottom: 0.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
}

.principle p {
  font-size: 0.88rem;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  text-align: center;
}

.cta__inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 { margin-bottom: var(--sp-md); }
.cta p { margin-bottom: var(--sp-lg); font-size: 1.1rem; }

.cta__contact-methods {
  display: flex;
  justify-content: center;
  gap: var(--sp-lg);
  margin-top: var(--sp-lg);
  flex-wrap: wrap;
}

.cta__contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  color: var(--grey-light);
  font-size: 0.9rem;
}

.cta__contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #080F17;
  padding: var(--sp-lg) 0 var(--sp-md);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-xl);
  margin-bottom: var(--sp-lg);
}

.footer__brand p {
  margin-top: var(--sp-sm);
  font-size: 0.88rem;
  max-width: 320px;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-sm);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__col ul li a {
  color: var(--grey-mid);
  font-size: 0.88rem;
  transition: color var(--dur) var(--ease);
}

.footer__col ul li a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--sp-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--grey-mid);
}

.footer__bottom a {
  color: var(--grey-mid);
  font-size: 0.8rem;
}

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

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

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__photo-wrap { max-width: 380px; margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .framework__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --sp-xl: 4rem; --sp-lg: 2.5rem; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__content { padding-top: 120px; }

  .services__grid { grid-template-columns: 1fr; }
  .challenge__grid { grid-template-columns: 1fr; }
  .challenge__video-wrap { aspect-ratio: 16/9; max-height: 300px; }
  .how__grid { grid-template-columns: 1fr; }
  .quotes__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .footer__bottom { flex-direction: column; text-align: center; }

  .stat-bar__inner { gap: var(--sp-lg); }

  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta__contact-methods { flex-direction: column; align-items: center; gap: var(--sp-md); }
}

@media (max-width: 480px) {
  :root { --sp-xl: 3rem; }
  .who__grid { grid-template-columns: 1fr 1fr; }
  .about__credentials { gap: 0.4rem; }
}
