/*
Theme Name: Will Carr Speaks
Theme URI: https://willcarrspeaks.com
Author: Will Carr
Author URI: https://willcarrspeaks.com
Description: Premium dark athletic personal brand theme for Will Carr — life coach, motivational speaker, and wellness advocate for former college athletes.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: will-carr-speaks
Tags: dark, athletic, personal-brand, one-page, custom-header, custom-menu, featured-images, full-width-template
*/

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  /* Colors */
  --color-bg-deep:        #0C0C0E;
  --color-bg-dark:        #141416;
  --color-bg-dark-mid:    #1A1A1E;
  --color-bg-card:        rgba(255, 255, 255, 0.04);
  --color-bg-card-hover:  rgba(255, 255, 255, 0.08);
  --color-white:          #FFFFFF;
  --color-off-white:      #F5F3F0;
  --color-text-light:     #B8B4AE;
  --color-text-muted:     #787672;
  --color-charcoal:       #1A1A1E;
  --color-teal:           #00BCD4;
  --color-teal-light:     #26C6DA;
  --color-teal-dark:      #0097A7;
  --color-teal-glow:      rgba(0, 188, 212, 0.25);
  --color-amber:          #F5A623;
  --color-amber-light:    #FFBE3D;
  --color-border:         rgba(255, 255, 255, 0.08);
  --color-border-light:   rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-headline:  'Oswald', sans-serif;
  --font-body:      'DM Sans', sans-serif;
  --font-quote:     'Lora', serif;

  /* Spacing */
  --section-pad-y:  clamp(64px, 8vw, 120px);
  --container-max:  1280px;
  --container-pad:  clamp(20px, 5vw, 80px);

  /* Motion */
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:    cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast:  200ms;
  --duration-base:  400ms;
  --duration-slow:  700ms;

  /* Nav */
  --nav-height:     64px;
  --nav-bg-solid:   rgba(12, 12, 14, 0.96);

  /* Radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-off-white);
  background-color: var(--color-bg-deep);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 { font-size: clamp(42px, 7vw, 88px); }
h2 { font-size: clamp(32px, 4.5vw, 56px); }
h3 { font-size: clamp(22px, 2.5vw, 30px); }
h4 { font-size: clamp(18px, 2vw, 24px); }

p {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 16px;
}

/* =========================================================
   LAYOUT UTILITIES
   ========================================================= */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-off-white);
}

.section-deeper {
  background-color: var(--color-bg-deep);
  color: var(--color-off-white);
}

.section-white {
  background-color: var(--color-white);
  color: var(--color-charcoal);
}

.section-white .section-label {
  color: var(--color-teal-dark);
}

.section-white h2,
.section-white h3,
.section-white h4 {
  color: var(--color-charcoal);
}

.section-white p {
  color: #444;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--duration-fast) var(--ease-in-out);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-light));
  color: var(--color-charcoal);
  box-shadow: 0 4px 20px var(--color-teal-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-teal-light), var(--color-teal));
  box-shadow: 0 6px 30px rgba(0, 188, 212, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--color-teal);
  color: var(--color-teal);
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-teal);
  color: var(--color-charcoal);
  transform: translateY(-2px);
}

.btn-amber {
  background: linear-gradient(135deg, var(--color-amber), var(--color-amber-light));
  color: var(--color-charcoal);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
}

.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(245, 166, 35, 0.5);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--duration-base) var(--ease-in-out),
              backdrop-filter var(--duration-base) var(--ease-in-out),
              box-shadow var(--duration-base) var(--ease-in-out);
}

#site-header.is-solid {
  background: var(--nav-bg-solid);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-off-white);
  opacity: 0.85;
  transition: all var(--duration-fast) var(--ease-in-out);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-teal);
  transition: width var(--duration-fast) var(--ease-in-out);
}

.nav-menu a:hover {
  opacity: 1;
  color: var(--color-teal);
}

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

.nav-cta {
  margin-left: 16px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-off-white);
  transition: all var(--duration-fast) var(--ease-in-out);
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay menu */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-bg-deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nav-mobile-overlay.is-open {
  display: flex;
}

.nav-mobile-overlay a {
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-off-white);
  letter-spacing: 0.05em;
  transition: color var(--duration-fast) var(--ease-in-out);
}

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

