/* ========================================================================
   COMPONENTS — Worthy Believer
   Premium Christian Life Coaching — Warm Gold + Charcoal
   ======================================================================== */

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-5) var(--space-6);
  transition: background 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out),
              padding 0.4s var(--ease-out);
}
.site-header.scrolled {
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-divider);
  padding: var(--space-3) var(--space-6);
}
.header-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}
.header-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.header-wordmark {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-text);
  text-transform: uppercase;
}
/* Hide wordmark on hero (white bg logo on white bg = invisible without extra logic) */
.site-header:not(.scrolled) .header-wordmark {
  color: #fff;
}
.site-header:not(.scrolled) .nav-link {
  color: rgba(255,255,255,0.8);
}
.site-header:not(.scrolled) .nav-link:hover {
  color: #fff;
}
.site-header:not(.scrolled) .nav-link.active {
  color: var(--color-primary);
}
.site-header:not(.scrolled) .nav-cta {
  background: var(--color-primary);
  color: #1A1A1A;
}
.site-header:not(.scrolled) .mobile-menu-btn {
  color: #fff;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.nav-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
  color: var(--color-text);
}
.nav-link.active {
  color: var(--color-primary-dark);
  font-weight: 600;
}
.nav-cta {
  background: var(--color-accent-dark);
  color: #fff !important;
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-left: var(--space-4);
}
.nav-cta:hover {
  background: var(--color-accent-charcoal);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile */
.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(253, 250, 245, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 90;
  padding-top: 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.mobile-nav-overlay.open {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: center;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text);
  padding: var(--space-4);
  transition: color var(--transition);
}
.mobile-nav-link:hover {
  color: var(--color-primary);
}
.mobile-nav-cta {
  display: inline-block;
  margin-top: var(--space-8);
  background: var(--color-accent-dark);
  color: #fff;
  padding: var(--space-4) var(--space-10);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
}

@media (max-width: 768px) {
  .nav-link, .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-wordmark { font-size: 0.7rem; letter-spacing: 0.1em; }
}

/* ===== HERO (Premium — huly.io inspired) ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0908;
}

/* Golden light ray — descends from upper right like huly's laser */
.hero-light-ray {
  position: absolute;
  top: -10%;
  right: 15%;
  width: 3px;
  height: 70%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(212, 164, 76, 0.95) 0%,
    rgba(212, 164, 76, 0.6) 30%,
    rgba(180, 130, 40, 0.25) 60%,
    transparent 100%
  );
  filter: blur(4px);
  box-shadow:
    0 0 80px 40px rgba(212, 164, 76, 0.12),
    0 0 160px 80px rgba(212, 164, 76, 0.06);
  animation: ray-pulse 5s ease-in-out infinite;
}
.hero-light-ray::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg,
    rgba(255, 240, 200, 1) 0%,
    rgba(255, 220, 160, 0.7) 30%,
    transparent 70%
  );
  filter: blur(1px);
}
/* Spread glow from the ray */
.hero-light-ray::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 164, 76, 0.08), transparent 60%);
  pointer-events: none;
}

