/* ==========================================================================
   CLAIRIFY CONSULTING - IMMERSIVE DARK THEME
   v10 - Cinematic scroll experience
   ========================================================================== */

/* FONT FACES
   ========================================================================== */
@font-face {
  font-family: 'Quincy CF';
  src: url('/wp-content/uploads/2025/07/Quincy-CF-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'The Seasons';
  src: url('/wp-content/uploads/2025/07/The-Seasons-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'The Seasons';
  src: url('/wp-content/uploads/2025/07/The-Seasons-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Input Mono Compressed';
  src: url('/wp-content/uploads/2025/07/Input-Mono-Compressed-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* GOOGLE FONTS */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Lexend:wght@300;400;500&display=swap");

/* CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
  --violet: #EA85D7;
  --indigo: #e6d5bc;
  --blue: #279AF1;
  --apricot: #fffae8;
  --almond: #513C2C;

  --bg-base: #e6d5bc;
  --bg-warm: #d9c8a8;

  --section-padding: 120px;
  --section-padding-mobile: 60px;
  --container-max: 1120px;

  --font-heading: 'Quincy CF', serif;
  --font-body: 'Lexend', sans-serif;
  --font-mono: 'Input Mono Compressed', monospace;

  --transition-base: 0.3s ease;
  --transition-reveal: 0.8s ease;

  --scroll-progress: 0;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: var(--almond);
  background-color: var(--bg-base);
  overflow-x: hidden;
  /* Subtle gradient shift as user scrolls */
  background-image: linear-gradient(
    180deg,
    var(--bg-base) 0%,
    var(--bg-warm) 100%
  );
  background-attachment: fixed;
  min-height: 100vh;
}

/* Animated grain overlay */
@keyframes grain-drift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-128px, -64px); }
  50%  { transform: translate(64px, -128px); }
  75%  { transform: translate(-64px, 128px); }
  100% { transform: translate(0, 0); }
}

/* DISABLED: body::after { */
/* DISABLED:   content: ''; */
/* DISABLED:   position: fixed; */
/* DISABLED:   top: -256px; */
/* DISABLED:   left: -256px; */
/* DISABLED:   width: calc(100% + 512px); */
/* DISABLED:   height: calc(100% + 512px); */
/* DISABLED:   pointer-events: none; */
/* DISABLED:   z-index: 9999; */
/* DISABLED:   opacity: calc(0.03 + var(--scroll-velocity, 0) * 0.04); */
/* DISABLED:   background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); */
/* DISABLED:   background-repeat: repeat; */
/* DISABLED:   background-size: 256px 256px; */
/* DISABLED:   animation: grain-drift 0.8s steps(4) infinite; */
/* DISABLED:   will-change: transform; */
/* DISABLED: } */

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

p {
  margin-bottom: 1.5rem;
}

p:last-child {
  margin-bottom: 0;
}

/* LAYOUT
   ========================================================================== */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  position: relative;
}

/* Snap scenes */
.scene {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Subtle section separators */
.section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 800px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 204, 190, 0.1) 30%, rgba(230, 204, 190, 0.1) 70%, transparent);
}

/* TYPOGRAPHY
   ========================================================================== */
.section__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: var(--apricot);
  margin-bottom: 2rem;
  font-weight: 700;
}

.section__heading--center {
  text-align: center;
}

.section__heading em {
  font-style: normal;
  color: #A18162;
}

.section__accent {
  font-family: var(--font-body);
  font-style: italic;
  color: #926F51;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.5;
  display: block;
  margin-bottom: 1.5rem;
}

.section__accent--center {
  text-align: center;
  margin-top: 3rem;
}

