/* ============================================
   SHE. AGENCY — MAIN STYLESHEET
   Inspired by coca-cola.com's bold, immersive layout
   Brand: #7d0000 red · #0a0a0a black · #ffffff white
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@300;400;500&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --red:        #7d0000;
  --red-dark:   #5a0000;
  --red-light:  #a00000;
  --black:      #0a0a0a;
  --off-black:  #111111;
  --white:      #ffffff;
  --off-white:  #f8f5f5;
  --gray:       #888888;
  --light-gray: #e8e0e0;

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-height: 200px;
  --section-pad: 120px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 5vw;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.site-header.scrolled {
  background: var(--black);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img,
.site-logo svg {
  height: 220px;
  width: auto;
  transition: opacity 0.3s;
}

.site-logo:hover img { opacity: 0.8; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-nav a {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s;
}

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

.site-nav a:hover { color: var(--red); }
.site-nav a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white) !important;
  padding: 12px 28px;
  transition: background 0.25s, transform 0.2s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-light) !important; transform: translateY(-1px); }

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

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.mobile-nav.open { display: flex; opacity: 1; }

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.2s;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.section-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background: var(--black);
}

.hero-logo-center {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding-top: var(--nav-height);
}

.hero-logo-center .site-logo img,
.hero-logo-center .site-logo svg {
  height: clamp(64px, 12vw, 160px);
  width: auto;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 0.4s forwards;
}

/* Two-column hero layout */
.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  flex: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: 0;
}

.hero-content {
  flex: 0 0 55%;
  max-width: 55%;
  padding: 0 5vw;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-headline-static {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(56px, 9vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}

.hero-headline-static .dot {
  color: var(--red);
}

/* Video panel */
.hero-video-wrap {
  flex: 0 0 45%;
  max-width: 45%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--black) 0%, transparent 28%),
    linear-gradient(to top,   var(--black) 0%, transparent 20%);
  pointer-events: none;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-headline {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.4s forwards;
}

.hero-headline .dot {
  color: var(--red);
}

.hero-rotating-text {
  display: block;
  overflow: hidden;
  height: 1.0em;
}

.hero-rotating-text .word {
  display: block;
  animation: rotateWords 8s infinite;
  color: var(--white);
}

.hero-rotating-text .word.active { color: var(--white); }

@keyframes rotateWords {
  0%, 18%   { transform: translateY(0); opacity: 1; }
  20%, 98%  { transform: translateY(-100%); opacity: 0; }
  100%      { transform: translateY(0); opacity: 1; }
}

.hero-sub {
  margin-top: 32px;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.9s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 36px;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease-out);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(125,0,0,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.btn:hover svg { transform: translateX(4px); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.5s forwards;
}

.hero-scroll-indicator span {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================
   MARQUEE SECTION
   ============================================ */
.section-marquee {
  background: var(--red);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 20s linear infinite;
}

.marquee-track span {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 48px;
  white-space: nowrap;
}

.marquee-track span.sep {
  color: rgba(255,255,255,0.4);
  padding: 0;
}

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

/* ============================================
   THE SHE EFFECT — INTRO
   ============================================ */
.section-effect {
  background: var(--black);
  padding: var(--section-pad) 5vw;
  position: relative;
  overflow: hidden;
}

.section-effect::before {
  content: 'SHE.';
  position: absolute;
  top: -0.15em;
  right: -0.05em;
  font-family: var(--font-heading);
  font-size: 35vw;
  font-weight: 900;
  color: rgba(125,0,0,0.04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
}

.effect-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.effect-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}

.effect-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
}

.effect-title em {
  font-style: normal;
  color: var(--red);
}

.effect-desc {
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 480px;
}

.effect-pillars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.pillar-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--red);
  transition: width 0.4s var(--ease-out);
}

.pillar-item:hover::before { width: 3px; }

.pillar-item:hover {
  background: rgba(125,0,0,0.12);
  border-color: rgba(125,0,0,0.3);
  transform: translateX(4px);
}

.pillar-number {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  min-width: 24px;
}

.pillar-name {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  flex: 1;
}

.pillar-name .dot { color: var(--red); }

.pillar-arrow {
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.3);
  transition: transform 0.3s, color 0.3s;
}

.pillar-item:hover .pillar-arrow {
  color: var(--white);
  transform: translateX(4px);
}

/* ============================================
   SERVICE SECTIONS (Full-height blocks)
   ============================================ */
