/* ============ FONTS ============ */
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/anton-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/space-grotesk-latin.woff2') format('woff2');
}

/* ============ TOKENS / RESET ============ */
:root {
  --ink: #070706;
  --ink-2: #0d0d0b;
  --emerald: #10b981;
  --emerald-bright: #34d399;
  --emerald-deep: #053a2b;
  --cream: #f2ead9;
  --cream-dim: rgba(242, 234, 217, 0.55);
  --display: 'Anton', Impact, sans-serif;
  --body: 'Space Grotesk', 'Segoe UI', sans-serif;
  --pad: clamp(1.25rem, 4vw, 4rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scrollbar-width: thin; scrollbar-color: var(--emerald) var(--ink); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--emerald); color: var(--ink); }

a { color: inherit; text-decoration: none; }
.accent { color: var(--emerald-bright); }

/* ============ GRAIN ============ */
.grain {
  position: fixed; inset: -100px; z-index: 90; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.055;
  animation: grainShift 0.9s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-40px, 30px); }
  50% { transform: translate(30px, -50px); }
  75% { transform: translate(-30px, -20px); }
  100% { transform: translate(0, 0); }
}

/* ============ LOADER ============ */
.loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink);
  display: grid; place-items: center;
  transition: opacity 0.7s ease, visibility 0.7s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; }
.loader__word {
  font-family: var(--display);
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  letter-spacing: 0.35em;
  color: var(--cream);
}
.loader__bar {
  display: block; width: min(46vw, 300px); height: 1px;
  background: rgba(242, 234, 217, 0.15); margin: 1.4rem auto 0;
}
.loader__fill { display: block; width: 0%; height: 100%; background: var(--emerald-bright); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--pad);
  mix-blend-mode: normal;
}
.nav__logo {
  font-family: var(--display);
  font-size: 1.15rem; letter-spacing: 0.09em;
}
.nav__links { display: flex; gap: 1.8rem; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; }
.nav__links a { color: var(--cream-dim); transition: color 0.25s; position: relative; }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0;
  background: var(--emerald-bright); transition: width 0.3s ease;
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }

.btn {
  display: inline-block; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.85em 1.9em; border: 1px solid var(--emerald);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.btn--pill { border-radius: 100px; color: var(--emerald-bright); }
.btn--pill:hover { background: var(--emerald); color: var(--ink); }
.btn--solid { background: var(--emerald); color: var(--ink); border-radius: 100px; font-weight: 700; }
.btn--solid:hover { background: var(--emerald-bright); transform: translateY(-3px); }
.btn--ghost { border-radius: 100px; color: var(--cream); border-color: rgba(242, 234, 217, 0.3); }
.btn--ghost:hover { border-color: var(--cream); transform: translateY(-3px); }

/* ============ HERO ============ */
.hero { height: 100vh; height: calc(var(--vh, 1vh) * 100); position: relative; }
.hero__stage { position: absolute; inset: 0; overflow: hidden; }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero__vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 45%, transparent 40%, rgba(7, 7, 6, 0.85) 100%);
}
.hero__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; pointer-events: none;
}
.hero__kicker {
  font-size: clamp(0.65rem, 1.1vw, 0.85rem); letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--emerald-bright); margin-bottom: 1.2rem;
}
.hero__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.3rem, 7.6vw, 8rem);
  line-height: 1; letter-spacing: 0.015em;
  color: var(--cream);
  -webkit-text-stroke: 1.5px rgba(7, 7, 6, 0.55);
  text-shadow:
    0 4px 34px rgba(7, 7, 6, 0.85),
    0 0 90px rgba(16, 185, 129, 0.3);
}
.hero__line { display: block; white-space: nowrap; }
.hero__line .ch { display: inline-block; will-change: transform, opacity; }
.hero__sub {
  margin-top: 1.5rem; font-size: clamp(0.7rem, 1.15vw, 0.95rem);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-dim);
  min-height: 1.4em; max-width: min(92vw, 920px); line-height: 1.8;
}
.caret {
  display: inline-block; width: 2px; height: 1em; background: var(--emerald-bright);
  vertical-align: -0.15em; margin-left: 4px; animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero__scrollhint {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--cream-dim);
}
.hero__scrollline { width: 1px; height: 52px; background: linear-gradient(var(--emerald-bright), transparent); animation: drop 1.8s ease-in-out infinite; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============ SECTION BASICS ============ */
.section-kicker {
  font-size: 0.75rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--emerald-bright); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 7.5rem); line-height: 0.95;
}

