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

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --border: #222222;
  --text-primary: #e5e5e5;
  --text-secondary: #a0a0a0;
  --accent: #d4b896;
  --accent-hover: #c4a882;
  --font: 'Dongle', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1100px;
  --radius: 8px;
  --transition: 0.3s ease;
}

.section-label,
.section-title,
.pf-hero-name,
.pf-step-title,
.bento-title,
.timeline-date,
.pf-stat-value,
.pf-stat-card h3 {
  font-family: var(--font-heading);
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 20px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

a:hover {
  color: var(--accent-hover);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}

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

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-socials {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-socials a {
  color: var(--text-secondary);
  transition: color var(--transition);
  display: flex;
}

.nav-socials a:hover {
  color: var(--accent);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-pre {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: lowercase;
  margin-bottom: 4px;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.1s forwards;
}

/* ===== Name — Stroke-Draw Animation ===== */
.name-stage {
  display: inline-flex;
  gap: clamp(4px, 1vw, 12px);
  padding: 8px 20px;
  cursor: default;
  position: relative;
}

.name-letter {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(7rem, 22vw, 14rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 3px var(--accent);
  letter-spacing: -4px;
  line-height: 1;
  opacity: 0;
  animation: strokeReveal 1s ease forwards;
  animation-delay: calc(var(--i) * 0.15s + 0.3s);
  will-change: transform;
  cursor: default;
  user-select: none;
}

.name-letter.magnetic-ready {
  animation: none;
  opacity: 1;
  color: var(--accent);
  -webkit-text-stroke: 3px var(--accent);
  transition: transform 0.12s ease-out;
}

@keyframes strokeReveal {
  0% {
    opacity: 0;
    transform: translateY(40px);
    color: transparent;
  }
  45% {
    opacity: 1;
    transform: translateY(0);
    color: transparent;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    color: var(--accent);
  }
}

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

/* ===== Scroll Cue ===== */
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 8%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: lowercase;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 0.6s ease 2.2s forwards;
  transition: opacity 0.5s ease;
}

.scroll-cue svg {
  animation: bobDown 2s ease-in-out infinite;
}

.scroll-cue.hidden {
  opacity: 0 !important;
  pointer-events: none;
}

@keyframes bobDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== Gradient Blobs ===== */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: 3%;
  left: -5%;
  opacity: 0.25;
  filter: blur(100px);
  animation: float1 18s ease-in-out infinite;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: #7a8f7a;
  bottom: 8%;
  right: -3%;
  opacity: 0.2;
  filter: blur(60px);
  animation: float2 24s ease-in-out infinite;
}

.blob-3 {
  width: 450px;
  height: 450px;
  background: var(--accent);
  top: 35%;
  left: 55%;
  opacity: 0.1;
  filter: blur(120px);
  animation: float1 30s ease-in-out infinite;
}

.blob-4 {
  width: 280px;
  height: 280px;
  background: #6b7d8a;
  top: 60%;
  left: 8%;
  opacity: 0.15;
  filter: blur(70px);
  animation: float2 22s ease-in-out infinite;
}

.blob-5 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: 80%;
  right: 10%;
  opacity: 0.08;
  filter: blur(140px);
  animation: float1 35s ease-in-out infinite;
}


/* ===== Video Card Hover (Desktop) ===== */
@media (hover: hover) {
  .pf-video-frame {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  }

  .pf-video-item:hover .pf-video-frame {
    transform: scale(1.03);
    border-color: rgba(212, 184, 150, 0.4);
    box-shadow: 0 0 28px rgba(212, 184, 150, 0.12);
  }

  .pf-video-item:hover .pf-play-overlay svg {
    animation: playPulse 1.2s ease-in-out infinite;
  }
}

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

/* ===== Sticky Floating CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 184, 150, 0.25);
  border-radius: 999px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
}

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

.floating-cta:hover {
  background: rgba(212, 184, 150, 0.15);
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(212, 184, 150, 0.15);
}

/* Noise grain overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.06;
  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");
  background-repeat: repeat;
  background-size: 256px 256px;
}

@keyframes float1 {
  0% { transform: translate(0, 0) scale(1); }
  20% { transform: translate(300px, -100px) scale(1.15); }
  40% { transform: translate(500px, 80px) scale(0.9); }
  60% { transform: translate(200px, 200px) scale(1.1); }
  80% { transform: translate(-100px, 100px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes float2 {
  0% { transform: translate(0, 0) scale(1); }
  20% { transform: translate(-300px, 100px) scale(1.1); }
  40% { transform: translate(-500px, -60px) scale(0.95); }
  60% { transform: translate(-200px, -200px) scale(1.05); }
  80% { transform: translate(100px, -80px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ===== Section Utilities ===== */
.section-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--text-primary);
  text-align: left;
  font-weight: 500;
  margin-bottom: 48px;
  opacity: 0.5;
}

