/* ============================================================
   LENNY'S TANNING LTD — Base: Variables, Reset, Buttons, Nav, Hero, Marquee
   ============================================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  --cream:        #fdf8f2;
  --white:        #ffffff;
  --champagne:    #f5e6c8;
  --champagne-lt: #faf3e4;
  --bronze:       #c9a96e;
  --bronze-lt:    #e8d5b0;
  --bronze-dk:    #a07840;
  --rose-gold:    #c8956c;
  --rose-lt:      #f0d5c4;
  --text-dark:    #2c2420;
  --text-mid:     #5a4e47;
  --text-light:   #9a8c84;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', system-ui, sans-serif;

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;

  --shadow-soft:  0 4px 32px rgba(180, 140, 80, 0.12);
  --shadow-card:  0 8px 48px rgba(180, 140, 80, 0.16);

  --transition:      0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}


/* ============================================================
   ATMOSPHERIC GRAIN OVERLAY
   ============================================================ */
#grainOverlay {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.028;
  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-size: 200px 200px;
  animation: grainDrift 0.8s steps(1) infinite;
}
@keyframes grainDrift {
  0%   { transform: translate(0, 0); }
  10%  { transform: translate(-2%, -3%); }
  20%  { transform: translate(3%, 1%); }
  30%  { transform: translate(-1%, 4%); }
  40%  { transform: translate(4%, -2%); }
  50%  { transform: translate(-3%, 3%); }
  60%  { transform: translate(2%, -4%); }
  70%  { transform: translate(-4%, 1%); }
  80%  { transform: translate(1%, 3%); }
  90%  { transform: translate(3%, -1%); }
  100% { transform: translate(0, 0); }
}

/* ============================================================
   ATMOSPHERIC LIGHT LEAK
   ============================================================ */
#lightLeak {
  position: fixed;
  top: -30%;
  right: -20%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232,200,122,0.07) 0%,
    rgba(201,169,110,0.04) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 9989;
  animation: leakDrift 18s ease-in-out infinite alternate;
  mix-blend-mode: multiply;
}
@keyframes leakDrift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-8vw, 6vh) scale(1.08); }
  66%  { transform: translate(5vw, -4vh) scale(0.95); }
  100% { transform: translate(-4vw, 8vh) scale(1.04); }
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- SECTION SPACING ---------- */
.section        { padding: 100px 0; }
.section--tight { padding: 60px 0; }

/* ============================================================
   HEADING CLIP-REVEAL (scroll-triggered)
   ============================================================ */
.reveal-heading {
  overflow: hidden;
  display: block;
}
.reveal-heading__inner {
  display: block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.16,1,0.3,1), opacity 0.6s ease;
}
.reveal-heading.in-view .reveal-heading__inner {
  transform: translateY(0);
  opacity: 1;
}
.reveal-heading:nth-child(2) .reveal-heading__inner { transition-delay: 0.12s; }
.reveal-heading:nth-child(3) .reveal-heading__inner { transition-delay: 0.24s; }

/* ---------- SHARED SECTION TYPOGRAPHY ---------- */
.section__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 12px;
}
.section__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.section__heading em { font-style: italic; color: var(--rose-gold); }
.section__sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}
.section__header { text-align: center; margin-bottom: 60px; }

/* ============================================================
   SCROLL REVEAL STATES
   ============================================================ */
.fade-in-up,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up    { transform: translateY(40px); }
.fade-in-left  { transform: translateX(-40px); }
.fade-in-right { transform: translateX(40px); }

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn:hover::before { opacity: 1; }

.btn--primary {
  background: linear-gradient(135deg, var(--bronze) 0%, var(--rose-gold) 100%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200, 149, 108, 0.3);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s ease,
              background-position 0.5s ease;
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(200, 149, 108, 0.55), 0 0 0 6px rgba(201,169,110,0.12);
  background-position: 100% 0%;
}
.btn--primary:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 12px rgba(200, 149, 108, 0.3);
}
/* Ink-spread ripple on click */
.btn--primary .btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: inkSpread 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
  pointer-events: none;
}
@keyframes inkSpread {
  to { transform: scale(4); opacity: 0; }
}
.btn--glow {
  animation: btnPulse 3s ease-in-out infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(200, 149, 108, 0.3); }
  50%       { box-shadow: 0 6px 48px rgba(200, 149, 108, 0.65), 0 0 0 8px rgba(201,169,110,0.1); }
}
.btn--ghost {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid rgba(180, 140, 80, 0.4);
}
.btn--ghost:hover {
  border-color: var(--bronze);
  background: rgba(201, 169, 110, 0.08);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--bronze-dk);
  border: 1.5px solid var(--bronze);
}
.btn--outline:hover {
  background: var(--bronze);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 169, 110, 0.3);
}
.btn--nav {
  background: linear-gradient(135deg, var(--bronze) 0%, var(--rose-gold) 100%);
  color: var(--white);
  padding: 10px 24px;
  font-size: 0.85rem;
}
.btn--nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 149, 108, 0.4);
}
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(253, 248, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(180, 140, 80, 0.1);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  flex-shrink: 0;
}
.nav__logo-svg {
  width: 38px;
  height: 34px;
  color: var(--bronze);
  flex-shrink: 0;
  transition: color var(--transition), transform var(--transition);
}
.nav__logo:hover .nav__logo-svg {
  color: var(--bronze-dk);
  transform: rotate(-6deg) scale(1.08);
}
.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  font-style: italic;
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.nav__links { display: flex; gap: 32px; margin-left: auto; }
.nav__links a {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  position: relative;
  transition: color var(--transition);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--bronze);
  transition: width var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--bronze-dk); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(253, 248, 242, 0.97);
  backdrop-filter: blur(20px);
  padding: 24px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.nav__mobile.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 16px; }