/* ============ STATS ============ */
.stats { padding: clamp(5rem, 12vh, 9rem) var(--pad); border-top: 1px solid rgba(242, 234, 217, 0.08); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  max-width: 1400px; margin: 0 auto;
}
.stat { text-align: center; position: relative; }
.stat:not(:first-child)::before {
  content: ''; position: absolute; left: -1rem; top: 15%; height: 70%; width: 1px;
  background: rgba(242, 234, 217, 0.1);
}
.stat__num {
  font-family: var(--display); display: block;
  font-size: clamp(3rem, 7.5vw, 6.5rem); line-height: 1;
  color: var(--cream);
}
.stat__num .suffix { color: var(--emerald-bright); }
.stat__label {
  display: block; margin-top: 0.8rem; font-size: 0.72rem;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--cream-dim);
}

/* ============ TICKER ============ */
.ticker {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(242, 234, 217, 0.08);
  border-bottom: 1px solid rgba(242, 234, 217, 0.08);
  padding: 1.1rem 0; background: var(--ink-2);
}
.ticker__track {
  display: inline-flex; will-change: transform;
  font-family: var(--display); font-size: clamp(1.6rem, 3.5vw, 3rem);
  color: transparent; -webkit-text-stroke: 1px rgba(242, 234, 217, 0.45);
  text-transform: uppercase;
}

/* ============ QUOTE ============ */
.quote {
  padding: clamp(7rem, 18vh, 13rem) var(--pad);
  max-width: 1200px; margin: 0 auto; text-align: center;
}
.quote__text {
  font-family: var(--body); font-weight: 300;
  font-size: clamp(1.5rem, 3.6vw, 3rem); line-height: 1.35;
}
.quote__text .w { display: inline-block; opacity: 0.12; transition: opacity 0.3s; }
.quote__text em { font-style: normal; color: var(--emerald-bright); }
.quote__by {
  margin-top: 2.5rem; font-size: 0.78rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--cream-dim);
}

/* ============ SCENE (shared canvas/video backdrops) ============ */
.scene-canvas, .scene-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.scene-video { display: none; }
.scene-video.active { display: block; }
.scene-shade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(rgba(7,7,6,0.55), rgba(7,7,6,0.25) 30%, rgba(7,7,6,0.25) 70%, rgba(7,7,6,0.75)),
    radial-gradient(ellipse at 50% 50%, transparent 45%, rgba(7,7,6,0.8) 100%);
}

/* ============ SERVICES ============ */
.services { position: relative; }
.services__stage { height: 100vh; height: calc(var(--vh, 1vh) * 100); position: relative; overflow: hidden; }
.services__head {
  position: absolute; top: clamp(4.2rem, 9vh, 6.5rem); left: var(--pad); z-index: 3;
}
.services__list {
  position: absolute; left: var(--pad); right: var(--pad); bottom: clamp(2rem, 6vh, 4rem); z-index: 3;
  display: flex; flex-direction: column;
}
.service {
  display: grid;
  grid-template-columns: clamp(3rem, 6vw, 6rem) 1fr minmax(0, 34ch);
  align-items: baseline; column-gap: clamp(1rem, 2.5vw, 2.5rem);
  border-top: 1px solid rgba(242, 234, 217, 0.18);
  padding: clamp(0.7rem, 1.6vh, 1.2rem) 0;
  opacity: 0; transform: translateY(56px);
  will-change: transform, opacity;
  transition: background 0.3s, padding-left 0.3s;
}
.service:hover { background: rgba(16, 185, 129, 0.05); padding-left: 0.6rem; }
.service__idx { font-size: 0.8rem; letter-spacing: 0.3em; color: var(--emerald-bright); }
.service__name {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.3rem, 3.4vw, 3rem); line-height: 1.02; letter-spacing: 0.01em;
}
.service__desc { font-size: clamp(0.8rem, 1vw, 0.95rem); line-height: 1.55; color: var(--cream-dim); text-align: right; }