/* BUTTONS
   ========================================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  background-color: transparent;
  font-weight: 400;
}

.btn--glow {
  background-color: #A18162;
  color: #fffae8;
  border-color: #A18162;
  box-shadow: 0 0 20px rgba(161, 129, 98, 0.3);
}

.btn--glow:hover {
  box-shadow: 0 0 40px rgba(161, 129, 98, 0.5);
  transform: translateY(-2px);
}

/* Mid-page CTA placement */
.section__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* ==========================================================================
   REVEAL ANIMATION SYSTEM
   ========================================================================== */

/* --- Base hidden states for all reveals --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px) scale(0.92);
  transition: opacity var(--transition-reveal), transform var(--transition-reveal);
}

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

/* --- Blur reveal (Clair's photo) --- */
[data-reveal="blur"] {
  filter: blur(20px) brightness(0.3);
  transform: none;
  transition: opacity 1.5s ease, filter 1.5s ease;
}

[data-reveal="blur"].is-visible {
  filter: blur(0) brightness(1);
  opacity: 1;
}

/* --- Word-by-word reveal --- */
[data-reveal="words"] {
  opacity: 1;
  transform: none;
}

.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: calc(var(--i) * 0.15s);
}

[data-reveal="words"].is-visible .word {
  opacity: 1;
  transform: translateY(0);
}

/* Violet glow on publication names inside hero headline */
.hero__headline em .word {
  text-shadow: 0 0 0px rgba(234, 133, 215, 0);
  transition: opacity 0.6s ease, transform 0.6s ease, text-shadow 0.8s ease 0.3s;
  transition-delay: calc(var(--i) * 0.15s);
}

.hero__headline.is-visible em .word {
  text-shadow: 0 0 30px rgba(234, 133, 215, 0.4);
}

/* --- Staggered children (credibility logos, audience cards, etc.) --- */
.credibility__logos [data-reveal="fade"] {
  transition-delay: calc(var(--stagger, 0) * 0.3s);
}

.credibility__logos [data-reveal="fade"]:nth-child(1) { --stagger: 0; }
.credibility__logos [data-reveal="fade"]:nth-child(2) { --stagger: 1; }
.credibility__logos [data-reveal="fade"]:nth-child(3) { --stagger: 2; }
.credibility__logos [data-reveal="fade"]:nth-child(4) { --stagger: 3; }

.audience-grid [data-reveal="fade"] {
  transition-delay: calc(var(--stagger, 0) * 0.15s);
}

.audience-grid [data-reveal="fade"]:nth-child(1) { --stagger: 0; }
.audience-grid [data-reveal="fade"]:nth-child(2) { --stagger: 1; }
.audience-grid [data-reveal="fade"]:nth-child(3) { --stagger: 2; }
.audience-grid [data-reveal="fade"]:nth-child(4) { --stagger: 3; }
.audience-grid [data-reveal="fade"]:nth-child(5) { --stagger: 4; }
.audience-grid [data-reveal="fade"]:nth-child(6) { --stagger: 5; }

/* --- CTA button glow pulse --- */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(161, 129, 98, 0.3); }
  50% { box-shadow: 0 0 35px rgba(161, 129, 98, 0.5); }
}

.section--cta .btn--glow.is-visible,
.cta__btn.is-visible {
  animation: glow-pulse 3s ease-in-out infinite;
}