.reveal-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-section.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Hero — Floating Background Words ===== */
.hero-word {
  position: absolute;
  z-index: 1;
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--text-primary);
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  letter-spacing: -1px;
}

.hero-word:nth-child(3) { animation: wordFloat1 22s ease-in-out infinite; }
.hero-word:nth-child(4) { animation: wordFloat2 26s ease-in-out -4s infinite; }
.hero-word:nth-child(5) { animation: wordFloat3 20s ease-in-out -8s infinite; }
.hero-word:nth-child(6) { animation: wordFloat1 28s ease-in-out -12s infinite; }
.hero-word:nth-child(7) { animation: wordFloat2 24s ease-in-out -6s infinite; }
.hero-word:nth-child(8) { animation: wordFloat3 18s ease-in-out -2s infinite; }

.hw-xl { font-size: clamp(3rem, 6vw, 5rem); }
.hw-lg { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
.hw-md { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.hw-sm { font-size: clamp(1.4rem, 2.5vw, 2rem); }

@keyframes wordFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(45px, -35px) rotate(2deg); }
  50% { transform: translate(-20px, 25px) rotate(-1deg); }
  75% { transform: translate(30px, 15px) rotate(1.5deg); }
}

@keyframes wordFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-40px, 30px) rotate(-2deg); }
  50% { transform: translate(25px, -20px) rotate(1.5deg); }
  75% { transform: translate(-15px, -30px) rotate(-1deg); }
}

@keyframes wordFloat3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(25px, 40px) rotate(1.5deg); }
  50% { transform: translate(-35px, -15px) rotate(-2deg); }
  75% { transform: translate(20px, -25px) rotate(0.5deg); }
}

/* ===== Bento Grid ===== */
.bento-section {
  padding: 48px 0 120px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  grid-template-areas:
    "journey aboutme aboutme"
    "journey verse   role";
  gap: 16px;
}

.bento-card {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.bento-card:hover {
  border-color: rgba(212, 184, 150, 0.25);
  box-shadow: 6px 8px 24px rgba(0, 0, 0, 0.15);
  transform: rotate(-0.5deg);
}

a.bento-card:hover {
  color: inherit;
}

.bento-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.3px;
}

.bento-card p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bento-icon {
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  transition: transform 0.3s ease;
}

/* Journey card — tall left */
.bento-journey {
  grid-area: journey;
  justify-content: flex-start;
  gap: 8px;
}

.bento-journey .bento-title {
  font-size: 1.6rem;
}

.bento-journey p {
  font-size: 1.25rem;
}

.bento-journey:hover .bento-icon {
  transform: translate(4px, -4px);
}

/* Verse card — wide top right */
.bento-verse {
  grid-area: verse;
}

.bento-verse .verse-text {
  font-style: italic;
  line-height: 1.8;
}

/* About Me card — wide top right */
.bento-aboutme {
  grid-area: aboutme;
  gap: 8px;
}

.bento-aboutme .bento-title {
  font-size: 1.6rem;
}

.bento-aboutme p {
  font-size: 1.25rem;
}

.bento-aboutme:hover .bento-icon {
  transform: translate(4px, -4px);
}

