/* =========================================================
   Dylan Anchetta — Emcee · Host · Drag Royalty · Hawai‘i
   Aesthetic: tropical drag spectacle — sunset neon, holo
   shimmer, sparkle, glam-maximalist.
   ========================================================= */

:root {
  --plum:    #160320;   /* deep night base */
  --plum-2:  #24073a;
  --cream:   #fff4ea;
  --cream-d: #e7c9e6;

  --hot:     #ff2e9a;   /* hot magenta   */
  --tang:    #ff6a13;   /* tangerine     */
  --sun:     #ffd23f;   /* sunshine      */
  --cyan:    #1fe0d0;   /* tropical aqua */
  --violet:  #a23bff;   /* electric lilac*/

  --glass:   rgba(255, 255, 255, 0.07);
  --glass-b: rgba(255, 255, 255, 0.18);
  --maxw:    1280px;

  --f-display: "Fraunces", "Times New Roman", Times, serif;
  --f-loud:    "Bricolage Grotesque", system-ui, sans-serif;
  --f-body:    "Hanken Grotesk", system-ui, sans-serif;
  --f-party:   "Honk", system-ui, cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 48px; overflow-x: clip; }

body {
  background: var(--plum);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 17px; line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--hot); color: #fff; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* ---------- Atmosphere ---------- */
.bg-mesh {
  position: fixed; inset: -20%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 50% at 15% 20%, rgba(255,46,154,.55), transparent 60%),
    radial-gradient(45% 55% at 85% 12%, rgba(162,59,255,.50), transparent 60%),
    radial-gradient(50% 45% at 80% 75%, rgba(31,224,208,.40), transparent 60%),
    radial-gradient(45% 50% at 18% 80%, rgba(255,106,19,.45), transparent 60%),
    radial-gradient(60% 60% at 50% 50%, rgba(255,210,63,.18), transparent 70%);
  filter: saturate(1.15);
  animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(2%, -2%) scale(1.08); }
  100% { transform: translate(-2%, 2%) scale(1.04); }
}
.grain {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: .06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.sparkles { position: fixed; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.spark {
  position: absolute; color: var(--sun);
  font-size: var(--s, 14px); opacity: 0;
  animation: twinkle var(--dur, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  text-shadow: 0 0 8px currentColor;
}
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(.4) rotate(0deg); }
  50%      { opacity: .9; transform: scale(1) rotate(90deg); }
}

section, .nav, .footer, .marquee { position: relative; z-index: 2; }

/* ---------- Buttons ---------- */
.btn {
  --pad: 1rem 1.6rem;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: var(--pad);
  font-family: var(--f-loud); font-weight: 700;
  font-size: .92rem; letter-spacing: .01em;
  color: #fff; border: none; border-radius: 999px; cursor: pointer;
  background: linear-gradient(100deg, var(--hot), var(--tang) 60%, var(--sun));
  background-size: 180% 100%; background-position: 0% 0;
  box-shadow: 0 10px 30px -8px rgba(255,46,154,.65);
  transition: transform .25s cubic-bezier(.2,.9,.2,1), background-position .5s, box-shadow .25s;
}
.btn:hover {
  transform: translateY(-3px) scale(1.02);
  background-position: 100% 0;
  box-shadow: 0 16px 38px -8px rgba(255,106,19,.7);
}
.btn--big { --pad: 1.15rem 2rem; font-size: 1.05rem; }
.btn--sm  { --pad: .6rem 1.1rem; font-size: .82rem; }
.btn--full { width: 100%; justify-content: center; --pad: 1.1rem; }
.btn--ghost {
  background: var(--glass); color: var(--cream);
  border: 1.5px solid var(--glass-b); box-shadow: none;
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--sun); color: var(--sun); background: rgba(255,255,255,.12); }

.kicker {
  font-family: var(--f-loud); font-weight: 700; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--sun); margin-bottom: 1.2rem;
  text-shadow: 0 0 14px rgba(255,210,63,.4);
}

