/* ============================================================
   RYAN FRANCIS — ryanfrancis.co.za
   Brand palette: #0d0d0d | #1a1a1a | #6c233f | #9b2f59 | #f5f0f2
   Fonts: Honfleur Heavy (display) via @font-face | Montserrat (body)
   ============================================================ */

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

/* ── FONT-FACE: Honfleur Heavy (available but not active) ── */
@font-face {
  font-family: 'Honfleur Heavy';
  src: url('Honfleur-Heavy.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Honfleur Heavy';
  src: url('Honfleur-HeavyItalic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
  --black:        #0d0d0d;
  --surface:      #1a1a1a;
  --surface-2:    #242424;
  --burg:         #6c233f;
  --burg-light:   #9b2f59;
  --burg-dim:     #2a1520;
  --burg-mid:     #3d1a2b;
  --off-white:    #f5f0f2;
  --muted-rose:   #9e8a90;
  --light-mist:   #c8bdc0;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Montserrat', sans-serif;
  --radius:       6px;
  --radius-lg:    12px;
  --transition:   0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-w:        1200px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── UTILITIES ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section-pad { padding: 6rem 0; }
.desktop-only { display: none; }
@media (min-width: 768px) { .desktop-only { display: inline; } }

/* ── SECTION LABELS ── */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burg-light);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 1.5rem;
}
.section-header { margin-bottom: 3.5rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--burg);
  color: var(--off-white);
  border: 1px solid var(--burg);
}
.btn--primary:hover {
  background: var(--burg-light);
  border-color: var(--burg-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108, 35, 63, 0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(245, 240, 242, 0.25);
}
.btn--ghost:hover {
  border-color: var(--burg-light);
  color: var(--burg-light);
  transform: translateY(-2px);
}
.btn--lg { padding: 1.1rem 2.6rem; font-size: 0.9rem; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(108, 35, 63, 0.2);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo-img { height: 58px; width: auto; }
.nav__links {
  display: none;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) { .nav__links { display: flex; } }
.nav__link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-mist);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--burg-light);
  transition: width var(--transition);
}
.nav__link:hover, .nav__link.active {
  color: var(--off-white);
}
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__link--cta {
  background: var(--burg);
  color: var(--off-white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  letter-spacing: 0.06em;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--burg-light) !important; }

.nav__burger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--off-white);
  transition: var(--transition);
  transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (min-width: 768px) { .nav__burger { display: none; } }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--burg-mid);
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light-mist);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.nav__mobile-link:hover { color: var(--burg-light); }

/* ── 1. TYPEWRITER CURSOR — removed, was causing flicker ── */

/* ── 2. WORD CYCLE ── */
.hero__cycle-wrap {
  position: relative;
  display: inline-block;
  min-width: 4ch;
}
.hero__word-cycle {
  display: inline-block;
  opacity: 1;
  transition: opacity 1.2s ease;
}
.hero__word-cycle.fading {
  opacity: 0;
}
.hero__word-cycle.entering {
  opacity: 0;
}

/* ── 3. MOUSE PARALLAX — handled in JS, targets these elements ── */
.hero__bg      { transition: transform 0.15s ease-out; }
.hero__artwork { transition: transform 0.12s ease-out; }

/* ── 4. GLITCH — removed ── */

/* ── 5. SCROLL PROGRESS BAR ── */
.hero__progress-bar {
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 0%;
  background: linear-gradient(to bottom, var(--burg), var(--burg-light));
  border-radius: 0 2px 2px 0;
  transition: height 0.1s linear;
  z-index: 5;
  box-shadow: 0 0 8px var(--burg-light);
}

/* ── 6. STAGGERED STAT ENTRANCE ── */
.hero__stat--stagger {
  opacity: 0;
  transform: translateY(24px);
}
.hero__stat--stagger.stat-visible {
  animation: statSlideUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: calc(var(--stagger) * 120ms);
}
@keyframes statSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── 7. CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,47,89,0.7) 0%, rgba(108,35,63,0.3) 50%, transparent 75%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}
.cursor-glow.visible { opacity: 1; }

/* ── 8. GRAIN ANIMATION ── */
.hero__grain {
  position: absolute; inset: 0;
  opacity: 0.35;
  pointer-events: none;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  /* No animation — static grain only, animation caused flicker */
}

/* ── 9. TITLE SHIMMER — removed to prevent flicker ── */

