/* ==========================================================================
   E11EVEN MOBILE — styles.css
   Design system: electric blue on near-white, Inter, fully rounded controls.
   ========================================================================== */

/* ---------- Inter, self-hosted ----------
   Previously pulled from fonts.googleapis.com, which put two extra origins on
   the critical path: DNS + TLS for googleapis to fetch the CSS, then DNS + TLS
   for gstatic to fetch the font, before a single character could paint. On a
   patchy mobile connection that is real delay, and LCP is a ranking factor.

   Served from our own origin the connection is already open, so the font
   arrives on a warm socket.

   One variable file covers 400-700 — Inter v20 is variable, so the three
   weights the site uses are one download, not three.

   Both subsets are needed. latin-ext is not optional: the rupee sign (U+20B9)
   lives there, and the published price would otherwise fall back to a system
   font. unicode-range means the browser only fetches it on pages that use it. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
                 U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Brand */
  --primary: #00A8FF;
  --primary-light: #e0f4ff;
  --primary-dark: #0089d1;
  --gold: #FFB800;
  --whatsapp: #25D366;

  /* Ink */
  --text: #0A0A0A;
  --text-2: #525252;
  --text-3: #8a8a8a;

  /* Surfaces */
  --bg: #f8fafc;
  --bg-tint: #f1f5f9;
  --card: #ffffff;
  --border: rgba(0, 0, 0, 0.06);
  --border-strong: rgba(0, 0, 0, 0.1);

  /* Buttons */
  --dark: #0A0A0A;
  --dark-hover: #1f1f1f;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 10, 10, .04), 0 1px 3px rgba(10, 10, 10, .05);
  --shadow-md: 0 4px 12px rgba(10, 10, 10, .06), 0 2px 4px rgba(10, 10, 10, .04);
  --shadow-lg: 0 18px 40px -12px rgba(10, 10, 10, .14);
  --shadow-blue: 0 18px 38px -14px rgba(0, 168, 255, .45);

  /* Layout */
  --radius: 16px;
  --radius-lg: 24px;
  --nav-h: 72px;
  --maxw: 1200px;
  /* Single source of truth for the page gutter. Anything that full-bleeds
     (the gallery filmstrip) negates this, so the two can never drift apart. */
  --pad: 2rem;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
  /* Belt and braces: Safari ignores overflow-x on body alone in some cases */
  overflow-x: hidden;
}

body {
  margin: 0;
  /* Nothing may overflow the 360px viewport, however long the word */
  overflow-wrap: break-word;
  /* Kill the grey flash Android paints over every tapped link */
  -webkit-tap-highlight-color: rgba(0, 168, 255, .12);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  /* Even line lengths instead of one long line and a single orphan word —
     most visible on narrow screens. Ignored where unsupported. */
  text-wrap: balance;
}
p { text-wrap: pretty; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, video, iframe { display: block; max-width: 100%; }
blockquote { margin: 0; }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}
/* Dark surfaces need a focus ring that is actually visible against them */
.section--dark :focus-visible,
.cta-band :focus-visible,
.footer :focus-visible,
.menu :focus-visible,
.lightbox :focus-visible { outline-color: #fff; }

/* iOS zooms the viewport on focus for anything under 16px. No forms today, but
   this keeps that from biting the moment one is added. */
input, select, textarea { font-size: 16px; font-family: inherit; }

button { font-family: inherit; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.container--narrow { max-width: 820px; }

.section { padding: 6.5rem 0; }
.section--tint { background: var(--bg-tint); }

.section--dark {
  background: var(--dark);
  color: rgba(255, 255, 255, .72);
}
.section--dark .section__title { color: #fff; }
.section--dark .section__lead { color: rgba(255, 255, 255, .6); }

.section__head { max-width: 720px; margin-bottom: 3.25rem; }
.section__title { font-size: 2.5rem; letter-spacing: -0.03em; }
.section__lead {
  margin-top: 1rem;
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 60ch;
}

.eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .85rem;
}

.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .22s var(--ease), background-color .22s var(--ease),
              box-shadow .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}
.btn--lg { padding: .95rem 1.85rem; font-size: 1rem; }

.btn .ico { width: 18px; height: 18px; flex: none; }

.btn--dark {
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--dark:hover { background: var(--dark-hover); transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

.btn--glass {
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-color: rgba(10, 10, 10, .12);
  color: var(--text);
}
.btn--glass:hover {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
  border-color: rgba(10, 10, 10, .2);
}

.btn:active { transform: translateY(0); }

/* ---------- Brand ---------- */
.brand { display: inline-flex; align-items: center; gap: .7rem; }

.brand__icon {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  overflow: hidden;
  /* The supplied logo is a dark mockup render with no alpha channel, so the
     tile is dark on purpose — it reads as an app icon instead of a stray box. */
  background: #2b3442;
  flex: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .07);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.brand__icon img { width: 100%; height: 100%; object-fit: cover; }
.brand:hover .brand__icon {
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12), 0 6px 16px -6px rgba(10, 10, 10, .4);
}

.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-size: 1.05rem; font-weight: 700; letter-spacing: .04em; }
.brand__sub {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--text-3);
  text-transform: uppercase;
}

.brand--light .brand__icon { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14); }
.brand--light .brand__sub { color: rgba(255, 255, 255, .55); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px -8px rgba(10, 10, 10, .12);
}

.nav__inner {
  height: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: .93rem;
  font-weight: 600;
  color: var(--text-2);
}
.nav__links a { position: relative; transition: color .2s var(--ease); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }

/* ---------- Hamburger ---------- */
.nav__burger {
  display: none;   /* shown below 768px */
  place-items: center;
  width: 46px; height: 46px;
  margin-right: -6px;   /* optical alignment with the container rail */
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, .6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--text);
  cursor: pointer;
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}
.nav__burger:hover { background: #fff; border-color: rgba(10, 10, 10, .18); }

.nav__burger-box {
  display: block;
  position: relative;
  width: 20px; height: 14px;
}
.nav__burger-box span {
  position: absolute;
  left: 0;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.nav__burger-box span:nth-child(1) { top: 0; }
.nav__burger-box span:nth-child(2) { top: 6px; }
.nav__burger-box span:nth-child(3) { top: 12px; }

/* Morph to an X while the drawer is open */
.nav__burger[aria-expanded="true"] .nav__burger-box span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] .nav__burger-box span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] .nav__burger-box span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* ---------- Mobile drawer ---------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 150;
}
.menu[hidden] { display: none; }

.menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 8, .55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.menu.is-open .menu__backdrop { opacity: 1; }

