/* =====================================================================
   Unreal Auto Detailing
   Brand: black #000 · sky blue #96D1EC · white #FEFEFE  (from logo)
   ===================================================================== */

:root {
  --black:      #000000;
  --bg:         #05070a;
  --bg-2:       #0a0e13;
  --surface:    #10151b;
  --surface-2:  #161c24;
  --border:     #222a34;
  --border-lit: #2f3b48;

  --text:       #f2f6f9;
  --muted:      #93a1b0;

  --accent:     #96D1EC;
  --accent-dim: #6fb9dd;
  --accent-ink: #04121a;

  --radius:  16px;
  --radius-s: 10px;
  --wrap: 1180px;

  --display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

.accent { color: var(--accent); }

/* ---------- shared section furniture ---------- */
section { padding: 120px 0; position: relative; }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  text-align: center;
}

.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.02;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 18px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 58px;
  font-size: 16px;
}

/* ---------- progress bar ---------- */
.progress-bar {
  position: fixed;
  inset: 0 auto auto 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent), #fff);
  z-index: 2000;
  transition: width .08s linear;
}

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 16px 0;
  transition: padding .35s var(--ease), background .35s var(--ease),
              border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.stuck {
  padding: 8px 0;
  background: rgba(5,7,10,.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo art is light-on-black, so `screen` blend drops the black box cleanly */
.brand-mark {
  height: 58px;
  width: auto;
  mix-blend-mode: screen;
  transition: height .35s var(--ease);
}
.site-header.stuck .brand-mark { height: 46px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 9px 16px;
  border-radius: 999px;
  transition: color .22s ease, background .22s ease;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav-link.active { color: var(--accent); background: rgba(150,209,236,.09); }

.nav-cta { margin-left: 10px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
}
.hamburger span {
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .2px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              background .22s ease, border-color .22s ease, color .22s ease;
}
.btn-ico {
  width: 16px; height: 16px;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 6px 24px rgba(150,209,236,.22);
}
.btn-accent:hover {
  background: #aeddf2;
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(150,209,236,.38);
}
.btn-ghost {
  background: rgba(255,255,255,.04);
  border-color: var(--border-lit);
  color: var(--text);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn:active { transform: translateY(0) scale(.98); }

.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn-xl { padding: 18px 40px; font-size: 16px; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 110px;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 58% 62%;
  animation: kenburns 26s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.14); }
  to   { transform: scale(1); }
}

.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(5,7,10,.95) 4%, rgba(5,7,10,.72) 42%, rgba(5,7,10,.30) 74%),
    linear-gradient(to top, var(--bg) 1%, transparent 42%),
    radial-gradient(ellipse at 12% 42%, rgba(150,209,236,.16), transparent 58%);
}

.hero-inner { position: relative; z-index: 2; max-width: 760px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 8px 16px 8px 13px;
  border: 1px solid rgba(150,209,236,.28);
  border-radius: 999px;
  background: rgba(150,209,236,.07);
  backdrop-filter: blur(8px);
  margin-bottom: 26px;
}
.pulse-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(150,209,236,.65);
  animation: pulse 2.1s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(150,209,236,0); }
  100% { box-shadow: 0 0 0 0 rgba(150,209,236,0); }
}

.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(56px, 11vw, 122px);
  line-height: .92;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-title .line { display: block; overflow: hidden; }

.hero-sub {
  font-size: clamp(16px, 1.8vw, 18.5px);
  color: #c3cfda;
  max-width: 500px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--muted);
}
.stars { color: #f5c451; letter-spacing: 2px; font-size: 15px; }

.scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 25px; height: 40px;
  border: 1.5px solid rgba(255,255,255,.28);
  border-radius: 20px;
  z-index: 2;
}
.scroll-cue span {
  position: absolute;
  left: 50%; top: 8px;
  width: 3px; height: 7px;
  margin-left: -1.5px;
  background: var(--accent);
  border-radius: 2px;
  animation: cue 1.8s var(--ease) infinite;
}
@keyframes cue {
  0%   { opacity: 0; transform: translateY(0); }
  35%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(15px); }
}