h2 em, .hero__tag em, .about__copy p em { color: var(--sun); }

/* ---------- Nav ---------- */
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  max-width: var(--maxw); margin: 0 auto;
  padding: 1.3rem clamp(1.2rem, 4vw, 2.5rem);
  position: sticky; top: 0; z-index: 60;
}
.nav::before {
  content: ""; position: absolute; z-index: -1;
  top: 0; bottom: 0; left: 50%; width: 100vw; transform: translateX(-50%);
  background: linear-gradient(var(--plum), rgba(22,3,32,.2) 70%, transparent);
  backdrop-filter: blur(4px);
}
.nav__mark {
  font-family: var(--f-party); font-size: 2.1rem; line-height: 1;
}
.nav__links {
  display: flex; gap: 1.8rem;
  font-family: var(--f-loud); font-weight: 600; font-size: .9rem;
}
.nav__links a { color: var(--cream-d); transition: color .2s; position: relative; }
.nav__links a:hover { color: var(--sun); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--hot), var(--sun)); transition: width .25s; border-radius: 2px;
}
.nav__links a:hover::after { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(2rem, 6vh, 5rem) clamp(1.2rem, 4vw, 2.5rem) 3rem;
  min-height: 88vh; display: flex; flex-direction: column; justify-content: center;
  text-align: center; align-items: center;
}
.sunburst {
  position: absolute; top: 8%; left: 50%; transform: translateX(-50%);
  width: min(900px, 120vw); aspect-ratio: 1; z-index: -1; opacity: .5;
  animation: spin 60s linear infinite;
  filter: blur(.3px);
}
.sunburst svg { width: 100%; height: 100%; }
@keyframes spin { to { transform: translateX(-50%) rotate(360deg); } }

.hero__kicker {
  display: inline-flex; align-items: center; gap: .7rem; flex-wrap: wrap; justify-content: center;
  font-family: var(--f-loud); font-weight: 700; font-size: .92rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--cream);
  margin-bottom: 1.3rem;
  animation: fadeUp .8s .1s both;
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 900; font-style: italic;
  font-size: clamp(2.6rem, 13.5vw, 14rem);
  line-height: .82; letter-spacing: -.02em;
}
.hero__title .holo { display: block; }
.line1 { animation: fadeUp .9s .15s both; }
.line2 { animation: fadeUp .9s .28s both; }
.holo {
  background: linear-gradient(100deg, var(--hot), var(--tang) 22%, var(--sun) 42%, var(--cyan) 62%, var(--violet) 82%, var(--hot));
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: holo 7s linear infinite, fadeUp .9s both;
  filter: drop-shadow(0 6px 30px rgba(255,46,154,.35));
}
.line2.holo { animation: holo 7s linear infinite, fadeUp .9s .28s both; }
@keyframes holo { to { background-position: 250% 0; } }

.hero__tag {
  max-width: 46ch; margin: 1.8rem auto 0;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem); color: var(--cream-d);
  animation: fadeUp .9s .4s both;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; justify-content: center; animation: fadeUp .9s .52s both; }
.hero__strip {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: 2.5rem;
  animation: fadeUp .9s .64s both;
}
.hero__strip span {
  font-family: var(--f-loud); font-weight: 600; font-size: .85rem;
  padding: .5rem 1rem; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--glass-b);
  backdrop-filter: blur(6px);
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