.section-service {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

/* Alternating layouts */
.section-service:nth-child(odd)  .service-layout { flex-direction: row; }
.section-service:nth-child(even) .service-layout { flex-direction: row-reverse; }

.service-layout {
  display: flex;
  width: 100%;
}

.service-visual {
  flex: 1;
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.service-visual-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-out);
}

.section-service:hover .service-visual-bg { transform: scale(1.03); }

/* Color-themed overlays per pillar */
.service-leads .service-visual-bg    { background: linear-gradient(135deg, #1a0000 0%, #3d0000 50%, #0a0a0a 100%); }
.service-creates .service-visual-bg  { background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #200808 100%); }
.service-elevates .service-visual-bg { background: linear-gradient(160deg, #7d0000 0%, #4a0000 60%, #0a0a0a 100%); }
.service-connects .service-visual-bg { background: linear-gradient(135deg, #0a0a0a 0%, #2d0000 60%, #7d0000 100%); }
.service-teaches .service-visual-bg  { background: linear-gradient(135deg, #5a0000 0%, #0a0a0a 50%, #1a0000 100%); }

/* Large decorative letter */
.service-visual::after {
  content: attr(data-letter);
  position: absolute;
  bottom: -0.1em;
  left: -0.05em;
  font-family: var(--font-heading);
  font-size: 45vw;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 100px);
  position: relative;
}

.service-leads    .service-content { background: var(--black); }
.service-creates  .service-content { background: var(--white); color: var(--black); }
.service-elevates .service-content { background: var(--red); }
.service-connects .service-content { background: var(--black); }
.service-teaches  .service-content { background: var(--white); color: var(--black); }

.service-number {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 48px;
  opacity: 0.5;
}

.service-leads    .service-number { color: var(--red); }
.service-creates  .service-number { color: var(--red); }
.service-elevates .service-number { color: rgba(255,255,255,0.6); }
.service-connects .service-number { color: var(--red); }
.service-teaches  .service-number { color: var(--red); }

.service-title {
  font-family: var(--font-heading);
  font-size: clamp(52px, 7vw, 110px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.service-title .dot { color: var(--red); }
.service-elevates .service-title .dot,
.service-elevates .service-title { color: var(--white); }
.service-elevates .service-title .dot { color: rgba(255,255,255,0.5); }

.service-teaches  .service-title,
.service-creates  .service-title { color: var(--black); }
.service-teaches  .service-title .dot,
.service-creates  .service-title .dot { color: var(--red); }

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 48px;
}

.service-list li {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 400;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: relative;
  padding-left: 16px;
}

.service-leads    .service-list li,
.service-connects .service-list li { border-bottom-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.75); }
.service-elevates .service-list li { border-bottom-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

.service-elevates .service-list li::before { background: rgba(255,255,255,0.6); }

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: 4px;
  position: relative;
  transition: gap 0.3s;
}

.service-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
}

.service-leads    .service-cta,
.service-connects .service-cta { color: var(--white); }
.service-leads    .service-cta::after,
.service-connects .service-cta::after { background: var(--red); }
.service-elevates .service-cta { color: var(--white); }
.service-elevates .service-cta::after { background: rgba(255,255,255,0.5); }
.service-creates  .service-cta,
.service-teaches  .service-cta { color: var(--black); }
.service-creates  .service-cta::after,
.service-teaches  .service-cta::after { background: var(--red); }

.service-cta:hover { gap: 18px; }

/* ============================================
   ABOUT / BRAND DNA
   ============================================ */
.section-about {
  background: var(--white);
  color: var(--black);
  padding: var(--section-pad) 5vw;
  position: relative;
  overflow: hidden;
}

.about-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.about-header {
  margin-bottom: 80px;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}

.section-title-large {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-title-large .dot { color: var(--red); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 100px;
}

.about-card {
  padding: 48px 40px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.about-card:hover::before { transform: scaleX(1); }
.about-card:hover { background: var(--off-white); }

.about-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  color: var(--red);
}

.about-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  color: var(--black);
}

.about-card-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(0,0,0,0.6);
}

/* Mission & Vision split */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.mv-block {
  padding: 80px 60px;
  position: relative;
}

.mv-block:first-child { background: var(--black); color: var(--white); }
.mv-block:last-child  { background: var(--red);   color: var(--white); }

.mv-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.mv-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.mv-text {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
}

/* ============================================
   FOUNDERS SECTION
   ============================================ */
.section-founders {
  background: var(--white);
  color: var(--black);
  padding: var(--section-pad) 5vw;
  position: relative;
  overflow: hidden;
}

.founders-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.founders-header {
  margin-bottom: 80px;
}

.founders-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--black);
}

.founders-title .dot { color: var(--red); }

.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.founder-card {
  background: var(--white);
  padding: 56px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.founder-card:hover::before { transform: scaleX(1); }
.founder-card:hover { background: #fff; }

.founder-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 32px;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.founder-card:hover .founder-photo img {
  transform: scale(1.04);
}

.founder-name {
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.0;
  color: var(--black);
  margin-bottom: 24px;
}

.founder-divider {
  width: 36px;
  height: 2px;
  background: var(--red);
  margin-bottom: 28px;
}

.founder-bio {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.85;
  color: rgba(0,0,0,0.6);
}

/* ============================================
   STATS STRIP
   ============================================ */
.section-stats {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 80px 5vw;
}

.stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.stat-number .stat-accent { color: var(--red); }

.stat-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   CONTACT / CTA SECTION
   ============================================ */
.section-contact {
  background: var(--red);
  padding: var(--section-pad) 5vw;
  position: relative;
  overflow: hidden;
}

.section-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,100,100,0.1) 0%, transparent 60%);
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
}

.contact-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 48px;
}

.contact-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 48px;
}

.contact-form input[type="email"] {
  flex: 1;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.contact-form input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }
.contact-form input[type="email"]:focus {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.2);
}