/* --- Dramatic reveal (big moments) --- */
[data-reveal="dramatic"] {
  opacity: 0;
  transform: scale(0.85);
  filter: blur(6px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out, filter 1.2s ease-out;
}

[data-reveal="dramatic"].is-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* --- Slide-left reveal (enters from right) --- */
[data-reveal="slide-left"] {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="slide-left"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Slide-right reveal (enters from left) --- */
[data-reveal="slide-right"] {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="slide-right"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Rise reveal (slow dramatic vertical) --- */
[data-reveal="rise"] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="rise"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Animated underline (kicker line) --- */
[data-underline] {
  background-image: linear-gradient(var(--violet), var(--violet));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 4px;
  transition: background-size 0.8s ease 0.3s;
}

[data-underline].is-visible {
  background-size: 100% 2px;
}

/* --- Ambient violet vignette on visible sections --- */
.section.is-in-view {
  box-shadow: inset 0 0 150px rgba(234, 133, 215, 0.02);
}

/* ==========================================================================
   AMBIENT GLOW SYSTEM
   ========================================================================== */
.ambient-glow {
  position: fixed;
  inset: 0;
  pointer-events: none; display: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s ease, background 1.5s ease;
}

.ambient-glow.is-active {
  opacity: calc(1 + var(--scroll-velocity, 0) * 0.3);
}

.ambient-glow[data-glow="hero"] {
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(234, 133, 215, 0.12) 0%, transparent 70%);
}

.ambient-glow[data-glow="problem"] {
  background: radial-gradient(ellipse 50% 50% at 70% 30%, rgba(244, 216, 184, 0.10) 0%, transparent 70%);
}

.ambient-glow[data-glow="about"] {
  background: radial-gradient(ellipse 50% 60% at 20% 50%, rgba(234, 133, 215, 0.08) 0%, transparent 70%);
}

.ambient-glow[data-glow="solution"] {
  background: radial-gradient(ellipse 50% 50% at 80% 50%, rgba(39, 154, 241, 0.08) 0%, transparent 70%);
}

.ambient-glow[data-glow="cta"] {
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(234, 133, 215, 0.15) 0%, transparent 70%);
}

/* ==========================================================================
   FLOATING PARTICLE FIELD
   ========================================================================== */
#particle-field {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* ==========================================================================
   SCENE TRANSITION FLARE
   ========================================================================== */
@keyframes flare-sweep {
  0% {
    opacity: 0;
    transform: translateX(-100%) skewX(-15deg);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(100%) skewX(-15deg);
  }
}

.scene-transition-flare {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(234, 133, 215, 0.08) 30%,
    rgba(234, 133, 215, 0.15) 50%,
    rgba(234, 133, 215, 0.08) 70%,
    transparent 100%
  );
}

.scene-transition-flare.is-active {
  animation: flare-sweep 0.8s ease-out forwards;
}

/* ==========================================================================
   SCROLL-PROGRESS FILAMENT
   ========================================================================== */
body::before {
  display: none;
}

/* ==========================================================================
   1. HERO SECTION - THE CURTAIN
   ========================================================================== */
/* Site header bar */
.site-header {
  position: relative;
  width: 100%;
  z-index: 50;
  background-color: #CAAE92;
  padding: 1rem 2rem;
  text-align: center;
}

.site-header__logo {
  display: block;
  width: 480px;
  max-width: 90vw;
  height: auto;
  margin: 0 auto;
}

.hero {
  background-color: var(--bg-base);
  color: var(--almond);
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}

/* Spacer pushes content below the fixed hero */
.hero-spacer {
  height: 100vh;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

/* All sections after hero need higher z-index + solid bg so they cover it */
.credibility-strip,
.section,
.stats-strip,
.footer {
  position: relative;
  z-index: 5;
  background-color: var(--bg-base);
}

/* CTA keeps its gradient bg */
.section--cta {
  background-color: transparent;
}

/* --- Curtain panels --- */
.curtain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: none;
}

.curtain__panel {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--bg-base);
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.curtain__panel--top {
  top: 0;
}

.curtain__panel--bottom {
  bottom: 0;
}

.curtain.curtain-open .curtain__panel--top {
  transform: translateY(-100%);
}

.curtain.curtain-open .curtain__panel--bottom {
  transform: translateY(100%);
}

/* --- Violet slit (disabled — replaced by new intro) --- */
.curtain__slit {
  display: none;
}