.nav-mobile-overlay .btn {
  margin-top: 8px;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-bg-deep);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.55;
  animation: hero-img-scale 20s ease-out forwards;
}

@keyframes hero-img-scale {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(0, 188, 212, 0.08) 0%, transparent 60%),
    linear-gradient(
      to top,
      rgba(12, 12, 14, 0.95) 0%,
      rgba(12, 12, 14, 0.7) 35%,
      rgba(12, 12, 14, 0.3) 65%,
      rgba(12, 12, 14, 0.5) 100%
    );
  z-index: 1;
}

.hero-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  background: linear-gradient(to top, var(--color-bg-deep), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 60px;
  max-width: 720px;
  text-align: left;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 24px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--color-teal);
  opacity: 0.6;
}

.hero-headline {
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  color: var(--color-teal);
}

.hero-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color var(--duration-fast);
  width: fit-content;
}

.hero-scroll:hover {
  color: var(--color-teal);
}

.scroll-chevron {
  width: 20px;
  height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: bounce-down 1.8s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

/* Hero entrance animations */
.hero-content > * {
  animation: hero-fade-up 0.8s var(--ease-out-expo) both;
}

.hero-eyebrow { animation-delay: 0.1s; }
.hero-headline { animation-delay: 0.25s; }
.hero-sub      { animation-delay: 0.4s; }
.hero-ctas     { animation-delay: 0.55s; }
.hero-scroll   { animation-delay: 0.7s; }

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   LOGO BAR
   ========================================================= */
#logo-bar {
  padding: 36px 0 40px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  position: relative;
}

#logo-bar::before,
#logo-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

#logo-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-dark), transparent);
}

#logo-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-dark), transparent);
}

.logo-ticker-track {
  display: flex;
  gap: 60px;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}

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

.logo-ticker-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-ticker-item img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.7);
  transition: filter var(--duration-base) var(--ease-in-out),
              transform var(--duration-base) var(--ease-in-out);
}

.logo-ticker-item img:hover {
  filter: grayscale(0%) brightness(1) drop-shadow(0 0 8px rgba(245, 166, 35, 0.4));
  transform: scale(1.12);
}

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

/* =========================================================
   CORE PRINCIPLES (WHITE)
   ========================================================= */
#principles {
  padding: clamp(40px, 5vw, 72px) 0 var(--section-pad-y);
}

.principles-intro {
  text-align: center;
  margin-bottom: 48px;
}

.principles-intro h2 {
  margin-bottom: 16px;
}

.principles-intro p {
  max-width: 600px;
  margin-inline: auto;
  color: #555;
}

.principles-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .principles-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .principles-grid {
    grid-template-columns: 1fr;
  }
}

.principle-card {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: all var(--duration-base) var(--ease-in-out);
  position: relative;
  overflow: hidden;
}

.principle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--color-teal), var(--color-teal-light));
  transition: height var(--duration-base) var(--ease-in-out);
}

.principle-card:hover::before {
  height: 100%;
}

.principle-card:hover {
  border-color: var(--color-teal);
  box-shadow: 0 8px 32px rgba(0, 188, 212, 0.12);
  transform: translateY(-3px);
}

.principle-num {
  font-family: var(--font-headline);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-teal);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}

.principle-card h4 {
  font-size: 15px;
  color: var(--color-charcoal);
  margin-bottom: 6px;
}

.principle-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.principles-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 520px;
}

.principles-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* =========================================================
   ATHLETE STORY (DARK)
   ========================================================= */
#athlete-story {
  padding: var(--section-pad-y) 0;
  position: relative;
  clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
  margin: -40px 0;
  padding-top: calc(var(--section-pad-y) + 40px);
  padding-bottom: calc(var(--section-pad-y) + 40px);
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .story-layout {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.story-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
}

.story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
}

.story-content h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--color-white);
  margin-bottom: 24px;
}

.story-content h2 em {
  font-style: normal;
  color: var(--color-teal);
}

.story-content p {
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.story-content p:last-of-type {
  margin-bottom: 36px;
}

/* =========================================================
   STATS SECTION
   ========================================================= */
#stats {
  padding: var(--section-pad-y) 0;
  background: var(--color-bg-deep);
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 188, 212, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.stat-item {
  padding: 40px 32px;
  position: relative;
}

@media (min-width: 768px) {
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--color-border);
  }
}