.eq { display: inline-flex; align-items: flex-end; gap: 3px; height: 16px; }
.eq i { width: 3px; background: var(--sun); border-radius: 2px; animation: eq 1s ease-in-out infinite; box-shadow: 0 0 6px var(--sun); }
.eq i:nth-child(1){height:40%;animation-delay:-.8s}
.eq i:nth-child(2){height:90%;animation-delay:-.4s}
.eq i:nth-child(3){height:60%;animation-delay:-.6s}
.eq i:nth-child(4){height:100%;animation-delay:-.2s}
.eq i:nth-child(5){height:50%;animation-delay:-.5s}
@keyframes eq { 0%,100%{transform:scaleY(.3)} 50%{transform:scaleY(1)} }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; padding: .8rem 0; transform: rotate(-1.5deg) scale(1.04);
  background: linear-gradient(90deg, var(--hot), var(--violet), var(--cyan), var(--tang), var(--hot));
  background-size: 300% 100%; animation: meshmove 12s linear infinite;
  border-top: 2px solid rgba(255,255,255,.25); border-bottom: 2px solid rgba(255,255,255,.25);
  box-shadow: 0 0 40px rgba(255,46,154,.4);
}
@keyframes meshmove { to { background-position: 300% 0; } }
.marquee__track { display: flex; width: max-content; animation: marquee 20s linear infinite; }
.marquee__track span {
  font-family: var(--f-display); font-weight: 900; font-style: italic;
  font-size: 1.6rem; padding-right: 1.5rem; white-space: nowrap; color: #fff;
  text-shadow: 0 2px 0 rgba(0,0,0,.18);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- About ---------- */
.about {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(4rem, 11vh, 7rem) clamp(1.2rem, 4vw, 2.5rem);
  display: grid; grid-template-columns: .85fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.about__media { position: relative; }
.about__badge {
  position: absolute; right: -26px; bottom: -26px;
  width: 128px; height: 128px; border-radius: 50%;
  background: var(--plum-2); border: 2px solid var(--glass-b);
  display: grid; place-items: center; box-shadow: 0 0 30px rgba(162,59,255,.5);
}
.about__badge-spin { width: 100%; height: 100%; animation: spinb 16s linear infinite; }
.about__badge-spin text { font-family: var(--f-loud); font-weight: 700; font-size: 8px; letter-spacing: .04em; fill: var(--cream); }
.about__badge-core { position: absolute; font-size: 1.5rem; }
@keyframes spinb { to { transform: rotate(360deg); } }

.about__copy h2, .services__head h2, .gallery__head h2, .book__copy h2 {
  font-family: var(--f-display); font-weight: 900; font-style: italic;
  font-size: clamp(2.3rem, 4.6vw, 3.8rem); line-height: 1.02; margin-bottom: 1.4rem;
  letter-spacing: -.01em;
}
.about__copy p { color: var(--cream-d); margin-bottom: 1.1rem; max-width: 52ch; }

.stats {
  display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 2.5rem;
  border-top: 1.5px solid var(--glass-b); padding-top: 2rem;
}
.stat { display: flex; flex-direction: column; }
.stat__value { display: flex; align-items: baseline; line-height: 1; }
.stat__num, .stat__plus {
  font-family: var(--f-display); font-weight: 900; font-style: italic;
  font-size: clamp(2.4rem, 4.4vw, 3.4rem); line-height: 1;
  background: linear-gradient(120deg, var(--sun), var(--hot));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat__label {
  display: block;
  font-family: var(--f-loud); font-weight: 600; font-size: .76rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--cream-d); margin-top: .6rem;
}

/* ---------- Placeholders ---------- */
.ph {
  position: relative; overflow: hidden; border-radius: 14px;
  border: 1.5px solid var(--glass-b);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, rgba(255,46,154,.25), rgba(162,59,255,.25) 50%, rgba(31,224,208,.25));
  display: grid; place-items: center;
  backdrop-filter: blur(2px);
}
.ph::before {
  content: attr(data-ph);
  font-family: var(--f-loud); font-weight: 600; font-size: .8rem; letter-spacing: .02em;
  color: var(--cream); text-align: center; padding: 1rem; max-width: 82%;
}
.ph__tag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--f-loud); font-weight: 700; font-size: .62rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--plum);
  background: var(--sun); padding: .28rem .55rem; border-radius: 999px;
}
.ph--portrait { aspect-ratio: 4 / 5; box-shadow: 0 24px 60px -20px rgba(255,46,154,.55); }