/* --- Hero content layer --- */
.hero__inner {
  position: relative;
  z-index: 3;
  max-width: 1120px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__photo-wrap {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 3px solid #c0b49b;
  overflow: hidden;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1s ease, transform 1s ease;
  box-shadow: none;
}

.hero__photo-wrap.is-visible {
  opacity: 1;
  transform: scale(1);
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__logo {
  display: block; width: 480px; max-width: 90vw;
  height: auto;
  margin: 0 auto 3rem;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__logo.is-visible {
  opacity: 1;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3.2vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #513C2C;
  margin-bottom: 2.5rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero__headline em {
  font-style: normal;
  color: var(--apricot);
}

.hero__subline {
  font-family: var(--font-body);
  font-style: normal;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: #513C2C;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.hero__subline + .hero__subline {
  margin-top: 0.25rem;
}

.hero__cta {
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero__cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: glow-pulse 3s ease-in-out infinite 0.5s;
}

/* ==========================================================================
   2. CREDIBILITY STRIP
   ========================================================================== */
.credibility-strip {
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}

/* Top and bottom rules */
.credibility-strip::before,
.credibility-strip::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 1000px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 204, 190, 0.15) 30%, rgba(230, 204, 190, 0.15) 70%, transparent);
}

.credibility-strip::before { top: 0; }
.credibility-strip::after { bottom: 0; }

.credibility__label {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A18162;
  white-space: nowrap;
  text-align: center;
  margin-bottom: 1.25rem;
  padding: 0 2rem;
}

/* Marquee container */
.credibility__marquee {
  position: relative;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

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

.credibility__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.credibility__track:hover {
  animation-play-state: paused;
}

.credibility__name {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--almond);
  opacity: 0.45;
  white-space: nowrap;
  padding: 0 0.5rem;
  transition: opacity 0.3s ease;
}

.credibility__name:hover {
  opacity: 0.8;
}

.credibility__sep {
  color: #A18162;
  opacity: 0.3;
  padding: 0 1rem;
  font-size: 0.75rem;
}

/* ==========================================================================
   3. THE PROBLEM
   ========================================================================== */
.section--problem {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.problem__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.problem__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--apricot);
  margin-bottom: 3rem;
  font-weight: 700;
}

.problem__heading em {
  font-style: normal;
  color: #A18162;
}

/* Big Moment #2 - Kinetic pullquote */
.problem__pullquote {
  margin: 0 auto 1.75rem;
  padding: 0;
  border: none;
  max-width: 700px;
}

.problem__pullquote p {
  font-family: var(--font-body);
  font-size: clamp(1.375rem, 2.5vw, 1.5rem);
  line-height: 1.7;
  color: var(--almond);
  font-weight: 500;
  text-align: center;
}

/* Pullquote now uses data-reveal="dramatic" - handled by generic rule */

.problem__body {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.problem__body p {
  font-family: var(--font-body);
  font-size: clamp(1.375rem, 2.5vw, 1.5rem);
  line-height: 1.7;
  font-weight: 500;
  color: var(--almond);
  margin-bottom: 1.75rem;
}

.problem__kicker {
  font-size: 1.375rem !important;
  color: var(--violet) !important;
  font-weight: 700;
  margin-top: 1rem;
}

/* ==========================================================================
   4. ABOUT CLAIR
   ========================================================================== */


/* TYPING ANIMATION */
.typing-cursor {
  font-weight: 300;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
/* ABOUT SPLIT LAYOUT */
.about__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.about__left {
  background-color: #926F51;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}

.about__left .about__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.2;
  color: #e6d5bc;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
}

.about__right {
  background-color: #e6d5bc;
  display: flex;
  align-items: center;
  padding: 4rem 3rem;
}

.about__right .about__bio {
  max-width: 500px;
}

.about__right .about__bio p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #513C2C;
}

@media (max-width: 900px) {
  .about__split {
    grid-template-columns: 1fr;
  }
  .about__left {
    padding: 3rem 2rem;
    min-height: 200px;
  }
  .about__right {
    padding: 3rem 2rem;
  }
}

.section--about {
  padding: 0;
  padding-top: 0;
  padding-bottom: var(--section-padding);
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about__photo {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-width: 260px;
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__bio {
  max-width: 500px;
}

.about__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #A18162;
  margin-bottom: 1rem;
}

.about__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--apricot);
  margin-bottom: 2rem;
  font-weight: 700;
}