/* Role card */
.bento-role {
  grid-area: role;
}

/* ===== About Page ===== */
.about-page {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-body {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-body p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* ===== Journey Page ===== */
.journey-page {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.journey-content {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 32px;
}

.accent {
  color: var(--accent);
}

/* ===== Timeline ===== */
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.timeline-row {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 3px 10px;
  border-radius: 4px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.timeline-row:hover {
  background: rgba(212, 184, 150, 0.08);
  box-shadow: inset 3px 0 0 var(--accent);
}

.timeline-date {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  min-width: 120px;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.timeline-desc {
  font-size: 1.05rem;
  color: var(--text-primary);
}

/* ===== Footer ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
}

footer p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ================================================================
   KINETIC TYPE — Global Design System
   ================================================================ */

/* ===== Marquee Text Tickers (Section Dividers) ===== */
.kt-marquee-divider {
  overflow: hidden;
  padding: 12px 0;
  position: relative;
  z-index: 2;
}

.kt-marquee-row {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-primary);
  opacity: 0.06;
  font-weight: 700;
}

.kt-marquee-row span {
  flex-shrink: 0;
}

.kt-marquee-row--left {
  animation: ktMarqueeLeft 40s linear infinite;
}

.kt-marquee-row--right {
  animation: ktMarqueeRight 55s linear infinite;
  margin-top: 4px;
}

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

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

/* ===== Giant Background Watermark Text ===== */
.kt-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.05);
  font-size: clamp(15vw, 20vw, 30vw);
  font-weight: 700;
  color: var(--text-primary);
  opacity: 0;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.kt-watermark.revealed {
  opacity: 0.025;
  transform: translate(-50%, -50%) scale(1);
}

/* ===== Rotating Text Ring ===== */
.kt-text-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  z-index: 1;
  pointer-events: none;
}

.kt-text-ring svg {
  width: 100%;
  height: 100%;
  animation: ktRotate 50s linear infinite;
}

.kt-text-ring text {
  fill: var(--accent);
  opacity: 0.08;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
}

@keyframes ktRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== Slow Gold Gradient Sweep ===== */
body::before,
.pf-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: -2000px;
  width: 2000px;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 184, 150, 0.02) 40%, rgba(212, 184, 150, 0.03) 50%, rgba(212, 184, 150, 0.02) 60%, transparent 100%);
  z-index: 0;
  pointer-events: none;
  animation: ktGoldSweep 60s linear infinite;
}

@keyframes ktGoldSweep {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(100vw + 2000px)); }
}

/* ================================================================
   PORTFOLIO PAGE
   ================================================================ */

/* Page-level wrapper + subtle grain texture */
.pf-page {
  position: relative;
  overflow: hidden;
}

/* Grain texture — applied globally via body::after */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.06;
  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");
  background-repeat: repeat;
  background-size: 256px 256px;
  animation: grainShift 0.5s steps(1) infinite;
}

@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  10%  { transform: translate(-2px, 3px); }
  20%  { transform: translate(3px, -1px); }
  30%  { transform: translate(-1px, -3px); }
  40%  { transform: translate(2px, 2px); }
  50%  { transform: translate(-3px, 1px); }
  60%  { transform: translate(1px, -2px); }
  70%  { transform: translate(-2px, -1px); }
  80%  { transform: translate(3px, 3px); }
  90%  { transform: translate(-1px, 2px); }
  100% { transform: translate(0, 0); }
}

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 999;
  pointer-events: none;
  background: transparent;
}

.scroll-progress-bar {
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* ===== Page Transition Wipe ===== */
#pageTransition {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

#pageTransition.wipe-in {
  animation: wipeIn 0.4s ease forwards;
}

#pageTransition.wipe-out {
  transform: scaleX(1);
  transform-origin: right;
  animation: wipeOut 0.4s ease forwards;
}

@keyframes wipeIn {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}

@keyframes wipeOut {
  from { transform: scaleX(1); transform-origin: right; }
  to   { transform: scaleX(0); transform-origin: right; }
}