/* ============ MILESTONES ============ */
.milestones { position: relative; background: var(--ink-2); }
.milestones__pin { height: 100vh; height: calc(var(--vh, 1vh) * 100); overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.milestones__head { padding: 0 var(--pad); margin-bottom: clamp(2rem, 6vh, 4.5rem); }
.milestones__track {
  display: flex; gap: clamp(1.5rem, 3vw, 3rem);
  padding: 66px var(--pad) 0; will-change: transform; width: max-content;
  position: relative;
}

/* journey line + nodes */
.mile-line {
  position: absolute; top: 32px; left: 0; right: 0; height: 2px;
  background: rgba(242, 234, 217, 0.1);
}
.mile-line__fill {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-bright));
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.55);
  transform: scaleX(0); transform-origin: left center;
  will-change: transform;
}
.mile { position: relative; }
.mile__node {
  position: absolute; top: -41px; left: 1.4rem;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--ink); border: 2px solid rgba(242, 234, 217, 0.3);
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}
.mile__node::after {
  content: ''; position: absolute; left: 50%; top: 15px;
  width: 1px; height: 22px;
  background: linear-gradient(rgba(52, 211, 153, 0.5), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.mile__node.on {
  background: var(--emerald-bright); border-color: var(--emerald-bright);
  box-shadow: 0 0 16px rgba(52, 211, 153, 0.8);
  transform: scale(1.15);
}
.mile__node.on::after { opacity: 1; }
.mile__tag {
  display: inline-block; font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--emerald-bright); border: 1px solid rgba(16, 185, 129, 0.5);
  border-radius: 100px; padding: 0.25em 0.9em; margin-bottom: 0.7rem;
}
.mile {
  flex: 0 0 auto; width: clamp(260px, 30vw, 420px);
  border: 1px solid rgba(242, 234, 217, 0.12);
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  background: rgba(7, 7, 6, 0.5);
  transition: border-color 0.3s;
}
.mile:hover { border-color: var(--emerald); }
.mile__year {
  font-family: var(--display); font-size: clamp(2rem, 4.5vw, 4rem);
  color: transparent; -webkit-text-stroke: 1.5px var(--emerald-bright);
  display: block; line-height: 1;
}
.mile h3 { font-family: var(--display); font-weight: 400; font-size: clamp(1.1rem, 1.8vw, 1.6rem); margin: 1.1rem 0 0.7rem; letter-spacing: 0.02em; }
.mile p { color: var(--cream-dim); font-size: 0.92rem; line-height: 1.6; }
.mile--accent { background: rgba(16, 185, 129, 0.08); border-color: rgba(16, 185, 129, 0.45); }
.mile--accent .mile__year { -webkit-text-stroke: 0; color: var(--emerald-bright); }

/* ============ WORK ============ */
.work { position: relative; }
.work__stage { min-height: 100vh; position: relative; overflow: hidden; }
.work__inner { position: relative; z-index: 3; padding: clamp(5rem, 12vh, 8rem) var(--pad); }
.work__head { margin-bottom: clamp(3rem, 8vh, 5rem); }
.work__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
  max-width: 1200px;
}
.card {
  position: relative; display: block;
  border: 1px solid rgba(242, 234, 217, 0.14);
  background: rgba(7, 7, 6, 0.55); backdrop-filter: blur(6px);
  padding: clamp(1.6rem, 2.6vw, 2.8rem);
  min-height: clamp(280px, 40vh, 400px);
  display: flex; flex-direction: column;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s, background 0.45s;
  will-change: transform;
}
.card:hover {
  transform: translateY(-14px) rotate(-0.6deg);
  border-color: var(--emerald);
  background: rgba(9, 16, 12, 0.75);
}
.card__year { font-size: 0.75rem; letter-spacing: 0.35em; color: var(--emerald-bright); }
.card__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.6rem); line-height: 1; margin: 1.2rem 0 1rem;
}
.card__pitch { color: var(--cream-dim); font-size: 0.95rem; line-height: 1.65; flex: 1; }
.card__arrow {
  font-size: 1.6rem; color: var(--emerald-bright); margin-top: 1.6rem;
  display: inline-block; transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover .card__arrow { transform: translateX(12px); }

/* ============ AWARDS ============ */
.awards { padding: clamp(6rem, 14vh, 10rem) 0 clamp(4rem, 10vh, 7rem); overflow: hidden; }
.awards__head { padding: 0 var(--pad); margin-bottom: clamp(2.5rem, 6vh, 4rem); }
.awards__marquee { overflow: hidden; white-space: nowrap; padding: 1.4rem 0; border-top: 1px solid rgba(242, 234, 217, 0.08); }
.awards__marquee:last-child { border-bottom: 1px solid rgba(242, 234, 217, 0.08); }
.awards__row {
  display: inline-flex; align-items: center; gap: 2.2rem; padding-right: 2.2rem;
  font-size: clamp(0.95rem, 1.6vw, 1.3rem); color: var(--cream-dim); will-change: transform;
}
.awards__row i { color: var(--emerald-bright); font-style: normal; font-size: 0.8em; }
.awards__row span { transition: color 0.3s; }
.awards__row span:hover { color: var(--cream); }

/* ============ FINALE ============ */
.finale {
  min-height: 90vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: clamp(6rem, 15vh, 10rem) var(--pad);
  background: radial-gradient(ellipse at 50% 120%, rgba(16, 185, 129, 0.12), transparent 60%);
}
.finale__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(3rem, 11vw, 11rem); line-height: 0.95;
  margin: 1rem 0 1.8rem;
}
.finale__title .w { display: inline-block; will-change: transform, opacity; }
.finale__sub { color: var(--cream-dim); letter-spacing: 0.12em; font-size: clamp(0.9rem, 1.4vw, 1.1rem); margin-bottom: 3rem; }
.finale__btns { display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
.finale__btns .btn { font-size: 0.9rem; padding: 1.1em 2.6em; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid rgba(242, 234, 217, 0.1); padding: clamp(3rem, 8vh, 5rem) var(--pad) 1.5rem; overflow: hidden; }
.footer__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 2.2rem;
  max-width: 1500px; margin: 0 auto;
}
.footer__col h4 {
  font-size: 0.72rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--emerald-bright); margin-bottom: 1rem; font-weight: 500;
}
.footer__col p { font-size: 0.9rem; line-height: 1.75; color: var(--cream-dim); }
.footer__col p + p { margin-top: 0.9rem; }
.footer__col .note {
  display: block; margin-top: 0.25rem;
  font-size: 0.75rem; letter-spacing: 0.08em;
  color: var(--emerald-bright);
}