.menu__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(88vw, 380px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.15rem 1.35rem calc(1.5rem + env(safe-area-inset-bottom));
  background: var(--dark);
  color: rgba(255, 255, 255, .78);
  box-shadow: -20px 0 60px -20px rgba(0, 0, 0, .6);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform .34s var(--ease);
}
.menu.is-open .menu__panel { transform: none; }

.menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.menu__brand { display: inline-flex; align-items: center; gap: .7rem; }
.menu__brand-icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  overflow: hidden;
  background: #2b3442;
  flex: none;
}
.menu__brand-icon img { width: 100%; height: 100%; object-fit: cover; }
.menu__brand strong { display: block; color: #fff; font-size: 1rem; font-weight: 700; letter-spacing: .04em; }
.menu__brand small {
  display: block;
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .5);
}

.menu__close {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  flex: none;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  cursor: pointer;
  transition: background-color .25s var(--ease);
}
.menu__close:hover { background: rgba(255, 255, 255, .16); }
.menu__close svg { width: 21px; height: 21px; }

.menu__nav { display: flex; flex-direction: column; }
.menu__nav a {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: .5rem .25rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.menu__nav a:hover,
.menu__nav a:focus-visible { color: var(--primary); padding-left: .6rem; }

.menu__actions { display: flex; flex-direction: column; gap: .75rem; }
.menu__actions .btn { width: 100%; }

.menu__hours {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: auto;
  padding-top: .5rem;
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--bg);
}

/* Pure-CSS backdrop: a soft brand-tinted wash bleeding down into the page.
   Costs nothing to download and paints on the first frame. */
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(80% 62% at 78% 18%, rgba(0, 168, 255, .20) 0%, rgba(0, 168, 255, 0) 62%),
    radial-gradient(58% 55% at 8% 88%, rgba(0, 168, 255, .10) 0%, rgba(0, 168, 255, 0) 68%),
    linear-gradient(178deg, #ffffff 0%, var(--bg) 46%, var(--bg-tint) 100%);
}

.hero__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 4rem var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 3rem;
  align-items: center;
}
.hero__content { max-width: 800px; }

/* Hero photo cluster */
.hero__media {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 430px;
  aspect-ratio: 1 / 1.06;
}

.hero__shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 5px solid #fff;
  background: #fff;
  box-shadow: 0 28px 60px -22px rgba(10, 10, 10, .45);
}
.hero__shot img { width: 100%; height: 100%; object-fit: cover; }

.hero__shot--main {
  top: 0; right: 0;
  width: 72%; height: 88%;
  transform: rotate(2deg);
  z-index: 1;
}
.hero__shot--sub {
  bottom: 0; left: 0;
  width: 52%; height: 52%;
  transform: rotate(-4deg);
  z-index: 2;
}
.hero__shot--main img { transition: transform .8s var(--ease); }
.hero__media:hover .hero__shot--main img { transform: scale(1.05); }

.hero__pill {
  position: absolute;
  z-index: 3;
  top: 6%; left: -4%;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md);
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.hero__pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 168, 255, .2);
}

/* Hero photo card — mobile/tablet only, replaces the desktop photo cluster */
.hero__card {
  display: none;
  position: relative;
  margin: 2rem 0 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 44px -18px rgba(10, 10, 10, .45);
}
.hero__card img { width: 100%; height: 100%; object-fit: cover; }
.hero__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 45%, rgba(10, 10, 10, .72) 100%);
}
.hero__card-badge {
  position: absolute;
  z-index: 1;
  left: .85rem; bottom: .85rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .85rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .94);
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 6px 18px -6px rgba(10, 10, 10, .5);
}
.hero__card-stars { color: var(--gold); letter-spacing: -1px; }
.hero__card-badge strong { font-weight: 700; }

/* ---------- Brand marquee ---------- */
.marquee {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 0;
  background: var(--dark);
  color: rgba(255, 255, 255, .5);
  overflow: hidden;
}
.marquee__label {
  flex: none;
  padding-left: var(--pad);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
}
.marquee__viewport {
  display: flex;
  min-width: 0;
  /* No gap here: each track's trailing padding supplies the seam spacing, so it
     matches the gap between items and the loop join is invisible. */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 88%, transparent 100%);
}
.marquee__track {
  flex: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  animation: marquee 26s linear infinite;
}
.marquee__track li {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: rgba(255, 255, 255, .62);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .65);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-2);
}
.chip__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 168, 255, .18);
}
.chip__star { color: var(--gold); letter-spacing: 0; }

.hero__title {
  margin: 1.5rem 0 0;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.hero__title .accent { color: var(--primary); }

.hero__desc {
  margin-top: 1.5rem;
  max-width: 56ch;
  font-size: 1.15rem;
  color: var(--text-2);
}

.hero__cta {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.hero__meta {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-2);
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, .55);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ---------- Service cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 255, .35);
  box-shadow: 0 20px 38px -18px rgba(0, 168, 255, .38), var(--shadow-md);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 1.15rem;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.card__icon svg { width: 23px; height: 23px; }
.card:hover .card__icon { background: var(--primary); color: #fff; }

.card__title { font-size: 1.08rem; margin-bottom: .5rem; letter-spacing: -0.015em; }
.card__text { font-size: .95rem; color: var(--text-2); line-height: 1.55; }

.services__note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: .98rem;
  color: var(--text-2);
}
.services__note a {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 168, 255, .3);
  transition: border-color .2s var(--ease);
}
.services__note a:hover { border-bottom-color: var(--primary); }

/* ---------- Wide image banner ---------- */
.banner {
  position: relative;
  margin: 0 0 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21 / 8;
  box-shadow: var(--shadow-lg);
  background: var(--bg-tint);
}
.banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.banner:hover img { transform: scale(1.04); }
.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, .82) 0%, rgba(10, 10, 10, .45) 45%, rgba(10, 10, 10, 0) 78%);
}
.banner__cap {
  position: absolute;
  z-index: 1;
  left: 2.25rem; bottom: 2rem;
  max-width: 32ch;
  color: rgba(255, 255, 255, .78);
  font-size: .95rem;
  line-height: 1.5;
}
.banner__cap strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: .35rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 6rem 0;
  background: #060608;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
}
.cta-band__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 6, 8, .95) 0%, rgba(6, 6, 8, .8) 45%, rgba(6, 6, 8, .35) 100%),
    radial-gradient(60% 90% at 12% 50%, rgba(0, 168, 255, .22) 0%, rgba(0, 168, 255, 0) 70%);
}
/* Left-aligns to the same rail as .container without touching 100vw, which
   counts the scrollbar and used to force horizontal overflow. */
.cta-band__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.cta-band__inner > * { max-width: 720px; }
.cta-band__title {
  font-size: 2.75rem;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: #fff;
}
.cta-band__text {
  margin-top: 1.15rem;
  max-width: 48ch;
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
}
.cta-band__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .85rem; }