.pf-page .blob {
  z-index: 1;
}

.pf-page .blob-3 {
  width: 500px;
  height: 500px;
  top: 55%;
  left: 60%;
  background: radial-gradient(circle, rgba(212, 184, 150, 0.08) 0%, transparent 70%);
  animation: float2 22s ease-in-out infinite reverse;
}

/* All content sections sit above blobs */
.pf-hero,
.pf-tags,
.pf-videos,
.pf-stats,
.pf-brands,
.pf-process,
.pf-cta {
  position: relative;
  z-index: 2;
}

/* Section dividers — replaced by marquee tickers */
.pf-tags,
.pf-videos,
.pf-stats,
.pf-brands,
.pf-process,
.pf-cta {
  border-top: none;
}

/* Section label sizing */
.pf-page .section-label {
  font-size: 0.85rem;
  letter-spacing: 8px;
}

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

/* ===== Hero — Media Kit Header ===== */
.pf-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 64px;
}

.pf-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Headshot */
.pf-headshot {
  flex-shrink: 0;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  overflow: hidden;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pfFadeUp 0.8s ease 0.05s both;
}

.pf-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pf-headshot-fallback {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  display: none;
}

.pf-headshot img[src=""] ~ .pf-headshot-fallback,
.pf-headshot img:not([src]) ~ .pf-headshot-fallback {
  display: block;
}

.pf-hero-text {
  text-align: left;
  flex: 1;
}

.pf-kicker {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-bottom: 12px;
  animation: pfFadeUp 0.8s ease 0.1s both;
}

.pf-hero-name {
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
  animation: pfFadeUp 0.8s ease 0.2s both;
}

.pf-value-prop {
  font-size: 2rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 0 48px;
  line-height: 1.7;
  animation: pfFadeUp 0.8s ease 0.35s both;
}

.pf-proof-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  margin-bottom: 48px;
  animation: pfFadeUp 0.8s ease 0.5s both;
}

.pf-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.pf-proof-value {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.pf-proof-label {
  font-size: 1.15rem;
  color: var(--text-secondary);
  opacity: 0.7;
}

.pf-proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.pf-hero-cta {
  animation: pfFadeUp 0.8s ease 0.65s both;
}

/* ===== Buttons ===== */
.pf-btn {
  display: inline-block;
  padding: 16px 44px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.pf-btn-lg {
  padding: 18px 56px;
  font-size: 1.5rem;
}

.pf-btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
  border: 2px solid var(--accent);
}

.pf-btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 184, 150, 0.25);
}

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

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

/* ===== Specialties (Tags) ===== */
.pf-tags {
  padding: 80px 0 60px;
}

.pf-tag-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.pf-tag {
  padding: 12px 32px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  font-size: 1.3rem;
  color: var(--accent);
  background: rgba(212, 184, 150, 0.06);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  cursor: default;
}

.pf-tag:hover {
  background: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(212, 184, 150, 0.2);
}

/* ===== Selected Work — Horizontal Carousel ===== */
.pf-videos {
  padding: 80px 0 100px;
}

.pf-carousel-wrapper {
  position: relative;
  margin-top: 0;
  overflow: hidden;
}

.pf-carousel-track {
  display: flex;
  gap: 16px;
  padding: 10px 0 20px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.pf-carousel-track.paused {
  animation-play-state: paused;
}

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

.pf-carousel-track .pf-video-item {
  flex: 0 0 200px;
}

.pf-video-item {
  cursor: pointer;
}

.pf-video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}


.pf-video-frame:hover {
  border-color: rgba(212, 184, 150, 0.3);
  box-shadow: 0 0 24px rgba(212, 184, 150, 0.08);
}

.pf-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.pf-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  transition: opacity 0.3s ease;
  border-radius: 12px;
  z-index: 2;
}

.pf-play-overlay.pf-playing {
  opacity: 0;
  pointer-events: none;
}