/* entrance animation */
.anim {
  display: inline-block;
  opacity: 0;
  transform: translateY(90%);
  animation: rise .95s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* =====================================================================
   MARQUEE
   ===================================================================== */
.marquee {
  border-block: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
  padding: 17px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: slide 34s linear infinite;
}
.marquee span {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #7b8896;
  white-space: nowrap;
}
.marquee i { color: var(--accent); font-size: 10px; font-style: normal; }
@keyframes slide {
  to { transform: translateX(-50%); }
}

/* =====================================================================
   BEFORE / AFTER SLIDER
   ===================================================================== */
.ba-section { padding-bottom: 110px; }

.ba {
  --pos: 50%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  aspect-ratio: 16 / 10;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  /* let vertical swipes scroll the page; horizontal drags belong to the slider */
  touch-action: pan-y;
}
.ba-feature { margin-bottom: 18px; }

.ba img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
/* the "before" layer is clipped from the right edge back to the handle */
.ba .ba-before {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

/* divider line + grab handle */
.ba-line {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  margin-left: -1px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.28), 0 0 18px rgba(0,0,0,.45);
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(10,14,19,.55);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: grab;
  pointer-events: auto;
  box-shadow: 0 6px 22px rgba(0,0,0,.5);
  transition: transform .25s var(--ease), background .25s ease;
}
.ba-handle:hover { background: rgba(150,209,236,.32); }
.ba-handle:active { cursor: grabbing; transform: translate(-50%,-50%) scale(.94); }
.ba-handle:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.ba-handle svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* corner tags */
.ba-tag {
  position: absolute;
  top: 14px;
  z-index: 3;
  padding: 5px 12px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.ba-tag-before { left: 14px; color: #cfd8e2; }
.ba-tag-after  { right: 14px; color: var(--accent); }

/* caption */
.ba-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 40px 18px 15px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  pointer-events: none;
}

/* hint chip that fades out after first interaction */
.ba-hint {
  position: absolute;
  left: 50%; bottom: 16px;
  transform: translateX(-50%);
  z-index: 4;
  padding: 7px 15px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .6px;
  border-radius: 999px;
  background: rgba(150,209,236,.92);
  color: var(--accent-ink);
  pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
}
.ba.touched .ba-hint { opacity: 0; transform: translate(-50%, 8px); }

.ba-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ba-row .ba { aspect-ratio: 4 / 3; }
.ba-row .ba-handle { width: 40px; height: 40px; }
.ba-row .ba-handle svg { width: 18px; height: 18px; }
.ba-row .ba-hint { display: none; }

/* =====================================================================
   TRUST
   ===================================================================== */
.trust { padding: 88px 0; background: var(--bg-2); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 20px;
}
.trust-item {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), rgba(16,21,27,.35));
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}
.trust-item:hover {
  transform: translateY(-5px);
  border-color: var(--border-lit);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.trust-ico { font-size: 28px; margin-bottom: 12px; }
.trust-item h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: .2px;
}
.trust-item p { font-size: 13.5px; color: var(--muted); }

/* =====================================================================
   SERVICES
   ===================================================================== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
}
.svc-card {
  position: relative;
  padding: 34px 30px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: transform .32s var(--ease), border-color .32s ease, box-shadow .32s ease;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform .45s var(--ease);
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-lit);
  box-shadow: 0 22px 55px rgba(0,0,0,.5);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-num {
  display: block;
  font-family: var(--display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: rgba(150,209,236,.22);
  margin-bottom: 14px;
  transition: color .32s ease;
}
.svc-card:hover .svc-num { color: rgba(150,209,236,.55); }

.svc-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 9px;
  letter-spacing: .1px;
}
.svc-card p { font-size: 14.5px; color: var(--muted); }

.svc-foot { text-align: center; margin-top: 46px; }

/* =====================================================================
   WORK
   ===================================================================== */
.work { background: var(--bg-2); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.work-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  /* source photos are portrait (phone shots), so give tiles a portrait frame */
  aspect-ratio: 3 / 4;
}
.work-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .5s ease;
}
.work-tile:hover img { transform: scale(1.07); filter: saturate(1.1); }

.work-tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 46px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.88), transparent);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .3px;
  transform: translateY(8px);
  opacity: .82;
  transition: transform .4s var(--ease), opacity .4s ease;
}
.work-tile:hover figcaption { transform: translateY(0); opacity: 1; }

/* =====================================================================
   STATS
   ===================================================================== */
.stats { padding: 78px 0; border-block: 1px solid var(--border); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 26px;
  text-align: center;
}
.stat-num, .stat-suffix {
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 66px);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}
.stat p { font-size: 13.5px; color: var(--muted); margin-top: 8px; }

/* =====================================================================
   REVIEWS
   ===================================================================== */
