/* ============================================
   COACH HOLISTIC PERFORMANCE Global Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Playfair+Display:ital,wght@1,900&family=Jost:wght@300;400;500&display=swap');

:root {
  /* Base palette — Premium light tones */
  --cream:        #f5f3ef;
  --cream-mid:    #eceae5;
  --sand:         #e2dfda;
  --blush:        #d8d5cf;
  --taupe:        #8fa89a;
  --taupe-light:  #b2c4bb;

  /* Text colors — dark for readability on light backgrounds */
  --dark:         #1e1c19;      /* Primary text */
  --charcoal:     #3d3a35;      /* Secondary text */
  --stone:        #6b6156;      /* Muted text - darkened from #8a8578 */
  --stone-mid:    #8a8578;      /* Border accents */

  /* Teal — electric accent for edges, borders, highlights */
  --teal:         #00b8ad;
  --teal-light:   #3ecfc5;

  /* Section backgrounds — all light premium tones */
  --white:        #faf8f5;
  --warm-white:   #f9f7f3;      /* Slightly warmer white */
  --warm-light:   #ebe8e3;      /* Light warm beige */
  --warm-mid:     #e8e5e0;      /* Medium warm beige */

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', sans-serif;

  --transition:  0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

/* Global: all em inside headings = bold Playfair, never cursive */
h1 em, h2 em, h3 em, h4 em,
.hero-headline em,
.section-title em,
.page-hero-title em,
.intro-quote em,
.radiance-title em,
.speaking-title em,
.app-title em,
.exclusive-big-text em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 900;
  font-synthesis: none;
}

body {
  background-color: var(--cream);
  color: var(--dark);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* Warm gradient transitions between sections */
.section-gradient-warm {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-mid) 100%);
}
.section-gradient-blush {
  background: linear-gradient(180deg, var(--cream-mid) 0%, var(--blush) 100%);
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(250, 245, 239, 0.96);
  backdrop-filter: blur(12px);
  padding: 16px 60px;
  border-bottom: 1px solid rgba(184, 153, 122, 0.25);
}

.nav-logo img {
  height: 36px;
  width: auto;
  filter: invert(0);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links li:not(:last-child)::after {
  content: '|';
  color: var(--stone);
  margin: 0 18px;
  font-weight: 300;
  font-size: 12px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--warm-light);
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.hero.loaded .hero-image {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(30, 28, 25, 0.72) 0%,
    rgba(30, 28, 25, 0.30) 50%,
    rgba(30, 28, 25, 0.10) 100%
  );
}

/* LEFT — statement panel */
.hero-statement {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  flex: 0 0 auto;
  width: 36%;
  display: flex;
  align-items: center;
}

.hero-statement-inner {
  border-left: 2px solid var(--teal);
  padding-left: 28px;
}

.hero-statement-line {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 900;
  font-style: italic;
  color: var(--dark);
  line-height: 1.0;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeLeft 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
}

.hero-statement-line:nth-child(1) { animation-delay: 0.3s; }
.hero-statement-line:nth-child(2) { animation-delay: 0.5s; color: var(--teal-light); }
.hero-statement-line:nth-child(3) { animation-delay: 0.7s; }

.hero-statement-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.8;
  max-width: 240px;
  margin-top: 20px;
  letter-spacing: 0.03em;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 1.0s forwards;
}

@keyframes fadeLeft {
  to { opacity: 1; transform: translateX(0); }
}

/* RIGHT — headline content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 0 40px;
  max-width: 560px;
  margin-left: auto;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--transition) 0.3s forwards;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.5vw, 78px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--transition) 0.5s forwards;
}

.hero-headline em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 900;
}

.hero-subheadline {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal);
  max-width: 480px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--transition) 0.8s forwards;
}

.hero-cta {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--transition) 1s forwards;
}

.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--teal);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--teal);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-ghost {
  display: inline-block;
  padding: 16px 36px;
  background: transparent;
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(250, 248, 244, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: rgba(250, 248, 244, 0.1);
  border-color: var(--dark);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.hero-scroll-hint span {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(250, 248, 244, 0.4);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--teal-light);
  animation: scrollLine 2s ease 1.5s infinite;
}

/* ============================================
   SECTION COMMONS
   ============================================ */