/* ---------- Services ---------- */
.services { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 8vh, 6rem) clamp(1.2rem, 4vw, 2.5rem); }
.services__head h2 { font-size: clamp(2.6rem, 6vw, 5rem); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 3rem; }
.card {
  position: relative; padding: 2rem 1.5rem 4.5rem; min-height: 300px;
  border-radius: 18px; border: 1.5px solid var(--glass-b);
  background: var(--glass); backdrop-filter: blur(10px);
  overflow: hidden; transition: transform .3s cubic-bezier(.2,.9,.2,1), box-shadow .3s;
}
.card::before {
  content: ""; position: absolute; inset: 0; opacity: .9; z-index: -1;
  background: linear-gradient(160deg, transparent 40%, var(--g, var(--hot)) 140%);
}
.c1 { --g: rgba(255,46,154,.5); }
.c2 { --g: rgba(255,106,19,.5); }
.c3 { --g: rgba(162,59,255,.55); }
.c4 { --g: rgba(31,224,208,.5); }
.card:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: 0 24px 50px -16px rgba(255,46,154,.5); }
.card__emoji { font-size: 2.2rem; display: block; }
.card__no { position: absolute; top: 1.6rem; right: 1.6rem; font-family: var(--f-loud); font-weight: 800; color: var(--sun); }
.card h3 { font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; line-height: 1.05; margin: 1rem 0 .8rem; }
.card p { font-size: .94rem; color: var(--cream-d); }
.card__arrow { position: absolute; left: 1.5rem; bottom: 1.5rem; font-size: 1.4rem; color: var(--sun); transition: transform .3s; }
.card:hover .card__arrow { transform: translate(5px,-5px); }

/* ---------- Gallery ---------- */
.gallery { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 8vh, 6rem) clamp(1.2rem, 4vw, 2.5rem); }
.gallery__head h2 { font-size: clamp(2.6rem, 6vw, 5rem); }
.gallery__lead { color: var(--cream-d); max-width: 48ch; margin-top: 1rem; }
.grid { display: grid; gap: 16px; margin-top: 2.5rem; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; }
.grid .ph { transition: transform .4s cubic-bezier(.2,.9,.2,1); }
.grid .ph:hover { transform: scale(1.03) rotate(1deg); border-color: var(--sun); box-shadow: 0 20px 44px -18px rgba(255,210,63,.6); }
.g1 { grid-column: span 2; grid-row: span 2; }
.g2 { grid-column: span 2; }
.g3 { grid-column: span 1; }
.g4 { grid-column: span 1; }
.g5 { grid-column: span 2; }

/* ---------- Testimonials ---------- */
.words { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 8vh, 6rem) clamp(1.2rem, 4vw, 2.5rem); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 1rem; }
.quote {
  position: relative; padding: 2.2rem 1.8rem; border-radius: 18px;
  border: 1.5px solid var(--glass-b); background: var(--glass); backdrop-filter: blur(10px);
  transition: transform .3s, box-shadow .3s;
}
.q1 { box-shadow: inset 0 -3px 0 var(--hot); }
.q2 { box-shadow: inset 0 -3px 0 var(--sun); }
.q3 { box-shadow: inset 0 -3px 0 var(--cyan); }
.quote::before { content: "“"; position: absolute; top: .1rem; right: 1.1rem; font-family: var(--f-display); font-weight: 900; font-size: 5rem; color: var(--sun); opacity: .4; }
.quote:hover { transform: translateY(-6px) rotate(1deg); box-shadow: 0 22px 46px -18px rgba(162,59,255,.5); }
.quote p { font-size: 1.1rem; line-height: 1.5; font-family: var(--f-display); font-style: italic; }
.quote footer { margin-top: 1.4rem; font-family: var(--f-loud); font-weight: 700; font-size: .9rem; }
.quote footer span { display: block; color: var(--cream-d); font-weight: 400; margin-top: .2rem; }