/* masonry columns — review lengths vary a lot, so let them pack naturally */
.rev-grid {
  columns: 3;
  column-gap: 18px;
}
.rev-card {
  position: relative;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 18px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform .3s var(--ease), border-color .3s ease;
}
.rev-card:hover { transform: translateY(-4px); border-color: var(--border-lit); }
.rev-card::after {
  content: '”';
  position: absolute;
  top: 6px; right: 20px;
  font-family: Georgia, serif;
  font-size: 78px;
  line-height: 1;
  color: rgba(150,209,236,.10);
}
.rev-card .stars { margin-bottom: 14px; }
.rev-card p { font-size: 14.5px; color: #d3dbe3; margin-bottom: 16px; }
.rev-card cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.rev-foot {
  text-align: center;
  margin-top: 44px;
}
.rev-foot p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}
.rev-foot .btn-ico { fill: currentColor; stroke: none; }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about { background: var(--bg-2); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 66px;
  align-items: start;
}
.about-copy .eyebrow, .about-copy .section-title { text-align: left; }
.about-copy p { color: var(--muted); font-size: 15.5px; margin-bottom: 16px; }
.about-copy .btn { margin-top: 12px; }

.about-faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  background: var(--surface);
  padding: 17px 21px;
  margin-bottom: 11px;
  transition: border-color .25s ease;
}
.about-faq details[open] { border-color: var(--border-lit); }
.about-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
}
.about-faq summary::-webkit-details-marker { display: none; }
.about-faq summary::after {
  content: '+';
  flex: none;
  font-size: 21px;
  font-weight: 400;
  color: var(--accent);
  transition: transform .28s var(--ease);
}
.about-faq details[open] summary::after { transform: rotate(45deg); }
.about-faq details p {
  margin-top: 11px;
  font-size: 14.5px;
  color: var(--muted);
}
.about-faq a { color: var(--accent); }

/* =====================================================================
   CTA
   ===================================================================== */
.cta {
  padding: 130px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(150,209,236,.14), transparent 62%),
    var(--bg);
}
.cta-inner { text-align: center; }
.cta h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 6.5vw, 72px);
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cta p { color: var(--muted); margin-bottom: 30px; font-size: 16.5px; }
.cta-note {
  display: block;
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--muted);
}
.cta-note a { color: var(--accent); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--black); border-top: 1px solid var(--border); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-block: 58px 40px;
}
.footer-brand .brand-mark { height: 76px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--muted); letter-spacing: .4px; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer-cols h4 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 13px;
}
.footer-cols a, .footer-cols span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
  transition: color .2s ease;
}
.footer-cols a:hover { color: var(--text); }

.footer-base {
  padding-block: 20px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: #64717e;
}

/* =====================================================================
   MOBILE STICKY CTA
   ===================================================================== */
.mobile-cta {
  display: none;
  position: fixed;
  inset: auto 14px 14px 14px;
  z-index: 900;
  padding: 15px;
  text-align: center;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 999px;
  box-shadow: 0 10px 34px rgba(0,0,0,.55);
}

/* =====================================================================
   REVEAL ON SCROLL
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 940px) {
  .about-inner { grid-template-columns: 1fr; gap: 44px; }
  .footer-inner { grid-template-columns: 1fr; gap: 34px; }
  .rev-grid { columns: 2; }
}

@media (max-width: 780px) {
  section { padding: 84px 0; }
  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 84vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    padding: 40px 26px;
    background: var(--surface);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform .38s var(--ease);
  }
  .main-nav.open { transform: none; }
  .nav-link { font-size: 17px; padding: 13px 16px; }
  .nav-cta { margin: 14px 0 0; }

  .hero { padding-top: 128px; }
  .hero-img { object-position: 62% 60%; }
  .work-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .work-grid .work-tile:last-child { grid-column: span 2; aspect-ratio: 16 / 10; }
  .footer-cols { grid-template-columns: 1fr 1fr; }

  /* stack the before/after trio and give each a taller, thumb-friendly frame */
  .ba-row { grid-template-columns: 1fr; gap: 12px; }
  .ba-row .ba { aspect-ratio: 16 / 11; }
  .ba-feature { aspect-ratio: 16 / 11; }

  .mobile-cta { display: block; }
  .site-footer { padding-bottom: 76px; }
  .scroll-cue { display: none; }
  .rev-grid { columns: 1; }
}

@media (max-width: 460px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .footer-cols { grid-template-columns: 1fr; }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .anim { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; }
}