.btn--ghost {
  background: rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, .25);
  color: #fff;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .45);
  transform: translateY(-1px);
}

/* ---------- Why us (photo + stats) ---------- */
.why {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 2.5rem;
  align-items: center;
}

.why__media {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  /* Both owner photos are square (~1.01). Anything else crops through a face. */
  aspect-ratio: 1;
  background: var(--bg-tint);
}
.why__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.why__media:hover img { transform: scale(1.04); }

.why__caption {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: rgba(10, 10, 10, .58);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, .78);
  font-size: .88rem;
  line-height: 1.45;
}
.why__caption strong {
  display: block;
  color: #fff;
  font-size: .95rem;
  margin-bottom: .2rem;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.stat__num {
  display: inline-block;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
}
.stat__star { color: var(--gold); font-size: 2rem; }
.stat__unit {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-left: .25rem;
}
.stat__label {
  display: block;
  margin-top: .85rem;
  font-size: .95rem;
  color: var(--text-2);
}

/* ==========================================================================
   Repair selector  (brand -> model -> problem -> WhatsApp)
   ========================================================================== */

.rp-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  font-size: .88rem;
  color: var(--text-3);
}
.rp-crumb a,
.rp-crumb button {
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: var(--text-2);
  cursor: pointer;
  transition: color .2s var(--ease);
}
.rp-crumb a:hover,
.rp-crumb button:hover { color: var(--primary); }
.rp-crumb [aria-current] { color: var(--text); font-weight: 600; }
.rp-crumb__sep { color: var(--text-3); }

.rp__title { font-size: 1.35rem; letter-spacing: -0.025em; }
.rp__title:focus-visible { outline: 2px solid var(--primary); outline-offset: 4px; }

.rp__bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.rp__pane > .rp__title { margin-bottom: 1.25rem; }

.rp-back {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  min-height: 40px;
  padding: .4rem .9rem .4rem .6rem;
  border: 1px solid var(--border-strong);
  border-radius: 9999px;
  background: var(--card);
  font: inherit;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.rp-back svg { width: 16px; height: 16px; }
.rp-back:hover { background: var(--text); border-color: var(--text); color: #fff; }

/* ---------- Brands ---------- */
.rp-brands {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: .85rem;
}
.rp-brand {
  display: flex;
  text-align: center;
  color: inherit;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  padding: 1.1rem .5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.rp-brand:hover { transform: translateY(-3px); border-color: rgba(0, 168, 255, .4); box-shadow: var(--shadow-md); }
.rp-brand:focus-visible { border-color: var(--primary); }
/* One box, two shapes of logo: square glyphs (Apple, Samsung) fill the height,
   wide wordmarks (Nothing, Tecno, iQOO) fill the width. preserveAspectRatio
   letterboxes each inside the same footprint so the row stays even. */
.rp-brand__logo {
  display: grid;
  place-items: center;
  width: 100%;
  height: 30px;
  overflow: hidden;
}
.rp-brand__logo svg { display: block; width: 100%; height: 100%; }
.rp-brand__logo img { width: 100%; height: 100%; object-fit: contain; }

/* last-resort letter mark, only if a logo is missing entirely */
.rp-brand__logo--letter {
  width: 40px; height: 40px;
  border-radius: 12px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}
.rp-brand__name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  text-align: center;
}

/* ---------- Brand page header ---------- */
.rp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.rp-head .section__title { margin: 0; }
/* .rp-back is a <button> in the flow and an <a> here — same look either way */
a.rp-back { text-decoration: none; }

/* Sub-pages have no hero, so the fixed navbar needs clearance */
body[data-repair-brand] main,
.rp-crumb ~ * { }
body[data-repair-brand] .section,
body[data-repair-page] .section { padding-top: calc(var(--nav-h) + 2.5rem); }

/* ---------- Search + series filters ---------- */
.rp-search {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.rp-search svg {
  position: absolute;
  left: 1rem;
  width: 18px; height: 18px;
  color: var(--text-3);
  pointer-events: none;
}
.rp-search input {
  width: 100%;
  min-height: 48px;
  padding: .75rem 1rem .75rem 2.85rem;
  border: 1px solid var(--border-strong);
  border-radius: 9999px;
  background: var(--card);
  font-size: 16px;   /* never let iOS zoom the page on focus */
  color: var(--text);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.rp-search input::placeholder { color: var(--text-3); }
.rp-search input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 168, 255, .15);
}

.rp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.rp-chip {
  min-height: 40px;
  padding: .45rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 9999px;
  background: var(--card);
  font: inherit;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.rp-chip:hover { border-color: var(--primary); color: var(--primary); }
.rp-chip.is-active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ---------- Models ---------- */
.rp-models {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .85rem;
}
.rp-model {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  padding: 1.1rem .65rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  text-align: center;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.rp-model:hover { transform: translateY(-3px); border-color: rgba(0, 168, 255, .4); box-shadow: var(--shadow-md); }
.rp-model[aria-pressed="true"] {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 168, 255, .2), var(--shadow-md);
}
/* Device artwork sits in a fixed-height stage so every card lines up
   regardless of handset shape (bar phone, fold, flip, keypad). */
.rp-model__ph {
  display: grid;
  place-items: center;
  width: 100%;
  height: 96px;
  margin-bottom: .2rem;
}
.rp-model__ph svg,
.rp-model__ph img { display: block; width: auto; height: 100%; max-width: 100%; }
.rp-model__ph img { object-fit: contain; }
.rp-model__name {
  font-size: .84rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.rp-empty {
  padding: 2rem 1.5rem;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  text-align: center;
  color: var(--text-2);
}
.rp-empty p { margin-bottom: 1rem; }

/* ---------- Problems ---------- */
.rp-probs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.rp-prob {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.rp-prob:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 168, 255, .4);
  box-shadow: 0 18px 34px -18px rgba(0, 168, 255, .35), var(--shadow-sm);
}
.rp-prob__ico {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  margin-bottom: .85rem;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.rp-prob__ico svg { width: 21px; height: 21px; }
.rp-prob:hover .rp-prob__ico { background: var(--primary); color: #fff; }

.rp-prob__name {
  font-size: 1rem;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}
.rp-prob__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  padding: .6rem 1rem;
  border-radius: 9999px;
  background: var(--whatsapp);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.rp-prob__cta svg { width: 16px; height: 16px; flex: none; }
.rp-prob__cta:hover { background: #1ebe5a; transform: translateY(-1px); }

.rp-notlisted {
  margin-top: 1.75rem;
  padding: 1.5rem;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}
.rp-notlisted p { color: var(--text-2); font-weight: 500; }

/* ---------- Owner ---------- */
.owner {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 3rem;
  align-items: center;
}
.owner__media {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-tint);
  box-shadow: var(--shadow-lg);
}
.owner__media::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, .06);
  border-radius: inherit;
}
.owner__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.owner__media:hover img { transform: scale(1.04); }

.owner__lead {
  margin-top: 1.1rem;
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 54ch;
}
.owner__points {
  margin-top: 1.5rem;
  display: grid;
  gap: .85rem;
}
.owner__points li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .97rem;
  color: var(--text-2);
  line-height: 1.5;
}
.owner__tick {
  display: grid;
  place-items: center;
  flex: none;
  width: 24px; height: 24px;
  margin-top: .1rem;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
}
.owner__tick svg { width: 14px; height: 14px; }
.owner .btn { margin-top: 1.75rem; }

/* ---------- Gallery (bento grid) ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 270px;
  grid-auto-flow: dense;
  gap: 1rem;
}

.gallery__item {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a1a;
  isolation: isolate;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .4s var(--ease);
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 45%, rgba(10, 10, 10, .78) 100%);
  opacity: .85;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.gallery__item:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -18px rgba(0, 168, 255, .4); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }

.gallery__cap {
  position: absolute;
  left: 1.15rem; right: 1.15rem; bottom: 1.05rem;
  z-index: 1;
  text-align: left;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .5);
}

/* Feature the first tile; the rest flow. 1 double-tile (4 cells) + 8 singles
   = 12 cells, which fills 4 columns x 3 rows exactly. */
.gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

.gallery__item:nth-child(1) .gallery__cap { font-size: 1.15rem; }

/* ---------- Video reels ---------- */
.reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.reel {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background: #101317;
  isolation: isolate;
  box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.reel:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -18px rgba(0, 168, 255, .42); }

.reel__video {
  width: 100%; height: 100%;
  object-fit: cover;
  /* the whole card is the link — never let the media swallow the tap */
  pointer-events: none;
}

.reel__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, .35) 0%, rgba(10, 10, 10, 0) 32%, rgba(10, 10, 10, .8) 100%);
  pointer-events: none;
}

