/* ============================================================
   ДИГИНГ 94 ЕООД - Design System
   Style: Exaggerated Minimalism / European Engineering
   Palette: Deep Navy + Champagne Gold (от реалния бранд)
   Type: Oswald (display, кирилица) + Manrope (body, кирилица)
   ============================================================ */

:root {
  /* Цветове от бранда */
  --navy-950: #081625;
  --navy-900: #0C2036;
  --navy-800: #123153;
  --navy-700: #1A4270;
  --steel-500: #3B76B5;
  --steel-300: #7FA9D4;
  --gold-500: #C89B4B;
  --gold-400: #D4B06A;
  --gold-300: #E3C88F;
  --sand-50: #F8F6F1;
  --sand-100: #F0EBE0;
  --sand-200: #E2DAC9;
  --ink-900: #10151D;
  --ink-600: #46505E;
  --ink-400: #6B7686;
  --white: #FFFFFF;
  --danger: #C0392B;

  /* Семантични токени */
  --bg: var(--sand-50);
  --surface: var(--white);
  --text: var(--ink-900);
  --text-muted: var(--ink-600);
  --accent: var(--gold-500);
  --accent-strong: #A87E33;

  /* Типография */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Manrope', 'Helvetica Neue', Arial, sans-serif;

  /* Скали */
  --radius: 6px;
  --radius-lg: 14px;
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --shadow-1: 0 2px 10px rgba(8, 22, 37, .07);
  --shadow-2: 0 14px 44px rgba(8, 22, 37, .16);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  /* Z-index скала */
  --z-header: 100;
  --z-drawer: 200;
  --z-sticky-cta: 150;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--steel-500); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--navy-900); color: #fff; padding: .75rem 1.25rem;
}
.skip-link:focus { left: 0; }

/* ---------- Типография ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: .01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2.6vw, 1.6rem); font-weight: 500; }
h4 { font-family: var(--font-body); font-weight: 800; font-size: 1.05rem; }
p { max-width: 65ch; }
.lead { font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: var(--text-muted); font-weight: 500; }

.overline {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--font-body); font-weight: 800;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-strong);
}
.overline::before {
  content: ""; width: 2.4rem; height: 2px; background: var(--gold-500); flex: none;
}
.on-dark .overline, .overline.on-dark { color: var(--gold-400); }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section-head { margin-bottom: clamp(2.25rem, 5vw, 3.5rem); display: grid; gap: 1rem; }
.section-head p { margin-top: .25rem; }

.grid-2 { display: grid; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.bg-navy { background: var(--navy-900); color: #E9EEF5; }
.bg-navy-deep { background: var(--navy-950); color: #E9EEF5; }
.bg-sand { background: var(--sand-100); }
.bg-navy p, .bg-navy-deep p { color: #B9C6D6; }
.bg-navy h2, .bg-navy h3, .bg-navy-deep h2, .bg-navy-deep h3 { color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  transition: background .3s ease, box-shadow .3s ease, transform .35s var(--ease-out);
  background: linear-gradient(180deg, rgba(8,22,37,.72), rgba(8,22,37,0));
}
/* Без backdrop-filter тук: той прави хедъра containing block за
   fixed мобилното меню и го отрязва до височината на хедъра */
.site-header.is-solid {
  background: rgba(8, 22, 37, .97);
  box-shadow: 0 1px 0 rgba(255,255,255,.08), var(--shadow-1);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 76px;
}
.brand { display: flex; align-items: center; gap: .7rem; color: #fff; }
.brand-mark { width: 42px; height: 42px; flex: none; }
.brand-name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.35rem;
  text-transform: uppercase; letter-spacing: .04em; line-height: 1;
  color: var(--gold-400);
}
.brand-sub {
  display: block; font-family: var(--font-body); font-weight: 700;
  font-size: .6rem; letter-spacing: .34em; color: #A9B8CA; margin-top: .3rem;
}