/* Carousel Nav Arrows */
.pf-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid var(--border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background var(--transition), border-color var(--transition);
  font-size: 0;
  line-height: 0;
}

.pf-carousel-nav:hover {
  background: var(--bg-card);
  border-color: var(--accent);
}

.pf-carousel-prev { left: -16px; }
.pf-carousel-next { right: -16px; }

/* Carousel Dots */
.pf-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.pf-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}

.pf-carousel-dot.active {
  background: var(--accent);
  transform: scale(1.25);
}

.pf-video-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 12px;
}

.pf-video-niche {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

/* ===== Creator Stats ===== */
.pf-stats {
  padding: 64px 0 80px;
}

.pf-stats > .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pf-stat-card {
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-top: 2px solid rgba(212, 184, 150, 0.25);
  border-left: 3px solid transparent;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.pf-stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(212, 184, 150, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

.pf-stat-card:hover {
  border-left-color: var(--accent);
}

.pf-stat-card h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

.pf-stat-numbers {
  display: flex;
  gap: 32px;
  position: relative;
}

.pf-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pf-stat-value {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.pf-stat-label {
  font-size: 1.2rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.pf-stats-note {
  text-align: center;
  font-size: 1rem;
  color: var(--text-secondary);
  opacity: 0.5;
  margin-top: 20px;
}

/* ===== Best Performing Videos — Fan/Stack ===== */
.pf-best-videos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 60px 0 40px;
  margin-top: 20px;
}
.pf-best-video {
  position: relative;
  width: 320px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), z-index 0s, box-shadow 0.4s ease;
  cursor: pointer;
  z-index: 1;
}
.pf-best-video:not(:first-child) {
  margin-left: -60px;
}
.pf-best-video:nth-child(1) { transform: rotate(-9deg); z-index: 1; }
.pf-best-video:nth-child(2) { transform: rotate(-6deg); z-index: 2; }
.pf-best-video:nth-child(3) { transform: rotate(-3deg); z-index: 3; }
.pf-best-video:nth-child(4) { transform: rotate(0deg);  z-index: 4; }
.pf-best-video:nth-child(5) { transform: rotate(3deg);  z-index: 5; }
.pf-best-video:nth-child(6) { transform: rotate(6deg);  z-index: 6; }
.pf-best-video:nth-child(7) { transform: rotate(9deg);  z-index: 7; }
.pf-best-video:hover {
  transform: translateY(-20px) rotate(0deg) scale(1.08);
  z-index: 10;
}
.pf-best-video:hover .pf-video-frame {
  border-color: rgba(200, 168, 78, 0.5);
  box-shadow: 0 8px 32px rgba(200, 168, 78, 0.2), 0 0 0 1px rgba(200, 168, 78, 0.3);
}
.pf-video-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
/* ===== Analytics Row — IG + TikTok side by side ===== */
.pf-analytics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pf-best-video .pf-video-frame {
  position: relative;
  aspect-ratio: auto;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 184, 150, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.pf-video-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.02);
}
.pf-video-views {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 0.85rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 2px 8px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
.pf-best-video-brand {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ===== Trusted By — Scrolling Logo Marquee ===== */
.pf-brands {
  padding: 32px 0 48px;
}

.pf-marquee-wrapper {
  overflow: hidden;
  position: relative;
  margin-top: 0;
}

/* Fade edges */
.pf-marquee-wrapper::before,
.pf-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 3;
  pointer-events: none;
}

.pf-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-primary), transparent);
}

.pf-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-primary), transparent);
}

.pf-marquee-track {
  display: flex;
  gap: 64px;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.pf-brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.5;
  transition: opacity var(--transition), filter var(--transition);
  cursor: default;
  flex-shrink: 0;
  filter: brightness(1);
}

.pf-brand-logo:hover {
  opacity: 1;
  filter: brightness(1.2);
}

/* Brand item — icon + name pair */
.pf-brand-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
  cursor: default;
  opacity: 0.5;
  transition: opacity var(--transition);
}