/* ── CIRCUIT GRID CANVAS ── */
.hero__circuit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  /* Fade out before the artwork on the right */
  -webkit-mask-image: linear-gradient(to right, black 0%, black 40%, transparent 72%);
  mask-image: linear-gradient(to right, black 0%, black 40%, transparent 72%);
}

/* ── WAVE GRID SHAPES — removed ── */

/* ── HERO GEOMETRIC SHAPES END ── */
.hero__geo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.geo {
  position: absolute;
  opacity: 0;
  animation: geoFadeIn 2s ease forwards;
}
@keyframes geoFadeIn {
  to { opacity: 1; }
}

/* Rings */
.geo--ring {
  border-radius: 50%;
  border: 1px solid rgba(108, 35, 63, 0.2);
}
.geo--ring-1 {
  width: 500px; height: 500px;
  top: -150px; left: -100px;
  animation-delay: 0.3s;
  animation: geoFadeIn 2s ease 0.3s forwards, ringPulse1 12s ease-in-out 2s infinite;
}
.geo--ring-2 {
  width: 300px; height: 300px;
  bottom: 5%; right: 30%;
  border-color: rgba(155, 47, 89, 0.15);
  animation: geoFadeIn 2s ease 0.6s forwards, ringPulse2 16s ease-in-out 2s infinite;
}
.geo--ring-3 {
  width: 180px; height: 180px;
  top: 20%; right: 10%;
  border-color: rgba(108, 35, 63, 0.12);
  border-width: 1px;
  animation: geoFadeIn 2s ease 0.9s forwards, ringPulse3 10s ease-in-out 2s infinite;
}
@keyframes ringPulse1 {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.08; }
  50%       { transform: scale(1.04) rotate(3deg); opacity: 0.14; }
}
@keyframes ringPulse2 {
  0%, 100% { transform: scale(1); opacity: 0.08; }
  50%       { transform: scale(1.06); opacity: 0.13; }
}
@keyframes ringPulse3 {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.07; }
  50%       { transform: scale(0.95) rotate(-5deg); opacity: 0.12; }
}

/* Diagonal lines */
.geo--line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108,35,63,0.25), transparent);
  transform-origin: center;
}
.geo--line-1 {
  width: 600px;
  top: 25%;
  left: -100px;
  transform: rotate(-35deg);
  animation: geoFadeIn 2.5s ease 0.5s forwards, lineDrift1 18s ease-in-out 2.5s infinite;
}
.geo--line-2 {
  width: 400px;
  bottom: 30%;
  right: -50px;
  transform: rotate(-35deg);
  background: linear-gradient(90deg, transparent, rgba(155,47,89,0.2), transparent);
  animation: geoFadeIn 2.5s ease 0.8s forwards, lineDrift2 22s ease-in-out 2.5s infinite;
}
.geo--line-3 {
  width: 300px;
  top: 60%;
  left: 20%;
  transform: rotate(20deg);
  background: linear-gradient(90deg, transparent, rgba(108,35,63,0.15), transparent);
  animation: geoFadeIn 2.5s ease 1.1s forwards;
}
@keyframes lineDrift1 {
  0%, 100% { transform: rotate(-35deg) translateX(0); opacity: 0.08; }
  50%       { transform: rotate(-33deg) translateX(20px); opacity: 0.14; }
}
@keyframes lineDrift2 {
  0%, 100% { transform: rotate(-35deg) translateX(0); opacity: 0.07; }
  50%       { transform: rotate(-37deg) translateX(-15px); opacity: 0.12; }
}

/* Triangles — CSS clip-path */
.geo--tri {
  width: 0; height: 0;
  background: none;
  border-style: solid;
}
.geo--tri-1 {
  border-width: 0 60px 100px 60px;
  border-color: transparent transparent rgba(108,35,63,0.08) transparent;
  top: 10%; right: 20%;
  animation: geoFadeIn 2s ease 1s forwards, triFloat1 14s ease-in-out 2s infinite;
}
.geo--tri-2 {
  border-width: 0 35px 60px 35px;
  border-color: transparent transparent rgba(155,47,89,0.06) transparent;
  bottom: 20%; left: 15%;
  animation: geoFadeIn 2s ease 1.3s forwards, triFloat2 18s ease-in-out 2s infinite;
}
@keyframes triFloat1 {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.06; }
  50%       { transform: translateY(-15px) rotate(5deg); opacity: 0.1; }
}
@keyframes triFloat2 {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.05; }
  50%       { transform: translateY(10px) rotate(-3deg); opacity: 0.09; }
}