.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav > a {
  padding: .65rem .9rem; color: #DCE5EF; font-weight: 600; font-size: .95rem;
  border-radius: var(--radius); transition: color .2s, background .2s;
}
.main-nav > a:hover { color: #fff; background: rgba(255,255,255,.08); }
.main-nav > a.active { color: var(--gold-400); }

.nav-cta {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--gold-500); color: var(--navy-950);
  font-weight: 800; font-size: .95rem; padding: .7rem 1.3rem;
  border-radius: var(--radius); margin-left: .75rem;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--gold-400); transform: translateY(-1px); }
.nav-cta svg { width: 17px; height: 17px; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: var(--radius); color: #fff; align-items: center; justify-content: center; }
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .main-nav {
    position: fixed; inset: 0; z-index: var(--z-drawer);
    flex-direction: column; justify-content: center; gap: .4rem;
    background: rgba(8, 22, 37, .98); backdrop-filter: blur(8px);
    opacity: 0; pointer-events: none; transition: opacity .3s ease;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .main-nav > a { font-size: 1.35rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; padding: .9rem 1.5rem; }
  .nav-cta { margin: 1rem 0 0; font-size: 1.05rem; padding: .95rem 1.8rem; }
  .nav-toggle { display: inline-flex; position: relative; z-index: calc(var(--z-drawer) + 1); }
}

/* ---------- Бутони ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-weight: 800; font-size: 1rem; letter-spacing: .015em;
  padding: 1rem 1.9rem; border-radius: var(--radius);
  transition: transform .2s var(--ease-out), background .2s, box-shadow .2s, color .2s;
  min-height: 52px;
}
.btn:active { transform: scale(.97); }
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-gold { background: var(--gold-500); color: var(--navy-950); box-shadow: 0 8px 24px rgba(200, 155, 75, .35); }
.btn-gold:hover { background: var(--gold-400); transform: translateY(-2px); }
.btn-outline { border: 2px solid rgba(255,255,255,.35); color: #fff; }
.btn-outline:hover { border-color: var(--gold-400); color: var(--gold-300); transform: translateY(-2px); }
.btn-outline-dark { border: 2px solid var(--navy-800); color: var(--navy-800); }
.btn-outline-dark:hover { background: var(--navy-900); color: #fff; transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: min(92svh, 940px);
  display: flex; align-items: flex-end;
  background: var(--navy-950); color: #fff; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 68% 40%;
  will-change: transform;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(76deg, rgba(8,22,37,.94) 8%, rgba(8,22,37,.62) 44%, rgba(8,22,37,.18) 78%),
    linear-gradient(0deg, rgba(8,22,37,.88) 0%, rgba(8,22,37,0) 45%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; padding-block: clamp(6.5rem, 12vh, 9rem) clamp(3rem, 7vh, 5rem); }
.hero h1 { max-width: 15ch; color: #fff; }
.hero h1 em { font-style: normal; color: var(--gold-400); }
.hero .lead { color: #C6D2E0; max-width: 52ch; margin-top: 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero-strip {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(2.5rem, 6vh, 4.5rem); padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-fact { display: grid; gap: .15rem; }
.hero-fact strong { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--gold-400); letter-spacing: .02em; }
.hero-fact span { font-size: .85rem; font-weight: 600; color: #A9B8CA; letter-spacing: .04em; }

/* ---------- Page hero (вътрешни) ---------- */
.page-hero {
  position: relative; background: var(--navy-950); color: #fff;
  padding-block: clamp(8rem, 16vh, 11rem) clamp(3rem, 6vh, 4.5rem);
  overflow: hidden;
}
.page-hero.with-media { min-height: 62svh; display: flex; align-items: flex-end; }
.page-hero .hero-media img { object-position: center 55%; }
.page-hero h1 { color: #fff; max-width: 18ch; position: relative; z-index: 1; }
.page-hero .lead { color: #C6D2E0; position: relative; z-index: 1; margin-top: 1.2rem; }
.breadcrumbs {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: .5rem; align-items: center;
  font-size: .85rem; font-weight: 600; color: #8FA2B8; margin-bottom: 1.4rem;
}
.breadcrumbs a:hover { color: var(--gold-300); }
.breadcrumbs .sep { opacity: .5; }
.breadcrumbs [aria-current] { color: #DCE5EF; }

/* ---------- Карти услуги ---------- */
.service-card {
  position: relative; display: flex; flex-direction: column; gap: 1rem;
  background: var(--surface); border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 4px;
  background: var(--gold-500); transform: scaleY(0); transform-origin: bottom;
  transition: transform .35s var(--ease-out);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); border-color: transparent; }
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 54px; height: 54px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  background: var(--navy-900); color: var(--gold-400);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { color: var(--navy-900); }
.service-card p { font-size: .97rem; color: var(--text-muted); }
.card-link {
  margin-top: auto; display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 800; font-size: .92rem; color: var(--accent-strong);
  letter-spacing: .02em;
}
.card-link svg { width: 17px; height: 17px; transition: transform .25s var(--ease-out); }
.service-card:hover .card-link svg, .card-link:hover svg { transform: translateX(5px); }

/* ---------- Медия рамки / image reveal ---------- */
.media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-2);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.media-frame:hover img { transform: scale(1.04); }
.media-frame.tall { aspect-ratio: 3 / 4; }
.media-frame.wide { aspect-ratio: 16 / 10; }
.media-frame.square { aspect-ratio: 1; }
.media-caption {
  position: absolute; inset: auto 0 0 0; padding: 2.25rem 1.4rem 1.1rem;
  background: linear-gradient(0deg, rgba(8,22,37,.85), transparent);
  color: #fff; font-size: .85rem; font-weight: 600; letter-spacing: .03em;
}

/* ---------- Процес ---------- */
.process-grid { display: grid; gap: 1.25rem; counter-reset: step; }
@media (min-width: 700px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  position: relative; padding: 1.75rem 1.5rem 1.5rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  transition: border-color .3s, background .3s, transform .3s var(--ease-out);
}
.process-step:hover { border-color: var(--gold-500); background: rgba(255,255,255,.08); transform: translateY(-4px); }
.process-step::before {
  counter-increment: step; content: "0" counter(step);
  display: block; font-family: var(--font-display); font-size: 2.6rem; font-weight: 600;
  color: var(--gold-400); line-height: 1; margin-bottom: .9rem;
}
.process-step h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.process-step p { font-size: .92rem; }

/* ---------- Case study ---------- */
.case {
  display: grid; gap: clamp(1.75rem, 4vw, 3.5rem);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  border-top: 1px solid var(--sand-200);
}
.case:first-of-type { border-top: none; padding-top: 0; }
@media (min-width: 900px) {
  .case { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: start; }
  .case.flip > .case-body { order: 2; }
}
.case-meta {
  display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.1rem 0 1.4rem;
}
.tag {
  font-size: .74rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  color: var(--navy-800); background: var(--sand-100);
  border: 1px solid var(--sand-200); border-radius: 100px; padding: .38rem .85rem;
}
.case-body h3 { color: var(--navy-900); }
.case-section { margin-top: 1.35rem; }
.case-section h4 {
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-strong); margin-bottom: .45rem;
}
.case-section p { font-size: .98rem; color: var(--text-muted); }
.case-gallery { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
.case-gallery .media-frame:first-child:nth-last-child(odd) { grid-column: 1 / -1; }

/* ---------- Защо нас ---------- */
.feature-row { display: grid; gap: 1.25rem; }
@media (min-width: 700px) { .feature-row { grid-template-columns: repeat(2, 1fr); } }
.feature {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.4rem; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--sand-200);
}
.feature svg { width: 26px; height: 26px; flex: none; color: var(--accent-strong); margin-top: .2rem; }
.feature strong { display: block; font-size: 1.02rem; margin-bottom: .25rem; color: var(--navy-900); }
.feature p { font-size: .93rem; color: var(--text-muted); }

/* ---------- Машинен парк ---------- */
.fleet-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
  transition: border-color .3s, transform .3s var(--ease-out);
}
.fleet-card:hover { border-color: var(--gold-500); transform: translateY(-4px); }
.fleet-card .service-icon { background: rgba(212,176,106,.14); margin-bottom: 1rem; }
.fleet-card h3 { font-size: 1.15rem; }
.fleet-card p { font-size: .92rem; margin-top: .4rem; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: .85rem; max-width: 820px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg); overflow: hidden;
}
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 1.4rem; cursor: pointer; font-weight: 800; font-size: 1.02rem;
  color: var(--navy-900); list-style: none; transition: background .2s;
}
.faq-item summary:hover { background: var(--sand-50); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: none; width: 22px; height: 22px;
  background: currentColor; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .3s var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 1.4rem 1.3rem; color: var(--text-muted); font-size: .97rem; }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; overflow: hidden; }
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner::before {
  content: ""; position: absolute; inset: -40% -10% auto auto; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(200,155,75,.22), transparent 65%);
}
.cta-box {
  display: grid; gap: 1.75rem; text-align: center; justify-items: center;
}
.cta-box h2 { max-width: 22ch; }
.cta-box .lead { color: #B9C6D6; }
.cta-phone {
  font-family: var(--font-display); font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 600; color: var(--gold-400); letter-spacing: .03em;
  display: inline-flex; align-items: center; gap: .8rem;
  transition: color .2s;
}
.cta-phone:hover { color: var(--gold-300); }
.cta-phone svg { width: 1.1em; height: 1.1em; }

/* ---------- Контактна форма ---------- */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 5fr 7fr; align-items: start; } }
.contact-info { display: grid; gap: 1.25rem; }
.contact-line { display: flex; gap: 1rem; align-items: flex-start; }
.contact-line svg { width: 24px; height: 24px; flex: none; color: var(--accent-strong); margin-top: .2rem; }
.contact-line strong { display: block; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-400); margin-bottom: .2rem; }
.contact-line a { font-weight: 700; color: var(--navy-800); }
.contact-line a:hover { color: var(--accent-strong); }