.stat-number {
  font-family: var(--font-headline);
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 700;
  line-height: 1;
  color: var(--color-teal);
  letter-spacing: -0.02em;
  text-shadow: 0 0 60px rgba(0, 188, 212, 0.4);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.stat-number .suffix {
  font-size: 0.45em;
  line-height: 1.4;
  margin-left: 4px;
}

.stat-label {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--color-off-white);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.stat-source {
  font-size: 12px;
  color: var(--color-text-muted);
  font-style: italic;
}

/* =========================================================
   IMPROVEMENT (WHITE)
   ========================================================= */
#improvement {
  padding: var(--section-pad-y) 0;
}

.improvement-intro {
  text-align: center;
  margin-bottom: 56px;
}

.improvement-intro h2 {
  margin-bottom: 16px;
}

.improvement-intro p {
  max-width: 640px;
  margin-inline: auto;
  color: #555;
}

.improvement-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .improvement-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.improvement-card {
  background: #FAFAFA;
  border: 1px solid #EBEBEB;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-in-out);
}

.improvement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--color-teal);
}

.improvement-card-image {
  height: 220px;
  overflow: hidden;
}

.improvement-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-in-out);
}

.improvement-card:hover .improvement-card-image img {
  transform: scale(1.06);
}

.improvement-card-body {
  padding: 24px;
}

.improvement-card-body h3 {
  font-size: 18px;
  color: var(--color-charcoal);
  margin-bottom: 10px;
}

.improvement-card-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* =========================================================
   HABITS (DARK)
   ========================================================= */
#habits {
  padding: var(--section-pad-y) 0;
  position: relative;
}

.habits-intro {
  text-align: center;
  margin-bottom: 64px;
}

.habits-intro h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3vw, 42px);
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 20px;
}

.habits-intro p {
  max-width: 580px;
  margin-inline: auto;
  color: var(--color-text-light);
}

.habits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .habits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .habits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.habit-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--duration-base) var(--ease-in-out);
  display: flex;
  flex-direction: column;
}

.habit-card:hover {
  border-color: var(--color-teal);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 188, 212, 0.2);
}

.habit-card-image {
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}

.habit-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-in-out);
}

.habit-card:hover .habit-card-image img {
  transform: scale(1.06);
}

.habit-card-body {
  padding: 24px;
  flex: 1;
}

.habit-card-num {
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-teal);
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.habit-card-body h3 {
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.habit-card-body p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
#cta-journey {
  padding: var(--section-pad-y) 0;
  background: linear-gradient(135deg, var(--color-teal-dark) 0%, var(--color-teal) 50%, var(--color-teal-light) 100%);
  position: relative;
  overflow: hidden;
}

#cta-journey::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/content/family-cta.png') center / cover no-repeat;
  opacity: 0.15;
}

.cta-journey-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-journey-inner h2 {
  font-size: clamp(32px, 5vw, 64px);
  color: var(--color-charcoal);
  margin-bottom: 20px;
}

.cta-journey-inner p {
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(20, 20, 22, 0.75);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.cta-journey-btn {
  background: var(--color-charcoal);
  color: var(--color-off-white);
  padding: 18px 48px;
  border-radius: var(--radius-sm);
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all var(--duration-fast) var(--ease-in-out);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.cta-journey-btn:hover {
  background: var(--color-bg-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.cta-journey-btn svg {
  width: 20px;
  height: 20px;
}

/* =========================================================
   ABOUT WILL (DARK)
   ========================================================= */
#about {
  padding: var(--section-pad-y) 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.about-portrait {
  position: relative;
}

.about-portrait img {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-xl);
}

.about-portrait::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius-xl) + 12px);
  border: 1px solid var(--color-teal);
  opacity: 0.2;
  z-index: -1;
}

.about-content h2 {
  margin-bottom: 8px;
}

.about-content .about-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 24px;
  display: block;
}

.about-content p {
  color: var(--color-text-light);
  margin-bottom: 20px;
  font-size: clamp(16px, 1.2vw, 18px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-light);
  transition: all var(--duration-fast) var(--ease-in-out);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.social-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.social-link:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
  background: rgba(0, 188, 212, 0.06);
  transform: translateY(-2px);
}