/* Cross / plus shapes */
.geo--cross {
  position: absolute;
}
.geo--cross-1 {
  width: 30px; height: 30px;
  top: 45%; left: 8%;
  animation: geoFadeIn 2s ease 1.5s forwards, crossSpin 25s linear 2s infinite;
}
.geo--cross-1::before,
.geo--cross-1::after {
  content: '';
  position: absolute;
  background: rgba(108,35,63,0.2);
}
.geo--cross-1::before {
  width: 1px; height: 100%;
  left: 50%; transform: translateX(-50%);
}
.geo--cross-1::after {
  width: 100%; height: 1px;
  top: 50%; transform: translateY(-50%);
}
@keyframes crossSpin {
  from { transform: rotate(0deg); opacity: 0.1; }
  to   { transform: rotate(360deg); opacity: 0.1; }
}

/* Dot grid */
.geo--dot-grid {
  width: 200px; height: 200px;
  top: 55%; left: 55%;
  background-image: radial-gradient(circle, rgba(108,35,63,0.25) 1px, transparent 1px);
  background-size: 18px 18px;
  animation: geoFadeIn 3s ease 1.8s forwards, dotDrift 20s ease-in-out 3s infinite;
  border: none !important;
}
@keyframes dotDrift {
  0%, 100% { transform: translate(0, 0); opacity: 0.12; }
  50%       { transform: translate(10px, -10px); opacity: 0.18; }
}

/* ── HERO GEOMETRIC SHAPES END ── */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
  z-index: 0;
  background: var(--black);
}
/* ── HERO ARTWORK ── */
.hero__artwork {
  position: absolute;
  right: -2%;
  bottom: 0;
  height: 100%;
  width: 55%;
  z-index: 1;
  pointer-events: none;
  /* Fade left edge into bg, fade bottom, keep right */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.2) 20%,
    rgba(0,0,0,0.6) 40%,
    black 65%,
    black 85%,
    transparent 100%
  ), linear-gradient(
    to top,
    transparent 0%,
    black 18%,
    black 100%
  );
  -webkit-mask-composite: destination-in;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.2) 20%,
    rgba(0,0,0,0.6) 40%,
    black 65%,
    black 85%,
    transparent 100%
  ), linear-gradient(
    to top,
    transparent 0%,
    black 18%,
    black 100%
  );
  mask-composite: intersect;
}
.hero__artwork-img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: bottom right;
  opacity: 0.38;
  mix-blend-mode: lighten;
  animation: artworkFadeIn 1.8s ease-out 0.4s both;
}
@keyframes artworkFadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 0.38; transform: translateY(0) scale(1); }
}
@media (max-width: 768px) {
  .hero__artwork {
    width: 92%;
    right: -8%;
    top: 0;
    bottom: auto;
    height: 620px;
  }
  .hero__artwork-img { opacity: 0.4; }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__grain {
  position: absolute; inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(108,35,63,0.35) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(155,47,89,0.2) 0%, transparent 70%);
  bottom: 0; left: -100px;
  animation: orbFloat 12s ease-in-out infinite alternate-reverse;
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, -30px) scale(1.05); }
}