@keyframes ray-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Mouse-tracking glow orb */
.hero-mouse-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 164, 76, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease;
  transform: translate(-50%, -50%);
}
.hero:hover .hero-mouse-glow {
  opacity: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,9,8,0.88) 0%, rgba(10,9,8,0.5) 45%, rgba(10,9,8,0.15) 100%),
    linear-gradient(180deg, rgba(10,9,8,0.2) 0%, transparent 25%, transparent 75%, rgba(10,9,8,0.8) 100%);
}
/* Warm atmospheric bloom — asymmetric like huly */
.hero-glow {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 60%;
  height: 70%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 70% 80%, rgba(212, 164, 76, 0.15), transparent 60%),
    radial-gradient(ellipse 40% 40% at 30% 70%, rgba(140, 80, 20, 0.08), transparent 50%);
}
/* Edge vignette */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(10,9,8,0.7) 0%, transparent 15%, transparent 85%, rgba(10,9,8,0.5) 100%),
    linear-gradient(to bottom, rgba(10,9,8,0.3) 0%, transparent 12%, transparent 92%, rgba(10,9,8,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-32) var(--space-6) var(--space-20);
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--color-primary);
}
.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  max-width: 10ch;
  margin-bottom: var(--space-8);
}
.hero-title em {
  font-style: italic;
  color: var(--color-primary);
}
.hero-desc {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  max-width: 42ch;
  line-height: 1.7;
  margin-bottom: var(--space-10);
}
.hero-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--color-primary);
  color: #1A1A1A;
  position: relative;
}
/* Glowing pulse aura on primary buttons */
.btn-primary::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: var(--color-primary);
  z-index: -1;
  opacity: 0;
  filter: blur(16px);
  animation: btn-glow-pulse 3s ease-in-out infinite;
}
@keyframes btn-glow-pulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(1.05); }
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 164, 76, 0.35), 0 0 60px rgba(212, 164, 76, 0.15);
}
.btn-primary:hover::after {
  animation: none;
  opacity: 0.4;
}
.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
}
.btn-outline-dark:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn-dark {
  background: var(--color-accent-dark);
  color: #fff;
}
.btn-dark:hover {
  background: var(--color-accent-charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-base);
}

/* ===== SCENE CUT TRANSITIONS (huly-inspired dark/light hard cuts) ===== */
.scene-cut {
  height: 2px;
  position: relative;
  pointer-events: none;
}
.scene-cut--to-dark {
  background: linear-gradient(180deg, var(--color-bg) 0%, #0a0908 100%);
  height: 50px;
}
.scene-cut--to-light {
  background: linear-gradient(180deg, #0a0908 0%, var(--color-bg) 100%);
  height: 50px;
}
.scene-cut--warm-to-white {
  background: linear-gradient(180deg, var(--color-surface-warm) 0%, var(--color-bg) 100%);
  height: 30px;
}

/* ===== SECTIONS ===== */
.section {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
}
.section-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-inline: var(--space-6);
}
.section-narrow {
  max-width: var(--content-default);
}
.section-dark {
  background: var(--color-accent-dark);
  color: #fff;
}
.section-warm {
  background: var(--color-surface-warm);
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}
.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  line-height: 1.15;
}
.section-heading em {
  font-style: italic;
  color: var(--color-primary-dark);
}
.section-dark .section-heading {
  color: #fff;
}
.section-dark .section-heading em {
  color: var(--color-primary);
}
.section-dark .section-eyebrow {
  color: var(--color-primary);
}
.section-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 60ch;
}
.section-dark .section-desc {
  color: rgba(255,255,255,0.65);
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image {
  width: 100%;
  border-radius: var(--radius-2xl);
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-xl);
}
/* Decorative gold accent behind image */
.about-image-wrap::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--color-primary-light);
  border-radius: var(--radius-2xl);
  z-index: -1;
}
.about-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}
.about-text p:last-of-type {
  margin-bottom: var(--space-8);
}
.about-signature {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-primary-dark);
  margin-top: var(--space-4);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .about-image {
    aspect-ratio: 4/3;
    max-height: 400px;
  }
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-2xl);
  padding: var(--space-10) var(--space-8);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out),
              border-color 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}
/* Gold top-edge rim light */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, var(--color-primary) 50%, transparent 95%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
/* Hover glow overlay */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 164, 76, 0.04), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}
.service-card:hover {
  box-shadow:
    var(--shadow-lg),
    0 0 40px rgba(212, 164, 76, 0.08),
    inset 0 1px 0 rgba(212, 164, 76, 0.15);
  border-color: var(--color-primary-light);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover::after {
  opacity: 1;
}
.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-subtle);
  border-radius: var(--radius-xl);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-6);
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover .service-icon {
  transform: scale(1.08);
}
.service-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.service-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.service-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.service-feature svg {
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; max-width: 500px; }
}