/* =========================================================
   PRICING (WHITE)
   ========================================================= */
#pricing {
  padding: var(--section-pad-y) 0;
}

.pricing-intro {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-intro h2 {
  margin-bottom: 16px;
}

.pricing-intro p {
  max-width: 520px;
  margin-inline: auto;
  color: #555;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 860px;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-card {
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all var(--duration-base) var(--ease-in-out);
}

.pricing-card:hover {
  border-color: var(--color-teal);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.pricing-card.is-featured {
  border-color: var(--color-teal);
  box-shadow: 0 16px 48px rgba(0, 188, 212, 0.18);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-amber), var(--color-amber-light));
  color: var(--color-charcoal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-charcoal);
  margin-bottom: 20px;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-currency {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-top: 8px;
}

.pricing-amount {
  font-family: var(--font-headline);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-teal-dark);
}

.pricing-was {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  color: #333;
  border-bottom: 1px solid #F0F0F0;
}

.pricing-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2300BCD4'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E") center / contain no-repeat;
  margin-top: 1px;
}

.pricing-note {
  font-size: 12px;
  color: #999;
  margin-top: 12px;
}

/* =========================================================
   PROJECTS (DARK)
   ========================================================= */
#projects {
  padding: var(--section-pad-y) 0;
}

.projects-intro {
  text-align: center;
  margin-bottom: 56px;
}

.projects-intro h2 {
  margin-bottom: 16px;
}

.projects-intro p {
  max-width: 540px;
  margin-inline: auto;
  color: var(--color-text-light);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .projects-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.project-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: all var(--duration-base) var(--ease-in-out);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  border-color: var(--color-amber);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.project-card-image {
  height: 180px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-in-out);
}

.project-card:hover .project-card-image img {
  transform: scale(1.06);
}

.project-card-body {
  padding: 20px;
  flex: 1;
}

.project-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 8px;
}

.project-card-body h3 {
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 10px;
}

.project-card-body p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* =========================================================
   PODCASTS
   ========================================================= */
#podcasts {
  padding: var(--section-pad-y) 0;
  background: var(--color-bg-deep);
  border-top: 1px solid var(--color-border);
}

.podcasts-inner {
  text-align: center;
}

.podcasts-inner h2 {
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 40px);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 20px;
}

.podcasts-inner > p {
  color: var(--color-text-light);
  margin-bottom: 48px;
  max-width: 480px;
  margin-inline: auto;
}

.podcast-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.podcast-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: all var(--duration-fast) var(--ease-in-out);
  min-width: 200px;
  justify-content: center;
}

.podcast-link-btn.youtube {
  background: #FF0000;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

.podcast-link-btn.youtube:hover {
  background: #CC0000;
  box-shadow: 0 8px 32px rgba(255, 0, 0, 0.5);
  transform: translateY(-2px);
}

.podcast-link-btn.spotify {
  background: #1DB954;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(29, 185, 84, 0.3);
}

.podcast-link-btn.spotify:hover {
  background: #17A347;
  box-shadow: 0 8px 32px rgba(29, 185, 84, 0.5);
  transform: translateY(-2px);
}

.podcast-link-btn img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* =========================================================
   CONTACT
   ========================================================= */
#contact {
  padding: var(--section-pad-y) 0;
  background: var(--color-bg-dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-off-white);
  font-size: 15px;
  margin-bottom: 12px;
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  color: var(--color-teal);
  flex-shrink: 0;
}

.contact-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-field:last-child {
  margin-bottom: 0;
}

.form-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-off-white);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
  outline: none;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-text-muted);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.15);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-light));
  color: var(--color-charcoal);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-in-out);
  margin-top: 8px;
  box-shadow: 0 4px 20px var(--color-teal-glow);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 188, 212, 0.4);
}

/* =========================================================
   FOOTER
   ========================================================= */
#site-footer {
  background: var(--color-bg-deep);
  border-top: 1px solid var(--color-border);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
  }
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 15px;
  color: var(--color-text-light);
  max-width: 300px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-off-white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 15px;
  color: var(--color-text-light);
  transition: color var(--duration-fast);
}

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

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-light);
  transition: all var(--duration-fast);
}