section {
  padding: 120px 60px;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
}

.section-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 900;
}

/* ============================================
   INTRO STRIP / MARQUEE
   ============================================ */

.marquee-strip {
  background: linear-gradient(90deg, var(--warm-mid) 0%, var(--warm-mid) 50%, var(--warm-dark) 100%);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 0 40px;
}

.marquee-track span.dot {
  color: var(--teal);
  padding: 0 4px;
  letter-spacing: 0;
}

/* ============================================
   PHILOSOPHY / INTRO SECTION
   ============================================ */

.intro-section {
  background: linear-gradient(160deg, var(--white) 0%, var(--cream-mid) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-quote {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--dark);
  border-left: 2px solid var(--teal);
  padding-left: 36px;
}

.intro-quote em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 900;
  color: var(--teal);
}

.intro-body p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.intro-body p:last-child {
  margin-bottom: 0;
}

/* ============================================
   3-STEP METHOD
   ============================================ */

.method-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
  text-align: center;
}

.method-section .section-title {
  margin-bottom: 16px;
}

.method-subtitle {
  font-size: 15px;
  color: var(--charcoal);
  opacity: 0.7;
  max-width: 500px;
  margin: 0 auto 72px;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.method-step {
  background: var(--white);
  padding: 56px 44px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.method-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(42, 37, 32, 0.1);
  z-index: 1;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 16px;
}

.step-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--charcoal);
  opacity: 0.8;
}

/* ============================================
   FADE IN ANIMATIONS (Scroll Triggered)
   ============================================ */

/* Fade animations moved to animations.css */


/* ============================================
   DARK BACKGROUND TEXT OVERRIDES
   Any element with a dark bg must use light
   text. These rules ensure readability across
   all dark sections site-wide.
   ============================================ */

/* Sections that use dark/warm-dark backgrounds */
.eldoa-section,
.about-cta-section,
.speaking-section,
.app-section,
.results-ba-section,
.results-hero,
.page-hero.workshops-hero,
.nonneg-section,
.targets-section {
  color: var(--dark);
}

/* Global override: inside any dark-background
   section, reset paragraph and heading colours */
.eldoa-section p,
.eldoa-section h2,
.eldoa-section h3,
.about-cta-section p,
.about-cta-section h2,
.speaking-section p,
.speaking-section h2,
.app-section p,
.app-section h2 {
  color: var(--charcoal);
}

/* Credentials bar — values must be light */
.cred-value {
  color: var(--dark) !important;
}

/* Event banner dark bg */
.event-banner .event-banner-text,
.event-banner .event-banner-date {
  color: var(--dark);
}

/* Origin section numbers */
.origin-number {
  color: var(--dark);
}

.origin-stat-label {
  color: var(--charcoal);
}


/* ============================================
   FOOTER
   ============================================ */

footer {
  background: linear-gradient(135deg, var(--warm-dark) 0%, var(--dark) 60%, var(--warm-mid) 100%);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo img {
  height: 32px;
  filter: brightness(0) invert(1) opacity(0.5);
}

.footer-copy {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(30, 28, 25, 0.4);
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(30, 28, 25, 0.5);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--teal-light);
}

/* ============================================
   KEYFRAMES
   ============================================ */

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

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

@keyframes scrollLine {
  0%   { left: -100%; }
  50%  { left: 0%; }
  100% { left: 100%; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .nav {
    padding: 20px 28px;
  }
  .nav.scrolled {
    padding: 14px 28px;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li::after {
    display: none !important;
  }
  .nav-links a {
    font-size: 14px;
    letter-spacing: 0.2em;
  }
  .nav-toggle {
    display: flex;
    z-index: 101;
  }
  .hero-content {
    padding: 0 28px;
    max-width: 100%;
  }
  .hero-statement {
    display: none;
  }
  .hero-scroll-hint {
    left: 28px;
  }
  section {
    padding: 80px 28px;
  }
  .intro-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .method-steps {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 48px 28px;
  }
}

/* ============================================
   EVENT REGISTRATION BANNER
   ============================================ */

.event-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--warm-mid) 0%, var(--dark) 60%, var(--teal) 100%);
  padding: 16px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 -4px 40px rgba(0,0,0,0.3);
}