.reel__badge {
  position: absolute;
  top: .8rem; right: .8rem;
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--text);
  box-shadow: 0 4px 12px rgba(10, 10, 10, .4);
}
.reel__badge svg { width: 18px; height: 18px; }

.reel__cap {
  position: absolute;
  left: 1rem; right: 1rem; bottom: .95rem;
  color: #fff;
}
.reel__cap strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .55);
}
.reel__cap small {
  display: block;
  margin-top: .15rem;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
}

.reels__all { margin-top: 2rem; text-align: center; }
.reels__all a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  color: var(--primary);
}
.reels__all a span { transition: transform .25s var(--ease); }
.reels__all a:hover span { transform: translateX(4px); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 8, .9);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: zoom-out;
}

.lightbox__figure {
  position: relative;
  margin: 0;
  max-width: min(92vw, 620px);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transform: scale(.96);
  transition: transform .35s var(--ease);
}
.lightbox.is-open .lightbox__figure { transform: scale(1); }

.lightbox__figure img {
  max-width: 100%;
  max-height: calc(100vh - 11rem);
  width: auto;
  border-radius: 16px;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .7);
  object-fit: contain;
}
.lightbox__figure figcaption {
  color: rgba(255, 255, 255, .82);
  font-size: .95rem;
  font-weight: 600;
  text-align: center;
}