.footer-social a:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
  background: rgba(0, 188, 212, 0.08);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copyright {
  font-size: 14px;
  color: var(--color-text-muted);
}

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

.footer-bottom-links a {
  font-size: 13px;
  color: var(--color-text-muted);
  transition: color var(--duration-fast);
}

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

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

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

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

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

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

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

/* Stagger delays */
.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; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .logo-ticker-track {
    animation: none;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1023px) {
  .nav-menu,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

@media (max-width: 767px) {
  .contact-form {
    padding: 28px 20px;
  }

  .pricing-card {
    padding: 32px 24px;
  }
}

@media (max-width: 390px) {
  :root {
    --container-pad: 16px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   UTILITY CLASSES
   ========================================================= */
.text-teal    { color: var(--color-teal); }
.text-amber   { color: var(--color-amber); }
.text-muted   { color: var(--color-text-light); }
.text-center  { text-align: center; }
.mt-4         { margin-top: 16px; }
.mt-8         { margin-top: 32px; }
.mb-4         { margin-bottom: 16px; }
.mb-8         { margin-bottom: 32px; }

/* Section padding */
.section-pad {
  padding: var(--section-pad-y) 0;
}

/* Visually hidden (accessibility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===== URGENCY BANNER ===== */
.urgency-banner {
  background: linear-gradient(135deg, #00BCD4, #007a8c);
  color: #fff;
  position: relative;
  z-index: 1001;
}

.urgency-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.urgency-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.urgency-text span {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.urgency-cta {
  display: inline-block;
  background: #fff;
  color: #007a8c;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 0.4em 1.2em;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.urgency-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.urgency-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0 0.3rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.urgency-close:hover { color: #fff; }

/* ===== HERO CREDENTIALS ===== */
.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.credential-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-teal);
  background: rgba(0, 188, 212, 0.1);
  border: 1px solid rgba(0, 188, 212, 0.3);
  padding: 0.4em 1em;
  border-radius: 100px;
}

/* Ghost button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-teal);
  background: transparent;
  border: 2px solid var(--color-teal);
  padding: 0.75em 1.8em;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-ghost:hover {
  background: var(--color-teal);
  color: #fff;
}

/* ===== VIDEO SHOWCASE ===== */
#video-showcase { padding: 5rem 0; }

.video-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.video-container {
  max-width: 960px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(0, 188, 212, 0.3);
  box-shadow: 0 0 40px rgba(0, 188, 212, 0.1), 0 8px 32px rgba(0,0,0,0.4);
  cursor: pointer;
}

.video-wrapper iframe,
.video-wrapper .video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.video-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  transition: background 0.3s ease;
  z-index: 2;
}

.video-wrapper:hover .video-overlay {
  background: rgba(0,0,0,0.3);
}

.play-btn-pulse {
  animation: pulse-glow 2s ease-in-out infinite;
  border-radius: 50%;
  padding: 1rem;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.4); }
  50% { box-shadow: 0 0 0 20px rgba(0, 188, 212, 0); }
}

.video-wrapper.is-playing .video-overlay { display: none; }
.video-wrapper.is-playing iframe { display: block !important; }

/* ===== LOGO BAR HEADER ===== */
.logo-bar-header {
  text-align: center;
  padding-bottom: 1.5rem;
}

.logo-bar-subtext {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

/* ===== TESTIMONIALS ===== */
#testimonials { padding: 6rem 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: #1a1a2e;
  border-left: 4px solid var(--color-teal);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1.2rem;
  font-size: 4rem;
  font-family: 'Lora', serif;
  color: rgba(0, 188, 212, 0.2);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 188, 212, 0.15);
}

.testimonial-stars {
  color: var(--color-teal);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-off-white);
  margin: 0 0 1.5rem 0;
  padding: 0;
  border: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-info strong {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--color-off-white);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.testimonial-school {
  color: var(--color-teal) !important;
  font-weight: 500;
}

/* ===== SPEAKING SECTION ===== */
#speaking { padding: 6rem 0; }

.speaking-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.speaking-formats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.speaking-format-card {
  background: var(--color-bg-card);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--color-teal);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.speaking-format-card:hover {
  transform: translateX(4px);
  border-left-color: var(--color-amber);
}

.speaking-format-card h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--color-off-white);
  margin-bottom: 0.3rem;
}

.speaking-format-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin: 0;
}