.hero__content {
  position: relative; z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burg-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__eyebrow::before {
  content: '';
  display: block; width: 2rem; height: 1px;
  background: var(--burg-light);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.hero__title-line { display: block; }
.hero__title-line--accent { color: var(--burg-light); }
.hero__sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  color: var(--light-mist);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

/* ── HERO PARTICLE FLOOR ── */
.hero__particle-floor {
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  height: 60%;
  pointer-events: none;
  z-index: 2;
  /* Bottom fully visible, fade out toward top so particles dissolve as they rise */
  -webkit-mask-image: linear-gradient(to top, black 0%, black 40%, transparent 85%);
  mask-image: linear-gradient(to top, black 0%, black 40%, transparent 85%);
}

.hero__stat-strip {
  position: relative; z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 0;
  padding: 2rem;
  background: rgba(26,26,26,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(108,35,63,0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero__stat-sweep {
  position: absolute;
  top: 0; left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 30%,
    rgba(255,255,255,0.03) 42%,
    rgba(255,255,255,0.09) 50%,
    rgba(255,255,255,0.03) 58%,
    transparent 70%,
    transparent 100%
  );
  pointer-events: none;
  animation: statSweep 8s ease-in-out 0s infinite;
  z-index: 1;
}
@keyframes statSweep {
  0%   { left: -60%; }
  75%  { left: 130%; }
  100% { left: 130%; }
}
.hero__stat {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}
.hero__stat-num {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  color: var(--off-white);
  display: flex;
  align-items: baseline;
  gap: 0.05em;
}
.hero__stat-num sup { font-size: 0.45em; color: var(--burg-light); vertical-align: super; }
.stat-suffix {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.55em;
  color: var(--burg-light);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-rose);
}
.hero__stat-div {
  width: 1px;
  background: rgba(108,35,63,0.35);
  align-self: stretch;
  margin: 0.25rem 0;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem; right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
}
.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-rose);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--burg-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  animation: revealUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.reveal--delay-1 { animation-delay: 0.15s; }
.reveal--delay-2 { animation-delay: 0.3s; }
.reveal--delay-3 { animation-delay: 0.45s; }
.reveal--delay-4 { animation-delay: 0.6s; }
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered cascade for service cards */
.service-card.scroll-reveal[data-stagger="0"] { transition-delay: 0ms; }
.service-card.scroll-reveal[data-stagger="1"] { transition-delay: 180ms; }
.service-card.scroll-reveal[data-stagger="2"] { transition-delay: 360ms; }
.service-card.scroll-reveal[data-stagger="3"] { transition-delay: 540ms; }
.service-card.scroll-reveal[data-stagger="4"] { transition-delay: 720ms; }
.service-card.scroll-reveal[data-stagger="5"] { transition-delay: 900ms; }
.service-card.scroll-reveal[data-stagger="6"] { transition-delay: 1080ms; }

/* ── REEL ── */
.reel {
  background: var(--surface);
  box-shadow: inset 0 8px 30px rgba(0,0,0,0.6);
}
.reel__wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.reel__placeholder {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--black);
  border: 1px solid var(--burg-mid);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  cursor: pointer;
  overflow: hidden;
  transition: border-color var(--transition);
}
.reel__placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(108,35,63,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.reel__placeholder:hover { border-color: var(--burg-light); }
.reel__play {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--burg);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.reel__play svg { width: 28px; height: 28px; color: var(--off-white); margin-left: 4px; }
.reel__placeholder:hover .reel__play {
  background: var(--burg-light);
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(155,47,89,0.5);
}
.reel__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-rose);
}
.reel__corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--burg);
  border-style: solid;
}
.reel__corner--tl { top: 16px; left: 16px; border-width: 2px 0 0 2px; }
.reel__corner--tr { top: 16px; right: 16px; border-width: 2px 2px 0 0; }
.reel__corner--bl { bottom: 16px; left: 16px; border-width: 0 0 2px 2px; }
.reel__corner--br { bottom: 16px; right: 16px; border-width: 0 2px 2px 0; }

/* ── SERVICES SNAPSHOT ── */
.services-snap { background: var(--black); }
.services-snap__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5px;
  background: var(--burg-mid);
  border: 1.5px solid var(--burg-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--surface);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--burg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { background: var(--surface-2); }
.service-card:hover::before { transform: scaleX(1); }
.service-card--cta {
  background: var(--burg-dim);
  justify-content: center;
}
.service-card--cta:hover { background: var(--burg-mid); }
.service-card__icon {
  width: 40px; height: 40px;
  color: var(--burg-light);
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--off-white);
}
.service-card__desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--light-mist);
  line-height: 1.7;
  flex: 1;
}
.service-card__arrow {
  font-size: 1.2rem;
  color: var(--burg-light);
  transition: transform var(--transition);
  display: inline-block;
}
.service-card:hover .service-card__arrow { transform: translateX(6px); }
.service-card__arrow--big { font-size: 2rem; }

/* ── CLIENTS ── */
.clients { background: var(--surface); }
.clients__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.client-pill {
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--burg-mid);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--light-mist);
  background: var(--black);
  transition: var(--transition);
}
.client-pill:hover {
  border-color: var(--burg-light);
  color: var(--off-white);
  background: var(--burg-dim);
}