.event-banner.visible {
  transform: translateY(0);
}

.event-banner-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.event-banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-light);
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.event-banner-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal-light);
  display: block;
  margin-bottom: 3px;
}

.event-banner-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
}

.event-banner-date {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--charcoal);
  margin-top: 2px;
}

.event-banner-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.event-banner-cta {
  display: inline-block;
  padding: 12px 28px;
  background: var(--teal);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--teal);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.event-banner-cta:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
}

.event-banner-close {
  background: none;
  border: none;
  color: var(--charcoal);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.event-banner-close:hover {
  color: var(--dark);
}

@media (max-width: 900px) {
  .event-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 14px;
  }
  .event-banner-right {
    width: 100%;
    justify-content: space-between;
  }
}

/* ── Physique Visual Accents ──────────────── */

/* Method steps — subtle muscle texture overlay */
.method-section {
  position: relative;
}
.method-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
  opacity: 0.035;
  pointer-events: none;
}



/* ── Global dark-section text readability sweep ── */
.about-cta-section .section-title,
.about-cta-section h2,
.about-cta-section h3,
.eldoa-section .section-title,
.eldoa-section h2,
.eldoa-section h3,
.eldoa-title,
.eldoa-distinction .distinction-body,
.speaking-section .section-title,
.speaking-section h2,
.speaking-title,
.speaking-topic,
.app-section .section-title,
.app-title,
.app-body,
.app-feature,
.exclusive-section .section-title,
.exclusive-section h2,
.exclusive-big-text,
.exclusive-body p,
.exclusive-include-item,
.exclusive-note,
.results-hero .results-hero-title,
.results-hero .results-hero-sub,
.results-ba-section .section-title,
.results-cta-section .section-title,
.results-cta-inner h2,
.results-cta-inner p,
.nonneg-item {
  color: var(--dark) !important;
}

.eldoa-section p,
.about-cta-right p,
.speaking-section p,
.exclusive-body p {
  color: var(--charcoal) !important;
}

/* ═══════════════════════════════════════
   GLOBAL TEXT COLOR OVERRIDES
   Ensure dark text on all light backgrounds
═══════════════════════════════════════ */

body {
  background: var(--cream);
  color: var(--dark);
}

section {
  color: var(--dark);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--dark);
}

p {
  color: var(--charcoal);
}

.section-label {
  color: var(--stone) !important;
}

.section-title {
  color: var(--dark) !important;
}

/* Additional overrides for specific sections */
.section-title em {
  color: var(--dark) !important;
}

.hero-headline,
.page-hero-title,
.results-hero-title {
  color: var(--dark) !important;
}

.intro-quote,
.intro-text {
  color: var(--charcoal) !important;
}

/* ============================================
   HOME CTA SECTION
   ============================================ */
.home-cta-section {
  background: var(--dark);
  padding: 120px 60px;
  text-align: center;
}
.home-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}
.home-cta-section .section-label {
  color: var(--teal);
}
.home-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin: 16px 0 28px;
}
.home-cta-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 900;
  color: var(--teal);
}
.home-cta-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
}
.home-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-ghost {
  display: inline-block;
  padding: 16px 36px;
  border: 1px solid rgba(255,255,255,0.25);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ============================================
   FOOTER FULL
   ============================================ */
.footer-full {
  background: #111 !important;
  padding: 0 !important;
  display: block !important;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 72px 60px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-img {
  height: 28px;
  filter: brightness(0) invert(1) opacity(0.6);
  margin-bottom: 20px;
  display: block;
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}
.footer-location {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}
.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.footer-nav-group a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav-group a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px 60px;
}
.footer-bottom .footer-copy {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2);
}

@media (max-width: 900px) {
  .home-cta-section { padding: 80px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 20px 28px; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}