.pf-brand-item:hover {
  opacity: 1;
}

.pf-brand-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

/* Fallback text style for brands without logos */
.pf-brand-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color var(--transition);
  cursor: default;
  white-space: nowrap;
  flex-shrink: 0;
}

.pf-brand-item:hover .pf-brand-name {
  color: var(--accent);
}

/* ===== How It Works — Zigzag Process ===== */
.pf-process {
  padding: 100px 0 80px;
}

.pf-zigzag {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.pf-zigzag-row {
  display: grid;
  grid-template-columns: 0.45fr auto 0.55fr;
  gap: 40px;
  align-items: center;
}

.pf-zigzag-row.pf-zigzag-reverse {
  direction: rtl;
}

.pf-zigzag-row.pf-zigzag-reverse > * {
  direction: ltr;
}

.pf-zigzag-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pf-zigzag-line {
  width: 2px;
  height: 100%;
  min-height: 120px;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 184, 150, 0.3) 50%, transparent 100%);
}

.pf-zigzag-image {
  width: 100%;
}

.pf-zigzag-placeholder {
  aspect-ratio: 4 / 3;
  background: rgba(22, 22, 22, 0.8);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
  opacity: 0.5;
}

.pf-zigzag-video {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.pf-step-num {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  opacity: 0.2;
  font-family: var(--font-heading);
}

.pf-step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pf-step-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== At A Glance — Analytics + Specialties ===== */
.pf-glance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.pf-specialties-card .pf-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.pf-specialties-card .pf-tag {
  font-size: 1.1rem;
  padding: 8px 18px;
}

/* ===== CTA — Conversion Closer ===== */
.pf-cta {
  padding: 120px 0 160px;
  position: relative;
}

.pf-cta > .pf-cta-bg {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 184, 150, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.pf-cta-content {
  text-align: center;
  position: relative;
}

.pf-cta-content .section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 36px;
}

.pf-cta-sub {
  font-size: 1.3rem;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-bottom: 36px;
}

.pf-cta-socials {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
}

.pf-cta-socials a {
  font-size: 1.1rem;
  color: var(--text-secondary);
  opacity: 0.6;
  transition: color var(--transition), opacity var(--transition);
}

.pf-cta-socials a:hover {
  color: var(--accent);
  opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-links {
    gap: 16px;
  }

  .nav-socials {
    gap: 14px;
  }

  .name-letter {
    -webkit-text-stroke: 1.5px var(--accent);
  }

  .hero-word {
    opacity: 0.08;
  }

  .section-label {
    margin-bottom: 36px;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "journey  journey"
      "aboutme  aboutme"
      "verse    role";
  }

  .bento-section {
    padding: 40px 0 100px;
  }

  /* Rotating text ring */
  .kt-text-ring {
    width: 200px;
    height: 200px;
  }

  /* Marquee tickers */
  .kt-marquee-row {
    font-size: 0.85rem;
    letter-spacing: 3px;
  }

  /* Portfolio — 768px */
  .pf-hero {
    padding-top: 88px;
    padding-bottom: 40px;
  }

  .pf-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .pf-hero-text {
    text-align: center;
  }

  .pf-headshot {
    width: 140px;
    height: 140px;
    border-width: 2px;
  }

  .pf-kicker {
    font-size: 1.1rem;
    letter-spacing: 4px;
    margin-bottom: 8px;
  }

  .pf-hero-name {
    font-size: clamp(3.5rem, 10vw, 5.5rem);
    margin-bottom: 12px;
  }

  .pf-value-prop {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }

  .pf-proof-row {
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
  }

  .pf-proof-value {
    font-size: 1.6rem;
  }

  .pf-proof-label {
    font-size: 0.95rem;
  }

  .pf-proof-divider {
    height: 30px;
  }

  /* Marquee fade edges — reduce on mobile */
  .pf-marquee-wrapper::before,
  .pf-marquee-wrapper::after {
    width: 40px;
  }

  /* Marquee gap — tighten on mobile */
  .pf-marquee-track {
    gap: 40px;
  }

  /* Carousel — 768px */
  .pf-carousel-track .pf-video-item {
    flex: 0 0 170px;
  }

  /* Performance — disable heavy effects on mobile */
  body::after {
    animation: none;
  }

  .noise-overlay {
    display: none;
  }

  body::before,
  .pf-page::before {
    animation: none;
  }

  .blob {
    animation: none;
    filter: blur(60px);
    opacity: 0.15;
  }

  .pf-carousel-nav {
    width: 36px;
    height: 36px;
  }

  .pf-analytics-row {
    grid-template-columns: 1fr;
  }

  .pf-glance-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pf-specialties-card {
    grid-column: 1 / -1;
  }

  .pf-best-video {
    width: 160px;
  }
  .pf-best-video:not(:first-child) {
    margin-left: -80px;
  }
  .pf-best-video:hover {
    transform: translateY(-16px) rotate(0deg) scale(1.06);
  }

  .pf-stat-numbers {
    gap: 20px;
  }

  .pf-tag {
    font-size: 1.15rem;
    padding: 10px 24px;
  }

  .pf-video-brand {
    font-size: 1.2rem;
  }

  .pf-video-niche {
    font-size: 1rem;
  }

  .pf-stat-value {
    font-size: 2.2rem;
  }

  .pf-stat-label {
    font-size: 1.05rem;
  }

  .pf-stat-card h3 {
    font-size: 1.5rem;
  }

  .pf-stat-card {
    padding: 32px;
  }

  .pf-brand-logo {
    height: 32px;
  }

  .pf-brand-name {
    font-size: 1.4rem;
  }

  .pf-brand-icon {
    width: 28px;
    height: 28px;
  }

  .pf-zigzag-row {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .pf-zigzag-row.pf-zigzag-reverse {
    direction: ltr;
  }

  .pf-zigzag-line {
    width: 60px;
    height: 2px;
    min-height: auto;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 184, 150, 0.3) 50%, transparent 100%);
  }

  .pf-glance-grid {
    grid-template-columns: 1fr;
  }

  .pf-btn {
    font-size: 1.25rem;
    padding: 14px 36px;
  }

  .pf-btn-lg {
    padding: 16px 44px;
    font-size: 1.35rem;
  }

  .pf-tags,
  .pf-videos,
  .pf-stats,
  .pf-brands,
  .pf-process {
    padding: 60px 0 48px;
  }

  .pf-cta {
    padding: 60px 0 80px;
  }

  .journey-page {
    padding-top: 88px;
    padding-bottom: 60px;
  }

  .about-page {
    padding-top: 80px;
    padding-bottom: 96px;
  }

  .about-body p {
    font-size: 1.1rem;
  }

  .timeline-row {
    gap: 20px;
  }

  .timeline-date {
    min-width: 100px;
    font-size: 0.8rem;
  }

  .timeline-desc {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .floating-cta {
    right: 16px;
    bottom: 20px;
    padding: 12px 24px;
    font-size: 1.1rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "journey"
      "aboutme"
      "verse"
      "role";
  }

  .name-stage {
    gap: 2px;
  }

  /* Rotating text ring — smaller */
  .kt-text-ring {
    width: 160px;
    height: 160px;
  }

  /* Watermark text */
  .kt-watermark {
    font-size: clamp(12vw, 15vw, 20vw);
  }

  /* Portfolio — 480px hero */
  .pf-hero {
    padding-top: 76px;
    padding-bottom: 32px;
  }

  .pf-hero-content {
    gap: 24px;
  }

  .pf-headshot {
    width: 110px;
    height: 110px;
  }

  .pf-kicker {
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 4px;
  }

  .pf-hero-name {
    font-size: clamp(3rem, 12vw, 4rem);
    margin-bottom: 8px;
  }

  .pf-value-prop {
    font-size: 1.25rem;
    margin-bottom: 24px;
  }

  .pf-proof-row {
    flex-direction: row;
    gap: 16px;
    margin-bottom: 24px;
  }

  .pf-proof-value {
    font-size: 1.3rem;
  }

  .pf-proof-label {
    font-size: 0.85rem;
  }

  .pf-proof-divider {
    width: 1px;
    height: 24px;
  }

  .pf-hero-cta {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* Marquee fade edges — smaller on phone */
  .pf-marquee-wrapper::before,
  .pf-marquee-wrapper::after {
    width: 24px;
  }

  /* Marquee gap — tighter on phone */
  .pf-marquee-track {
    gap: 28px;
  }

  /* Carousel — 480px */
  .pf-carousel-track .pf-video-item {
    flex: 0 0 120px;
  }

  .pf-carousel-nav {
    display: none;
  }

  .pf-best-video {
    width: 120px;
  }
  .pf-best-video:not(:first-child) {
    margin-left: -65px;
  }
  .pf-best-video:hover {
    transform: translateY(-12px) rotate(0deg) scale(1.05);
  }
  .pf-best-videos-grid {
    padding: 30px 0 20px;
  }

  .pf-stat-numbers {
    flex-wrap: wrap;
    gap: 16px;
  }

  .pf-tags,
  .pf-videos,
  .pf-stats,
  .pf-brands,
  .pf-process {
    padding: 48px 0 36px;
  }

  .pf-tag {
    font-size: 1.1rem;
    padding: 8px 20px;
  }

  .pf-stat-value {
    font-size: 2rem;
  }

  .pf-stat-card {
    padding: 24px;
  }

  .pf-brand-logo {
    height: 28px;
  }

  .pf-brand-name {
    font-size: 1.4rem;
  }

  .pf-btn {
    font-size: 1.2rem;
    padding: 12px 32px;
  }

  .pf-btn-lg {
    padding: 14px 36px;
    font-size: 1.3rem;
  }

  .pf-cta {
    padding: 48px 0 72px;
  }

  .pf-cta-content .section-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .nav-links {
    gap: 10px;
    font-size: 0.9rem;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .timeline-row {
    flex-direction: column;
    gap: 2px;
    padding: 8px 10px;
  }

  .timeline-date {
    min-width: unset;
    font-size: 0.75rem;
  }

  .timeline-desc {
    font-size: 0.9rem;
  }

  .about-body p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .journey-page {
    padding-top: 76px;
    padding-bottom: 48px;
  }

  .about-page {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  .name-letter {
    animation: none;
    opacity: 1;
    color: var(--accent);
  }

  .hero-pre {
    animation: none;
    opacity: 1;
  }

  .scroll-cue {
    animation: none;
    opacity: 0.5;
  }

  .scroll-cue svg {
    animation: none;
  }

  .hero-word {
    animation: none;
  }

  .blob {
    animation: none;
  }

  .reveal-section {
    opacity: 1;
    transform: none;
  }

  .pf-tag,
  .pf-btn,
  .pf-stat-card,
  .pf-brand-name,
  .pf-brand-logo,
  .pf-video-frame,
  .pf-step {
    transition: none;
  }

  .pf-kicker,
  .pf-hero-name,
  .pf-value-prop,
  .pf-proof-row,
  .pf-hero-cta,
  .pf-headshot {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .floating-cta { transition: none; }
  .pf-video-item:hover .pf-play-overlay svg { animation: none; }

  .pf-marquee-track {
    animation: none;
  }

  .pf-video-frame {
    animation: none;
  }

  /* Kinetic Type — disable all */
  .kt-marquee-row--left,
  .kt-marquee-row--right {
    animation: none;
  }

  .kt-text-ring svg {
    animation: none;
  }

  .kt-watermark {
    opacity: 0.025;
    transform: translate(-50%, -50%) scale(1);
  }

  body::before,
  .pf-page::before {
    animation: none;
  }

  /* Scroll-velocity skew disabled via JS check */

  /* Animated grain — static only */
  body::after {
    animation: none;
  }

  /* Page transition — instant */
  #pageTransition {
    display: none;
  }
}