.speaking-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* ===== FAQ SECTION ===== */
#faq { padding: 5rem 0; }

.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:first-child {
  border-top: 1px solid #e0e0e0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-bg-deep);
  transition: color 0.2s ease;
}

.faq-question:hover { color: var(--color-teal-dark); }

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-teal);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-item.is-open .faq-question {
  color: var(--color-teal-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0 0 0;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* ===== PROJECT CTA BANNER ===== */
.project-cta-banner {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.project-cta-inner {
  background: linear-gradient(135deg, #0a1628, #0097A7);
  padding: 3rem;
  text-align: center;
  border-radius: var(--radius-lg);
}

.project-cta-inner h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}

.project-cta-inner p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* ===== CONTACT ENHANCEMENTS ===== */
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--color-off-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23787672' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.form-select:focus {
  outline: none;
  border-color: var(--color-teal);
}

.form-select option {
  background: var(--color-bg-dark);
  color: var(--color-off-white);
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  background: #FF6B35;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.85em 1.6em;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.2s ease;
  pointer-events: none;
}

.floating-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.floating-cta:hover {
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1023px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .speaking-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .speaking-image { order: -1; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 767px) {
  .urgency-inner { font-size: 0.8rem; gap: 0.5rem; padding: 0.5rem 1rem; }
  .urgency-text { font-size: 0.78rem; }
  .hero-credentials { justify-content: center; }
  .credential-pill { font-size: 0.75rem; }
  .video-wrapper { border-radius: var(--radius-md); }
  .project-cta-inner { padding: 2rem 1.5rem; }
  .project-cta-inner h3 { font-size: 1.3rem; }
  .faq-question { font-size: 0.95rem; }
  .floating-cta { bottom: 1rem; right: 1rem; font-size: 0.85rem; padding: 0.7em 1.3em; }
}

/* ===== VIDEO THUMBNAIL ===== */
.video-thumb {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-wrapper.is-playing .video-thumb { display: none; }

/* ===== YOUTUBE SHORTS GALLERY ===== */
.yt-shorts-section {
  text-align: center;
  margin-top: 3.5rem;
}

.yt-shorts-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-off-white);
  margin-bottom: 0.3rem;
}

.yt-shorts-sub {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.yt-shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.yt-short-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yt-short-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 188, 212, 0.2);
}

.yt-short-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.yt-short-card:hover img { opacity: 0.7; }

.yt-short-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.yt-short-card:hover .yt-short-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.15);
}

.yt-short-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 1.5rem 0.75rem 0.6rem;
}

/* ===== SECTION TRANSITION DIVIDERS ===== */
/* Angled transitions between dark → white and white → dark */

/* Dark-to-white: angled clip on the white section top */
#principles::before,
#improvement::before,
#faq::before {
  content: '';
  display: block;
  height: 50px;
  margin-top: -50px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  position: relative;
  z-index: 1;
}

/* White-to-dark: teal glow line divider */
.section-dark::before,
.section-deeper::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-teal), transparent);
  opacity: 0.4;
}

/* Override for sections that shouldn't have dividers */
#hero::before,
#logo-bar::before,
#video-showcase::before,
#site-footer::before { display: none; }

/* Subtle gradient bleed at section boundaries */
.section-white + .section-dark,
.section-white + .section-deeper {
  border-top: none;
}

.section-dark + .section-white {
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.08);
}

/* ===== GENESEE PROJECT LINK ===== */
.project-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.project-visit {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-teal);
  transition: color 0.2s ease;
}

.project-card-link:hover .project-visit {
  color: var(--color-teal-light);
}

/* ===== PODCAST EMBED ===== */
.podcast-embed {
  max-width: 700px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.podcast-embed iframe {
  display: block;
  width: 100%;
}

/* ===== RESPONSIVE SHORTS ===== */
@media (max-width: 767px) {
  .yt-shorts-grid { grid-template-columns: repeat(2, 1fr); }
  .yt-short-label { font-size: 0.72rem; }
}

/* ===== PREFERS REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .play-btn-pulse { animation: none; }
  .floating-cta { transition: none; }
  .faq-answer { transition: none; }
  .speaking-format-card { transition: none; }
  .testimonial-card { transition: none; }
  .yt-short-card { transition: none; }
}