.about__bio p {
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--almond);
}

/* Big Moment #3 - Callout (standalone scene) */
.section--callout {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}

.section--callout .about__callout-wrap {
  text-align: center;
}

.about__callout-wrap {
  text-align: center;
}

.about__callout {
  padding: 0;
  border: none;
  max-width: 800px;
  margin: 0 auto;
}

/* Callout now uses data-reveal="dramatic" - handled by generic rule */

.about__callout-main {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--apricot);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.about__callout-sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: rgba(230, 204, 190, 0.65);
  margin-bottom: 0;
}

.about__closing {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.about__closing p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(230, 204, 190, 0.6);
}

.about__final {
  color: var(--violet) !important;
  font-size: 1.25rem !important;
  font-weight: 700;
  margin-top: 1rem;
}

/* ==========================================================================
   5. SOLUTION (BENTO CARDS)
   ========================================================================== */
.section--solution .section__heading {
  text-align: left;
  margin-bottom: 1rem;
}

.section--solution .section__accent {
  margin-bottom: 3.5rem;
}

.bento {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.bento__item {
  background: rgba(230, 204, 190, 0.04);
  border: 1px solid rgba(230, 204, 190, 0.1);
  padding: 2.5rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.bento__item:hover {
  box-shadow: 0 0 30px rgba(234, 133, 215, 0.08);
}

.bento__item--featured {
  grid-row: 1 / 3;
  border-left: 3px solid var(--violet);
}

.bento__number {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #A18162;
  margin-bottom: 1rem;
  display: block;
}

.bento__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
  color: var(--apricot);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.bento__item p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(230, 204, 190, 0.8);
}

/* ==========================================================================
   6. WHO THIS IS FOR (AUDIENCE CARDS)
   ========================================================================== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.audience-card {
  background: #A18162;
  /* backdrop-filter: blur(12px); */
  /* -webkit-backdrop-filter: blur(12px); */
  border: 1px solid rgba(161, 129, 98, 0.3);
  padding: 2.25rem;
  border-radius: 12px;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

/* Slight rotation on reveal */
.audience-card[data-reveal="fade"] {
  transform: rotate(-1deg) translateY(30px);
}

.audience-card[data-reveal="fade"].is-visible {
  transform: rotate(0) translateY(0);
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: #CAAE92; background: #CAAE92; color: #A18162;
}


.audience-card:hover .audience-card__num,
.audience-card:hover .audience-card__title,
.audience-card:hover p {
  color: #A18162;
}
.audience-card__num {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e6d5bc;
  margin-bottom: 0.75rem;
  display: block;
}

.audience-card__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--apricot);
}

.audience-card p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(230, 204, 190, 0.7);
  margin-bottom: 0;
}

/* ==========================================================================
   7. HOW IT WORKS (VERTICAL TIMELINE)
   ========================================================================== */
.section--how {
  background-color: #CAAE92;
}

.section--how {
  background-color: #CAAE92;
}

.timeline {
  position: relative;
  max-width: 600px;
  margin: 4rem auto 0;
  padding-left: 40px;
}

/* Vertical line (scroll-drawn) */
.timeline__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  width: 2px;
  background: linear-gradient(180deg, #A18162 0%, rgba(161, 129, 98, 0.3) 100%);
  transform-origin: top center;
  transform: scaleY(var(--timeline-draw, 0));
}

.timeline__step {
  position: relative;
  padding-bottom: 3.5rem;
}

.timeline__step:last-child {
  padding-bottom: 0;
}