.lightbox__btn {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.lightbox__btn svg { width: 22px; height: 22px; }
.lightbox__btn:hover { background: rgba(255, 255, 255, .22); }
.lightbox__btn:active { transform: scale(.94); }

.lightbox__btn--close { top: 1.25rem; right: 1.25rem; }
.lightbox__btn--prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__btn--next { right: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__btn--prev:active,
.lightbox__btn--next:active { transform: translateY(-50%) scale(.94); }

body.is-locked { overflow: hidden; }

/* ---------- Featured pricing showcase ---------- */
.showcase {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.showcase__media { position: relative; min-height: 100%; background: var(--bg-tint); }
.showcase__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.showcase:hover .showcase__media img { transform: scale(1.05); }

.showcase__body {
  position: relative;
  text-align: center;
  padding: 3.5rem 2.75rem;
}
.showcase__glow {
  position: absolute;
  top: -140px; left: 50%;
  transform: translateX(-50%);
  width: 520px; height: 320px;
  background: radial-gradient(circle, rgba(0, 168, 255, .22) 0%, rgba(0, 168, 255, 0) 68%);
  pointer-events: none;
}
.showcase__body > *:not(.showcase__glow) { position: relative; }

.showcase__tag {
  display: inline-block;
  padding: .4rem .9rem;
  border-radius: 9999px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.showcase__title {
  margin-top: 1.4rem;
  font-size: 2.1rem;
  letter-spacing: -0.03em;
}
.showcase__price {
  margin-top: .9rem;
  font-size: 1.15rem;
  color: var(--text-2);
}
.showcase__price strong {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.04em;
}
.showcase__sub { margin-top: .75rem; color: var(--text-2); }
.showcase .btn { margin-top: 1.85rem; }
.showcase__fine {
  margin-top: 1.35rem;
  font-size: .85rem;
  color: var(--text-3);
  max-width: 46ch;
  margin-inline: auto;
}

/* ---------- Reviews ---------- */
.review {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.85rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review__quote {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  letter-spacing: -0.01em;
}

.review__by {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-2);
}
.avatar {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .85rem;
  font-weight: 700;
  flex: none;
}

.reviews__all { margin-top: 2.5rem; text-align: center; }
.reviews__all a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  color: var(--primary);
}
.reviews__all a span { transition: transform .25s var(--ease); }
.reviews__all a:hover span { transform: translateX(4px); }

/* ---------- Areas we serve ---------- */
.areas__intro {
  max-width: 760px;
  margin: 0 0 3rem;
  color: var(--text-2);
  line-height: 1.75;
}
.areas__intro p { margin: 0 0 1rem; }
.areas__intro p:last-child { margin-bottom: 0; }
.areas__intro strong { color: var(--text); }
.areas__intro a { color: var(--primary); font-weight: 600; }

.areas__band { margin-bottom: 3rem; }
.areas__band-title {
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  margin: 0 0 .35rem;
}
.areas__band-note {
  margin: 0 0 1.5rem;
  color: var(--text-3);
  font-size: .9375rem;
}

.areas__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .85rem;
}

.areas__item {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.05rem 1.15rem;
  display: grid;
  /* name and distance share the top row; the travel note spans beneath */
  grid-template-columns: 1fr auto;
  gap: .3rem .6rem;
}
.areas__name { font-weight: 600; color: var(--text); }
.areas__km {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 9999px;
  padding: .1rem .55rem;
  align-self: start;
  white-space: nowrap;
}
.areas__how {
  grid-column: 1 / -1;
  font-size: .875rem;
  line-height: 1.55;
  color: var(--text-2);
}

.areas__cta {
  max-width: 760px;
  padding: 1.75rem;
  background: var(--bg-tint);
  border-radius: var(--radius-lg);
}
.areas__cta h2 { margin: 0 0 .5rem; font-size: 1.25rem; }
.areas__cta p { margin: 0; color: var(--text-2); line-height: 1.7; }
.areas__cta a { color: var(--primary); font-weight: 600; }

/* ---------- Blog index ---------- */
.posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.post-card__title { margin: 0; font-size: 1.1875rem; line-height: 1.4; letter-spacing: -0.01em; }
.post-card__title a { color: var(--text); }
.post-card__title a:hover { color: var(--primary-dark); }
.post-card__desc { margin: 0; color: var(--text-2); line-height: 1.65; font-size: .9375rem; }
.post-card__more {
  margin-top: auto;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  gap: .4rem;
  align-items: center;
}
.post-card__more span { transition: transform .25s var(--ease); }
.post-card__more:hover span { transform: translateX(4px); }

/* ---------- Article ----------
   Measure is capped near 68ch. Long-form body copy is the one place on this
   site where full container width would hurt readability. */
.post { max-width: 720px; }
.post__head { margin-bottom: 2.25rem; }
.post__title { font-size: 2.25rem; line-height: 1.2; letter-spacing: -0.03em; margin: 0 0 .6rem; }
.post__meta { margin: 0; color: var(--text-3); font-size: .875rem; }

.post__body { color: var(--text-2); line-height: 1.8; font-size: 1.0625rem; }
.post__body h2 {
  color: var(--text);
  font-size: 1.4375rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 2.5rem 0 .9rem;
}
.post__body p { margin: 0 0 1.15rem; }
.post__body ul, .post__body ol { margin: 0 0 1.35rem; padding-left: 1.35rem; }
.post__body li { margin-bottom: .6rem; }
.post__body strong { color: var(--text); font-weight: 600; }
.post__body a { color: var(--primary); font-weight: 600; }
.post__body em { font-style: italic; }

.post__cta {
  margin: 3rem 0 2.5rem;
  padding: 1.85rem;
  background: var(--bg-tint);
  border-radius: var(--radius-lg);
}
.post__cta h2 { margin: 0 0 .5rem; font-size: 1.25rem; }
.post__cta p { margin: 0 0 1.35rem; color: var(--text-2); line-height: 1.7; }
.post__cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Cross-link from a commercial service page to its informational guide.
   The two pages target different intent, so this pairs them rather than
   letting them compete. */
.post__guide {
  margin: 2.5rem 0 0;
  padding: 1.15rem 1.35rem;
  border-left: 3px solid var(--primary);
  background: var(--primary-light);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.post__guide-label {
  margin: 0 0 .3rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary-dark);
}
.post__guide a { color: var(--text); font-weight: 600; line-height: 1.5; }
.post__guide a:hover { color: var(--primary-dark); }

/* Service cards on the homepage link through to their own page. */
.card__title a { color: inherit; }
.card__title a:hover { color: var(--primary-dark); }

.post__related { border-top: 1px solid var(--border); padding-top: 1.75rem; }
.post__related h2 { margin: 0 0 .9rem; font-size: 1.125rem; }
.post__related ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.post__related a { color: var(--primary); font-weight: 600; line-height: 1.5; }

@media (max-width: 767px) {
  .post__title { font-size: 1.75rem; }
  .post__body { font-size: 1rem; }
  .post__body h2 { font-size: 1.25rem; margin-top: 2rem; }
  .post__cta, .areas__cta { padding: 1.35rem; }
  .post__cta-actions .btn { width: 100%; justify-content: center; }
}

/* ---------- FAQ ----------
   Native <details>/<summary>. No JS, no ARIA to keep in sync, and the answers
   are in the DOM whether or not they are open — which is what gets them read
   by crawlers and by screen readers alike. */
.faq {
  max-width: 820px;
  display: grid;
  gap: .75rem;
}

.faq__item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.faq__item[open] {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.faq__q {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  cursor: pointer;
  list-style: none;                 /* Firefox */
  min-height: 44px;                 /* same tap-target floor as every control */
}
.faq__q::-webkit-details-marker { display: none; }   /* Safari */

/* Chevron drawn in CSS so the markup stays clean and there is no icon to load. */
.faq__q::after {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  margin-top: .38rem;
  margin-left: auto;
  border-right: 2px solid var(--text-3);
  border-bottom: 2px solid var(--text-3);
  transform: rotate(45deg);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.faq__item[open] .faq__q::after {
  transform: rotate(-135deg);
  border-color: var(--primary);
}

.faq__q:hover { color: var(--primary-dark); }
.faq__q:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.faq__a {
  padding: 0 1.35rem 1.3rem;
  color: var(--text-2);
  line-height: 1.7;
}
.faq__a p { margin: 0; }
.faq__a a {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 767px) {
  .faq__q { padding: 1rem 1.1rem; font-size: 1rem; }
  .faq__a { padding: 0 1.1rem 1.1rem; }
}

/* ---------- Location & contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  min-height: 440px;
  background: var(--bg-tint);
}
.contact__map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; display: block; }

/* Click-to-load map placeholder — zero third-party requests until tapped */
.map-ph {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 2rem 1.5rem;
  border: 0;
  background: linear-gradient(150deg, #eef4f9 0%, #e2ebf3 100%);
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  transition: background-color .3s var(--ease);
}
.map-ph__grid {
  position: absolute;
  inset: -1px;
  background-image:
    linear-gradient(rgba(0, 168, 255, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 255, .11) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 20%, transparent 75%);
  mask-image: radial-gradient(circle at 50% 45%, #000 20%, transparent 75%);
}
.map-ph__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.map-ph__pin {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  margin-bottom: .6rem;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 10px 26px -8px rgba(0, 168, 255, .55);
}
.map-ph__pin svg { width: 26px; height: 26px; }
.map-ph strong { font-size: 1.1rem; color: var(--text); letter-spacing: -0.02em; }
.map-ph small { font-size: .9rem; color: var(--text-2); }
.map-ph__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 1rem;
  padding: .7rem 1.4rem;
  border-radius: 9999px;
  background: var(--dark);
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.map-ph:hover .map-ph__btn { background: var(--dark-hover); transform: translateY(-1px); }

.contact__info {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
}
.contact__name { font-size: 1.6rem; letter-spacing: -0.03em; }
.contact__owner { margin-top: .35rem; color: var(--text-2); font-size: .95rem; }

.info-list { margin-top: 1.75rem; display: grid; gap: 1.35rem; }
.info-list li { display: flex; gap: .9rem; align-items: flex-start; }
.info-list__ico {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--primary-light);
  color: var(--primary);
  flex: none;
}
.info-list__ico svg { width: 19px; height: 19px; }
.info-list strong {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: .2rem;
}
.info-list li > span:last-child { font-size: .97rem; color: var(--text-2); line-height: 1.5; }
.info-list a { color: var(--text); font-weight: 600; transition: color .2s var(--ease); }
.info-list a:hover { color: var(--primary); }

.contact__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .72);
  padding: 4.5rem 0 2rem;
  font-size: .95rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer .brand__name { color: #fff; }
.footer__tag {
  margin-top: 1.25rem;
  max-width: 42ch;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6;
}
.footer__col h4 {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.15rem;
}
.footer__col ul { display: grid; gap: .7rem; }
.footer__col a { transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--primary); }

.footer__bottom {
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
  font-size: .87rem;
  color: rgba(255, 255, 255, .5);
}
.footer__bottom strong { color: #fff; font-weight: 600; }

/* ---------- Floating WhatsApp button ---------- */
.fab-wa {
  position: fixed;
  right: 1.75rem;
  bottom: 1.75rem;
  z-index: 110;
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, .65), 0 4px 10px rgba(10, 10, 10, .12);
  /* Hidden until the visitor scrolls past the hero, so it never fights the hero CTAs */
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(.85);
  transition: opacity .35s var(--ease), transform .35s var(--ease),
              visibility .35s var(--ease), background-color .25s var(--ease);
}
.fab-wa.is-visible { opacity: 1; visibility: visible; transform: none; }
.fab-wa:hover { background: #1ebe5a; }
.fab-wa:active { transform: scale(.94); }

.fab-wa__ico { width: 30px; height: 30px; position: relative; z-index: 1; }

/* Expanding ring, drawing the eye without moving the button itself */
.fab-wa__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  opacity: .55;
  animation: fabPulse 2.6s var(--ease) infinite;
}
@keyframes fabPulse {
  0%   { transform: scale(1);   opacity: .5; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

.fab-wa__label {
  position: absolute;
  right: calc(100% + 12px);
  white-space: nowrap;
  padding: .5rem .9rem;
  border-radius: 9999px;
  background: var(--dark);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.fab-wa:hover .fab-wa__label,
.fab-wa:focus-visible .fab-wa__label { opacity: 1; transform: none; }

/* ---------- Sticky mobile bar ---------- */
.mobilebar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  /* Same layer as .nav — they are pinned to opposite edges and never overlap.
     The drawer (150) and lightbox (200) both sit above it. */
  z-index: 100;
  gap: .6rem;
  padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px -10px rgba(10, 10, 10, .18);
}
.mobilebar__btn {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 56px;
  border-radius: 9999px;
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
}
.mobilebar__btn .ico { width: 19px; height: 19px; }
.mobilebar__btn--call { background: var(--dark); }
.mobilebar__btn--wa { background: var(--whatsapp); }
.mobilebar__btn:active { transform: scale(.98); }

/* ==========================================================================
   Animations
   ========================================================================== */

/* Hero staggered entrance */
.reveal-hero {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .8s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--rd, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet: 768–1024 */
@media (max-width: 1024px) {
  :root { --pad: 1.75rem; }
  .section { padding: 5rem 0; }

  .hero__title { font-size: 3.5rem; }
  .hero__desc { font-size: 1.08rem; }

  /* Photo cluster costs too much width below 1024 — the single shop card
     takes over as the hero visual, in a wider crop suited to tablet. */
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { display: none; }
  .hero__card { display: block; margin-top: 2rem; aspect-ratio: 21 / 9; }

  .grid--3 { grid-template-columns: repeat(2, 1fr); }

  .banner { aspect-ratio: 16 / 7; }
  .banner__cap { left: 1.5rem; bottom: 1.5rem; }
  .banner__cap strong { font-size: 1.2rem; }

  .showcase { grid-template-columns: 1fr; }
  .showcase__media { min-height: 0; aspect-ratio: 16 / 9; }
  .showcase__media img { position: static; }
  .showcase__body { padding: 3rem 2rem; }

  .cta-band { padding: 5rem 0; }
  .cta-band__title { font-size: 2.25rem; }
  .cta-band__scrim {
    background:
      linear-gradient(90deg, rgba(6, 6, 8, .95) 0%, rgba(6, 6, 8, .82) 60%, rgba(6, 6, 8, .55) 100%),
      radial-gradient(70% 90% at 10% 50%, rgba(0, 168, 255, .2) 0%, rgba(0, 168, 255, 0) 70%);
  }

  .rp-brands { grid-template-columns: repeat(5, 1fr); }
  .rp-models { grid-template-columns: repeat(4, 1fr); }
  .rp-probs  { grid-template-columns: repeat(3, 1fr); }

  .owner { grid-template-columns: 1fr; gap: 1.75rem; }
  .owner__media { max-width: 460px; }
  .why { grid-template-columns: 1fr; gap: 2rem; }
  .why__media { max-width: 460px; }
  .stats { grid-template-columns: repeat(2, 1fr); }

  /* 3 cols: 4 + 8 = 12 cells fills exactly 4 rows */
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; }

  .contact { grid-template-columns: 1fr; }
  .contact__map, .contact__map iframe { min-height: 360px; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: 1 / -1; }

  .nav__links { gap: 1.5rem; }
}

/* Mobile: <768 */
@media (max-width: 767px) {
  body { font-size: 1rem; }

  :root { --nav-h: 64px; --pad: 1.25rem; }
  .section { padding: 3rem 0; }
  .section__title { font-size: 1.75rem; }
  .section__lead { margin-top: .75rem; font-size: 1rem; }
  .section__head { margin-bottom: 1.75rem; }   /* was 3.25rem — ~40% cut */
  .eyebrow { margin-bottom: .55rem; }

  /* --- Navbar: links out, hamburger in, Call handled by the sticky bar --- */
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: grid; }
  .brand__icon { width: 36px; height: 36px; border-radius: 10px; }
  .brand__name { font-size: .98rem; }

  /* --- Hero: centred, and deliberately short of a full screen so the top of
         the services section peeks in and signals there is more below --- */
  .hero {
    min-height: 88vh;   /* fallback for pre-2022 Android browsers */
    min-height: 88svh;
    align-items: center;
    padding-top: var(--nav-h);
    padding-bottom: 0;
  }
  .hero__inner { padding: 2.25rem var(--pad) 2.75rem; }
  .hero__title { font-size: 2.25rem; line-height: 1.15; letter-spacing: -0.03em; margin-top: 1.15rem; }
  .hero__desc { font-size: 1rem; margin-top: 1rem; max-width: 34ch; }
  .hero__cta { margin-top: 1.5rem; flex-direction: column; align-items: stretch; gap: 12px; }
  .hero__cta .btn { width: 100%; }
  .hero__meta { margin-top: 1.15rem; font-size: .85rem; }
  .chip { font-size: .7rem; padding: .4rem .85rem; letter-spacing: .8px; }
  .hero__card { display: block; margin-top: 1.65rem; aspect-ratio: 16 / 10; }

  .grid, .grid--3 { grid-template-columns: 1fr; gap: 1rem; }

  /* Four stats stacked one-per-row was a ~570px tower for four short facts.
     2x2 fits the same content in a third of the height and still scans. */
  .stats { grid-template-columns: repeat(2, 1fr); gap: .7rem; }
  .stat {
    padding: 1.05rem .85rem;
    background: linear-gradient(150deg, #ffffff 0%, var(--primary-light) 190%);
    border-color: rgba(0, 168, 255, .2);
  }
  .stat__num { font-size: 1.95rem; }
  .stat__unit { font-size: .88rem; }
  .stat__star { font-size: 1.3rem; }
  .stat__label { margin-top: .3rem; font-size: .78rem; line-height: 1.35; }

  .marquee { gap: 1rem; padding: .9rem 0; }
  .marquee__track { gap: 1.75rem; padding-right: 1.75rem; animation-duration: 20s; }
  .marquee__track li { font-size: .95rem; }

  .banner { aspect-ratio: 16 / 9; margin-bottom: 1.25rem; }
  .banner::after {
    background: linear-gradient(180deg, rgba(10, 10, 10, .2) 0%, rgba(10, 10, 10, .85) 100%);
  }
  .banner__cap { left: 1.15rem; right: 1.15rem; bottom: 1.15rem; max-width: none; }
  .banner__cap strong { font-size: 1.1rem; }

  /* Nine stacked cards was ~1,350px of scrolling. As rows — icon left, text
     right — the list is scannable and roughly a third shorter. Grid areas
     again, so the markup is untouched. */
  /* Nine separate cards meant nine shadows, nine borders and eight 16px gaps
     — ~130px of pure spacing. One grouped list with dividers reads calmer and
     is materially shorter. */
  #services .grid--3 {
    gap: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  #services .card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--border);
  }
  #services .card:last-child { border-bottom: 0; }
  .card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: .85rem;
    align-items: start;
    padding: .95rem 1rem;
  }
  .card__icon {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
    width: 42px; height: 42px;
    margin-bottom: 0;
    border-radius: 11px;
    /* Solid brand gradient rather than a pale tint — nine flat rows read as a
       spreadsheet; nine coloured marks read as a list of services. */
    background: linear-gradient(145deg, var(--primary) 0%, #0072d6 100%);
    color: #fff;
    box-shadow: 0 6px 14px -6px rgba(0, 168, 255, .7);
  }
  .card__title { grid-column: 2; grid-row: 1; font-size: 1rem; margin-bottom: .15rem; }
  .card__text  { grid-column: 2; grid-row: 2; font-size: .875rem; line-height: 1.45; }
  /* Lift-on-hover is meaningless without a pointer and just costs paint */
  .card:hover { transform: none; }
  .services__note { margin-top: 1.5rem; }


  .showcase__body { padding: 1.75rem 1.25rem; }
  .showcase__media { aspect-ratio: 16 / 9; }

  /* repair-counter.webp is 3:4 — a 4:3 box cropped the technicians out of it */
  /* Repair selector: 3 brands per row stays tappable at 360px, models 2-up,
     problems full width so the WhatsApp button is never cramped. */
  .rp-crumb { margin-bottom: 1.1rem; font-size: .82rem; gap: .35rem; }
  .rp__title { font-size: 1.15rem; }
  .rp__bar { gap: .75rem; margin-bottom: 1rem; }
  .rp__pane > .rp__title { margin-bottom: 1rem; }

  .rp-brands { grid-template-columns: repeat(3, 1fr); gap: .6rem; }
  .rp-brand { padding: .9rem .4rem; gap: .5rem; min-height: 104px; justify-content: center; }
  .rp-brand__logo { height: 26px; }
  .rp-brand__name { font-size: .8rem; }

  .rp-search { margin-bottom: .85rem; }
  .rp-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    margin-inline: calc(var(--pad) * -1);
    padding: .15rem var(--pad) .85rem;
    margin-bottom: .35rem;
  }
  .rp-chips::-webkit-scrollbar { display: none; }
  .rp-chip { min-height: 44px; }

  .rp-models { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .rp-model { padding: .75rem .5rem; }
  .rp-model__ph { height: 78px; }
  .rp-model__name { font-size: .78rem; }

  .rp-probs { grid-template-columns: 1fr; gap: .7rem; }
  .rp-prob { padding: 1rem 1.1rem; }
  .rp-prob__ico { width: 38px; height: 38px; margin-bottom: .6rem; }
  .rp-prob__name { font-size: .95rem; margin-bottom: .8rem; }
  .rp-notlisted { margin-top: 1.25rem; padding: 1.15rem; }
  .rp-notlisted .btn { width: 100%; }

  .owner { gap: 1.15rem; }
  .owner__media { max-width: none; }
  .owner__lead { margin-top: .85rem; font-size: 1rem; }
  .owner__points { margin-top: 1.1rem; gap: .65rem; }
  .owner__points li { font-size: .92rem; }
  .owner .btn { margin-top: 1.25rem; width: 100%; }
  .why { gap: 1.25rem; }
  .why__media { max-width: none; }
  .why__caption { left: .7rem; right: .7rem; bottom: .7rem; padding: .7rem .85rem; font-size: .8rem; }
  .why__caption strong { font-size: .88rem; margin-bottom: .1rem; }

  /* Gallery becomes a swipeable, snapping filmstrip */
  .gallery {
    display: flex;
    grid-template-columns: none;
    grid-template-rows: none;
    gap: .85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Stop the filmstrip chaining its scroll into the page / browser back-swipe */
    overscroll-behavior-x: contain;
    /* bleed to the screen edges so the next card peeks in */
    margin-inline: calc(var(--pad) * -1);
    padding: .25rem var(--pad) 1rem;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery__item {
    flex: 0 0 74%;
    aspect-ratio: 3 / 4;
    scroll-snap-align: center;
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .gallery__item:nth-child(1) .gallery__cap { font-size: .95rem; }

  .lightbox { padding: 3.5rem .75rem; }
  .lightbox__figure img { max-height: calc(100svh - 12rem); }
  .lightbox__btn { width: 44px; height: 44px; }
  .lightbox__btn--close { top: .85rem; right: .85rem; }
  .lightbox__btn--prev { left: .5rem; }
  .lightbox__btn--next { right: .5rem; }

  .showcase__tag { font-size: .68rem; padding: .3rem .75rem; }
  .showcase__title { font-size: 1.35rem; margin-top: .95rem; }
  .showcase__price { margin-top: .55rem; font-size: 1rem; }
  .showcase__price strong { font-size: 1.9rem; }
  .showcase__sub { margin-top: .45rem; font-size: .92rem; }
  .showcase .btn { width: 100%; margin-top: 1.1rem; }
  .showcase__fine { margin-top: .8rem; font-size: .78rem; }

  /* Three stacked review cards ran ~630px. As a snap-scrolling row they take
     ~240px, none are cut, and the peeking third card signals there is more. */
  #reviews .grid--3 {
    display: flex;
    gap: .85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: calc(var(--pad) * -1);
    padding: .25rem var(--pad) .75rem;
  }
  #reviews .grid--3::-webkit-scrollbar { display: none; }

  /* Reels swipe horizontally too — three 9:16 cards stacked would be ~1,700px */
  .reels {
    display: flex;
    gap: .85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: calc(var(--pad) * -1);
    padding: .25rem var(--pad) .75rem;
  }
  .reels::-webkit-scrollbar { display: none; }
  .reel { flex: 0 0 64%; scroll-snap-align: center; border-radius: 16px; }
  .reel:hover { transform: none; }
  .reel__cap strong { font-size: .92rem; }
  .reel__cap small { font-size: .72rem; }
  .reels__all { margin-top: 1.25rem; }
  .review { flex: 0 0 84%; scroll-snap-align: center; padding: 1.35rem; }
  .review__quote { font-size: .95rem; }
  .review__by { margin-top: 1rem; padding-top: .85rem; }
  .stars { margin-bottom: .7rem; }
  .reviews__all { margin-top: 1.5rem; }

  .contact__info { padding: 1.4rem 1.15rem; }
  .contact__name { font-size: 1.35rem; }
  .contact__owner { font-size: .88rem; }
  .contact__actions { margin-top: 1.35rem; gap: 12px; }
  .contact__actions .btn { width: 100%; }
  .info-list { margin-top: 1rem; gap: .7rem; }
  .info-list__ico { width: 34px; height: 34px; border-radius: 10px; }
  .info-list li > span:last-child { font-size: .92rem; }
  .contact__map, .contact__map iframe, .map-ph { min-height: 240px; }
  .map-ph { padding: 1.5rem 1.15rem; }

  /* Bottom padding lives on the footer, not body — on body it renders a light
     strip below the dark footer that reads as a bug. */
  .footer {
    padding: 2.25rem 0 calc(72px + env(safe-area-inset-bottom));
    font-size: .9rem;
  }
  /* Both link lists stacked meant 8 x 52px of tap target in a single column —
     over 400px of footer on its own. Side by side halves that without
     shrinking a single target below 44px. */
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__tag { margin-top: .7rem; font-size: .88rem; max-width: 38ch; }
  .footer__col h4 { font-size: .72rem; margin-bottom: .35rem; }
  .footer__col a, .footer__col li {
    display: flex;
    align-items: center;
    min-height: 44px;
  }
  .footer__col ul { gap: .5rem; }   /* 8px clear between adjacent tap targets */
  .footer__bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
    gap: .15rem;
    font-size: .78rem;
  }

  .mobilebar { display: flex; }

  /* The sticky bottom bar already carries WhatsApp — a second one would just
     duplicate the CTA and sit on top of it. */
  .fab-wa { display: none; }

  /* --- Backdrop blur is the most expensive thing on this page for a budget
         Android GPU, and .nav / .mobilebar recompute it on every scroll frame.
         Swapped for higher-opacity solids: same legibility, no per-frame cost. --- */
  .nav, .nav.is-scrolled, .nav__burger, .chip, .btn--glass, .btn--ghost,
  .mobilebar, .menu__backdrop, .menu__panel, .lightbox__backdrop,
  .lightbox__btn, .why__caption, .banner__cap, .hero__pill {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .nav { background: rgba(255, 255, 255, .94); }
  .nav.is-scrolled { background: #fff; }
  .nav__burger { background: rgba(255, 255, 255, .88); }
  .mobilebar { background: rgba(255, 255, 255, .97); }
  .chip { background: rgba(255, 255, 255, .88); }
  .btn--glass { background: rgba(255, 255, 255, .82); }
  .btn--ghost { background: rgba(255, 255, 255, .16); }
  .menu__backdrop { background: rgba(6, 6, 8, .72); }
  .lightbox__backdrop { background: rgba(6, 6, 8, .96); }
  .lightbox__btn { background: rgba(255, 255, 255, .18); }
  .why__caption { background: rgba(10, 10, 10, .74); }

  /* --- Touch targets: nothing tappable under 44px --- */
  .btn { min-height: 44px; padding: .875rem 1.5rem; }
  .btn--lg { min-height: 48px; padding: .95rem 1.6rem; }
  .reviews__all a,
  .info-list a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  /* Links inside running prose stay inline — padding grows the hit area to 44px
     without inflating the line box the way inline-flex would. */
  .services__note a { padding-block: .6rem; }
}

/* Small Android — 360px target */
@media (max-width: 380px) {
  .hero__title { font-size: 1.75rem; }
  .hero__desc { font-size: .95rem; }
  .brand__sub { display: none; }

  .section__title { font-size: 1.6rem; }
  :root { --pad: 1.1rem; }

  .stat__num { font-size: 2.4rem; }
  .stat__star { font-size: 1.6rem; }
  .showcase__price strong { font-size: 2rem; }
  .cta-band__title { font-size: 1.7rem; }
  .banner__cap strong { font-size: 1rem; }

  /* A touch wider so the peeking next card still reads as swipeable */
  .gallery__item { flex-basis: 82%; }

  .mobilebar { gap: .5rem; padding-inline: .6rem; }
  .mobilebar__btn { font-size: .9rem; }
  .btn { padding: .875rem 1.15rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, .reveal-hero { opacity: 1 !important; transform: none !important; }
  .fab-wa__ring { display: none; }
  .marquee__track { animation: none; }
  .marquee__viewport { overflow-x: auto; }
  .fab-wa { opacity: 1; visibility: visible; transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .nav, .mobilebar, .contact__map, .lightbox, .fab-wa, .marquee { display: none !important; }
  .reveal, .reveal-hero { opacity: 1 !important; transform: none !important; }
  body { background: #fff; }
}