.nav__mobile-link { font-size: 1.1rem; color: var(--text-mid); }
.nav__mobile-cta { margin-top: 8px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #fff9f0 0%, #fdf3e3 40%, #f9ead4 100%);
}

/* Animated glow orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.25) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat1 8s ease-in-out infinite;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200, 149, 108, 0.2) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  animation: orbFloat2 10s ease-in-out infinite;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245, 230, 200, 0.6) 0%, transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat3 6s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-30px, 30px) scale(1.05); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, -25px) scale(1.08); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50%       { transform: translate(-50%, -50%) scale(1.15); opacity: 0.9; }
}

/* Floating particles */
.hero__particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--bronze);
  border-radius: 50%;
  opacity: 0;
  animation: particleDrift var(--dur, 8s) var(--delay, 0s) ease-in-out infinite;
}
@keyframes particleDrift {
  0%   { opacity: 0; transform: translateY(0) scale(0.5); }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-120px) scale(1.2); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 24px;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.75s forwards;
}
.hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 1s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transition: opacity 0.4s ease;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.6s forwards;
}
.hero__scroll span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}
.hero__scroll-line {
  width: 1.5px; height: 40px;
  background: linear-gradient(to bottom, var(--bronze), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%       { transform: scaleY(1.2); opacity: 1; }
}
.br-desktop { display: block; }

/* Shared keyframes used across hero */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ============================================================
   HERO HEADLINE — word-by-word cinematic reveal
   ============================================================ */
.hl-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28em;
  overflow: hidden;
  padding-bottom: 0.06em;
}
.hl-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%) skewY(4deg);
  animation: hlReveal 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.18s + var(--wi) * 0.13s);
}
.radiant-em {
  font-style: italic;
  position: relative;
  display: inline-flex;
  gap: 0;
  color: var(--bronze);
}
/* Individual letter spans */
.rl {
  display: inline-block;
  color: var(--bronze);
  animation: rlWave 3.2s ease-in-out infinite;
  animation-delay: calc(var(--li) * 0.11s + 1s);
}
@keyframes rlWave {
  0%, 100% { transform: translateY(0)    rotate(0deg)   scaleY(1);   color: var(--bronze); }
  20%       { transform: translateY(-6px) rotate(-2deg)  scaleY(1.05); color: #e8c87a; }
  40%       { transform: translateY(-3px) rotate(1deg)   scaleY(1.02); color: var(--rose-gold); }
  60%       { transform: translateY(-5px) rotate(-1deg)  scaleY(1.04); color: var(--bronze-dk); }
  80%       { transform: translateY(-2px) rotate(0.5deg) scaleY(1.01); color: var(--bronze); }
}
@keyframes hlReveal {
  to {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
  }
}
@keyframes radiantFloat {
  0%, 100% { transform: translateY(0) skewX(0deg); }
  30%       { transform: translateY(-4px) skewX(-1deg); }
  70%       { transform: translateY(-2px) skewX(0.8deg); }
}
@keyframes radiantShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes radiantLine {
  0%   { background-position: 200% center; opacity: 0.5; }
  50%  { opacity: 1; }
  100% { background-position: -200% center; opacity: 0.5; }
}

/* ============================================================
   HERO BACKGROUND PHOTO
   ============================================================ */
.hero__bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(253, 248, 242, 0.96) 0%, rgba(253, 248, 242, 0.75) 55%, rgba(245, 230, 200, 0.30) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, transparent 40%);
}

/* ============================================================
   HERO PATTERN
   ============================================================ */
.hero__pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.6;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: linear-gradient(135deg, var(--bronze) 0%, var(--rose-gold) 100%);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-strip--dark {
  background: var(--text-dark);
}
.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-track--reverse {
  animation: marqueeReverse 32s linear infinite;
}
.marquee-track span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0 32px;
}
.marquee-strip--dark .marquee-track span {
  color: rgba(201, 169, 110, 0.75);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marqueeReverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ============================================================
   WAVE DIVIDERS
   ============================================================ */
.wave-divider {
  line-height: 0;
  overflow: hidden;
  margin-bottom: -2px;
}
.wave-divider svg {
  display: block;
  width: 100%;
}
.wave-divider--cream {
  background: var(--cream);
}
.wave-divider--white {
  background: var(--white);
}

/* ============================================================
   SERVICE CARD VISUAL HEADER
   ============================================================ */
.service-card__visual {
  margin: -36px -28px 20px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  line-height: 0;
}
.service-card__visual svg {
  width: 100%;
  display: block;
}
.service-card__visual--photo {
  position: relative;
  height: 160px;
  margin: -36px -28px 20px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.service-card__visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card__visual--photo img {
  transform: scale(1.07);
}
.service-card__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(160, 120, 64, 0.38) 100%
  );
}
.service-card__visual-label {
  position: absolute;
  bottom: 10px;
  left: 14px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.04em;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: linear-gradient(135deg, var(--text-dark) 0%, #3a2c26 100%);
  padding: 56px 0;
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(201, 169, 110, 0.2);
}
.stat-item__num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  color: var(--bronze-lt);
  line-height: 1;
  display: inline-block;
}
.stat-item__plus {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--bronze);
  line-height: 1;
  vertical-align: super;
  font-weight: 400;
}
.stat-item__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

@media (max-width: 768px) {
  .stats-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .stat-item + .stat-item::before { display: none; }
}
@media (max-width: 480px) {
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
}