.timeline__marker {
  position: absolute;
  top: 6px;
  left: -34px;
  width: 10px;
  height: 10px;
  background: #e6d5bc;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(230, 213, 188, 0.5);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

@keyframes marker-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(230, 213, 188, 0.5); transform: scale(1); }
  50% { box-shadow: 0 0 24px rgba(230, 213, 188, 0.8); transform: scale(1.4); }
}

.timeline__marker.is-reached {
  box-shadow: 0 0 20px rgba(230, 213, 188, 0.7);
  animation: marker-pulse 2s ease-in-out infinite;
}

.timeline__number {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #A18162;
  display: block;
  margin-bottom: 0.5rem;
}

.timeline__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.3;
  color: #513C2C;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.timeline__step p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #513C2C;
}

/* ==========================================================================
   8. SOCIAL PROOF
   ========================================================================== */
.section--proof .section__heading {
  color: #A18162;
  transition: color 0.3s ease;
  cursor: default;
}

.section--proof .section__heading:hover {
  color: #CAAE92;
}

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

.testimonial {
  padding: 2.5rem 0;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: -0.5em;
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 1;
  color: #A18162;
  opacity: 0.15;
  pointer-events: none;
}

.testimonial__quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.375rem;
  line-height: 1.6;
  color: var(--almond);
  margin-bottom: 1.25rem;
  position: relative;
}

.testimonial--featured .testimonial__quote {
  font-size: 1.625rem;
  line-height: 1.5;
  color: var(--apricot);
}

.testimonial__cite {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #513C2C;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   STATS STRIP (100vh cinematic scene)
   ========================================================================== */
.stats-strip {
  padding: 80px 2rem;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Top rule */
.stats-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 800px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 204, 190, 0.1) 30%, rgba(230, 204, 190, 0.1) 70%, transparent);
}

.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 1;
  color: #A18162;
  font-weight: 700;
  display: block;
  margin-bottom: 0.75rem;
}

.stat__label {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #513C2C;
  display: block;
}

/* Divider draws itself */
.stat__divider {
  width: 1px;
  height: 0;
  background-color: rgba(161, 129, 98, 0.3);
  transition: height 1s ease-out 0.3s;
}

.stats-strip.is-visible .stat__divider {
  height: 70px;
}

/* ==========================================================================
   9. FINAL CTA
   ========================================================================== */
@keyframes cta-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section--cta {
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #CAAE92;
  
  
}

.cta__inner {
  max-width: 700px;
}

.cta__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #A18162;
  margin-bottom: 1.5rem;
}

.cta__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--apricot);
  margin-bottom: 2rem;
  font-weight: 700;
}

.cta__body {
  font-size: 1.375rem;
  line-height: 1.6;
  color: #513C2C;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta__body + .cta__body {
  margin-top: -0.5rem;
}

.cta__btn {
  margin-top: 2.5rem;
}

.cta__email {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  color: #A18162;
  margin-top: 1.5rem;
}

.cta__email a {
  color: #A18162;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition-base);
}