/* ── ABOUT SNAP ── */
.about-snap { background: var(--black); }
.about-snap__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-snap__inner { grid-template-columns: 1fr 1fr; }
}
.about-snap__body {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--light-mist);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about-snap__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--burg-mid);
  min-height: 380px;
}
.about-snap__card-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--surface) 0%, var(--burg-dim) 100%);
}
.about-snap__card-content {
  position: relative; z-index: 1;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-snap__skills-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--burg-light);
  margin-bottom: 1rem;
}
.about-snap__badge {
  margin-bottom: 1.5rem;
}
.about-snap__badge-num {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.about-snap__badge-num {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 5rem;
  line-height: 1;
  color: var(--off-white);
}
.about-snap__badge-num sup { font-size: 0.4em; color: var(--burg-light); vertical-align: super; }
.about-snap__badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-rose);
}
.about-snap__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.skill-tag {
  padding: 0.3rem 0.8rem;
  background: rgba(108,35,63,0.3);
  border: 1px solid rgba(155,47,89,0.3);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--light-mist);
}

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  padding: 7rem 0;
  background: var(--burg-dim);
  overflow: hidden;
}
.cta-banner__bg { position: absolute; inset: 0; pointer-events: none; }
.cta-banner__orb {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(108,35,63,0.5) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(80px);
}
.cta-banner__inner { position: relative; z-index: 3; text-align: center; }
.cta-banner__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: var(--off-white);
  margin-bottom: 1.25rem;
}
.cta-banner__sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--light-mist);
  margin-bottom: 2.5rem;
}
.cta-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 480px) {
  .cta-banner__actions { flex-direction: row; justify-content: center; }
}
.cta-banner__email {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted-rose);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.cta-banner__email:hover { color: var(--off-white); }

/* ── FOOTER ── */
.footer {
  background: #080808;
  padding: 5rem 0 2.5rem;
  border-top: 1px solid var(--burg-mid);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}
.footer__logo { height: 126px; width: auto; margin-bottom: 1rem; }
.footer__tagline {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--off-white);
  margin-bottom: 0.4rem;
}
.footer__location {
  font-size: 0.8rem;
  color: var(--muted-rose);
}
.footer__nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burg-light);
  margin-bottom: 0.5rem;
}
.footer__nav a {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--light-mist);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--off-white); }
.footer__contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__contact a {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--light-mist);
  transition: color var(--transition);
}
.footer__contact a:hover { color: var(--off-white); }
.footer__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.footer__social {
  width: 36px; height: 36px;
  border: 1px solid var(--burg-mid);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-rose);
  transition: var(--transition);
}
.footer__social svg { width: 16px; height: 16px; }
.footer__social:hover {
  border-color: var(--burg-light);
  color: var(--burg-light);
  background: var(--burg-dim);
}
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-rose);
}

/* ── PAGE HEADER (shared across inner pages) ── */
.page-header {
  padding: 10rem 0 5rem;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.page-header__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(108,35,63,0.25) 0%, transparent 60%);
  pointer-events: none;
}
/* Dynamic canvas for particles */
.page-header__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.page-header__inner { position: relative; z-index: 3; }
.page-header__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burg-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.page-header__eyebrow::before {
  content: '';
  display: block; width: 2rem; height: 1px;
  background: var(--burg-light);
}
.page-header__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--off-white);
}

/* ── WORK PAGE HEADER VIDEO ── */
.page-header--work {
  padding: 10rem 0 6rem;
  min-height: 100vh;
}
.work-header__stats {
  margin-top: 4rem;
  position: relative;
  z-index: 3;
}
.work-header__stats-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burg-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.work-header__stats-tag::before {
  content: '';
  display: block; width: 2rem; height: 1px;
  background: var(--burg-light);
}
.work-header__stats-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--off-white);
  margin-bottom: 2.5rem;
}
.page-header__video-wrap {
  position: absolute;
  top: 8%;
  left: 58%;
  width: 340px;
  height: 650px;
  z-index: 2;
  pointer-events: none;
  /* No border/frame — video has its own transparent background */
  overflow: visible;
  opacity: 0.82;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 55%, transparent 82%);
  mask-image: linear-gradient(to bottom, black 0%, black 55%, transparent 82%);
}
/* Remove notch pseudo-element — not needed with alpha video */
.page-header__video-wrap::before { display: none; }
.page-header__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
}
.page-header__video-overlay { display: none; }

@media (max-width: 768px) {
  .page-header__video-wrap {
    left: auto;
    right: 2%;
    top: 4%;
    width: 50vw;
    max-width: 220px;
    height: calc(50vw * 1.91);
    max-height: 420px;
  }
}