/* ===== QUOTE / INTERSTITIAL ===== */
.quote-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-24);
  text-align: center;
}
.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-accent-dark), #2D2926);
}
.quote-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding-inline: var(--space-6);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--color-primary);
  opacity: 0.25;
  line-height: 0.5;
  margin-bottom: var(--space-4);
}
.quote-text {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.35;
  margin-bottom: var(--space-8);
}
.quote-cite {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
/* Decorative gold line */
.quote-line {
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  margin: 0 auto var(--space-8);
}

/* ===== VIDEOS SECTION ===== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.video-card {
  display: block;
  text-decoration: none;
  color: var(--color-text);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--color-divider);
  background: var(--color-surface);
  transition: transform 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-surface-2);
}
.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.video-card:hover .video-thumb {
  transform: scale(1.05);
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.video-card:hover .video-play {
  opacity: 1;
}
.video-info {
  padding: var(--space-5);
}
.video-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: var(--space-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-meta {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ===== APPROACH SECTION ===== */
.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
  counter-reset: step;
}
.approach-step {
  counter-increment: step;
  position: relative;
  padding-top: var(--space-16);
}
.approach-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--color-primary-light);
  line-height: 1;
}
.approach-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.approach-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .approach-steps { grid-template-columns: 1fr; gap: var(--space-12); }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, #C4923A 50%, var(--color-primary-dark) 100%);
  padding-block: var(--space-20);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
  opacity: 0.04;
  pointer-events: none;
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-default);
  margin: 0 auto;
  padding-inline: var(--space-6);
}
.cta-banner .section-heading {
  color: #1A1A1A;
}
.cta-banner .section-desc {
  color: rgba(26,26,26,0.7);
  margin-inline: auto;
  margin-bottom: var(--space-10);
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
  margin-top: var(--space-10);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-subtle);
  border-radius: var(--radius-lg);
  color: var(--color-primary-dark);
  flex-shrink: 0;
}
.contact-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-1);
}
.contact-value {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.5;
}
.contact-value a {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-value a:hover {
  color: var(--color-primary);
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
}
.form-input,
.form-textarea {
  font-family: var(--font-body);
  font-size: var(--text-base);
  padding: var(--space-4);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-subtle);
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-10); }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-accent-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-20) var(--space-6) var(--space-8);
}
.footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-10);
}
.footer-brand-desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 35ch;
  margin-top: var(--space-4);
}
.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: var(--space-2);
  /* Invert for dark bg */
  filter: brightness(0) invert(1);
}
.footer-wordmark {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #fff;
  text-transform: uppercase;
}
.footer-col-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-5);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-link:hover {
  color: var(--color-primary);
}
.footer-socials {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.footer-social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.5);
  transition: all 0.3s var(--ease-out);
}
.footer-social:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
.footer-bottom {
  max-width: var(--content-wide);
  margin: var(--space-12) auto 0;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-bottom a:hover {
  color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }
  .footer-brand-desc { margin-inline: auto; }
  .footer-socials { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== SCROLL ANIMATIONS (Premium — more dramatic) ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 120ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 240ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 360ms; }
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scale-in variant for hero elements */
.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ===== HERO ENTRY (Cinematic staggered) ===== */
.hero-content .fade-in:nth-child(1) { transition-delay: 300ms; }
.hero-content .fade-in:nth-child(2) { transition-delay: 600ms; }
.hero-content .fade-in:nth-child(3) { transition-delay: 900ms; }
.hero-content .fade-in:nth-child(4) { transition-delay: 1200ms; }

/* ===== HERO PARTICLES CANVAS ===== */
#hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

/* ===== SCROLL-DRIVEN WORD-BY-WORD QUOTE ===== */
.scroll-reveal-words .word {
  display: inline-block;
  opacity: 0.12;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(4px);
}
.scroll-reveal-words .word.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal-cite {
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
}
.scroll-reveal-cite.is-revealed {
  opacity: 1;
}

/* ===== APPROACH PATH SVG ===== */
.approach-steps-wrap {
  position: relative;
}
.approach-path-svg {
  position: absolute;
  top: 52px;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.approach-step {
  position: relative;
  z-index: 1;
}

/* Step number pulsing dot */
.approach-step::after {
  content: "";
  position: absolute;
  top: 58px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(212, 164, 76, 0.4);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.approach-step.is-visible::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .approach-path-svg { display: none; }
  .approach-step::after { display: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .hero-title { font-size: var(--text-2xl); max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-lg { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
}