/* ---------- Booking ---------- */
.book { position: relative; }
.book__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(4rem, 10vh, 7rem) clamp(1.2rem, 4vw, 2.5rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start;
}
.book__copy h2 { font-size: clamp(2.6rem, 5vw, 4.6rem); }
.book__copy > p { color: var(--cream-d); max-width: 42ch; }
.book__contact { list-style: none; margin-top: 2.2rem; display: grid; gap: 1rem; }
.book__contact li { display: flex; align-items: baseline; gap: 1.2rem; border-bottom: 1.5px solid var(--glass-b); padding-bottom: 1rem; }
.book__contact span { font-family: var(--f-loud); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--sun); min-width: 54px; }
.book__contact a { font-size: 1.08rem; transition: color .2s; }
.book__contact a:hover { color: var(--hot); }

.book__form { border-radius: 22px; padding: 2.2rem; border: 1.5px solid var(--glass-b); background: var(--glass); backdrop-filter: blur(14px); box-shadow: 0 30px 70px -30px rgba(255,46,154,.6); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-family: var(--f-loud); font-weight: 600; font-size: .76rem; letter-spacing: .04em; text-transform: uppercase; color: var(--cream-d); margin-bottom: .5rem; }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(0,0,0,.25); border: 1.5px solid var(--glass-b);
  border-radius: 12px; padding: .85rem .95rem; color: var(--cream);
  font-family: var(--f-body); font-size: .96rem; transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(231,201,230,.5); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--hot); box-shadow: 0 0 0 4px rgba(255,46,154,.18); }
.field textarea { resize: vertical; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.book__note { text-align: center; font-family: var(--f-loud); font-size: .72rem; color: var(--cream-d); margin-top: 1rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1.5px solid var(--glass-b); overflow: hidden; margin-top: 2rem; }
.footer__big {
  font-family: var(--f-display); font-weight: 900; font-style: italic;
  font-size: clamp(1.3rem, 8vw, 10rem); line-height: .82; text-align: center;
  padding: 2.5rem 0.75rem 1rem; white-space: nowrap; max-width: 100%;
  background: linear-gradient(100deg, var(--hot), var(--tang), var(--sun), var(--cyan), var(--violet));
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: holo 8s linear infinite;
}
.footer__row {
  max-width: var(--maxw); margin: 0 auto;
  padding: 1.5rem clamp(1.2rem, 4vw, 2.5rem);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  border-top: 1.5px solid var(--glass-b);
  font-family: var(--f-loud); font-size: .82rem; color: var(--cream-d);
}
.footer__social { display: flex; gap: 1.6rem; }
.footer__social a:hover { color: var(--sun); }
.footer__credit { text-align: center; font-family: var(--f-loud); font-size: .7rem; color: var(--cream-d); opacity: .55; padding-bottom: 2rem; }

/* Tighter, consistent top padding so anchor-nav lands headings just below
   the sticky nav (keeps the generous spacing on the bottom of each section). */
.about, .services, .gallery, .words, .book__inner {
  padding-top: clamp(2.5rem, 5vh, 3.5rem);
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.85,.2,1); transition-delay: var(--d, 0s); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .bg-mesh, .sunburst, .marquee__track, .marquee, .eq i, .holo, .footer__big, .about__badge-spin, .spark { animation: none !important; }
  .holo, .footer__big, .stat__num, .stat__plus { -webkit-text-fill-color: var(--sun); }
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .nav__links { display: none; }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 380px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .g1, .g5 { grid-column: span 2; }
  .quotes { grid-template-columns: 1fr; }
  .book__inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cards { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .g1, .g2, .g5 { grid-column: span 1; }
  .field--row { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; width: 100%; }
  .btn { justify-content: center; }
  .footer__row { justify-content: center; text-align: center; }
  /* keep all three stats on one row on phones */
  .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; align-items: start; }
  .stat__num, .stat__plus { font-size: clamp(1.5rem, 7.5vw, 2.1rem); }
  .stat__label { font-size: .58rem; letter-spacing: .02em; margin-top: .4rem; }
}