/* clickable mini-map card → Google Maps */
.footer__map {
  position: relative; display: block; height: 176px;
  border: 1px solid rgba(52, 211, 153, 0.35); border-radius: 10px;
  overflow: hidden; background: var(--ink-2);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.footer__map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(242, 234, 217, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 234, 217, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.footer__map-grid::before, .footer__map-grid::after {
  content: ''; position: absolute; background: rgba(242, 234, 217, 0.1);
}
.footer__map-grid::before { left: 22%; top: -10%; bottom: -10%; width: 3px; transform: rotate(9deg); }
.footer__map-grid::after { top: 64%; left: -5%; right: -5%; height: 3px; transform: rotate(-4deg); }
.footer__map-pin {
  position: absolute; left: 50%; top: 40%; transform: translate(-50%, -60%);
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.6));
}
.footer__map-pin::after {
  content: ''; position: absolute; left: 50%; top: 82%;
  width: 26px; height: 26px; border: 2px solid rgba(52, 211, 153, 0.5);
  border-radius: 50%; transform: translate(-50%, -50%);
  animation: mapPulse 2.2s ease-out infinite;
}
@keyframes mapPulse {
  0% { transform: translate(-50%, -50%) scale(0.4); opacity: 0.9; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}
.footer__map-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.55rem 0.6rem; text-align: center;
  font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--emerald-bright);
  background: linear-gradient(transparent, rgba(7, 7, 6, 0.92) 45%);
}
.footer__map:hover {
  border-color: var(--emerald); transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(16, 185, 129, 0.18);
}
.footer__col a { border-bottom: 1px solid transparent; transition: color 0.25s, border-color 0.25s; }
.footer__col a:hover { color: var(--cream); border-color: var(--emerald); }
.footer__giant {
  font-family: var(--display); text-align: center;
  font-size: clamp(4rem, 13.5vw, 14.5rem); line-height: 1;
  margin: clamp(3rem, 8vh, 5rem) auto 1rem;
  color: transparent; -webkit-text-stroke: 1.5px rgba(242, 234, 217, 0.22);
  white-space: nowrap;
  transition: -webkit-text-stroke-color 0.5s;
}
.footer__giant:hover { -webkit-text-stroke-color: rgba(52, 211, 153, 0.5); }
.footer__base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem;
  padding-top: 1.4rem; border-top: 1px solid rgba(242, 234, 217, 0.08);
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(242, 234, 217, 0.35);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  /* the animated grain layer and glass blur are the two most
     expensive things a phone GPU can be asked to do — drop them */
  .grain { display: none; }
  .card { backdrop-filter: none; background: rgba(10, 10, 9, 0.88); }
  .nav__links { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 1.5rem; }
  .stat:nth-child(3)::before { display: none; }
  .service { grid-template-columns: 2.4rem 1fr; }
  .service__desc { display: none; }
  .work__cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__giant { font-size: 13vw; }
}