.cta__email a:hover {
  color: #513C2C;
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
.footer {
  padding: 60px 2rem;
  border-top: 1px solid rgba(230, 204, 190, 0.1);
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 3rem;
}

.footer__logo {
  width: 160px;
  height: auto;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.0625rem;
  color: #A18162;
  max-width: 320px;
}

.footer__right {
  text-align: right;
}

.footer__contact {
  margin-bottom: 1.5rem;
}

.footer__contact a {
  color: #A18162;
  font-size: 1.125rem;
  transition: color var(--transition-base);
}

.footer__contact a:hover {
  color: #513C2C;
}

.footer__location,
.footer__copyright {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: rgba(230, 204, 190, 0.35);
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   LIGHT COLOR STORYTELLING (per-section temperature shifts)
   ========================================================================== */
/* Problem: cooler, more tense */
.section--problem .problem__pullquote p {
  color: rgba(200, 210, 225, 0.9);
}

.section--problem .problem__body p {
  color: rgba(200, 210, 225, 0.75);
}

.section--problem .problem__heading em {
  color: #C4A8D8;
}

/* About: warmer, personal */
.section--about .about__bio p {
  color: #513C2C;
}

/* Solution: blue-tinted tech feel */
.section--solution .bento__item {
  background: rgba(39, 154, 241, 0.04);
  border-color: rgba(39, 154, 241, 0.12);
}

/* Stats: violet glow on numbers */
.stats-strip .stat__number {
  text-shadow: 0 0 40px rgba(234, 133, 215, 0.3), 0 0 80px rgba(234, 133, 215, 0.15);
}

/* CTA: brightest warm */
.section--cta .cta__heading {
  color: #FBE6D8;
}

/* ==========================================================================
   MICRO-INTERACTION DEPTH
   ========================================================================== */
/* Bento inner radial light on hover */
.bento__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(234, 133, 215, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.bento__item:hover::after {
  opacity: 1;
}

/* Audience cards: bouncy hover */
.audience-card {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color var(--transition-base), box-shadow 0.4s ease;
}

.audience-card:hover {
  transform: translateY(-6px) rotate(0.5deg); background: #e6d5bc;
  border-color: rgba(161, 129, 98, 0.5);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(234, 133, 215, 0.1);
}

/* Button glow: scale + letter-spacing on hover, press on active */
.btn--glow:hover {
  transform: scale(1.03) translateY(-2px);
  letter-spacing: 0.08em;
}

.btn--glow:active {
  transform: scale(0.98);
}

/* Testimonial: slide + brighten on hover */
.testimonial {
  transition: transform 0.4s ease, color 0.4s ease;
}

.testimonial:hover {
  transform: translateX(8px);
}

.testimonial:hover .testimonial__quote {
  color: var(--apricot);
}

.testimonial:hover::before {
  opacity: 0.25;
}

/* ==========================================================================
   RESPONSIVE - 900px
   ========================================================================== */
@media (max-width: 900px) {
  :root {
    --section-padding: 80px;
  }

  .about__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__photo {
    max-height: 500px;
    aspect-ratio: auto;
    margin: 0 auto;
  }

  .about__bio {
    max-width: 100%;
    text-align: center;
  }

  .bento {
    grid-template-columns: 1fr;
  }

  .bento__item--featured {
    grid-row: auto;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section--solution .section__heading {
    text-align: center;
  }

  .section--solution .section__accent {
    text-align: center;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__right {
    text-align: center;
  }

  .footer__tagline {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==========================================================================
   RESPONSIVE - 600px
   ========================================================================== */
@media (max-width: 600px) {
  :root {
    --section-padding: var(--section-padding-mobile);
  }

  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  body {
    font-size: 1.0625rem;
  }

  /* Disable hero fixed on mobile */
  .hero {
    position: relative;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-spacer {
    display: none;
  }

  .hero__inner {
    padding: 2rem 1.25rem;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
  }

  .hero__logo {
    width: min(320px, 80vw);
    margin-bottom: 0.75rem;
  }

  .hero__photo-wrap {
    width: 180px;
    height: 180px;
    margin-bottom: 1.75rem;
  }

  .hero__headline {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
    white-space: normal;
    text-align: center;
    margin-bottom: 0;
  }

  .hero__cta {
    margin-top: 2rem;
  }

  .scene:not(.hero) {
    min-height: auto;
    scroll-snap-align: none;
  }

  .section--callout {
    min-height: auto;
    padding: var(--section-padding-mobile) 0;
  }

  .stats-strip {
    min-height: auto;
  }

  .section__heading {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

  .credibility__track {
    animation-duration: 30s;
  }

  .credibility__name {
    font-size: 1rem;
  }

  .problem__heading {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .problem__pullquote p {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .about__callout-main {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 30px;
  }

  .timeline__marker {
    left: -24px;
    width: 8px;
    height: 8px;
  }

  .timeline__line {
    left: 8px;
  }

  .stats {
    flex-direction: column;
    gap: 2.5rem;
  }

  .stat__divider {
    display: none;
  }

  .stat__number {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .section--cta {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section--problem {
    min-height: auto;
  }

  .footer {
    padding: 40px 1.25rem;
  }

  /* Slide variants fall back to vertical on mobile */
  [data-reveal="slide-left"],
  [data-reveal="slide-right"] {
    transform: translateY(20px);
  }

  /* No particles on mobile */
  #particle-field {
    display: none;
  }

  /* No breathing on mobile */
  .scene {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Reduce ambient glow opacity on mobile */
  .ambient-glow {
    opacity: 0.7;
  }

  /* No filament or flare on mobile */
  body::before {
    display: none;
  }

  .scene-transition-flare {
    display: none;
  }
}

/* ==========================================================================
   RESPONSIVE - 400px
   ========================================================================== */
@media (max-width: 400px) {
  .hero__photo-wrap {
    width: 150px;
    height: 150px;
  }

  .hero__logo {
    width: min(260px, 75vw);
  }

  .hero__headline {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    white-space: normal;
    text-align: center;
  }

  .audience-card {
    padding: 1.75rem;
  }

  .bento__item {
    padding: 2rem;
  }
}

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

  [data-reveal],
  .word,
  .hero__logo,
  .hero__photo-wrap,
  .hero__subline,
  .hero__cta {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  /* Disable hero fixed for reduced motion */
  .hero {
    position: relative !important;
    height: auto !important;
    min-height: 100vh;
    width: auto !important;
    filter: none !important;
  }

  .hero-spacer {
    display: none !important;
  }

  .curtain__panel--top { transform: translateY(-100%) !important; }
  .curtain__panel--bottom { transform: translateY(100%) !important; }
  .curtain__slit { opacity: 0 !important; }

  html {
    scroll-behavior: auto;
    scroll-snap-type: none !important;
  }

  [data-underline] {
    background-size: 100% 2px !important;
  }

  .stat__divider {
    height: 70px !important;
  }

  /* Ambient glow off */
  .ambient-glow {
    display: none !important;
  }

  /* Particles off */
  #particle-field {
    display: none !important;
  }

  /* Breathing off */
  .scene {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Timeline fully drawn */
  .timeline__line {
    transform: scaleY(1) !important;
  }

  /* Flare + filament off */
  .scene-transition-flare {
    display: none !important;
  }

  body::before {
    display: none !important;
  }
}

/* Reduced motion via JS class (backup) */
.reduced-motion [data-reveal],
.reduced-motion .word,
.reduced-motion .hero__logo,
.reduced-motion .hero__photo-wrap,
.reduced-motion .hero__subline,
.reduced-motion .hero__cta {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

/* Disable hero fixed for reduced motion (JS class) */
.reduced-motion .hero {
  position: relative !important;
  height: auto !important;
  min-height: 100vh;
  width: auto !important;
  filter: none !important;
}

.reduced-motion .hero-spacer {
  display: none !important;
}

.reduced-motion .curtain__panel--top { transform: translateY(-100%) !important; }
.reduced-motion .curtain__panel--bottom { transform: translateY(100%) !important; }
.reduced-motion .curtain__slit { opacity: 0 !important; }
.reduced-motion [data-underline] { background-size: 100% 2px !important; }
.reduced-motion .stat__divider { height: 70px !important; }
.reduced-motion .ambient-glow { display: none !important; }
.reduced-motion #particle-field { display: none !important; }
.reduced-motion .scene { opacity: 1 !important; transform: none !important; }
.reduced-motion .timeline__line { transform: scaleY(1) !important; }
.reduced-motion .scene-transition-flare { display: none !important; }
.reduced-motion body::before { display: none !important; }