.form-card {
  background: var(--surface); border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-1);
}
.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: .4rem; color: var(--navy-900); }
.field .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--text);
  padding: .85rem 1rem; min-height: 50px;
  border: 1.5px solid var(--sand-200); border-radius: var(--radius);
  background: var(--sand-50); transition: border-color .2s, background .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--steel-500); background: #fff;
}
.field .hint { font-size: .82rem; color: var(--ink-400); margin-top: .35rem; }
.form-note { font-size: .85rem; color: var(--ink-400); margin-top: 1rem; }

/* ---------- Карта ---------- */
.map-embed { border: 0; width: 100%; height: 420px; border-radius: var(--radius-lg); box-shadow: var(--shadow-1); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: #A9B8CA; font-size: .95rem; }
.footer-grid {
  display: grid; gap: 2.5rem; padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
}
@media (min-width: 820px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { transition: color .2s; }
.site-footer a:hover { color: var(--gold-300); }
.footer-brand p { margin-top: .9rem; font-size: .9rem; max-width: 34ch; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: space-between; font-size: .82rem; color: #7488A0;
}

/* ---------- Мобилен sticky call bar ---------- */
.sticky-call {
  position: fixed; inset: auto 0 0 0; z-index: var(--z-sticky-cta);
  display: none; gap: 1px; background: rgba(8,22,37,.6);
  padding-bottom: env(safe-area-inset-bottom);
  backdrop-filter: blur(8px);
}
.sticky-call a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 56px; font-weight: 800; font-size: .98rem;
}
.sticky-call svg { width: 19px; height: 19px; }
.sticky-call .call { background: var(--gold-500); color: var(--navy-950); }
.sticky-call .quote { background: var(--navy-900); color: #fff; }
@media (max-width: 820px) {
  .sticky-call { display: flex; }
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }
}

/* ---------- Reveal анимации ---------- */
.reveal { opacity: 0; transform: translateY(30px); }
.reveal.in {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal-img { clip-path: inset(0 0 100% 0); }
.reveal-img.in {
  clip-path: inset(0 0 0% 0);
  transition: clip-path 1s var(--ease-out);
  transition-delay: var(--d, 0s);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-img { opacity: 1; transform: none; clip-path: none; }
  .hero-media img { transform: none !important; }
}

/* ---------- Utilities ---------- */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.text-center { text-align: center; }
.list-check { display: grid; gap: .7rem; }
.list-check li { display: flex; gap: .75rem; align-items: flex-start; font-weight: 600; color: var(--ink-600); }
.list-check svg { width: 21px; height: 21px; flex: none; color: var(--accent-strong); margin-top: .25rem; }