/* phones */
@media (max-width: 560px) {
  .nav { padding: 0.85rem 1rem; }
  .nav__logo { font-size: 0.95rem; }
  .btn--pill { font-size: 0.66rem; padding: 0.7em 1.2em; letter-spacing: 0.1em; }
  .hero__kicker { font-size: 0.6rem; letter-spacing: 0.34em; }
  .hero__title { font-size: clamp(1.9rem, 10.4vw, 3.4rem); }
  .hero__sub {
    font-size: 0.62rem; letter-spacing: 0.12em; line-height: 1.9;
    padding: 0 4vw; margin-top: 1.1rem;
  }
  .hero__scrollhint { bottom: 1.4rem; }
  .section-title { font-size: clamp(2.1rem, 11vw, 3.4rem); }
  .stat__num { font-size: 3.2rem; }
  .quote__text { font-size: clamp(1.25rem, 5.8vw, 1.9rem); }
  .service__name { font-size: clamp(1.15rem, 6vw, 1.9rem); }
  .services__list { bottom: 1.4rem; }
  .mile { width: min(78vw, 330px); padding: 1.3rem; }
  .card { min-height: 240px; }
  .finale__title { font-size: clamp(2.3rem, 12.5vw, 4.2rem); }
  .finale__btns .btn { font-size: 0.78rem; padding: 1em 2em; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .grain, .hero__scrollline, .caret, .footer__map-pin::after { animation: none; }
}