.btn-white {
  background: var(--white);
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-link {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s;
}

.contact-link:hover { color: var(--white); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 5vw 48px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-brand {}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 24px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 32px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: all 0.25s;
}

.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.25s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-copy a { color: var(--red); }

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

.footer-legal a {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  transition: color 0.25s;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 600;
}

.footer-legal a:hover { color: var(--white); }

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

/* ============================================
   WORDPRESS CONTENT STYLES
   ============================================ */
.entry-content {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--section-pad) 5vw;
  color: var(--black);
}

.entry-content h1, .entry-content h2, .entry-content h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--black);
}

.entry-content p { margin-bottom: 20px; line-height: 1.8; color: #333; }
.entry-content ul, .entry-content ol { margin-bottom: 20px; padding-left: 24px; color: #333; }
.entry-content a { color: var(--red); text-decoration: underline; }

/* Page wrapper for white bg pages */
.page-wrapper {
  background: var(--white);
  min-height: 100vh;
  padding-top: var(--nav-height);
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--black);
  padding: 120px 5vw 80px;
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.02em;
}

.page-hero-title .dot { color: var(--red); }

/* ============================================
   UTILITY
   ============================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

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

  .effect-inner          { grid-template-columns: 1fr; gap: 60px; }
  .about-grid            { grid-template-columns: 1fr 1fr; }
  .founders-grid         { grid-template-columns: 1fr 1fr; }
  .footer-top            { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-inner           { grid-template-columns: repeat(2, 1fr); }
  .service-layout        { flex-direction: column !important; }
  .service-visual        { min-height: 320px; }

  /* Collapse hero to single column on tablet */
  .section-hero          { align-items: stretch; padding: 0; }
  .hero-layout           { flex-direction: column; height: 100%; }
  .hero-content          { flex: 1; max-width: 100%; width: 100%; padding: calc(var(--nav-height) + 40px) 5vw 48px; }
  .hero-video-wrap       { flex: 0 0 40vh; max-width: 100%; width: 100%; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero-headline { font-size: clamp(44px, 13vw, 88px); }

  .service-list          { grid-template-columns: 1fr; }
  .about-grid            { grid-template-columns: 1fr; }
  .founders-grid         { grid-template-columns: 1fr; }
  .mv-grid               { grid-template-columns: 1fr; }
  .stats-inner           { grid-template-columns: repeat(2, 1fr); }
  .footer-top            { grid-template-columns: 1fr; gap: 40px; }

  .contact-form {
    flex-direction: column;
  }

  .contact-form input[type="email"],
  .btn-white {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal { justify-content: center; }

  .service-content {
    padding: 60px 32px;
  }

  .mv-block { padding: 60px 32px; }
}

@media (max-width: 480px) {
  :root { --section-pad: 60px; }

  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  .stats-inner { grid-template-columns: 1fr 1fr; }
}