/* ── ABOUT PAGE ── */
.about-bio { background: var(--black); }
.about-bio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 900px) {
  .about-bio__grid { grid-template-columns: 1fr 1.6fr; }
}
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--burg-mid);
  aspect-ratio: 4/5;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.about-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-lg);
}
.about-bio__body p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--light-mist);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.timeline { background: var(--surface); }
.timeline__items { display: flex; flex-direction: column; gap: 0; }
.timeline__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: start;
}
.timeline__year {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.8rem;
  color: var(--burg-light);
  letter-spacing: 0.03em;
}
.timeline__role {
  font-size: 1rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.25rem;
}
.timeline__company {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--burg-light);
  margin-bottom: 0.5rem;
}
.timeline__desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--light-mist);
  line-height: 1.7;
}

/* ── SERVICES PAGE ── */
.services-full { background: var(--black); }
.services-full__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .services-full__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .services-full__grid { grid-template-columns: repeat(3, 1fr); }
}
.service-full-card {
  background: var(--surface);
  border: 1px solid var(--burg-mid);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
}
.service-full-card:hover {
  border-color: var(--burg-light);
  background: var(--surface-2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.service-full-card__icon {
  width: 48px; height: 48px;
  color: var(--burg-light);
  margin-bottom: 1.5rem;
}
.service-full-card__icon svg { width: 100%; height: 100%; }
.service-full-card__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  color: var(--off-white);
  margin-bottom: 0.75rem;
}
.service-full-card__desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--light-mist);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.service-full-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-full-card__list li {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted-rose);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-full-card__list li::before {
  content: '·';
  color: var(--burg-light);
  font-size: 1.2rem;
  line-height: 1;
}

/* ── WORK PAGE ── */
.work-grid { background: var(--black); }
.work-grid__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .work-grid__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .work-grid__inner { grid-template-columns: repeat(3, 1fr); }
}
.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--burg-mid);
  background: var(--surface);
  transition: var(--transition);
  cursor: pointer;
}
.work-card:hover {
  border-color: var(--burg-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.work-card__thumb {
  aspect-ratio: 16/10;
  background: var(--burg-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-rose);
  position: relative;
  overflow: hidden;
}
.work-card__thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7) 100%);
}
.work-card__body { padding: 1.5rem; }
.work-card__category {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burg-light);
  margin-bottom: 0.4rem;
}
.work-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.4rem;
}
.work-card__desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--light-mist);
  line-height: 1.6;
}

/* ── CONTACT PAGE ── */
.contact-section { background: var(--black); }
.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 900px) {
  .contact-section__grid { grid-template-columns: 1fr 1.4fr; }
}
.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-info__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burg-light);
}
.contact-info__value {
  font-size: 1rem;
  font-weight: 400;
  color: var(--off-white);
  transition: color var(--transition);
}
.contact-info__value:hover { color: var(--burg-light); }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-rose);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--burg-mid);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--off-white);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted-rose); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--burg-light); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--surface); }
.form-group textarea { resize: vertical; min-height: 140px; }

/* ── MARQUEE LOGO SCROLLER ── */
.marquee-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0.5rem 0;
  background: var(--surface);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 140s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 4rem;
  border-right: 1px solid var(--burg-mid);
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  cursor: default;
  background: var(--surface);
}
.marquee-item:hover { opacity: 1; }
.marquee-item img {
  height: 130px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.1);
}
.logo-grid__note {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted-rose);
}

.marquee-item img.logo-invert {
  filter: invert(1) brightness(1.2);
  mix-blend-mode: screen;
}
.marquee-item img.logo-no-blend {
  mix-blend-mode: normal;
  filter: none;
}

/* ── LOGO RENDERING ── */
.nav__logo-img,
.footer__logo {
  /* Ensure transparent PNG renders correctly on dark bg */
  mix-blend-mode: normal;
  image-rendering: -webkit-optimize-contrast;
}

/* ── COMING SOON BADGE ── */
.reel__coming-soon-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.35rem 0.9rem;
  background: var(--burg);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--off-white);
  z-index: 2;
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(108,35,63,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(108,35,63,0); }
}

/* ── RESPONSIVE FINE-TUNING ── */
@media (max-width: 480px) {
  .hero__stat-div { display: none; }
  .hero__stat { min-width: 50%; }
  .hero__stat-strip { gap: 1rem; }
  .section-pad { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .hero__title {
    font-size: clamp(2.1rem, 10.5vw, 8.5rem);
    letter-spacing: 0;
    overflow-wrap: break-word;
    word-break: break-word;
  }
}
