/* ==========================================================================
   MK Motors / Mr Khan Auto Engineering
   Clean · Light · Minimal · Editorial
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@1,9..144,300;1,9..144,400&family=Inter:wght@300&display=swap');

/* ---------------------------------------------------------------
   1. ROOT
--------------------------------------------------------------- */
:root {
  /* Palette — warm off-white, deep black, no aggressive color */
  --bg: #fafaf7;
  --bg-alt: #f1eee6;
  --bg-card: #ffffff;
  --bg-warm: #f7f3ea;

  --border: #e7e4dc;
  --border-strong: #d3cfc6;

  --text: #0a0a0a;
  --text-secondary: #2a2a2a;
  --text-muted: #6c6a64;
  --text-dim: #a8a59c;

  /* Brand red — refined, not aggressive */
  --red: #e60012;
  --red-deep: #b8001a;
  --red-glow: rgba(230, 0, 18, 0.35);

  /* Typography */
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1320px;
  --container-narrow: 1080px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 12vw, 160px);

  /* Motion */
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h: 80px;
}

/* ---------------------------------------------------------------
   2. RESET
--------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
  font-feature-settings: 'kern', 'liga', 'calt', 'ss01';
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

button {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--text);
  color: var(--bg);
}

/* ---------------------------------------------------------------
   3. TYPOGRAPHY
--------------------------------------------------------------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.015em;
}

h4 {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
  font-feature-settings: 'liga', 'kern', 'dlig';
}

p {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.05vw, 1.075rem);
  line-height: 1.7;
}

strong {
  font-weight: 600;
  color: var(--text);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-transform: none;
  color: var(--text);
  margin-bottom: 0;
}

.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--text);
  opacity: 0.6;
}

.text-red {
  color: var(--text);
}
.text-muted {
  color: var(--text-muted);
}
.text-center {
  text-align: center;
}

/* ---------------------------------------------------------------
   4. LAYOUT UTILITIES
--------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container--narrow {
  max-width: var(--container-narrow);
}

section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  position: relative;
}

.grid {
  display: grid;
  gap: 20px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: flex;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ---------------------------------------------------------------
   5. BUTTONS
--------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s var(--ease-out);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn--primary {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

.btn--primary:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  transform: translateY(-1px);
  box-shadow: 0 14px 36px -12px var(--red-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn--ghost:hover {
  background: var(--text);
  color: white;
  border-color: var(--text);
  transform: translateY(-1px);
}

.btn--link {
  padding: 14px 0;
  border: none;
  background: transparent;
  color: var(--text);
  border-radius: 0;
}

.btn--link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
  background: var(--text);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.btn--link:hover {
  color: var(--text-muted);
}

.btn--link:hover::after {
  transform-origin: right;
  transform: scaleX(0);
}

.btn--whatsapp {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn--whatsapp svg {
  color: #25d366;
  flex-shrink: 0;
}

.btn--whatsapp:hover {
  background: var(--text);
  border-color: var(--text);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 14px 36px -12px rgba(0, 0, 0, 0.25);
}

.btn--whatsapp:hover svg {
  color: #25d366;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ---------------------------------------------------------------
   6. NAVIGATION
--------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(250, 250, 247, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border);
}

/* When the page starts with a dark hero, swap nav to light text + light logo */
body.has-dark-hero .nav__link {
  color: rgba(255, 255, 255, 0.65);
}

body.has-dark-hero .nav__link:hover,
body.has-dark-hero .nav__link.is-active {
  color: white;
}

body.has-dark-hero .nav__link::after {
  background: white;
}

body.has-dark-hero .nav__toggle span {
  background: white;
}

body.has-dark-hero .nav__logo-img--scrolled {
  display: none;
}

body.has-dark-hero .nav__logo-img--default {
  display: block;
}

/* Once scrolled past the dark hero, revert nav to standard dark text */
body.has-dark-hero .nav.is-scrolled .nav__link {
  color: var(--text-muted);
}

body.has-dark-hero .nav.is-scrolled .nav__link:hover,
body.has-dark-hero .nav.is-scrolled .nav__link.is-active {
  color: var(--text);
}

body.has-dark-hero .nav.is-scrolled .nav__link::after {
  background: var(--text);
}

body.has-dark-hero .nav.is-scrolled .nav__toggle span {
  background: var(--text);
}

body.has-dark-hero .nav.is-scrolled .nav__logo-img--default {
  display: none;
}

body.has-dark-hero .nav.is-scrolled .nav__logo-img--scrolled {
  display: block;
}

/* Mobile nav overlay always uses light backdrop, force dark text inside */
@media (max-width: 1100px) {
  body.has-dark-hero .nav__links.is-open .nav__link {
    color: var(--text-muted);
  }
}

.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  height: 36px;
  flex-shrink: 0;
  position: relative;
  z-index: 102;
}

.nav__logo img {
  height: 100%;
  width: auto;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease);
}

.nav__logo:hover img {
  opacity: 0.7;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__link {
  position: relative;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--text);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__cta {
  margin-left: 14px;
  padding: 10px 22px;
  background: var(--red);
  color: white;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s var(--ease-out);
}

.nav__cta:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px -8px var(--red-glow);
}

/* Hamburger */
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 102;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.4s var(--ease);
  transform-origin: center;
}

.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1100px) {
  /* When the mobile menu is open, the menu has a light overlay behind the
     nav — so force dark logo + dark hamburger bars + transparent nav bg
     regardless of has-dark-hero / scrolled state. The toggle (z-index 102)
     and logo (z-index 102) sit above the menu (z-index 101) within the
     nav's stacking context, so they stay tappable. */
  body.menu-open .nav {
    background: transparent !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    border-bottom-color: transparent !important;
  }

  body.menu-open .nav__toggle span,
  body.menu-open.has-dark-hero .nav__toggle span,
  body.menu-open .nav.is-scrolled .nav__toggle span,
  body.menu-open.has-dark-hero .nav.is-scrolled .nav__toggle span {
    background: var(--text);
  }

  body.menu-open .nav__logo-img--default,
  body.menu-open.has-dark-hero .nav__logo-img--default {
    display: none;
  }

  body.menu-open .nav__logo-img--scrolled,
  body.menu-open.has-dark-hero .nav__logo-img--scrolled {
    display: block;
  }

  .nav__toggle {
    display: flex;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* Dynamic viewport height where supported (handles iOS address bar) */
    height: 100dvh;
    z-index: 101;
    /* Solid background — no alpha, no chance of bleed-through */
    background: #fafaf7;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 100px var(--gutter) 40px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.35s var(--ease), visibility 0s linear 0.35s;
  }

  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.35s var(--ease), visibility 0s linear 0s;
  }

  .nav__link {
    font-size: 1.6rem;
    font-weight: 400;
    padding: 12px 24px;
    letter-spacing: -0.02em;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .nav__link::after {
    display: none;
  }

  .nav__cta {
    margin-top: 16px;
    margin-left: 0;
    font-size: 1rem;
    padding: 14px 32px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
}

/* ---------------------------------------------------------------
   7. HERO — DARK, CINEMATIC, RED-ACCENTED
--------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
  color: white;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(230, 0, 18, 0.16), transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(230, 0, 18, 0.1), transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: 1;
  mix-blend-mode: normal;
  filter: brightness(0.92) contrast(1.05);
}

.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.97) 0%,
      rgba(5, 5, 5, 0.94) 38%,
      rgba(5, 5, 5, 0.7) 50%,
      rgba(5, 5, 5, 0.28) 62%,
      rgba(5, 5, 5, 0.02) 80%
    ),
    linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.35) 0%,
      rgba(5, 5, 5, 0) 20%,
      rgba(5, 5, 5, 0) 80%,
      rgba(5, 5, 5, 0.35) 100%
    );
}

@media (max-width: 900px) {
  .hero__image::after {
    background:
      linear-gradient(
        180deg,
        rgba(5, 5, 5, 0.88) 0%,
        rgba(5, 5, 5, 0.7) 35%,
        rgba(5, 5, 5, 0.25) 65%,
        rgba(5, 5, 5, 0.55) 100%
      );
  }
}

.hero__grid {
  display: none;
}

.hero__content {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) var(--gutter) 100px;
  position: relative;
  z-index: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__eyebrow {
  margin-bottom: 36px;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 0.2s forwards;
  color: rgba(255, 255, 255, 0.7);
}

.hero__eyebrow::before {
  background: var(--red);
  opacity: 1;
  width: 36px;
  height: 1.5px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 36px;
  max-width: 1100px;
  color: white;
}

.hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.025em;
}

.hero__title em::after {
  display: none;
}

.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(36px);
  animation: fade-up 1s var(--ease-out) forwards;
}

.hero__title .word:nth-child(1) { animation-delay: 0.3s; }
.hero__title .word:nth-child(2) { animation-delay: 0.42s; }
.hero__title .word:nth-child(3) { animation-delay: 0.54s; }
.hero__title .word:nth-child(4) { animation-delay: 0.66s; }
.hero__title .word:nth-child(5) { animation-delay: 0.78s; }

.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
  margin-bottom: 48px;
  font-weight: 400;
  line-height: 1.65;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 1s forwards;
}

/* Hero CTAs — primary stays red (global); ghost / whatsapp / link adapt to dark */
.hero__ctas .btn--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.hero__ctas .btn--ghost:hover {
  background: white;
  color: var(--text);
  border-color: white;
}

.hero__ctas .btn--whatsapp {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
  backdrop-filter: blur(8px);
}

.hero__ctas .btn--whatsapp:hover {
  background: white;
  color: var(--text);
  border-color: white;
}

.hero__ctas .btn--whatsapp svg,
.hero__ctas .btn--whatsapp:hover svg {
  color: #25d366;
}

.hero__ctas .btn--link {
  color: white;
}

.hero__ctas .btn--link::after {
  background: white;
}

.hero__ctas .btn--link:hover {
  color: rgba(255, 255, 255, 0.6);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 1.2s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 1.5s forwards;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  background-size: 100% 200%;
  animation: scroll-line 2s var(--ease) infinite;
}

@keyframes scroll-line {
  0% {
    background-position: 0 -100%;
  }
  100% {
    background-position: 0 100%;
  }
}

.hero__strip {
  position: relative;
  margin-top: 0;
  flex-shrink: 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
  overflow: hidden;
  z-index: 2;
}

.hero__strip .marquee__item {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
}

.hero__strip .marquee__item::after {
  background: var(--red);
  width: 6px;
  height: 6px;
}

/* Solid dark strip — kill the edge fades on the same element (.hero__strip is also .marquee) */
.hero__strip.marquee::before,
.hero__strip.marquee::after,
.hero__strip::before,
.hero__strip::after {
  display: none !important;
  background: none !important;
}

@media (max-width: 768px) {
  .hero__scroll {
    display: none;
  }
}

/* ---------------------------------------------------------------
   8. MARQUEE
--------------------------------------------------------------- */
.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  position: relative;
}

.marquee__track {
  display: flex;
  flex-shrink: 0;
  gap: 56px;
  padding-right: 56px;
  align-items: center;
  animation: marquee-scroll 50s linear infinite;
}

.marquee__track--reverse {
  animation-direction: reverse;
}

.marquee__item {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 56px;
}

.marquee__item::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--text-dim);
  border-radius: 50%;
}

.marquee--big .marquee__track {
  gap: 80px;
  padding-right: 80px;
  animation-duration: 45s;
}

.marquee--big .marquee__item {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px var(--border-strong);
  letter-spacing: -0.04em;
  text-transform: none;
  transition: all 0.4s var(--ease);
}

.marquee--big .marquee__item:hover {
  color: var(--text);
  -webkit-text-stroke-color: var(--text);
}

.marquee--big .marquee__item::after {
  display: none;
}

@keyframes marquee-scroll {
  to {
    transform: translateX(-100%);
  }
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}

.bg-elevated .marquee::before,
.bg-dark .marquee::before {
  background: linear-gradient(90deg, var(--bg-alt), transparent);
}

.bg-elevated .marquee::after,
.bg-dark .marquee::after {
  background: linear-gradient(-90deg, var(--bg-alt), transparent);
}

/* ---------------------------------------------------------------
   9. STATS
--------------------------------------------------------------- */
.stats {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.stat {
  background: var(--bg);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease);
}

.stat:hover {
  background: var(--bg-card);
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 50%;
  height: 1px;
  background: var(--text);
  transition: transform 0.5s var(--ease-out);
}

.stat:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 12px;
}

.stat__num em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.stat__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------------------------------------------------------------
   10. SECTION HEADS
--------------------------------------------------------------- */
.section-head {
  margin-bottom: 80px;
  max-width: 760px;
}

.section-head .eyebrow {
  margin-bottom: 24px;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head__sub {
  margin-top: 28px;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
}

.section-head--center .section-head__sub {
  margin-left: auto;
  margin-right: auto;
}

/* ---------------------------------------------------------------
   11. SPLIT
--------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-alt);
}

.split__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}

.split__media:hover img {
  transform: scale(1.04);
}

.split__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

.split__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  z-index: 2;
}

.split__text h2 {
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.split__text h2 em {
  font-family: var(--font-serif);
  font-style: italic;
}

.split__text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.split__text .btn {
  margin-top: 32px;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ---------------------------------------------------------------
   12. SERVICE CARDS
--------------------------------------------------------------- */
.service-card {
  position: relative;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  cursor: pointer;
  display: block;
}

.service-card::before {
  display: none;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}

.service-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px -24px rgba(20, 20, 20, 0.12);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  margin-bottom: 28px;
  transition: all 0.4s var(--ease);
}

.service-card:hover .service-card__icon {
  background: var(--text);
  color: white;
  border-color: var(--text);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-card__arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: all 0.4s var(--ease-out);
}

.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
  background: var(--text);
  color: white;
  border-color: var(--text);
}

/* ---------------------------------------------------------------
   13. BENTO / FEATURE GRID
--------------------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
}

.bento__cell {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento__cell:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: 0 24px 60px -24px rgba(20, 20, 20, 0.1);
}

.bento__cell--wide {
  grid-column: span 2;
}

.bento__cell--tall {
  grid-row: span 2;
}

.bento__cell--accent {
  background: var(--text);
  color: white;
  border-color: var(--text);
}

.bento__cell--accent:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
}

/* Higher-specificity overrides — must beat the general .bento__cell h3 / p rules below */
.bento__cell.bento__cell--accent h3,
.bento__cell--accent.bento__cell h3 {
  color: white;
}

.bento__cell.bento__cell--accent p,
.bento__cell--accent.bento__cell p {
  color: rgba(255, 255, 255, 0.72);
}

.bento__cell.bento__cell--accent .bento__icon,
.bento__cell--accent.bento__cell .bento__icon {
  color: white;
}

.bento__cell h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  font-weight: 500;
  color: var(--text);
}

.bento__cell--big h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.bento__cell p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.bento__icon {
  width: 40px;
  height: 40px;
  color: var(--text);
  margin-bottom: 24px;
}

.bento__cell--accent .bento__icon {
  color: white;
}

@media (max-width: 1024px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento__cell--wide,
  .bento__cell--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ---------------------------------------------------------------
   14. BRANDS
--------------------------------------------------------------- */
.brands {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.brands__bg {
  display: none;
}

.brand-card {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 32px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  cursor: pointer;
}

.brand-card::before {
  display: none;
}

.brand-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 10px;
  position: static;
  transition: transform 0.4s var(--ease);
}

.brand-card__country {
  position: static;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.brand-card:hover {
  border-color: var(--text);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px -24px rgba(20, 20, 20, 0.12);
}

.brand-card:hover .brand-card__name {
  color: var(--text);
}

.brand-card:hover .brand-card__country {
  color: var(--text);
}

/* ---------------------------------------------------------------
   15. SHOWCASE
--------------------------------------------------------------- */
.showcase {
  padding: 0;
  margin: var(--section-y) 0;
}

.showcase__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.showcase__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-alt);
  border-radius: 4px;
}

.showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}

.showcase__media:hover img {
  transform: scale(1.03);
}

.showcase__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.5) 100%);
}

.showcase__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 64px;
  z-index: 2;
}

.showcase__text-inner {
  max-width: 540px;
}

.showcase__text h2 {
  color: white;
  margin-bottom: 24px;
}

.showcase__text p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .showcase__text {
    padding: 32px;
  }
  .showcase__media {
    aspect-ratio: 4 / 5;
  }
}

/* ---------------------------------------------------------------
   16. DETAILING CARDS
--------------------------------------------------------------- */
.detailing-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-alt);
  border-radius: 4px;
}

.detailing-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.detailing-card:hover img {
  transform: scale(1.05);
}

.detailing-card__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85) 75%);
  z-index: 2;
}

.detailing-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: white;
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}

.detailing-card__meta {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  margin-bottom: 6px;
}

/* ---------------------------------------------------------------
   17. TESTIMONIALS
--------------------------------------------------------------- */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 36px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out);
}

.testimonial-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: 0 24px 60px -24px rgba(20, 20, 20, 0.1);
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 4rem;
  line-height: 1;
  color: var(--text-dim);
  margin-bottom: 8px;
  height: 32px;
  font-weight: 300;
}

.testimonial-card__text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 28px;
  flex-grow: 1;
  font-weight: 400;
}

.testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--text);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}

.testimonial-card__name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
}

.testimonial-card__role {
  font-size: 0.74rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------------------------------------------------------------
   18. CTA BLOCK
--------------------------------------------------------------- */
.cta-block {
  position: relative;
  padding: clamp(100px, 14vw, 180px) 0;
  text-align: center;
  overflow: hidden;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-block::before {
  display: none;
}

.cta-block__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.cta-block__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: none;
  margin-bottom: 32px;
  color: var(--text);
}

.cta-block__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.cta-block__sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 44px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-block .btn-row {
  justify-content: center;
}

/* ---------------------------------------------------------------
   19. FOOTER
--------------------------------------------------------------- */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer__brand img {
  height: 40px;
  margin-bottom: 24px;
}

.footer__brand p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 360px;
  margin-bottom: 24px;
  line-height: 1.65;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s var(--ease-out);
  background: var(--bg-card);
}

.footer__social:hover {
  background: var(--text);
  border-color: var(--text);
  color: white;
  transform: translateY(-2px);
}

.footer__social svg {
  width: 16px;
  height: 16px;
}

.footer__heading {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer__list a,
.footer__list li {
  display: block;
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.3s var(--ease);
}

.footer__list a:hover {
  color: var(--text);
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer__bottom a {
  color: var(--text-muted);
}

.footer__bottom a:hover {
  color: var(--text);
}

@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: span 2;
  }
}

@media (max-width: 540px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__brand {
    grid-column: span 1;
  }
}

/* ---------------------------------------------------------------
   20. FLOATING WHATSAPP
--------------------------------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.35);
  transition: all 0.4s var(--ease-out);
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.4;
  animation: wa-pulse 2.4s var(--ease) infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 26px;
  height: 26px;
}

/* ---------------------------------------------------------------
   21. PAGE HERO
--------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 120px) 0 100px;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--bg);
}

.page-hero__image {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: grayscale(0.4);
}

.page-hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 250, 247, 0.6), rgba(250, 250, 247, 0.95));
}

.page-hero__content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}

.page-hero__eyebrow {
  margin-bottom: 24px;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  max-width: 1100px;
  margin-bottom: 28px;
  color: var(--text);
}

.page-hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.page-hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}

.breadcrumb a:hover {
  color: var(--text);
}

.breadcrumb__sep {
  color: var(--text-dim);
}

/* ---------------------------------------------------------------
   22. CONTACT
--------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 20px;
  transition: all 0.4s var(--ease-out);
}

.contact-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: 0 24px 60px -24px rgba(20, 20, 20, 0.08);
}

.contact-card__flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 16px;
}

.contact-card__flag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text);
}

.contact-card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.contact-card__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.contact-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0;
}

.contact-card__list svg {
  width: 16px;
  height: 16px;
  color: var(--text);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-card__list a:hover {
  color: var(--text);
}

.contact-card__cta {
  margin-top: 28px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  border-radius: 4px;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--text);
  background: var(--bg-card);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-body);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

.map-wrap {
  margin-top: 80px;
  position: relative;
  aspect-ratio: 21 / 9;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  filter: grayscale(0.5) contrast(0.95);
  background: var(--bg-alt);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------------------------------------------------------------
   23. GALLERY
--------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  cursor: pointer;
  border-radius: 4px;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter 0.4s var(--ease);
  filter: grayscale(15%);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.75));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  opacity: 0.8;
  font-weight: 500;
  margin-bottom: 4px;
}

.gallery-item__title {
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 540px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ---------------------------------------------------------------
   24. PROCESS
--------------------------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong) 10%, var(--border-strong) 90%, transparent);
  z-index: 0;
}

.process__step {
  position: relative;
  z-index: 1;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
}

.process__step:hover {
  border-color: var(--text);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px -24px rgba(20, 20, 20, 0.1);
}

.process__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -52px auto 24px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: all 0.4s var(--ease);
}

.process__step:hover .process__num {
  background: var(--text);
  color: white;
  border-color: var(--text);
}

.process__step h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 500;
}

.process__step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .process {
    grid-template-columns: 1fr 1fr;
  }
  .process::before {
    display: none;
  }
}

@media (max-width: 540px) {
  .process {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------
   25. REVEAL ANIMATIONS
--------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--fade {
  transform: none;
}

.reveal--right {
  transform: translateX(-30px);
}

.reveal--right.is-visible {
  transform: translateX(0);
}

.reveal--scale {
  transform: scale(0.97);
}

.reveal--scale.is-visible {
  transform: scale(1);
}

.reveal--delay-1 {
  transition-delay: 0.1s;
}
.reveal--delay-2 {
  transition-delay: 0.2s;
}
.reveal--delay-3 {
  transition-delay: 0.3s;
}
.reveal--delay-4 {
  transition-delay: 0.4s;
}

.reveal-clip {
  position: relative;
  overflow: hidden;
}

.reveal-clip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg);
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 1s var(--ease-out);
}

.reveal-clip.is-visible::after {
  transform: scaleX(0);
}

/* ---------------------------------------------------------------
   26. KEYFRAMES
--------------------------------------------------------------- */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scale-in {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* ---------------------------------------------------------------
   27. SCROLL PROGRESS
--------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--text);
  z-index: 101;
  width: 0;
  transition: width 0.05s linear;
}

/* ---------------------------------------------------------------
   28. UTILITIES (BG VARIANTS)
--------------------------------------------------------------- */
.bg-elevated {
  background: var(--bg-alt);
}

/* ---------- DARK SECTION ---------- */
.bg-dark {
  background: var(--text);
  color: white;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
  color: white;
}

.bg-dark p {
  color: rgba(255, 255, 255, 0.65);
}

.bg-dark strong {
  color: white;
}

.bg-dark .section-title,
.bg-dark .cta-block__title {
  color: white;
}

.bg-dark .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.bg-dark .eyebrow::before {
  background: white;
  opacity: 0.4;
}

.bg-dark .divider {
  background: white;
  opacity: 0.4;
}

.bg-dark .tag {
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
}

/* Marquee on dark */
.bg-dark .marquee::before {
  background: linear-gradient(90deg, var(--text), transparent);
}

.bg-dark .marquee::after {
  background: linear-gradient(-90deg, var(--text), transparent);
}

.bg-dark .marquee__item {
  color: rgba(255, 255, 255, 0.68);
}

.bg-dark .marquee__item::after {
  background: rgba(255, 255, 255, 0.3);
}

.bg-dark .marquee--big .marquee__item {
  color: transparent;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.25);
}

.bg-dark .marquee--big .marquee__item:hover {
  color: white;
  -webkit-text-stroke-color: white;
}

/* Service cards on dark */
.bg-dark .service-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.bg-dark .service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.bg-dark .service-card::after {
  background: white;
}

.bg-dark .service-card__icon {
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.bg-dark .service-card:hover .service-card__icon {
  background: white;
  color: var(--text);
  border-color: white;
}

.bg-dark .service-card h3 {
  color: white;
}

.bg-dark .service-card p {
  color: rgba(255, 255, 255, 0.6);
}

.bg-dark .service-card__arrow {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

.bg-dark .service-card:hover .service-card__arrow {
  background: white;
  color: var(--text);
  border-color: white;
}

/* Bento on dark */
.bg-dark .bento__cell {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.bg-dark .bento__cell:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.bg-dark .bento__cell--accent {
  background: white;
  border-color: white;
  color: var(--text);
}

.bg-dark .bento__cell--accent h3 {
  color: var(--text);
}

.bg-dark .bento__cell--accent p {
  color: var(--text-muted);
}

.bg-dark .bento__cell--accent:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
}

.bg-dark .bento__cell h3 {
  color: white;
}

.bg-dark .bento__cell p {
  color: rgba(255, 255, 255, 0.6);
}

.bg-dark .bento__icon {
  color: white;
}

.bg-dark .bento__cell--accent .bento__icon {
  color: var(--text);
}

/* Brand cards on dark */
.bg-dark .brand-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.bg-dark .brand-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.bg-dark .brand-card__name {
  color: rgba(255, 255, 255, 0.85);
}

.bg-dark .brand-card:hover .brand-card__name {
  color: white;
}

.bg-dark .brand-card__country {
  color: rgba(255, 255, 255, 0.5);
}

.bg-dark .brand-card:hover .brand-card__country {
  color: rgba(255, 255, 255, 0.8);
}

/* Process on dark */
.bg-dark .process::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2) 10%, rgba(255, 255, 255, 0.2) 90%, transparent);
}

.bg-dark .process__step {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.bg-dark .process__step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: white;
}

.bg-dark .process__num {
  background: var(--text);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.bg-dark .process__step:hover .process__num {
  background: white;
  color: var(--text);
  border-color: white;
}

.bg-dark .process__step h4 {
  color: white;
}

.bg-dark .process__step p {
  color: rgba(255, 255, 255, 0.6);
}

/* Testimonial on dark */
.bg-dark .testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.bg-dark .testimonial-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.bg-dark .testimonial-card__quote {
  color: rgba(255, 255, 255, 0.35);
}

.bg-dark .testimonial-card__text {
  color: white;
}

.bg-dark .testimonial-card__person {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.bg-dark .testimonial-card__name {
  color: white;
}

.bg-dark .testimonial-card__role {
  color: rgba(255, 255, 255, 0.5);
}

.bg-dark .testimonial-card__avatar {
  background: white;
  color: var(--text);
}

/* Stats on dark */
.bg-dark.stats,
.bg-dark .stats {
  background: var(--text);
  border-color: rgba(255, 255, 255, 0.1);
}

.bg-dark .stats__grid {
  background: rgba(255, 255, 255, 0.1);
}

.bg-dark .stat {
  background: var(--text);
}

.bg-dark .stat:hover {
  background: rgba(255, 255, 255, 0.04);
}

.bg-dark .stat::before {
  background: white;
}

.bg-dark .stat__num {
  color: white;
}

.bg-dark .stat__label {
  color: rgba(255, 255, 255, 0.55);
}

/* CTA block on dark */
.bg-dark.cta-block {
  background: var(--text);
  border-color: rgba(255, 255, 255, 0.1);
}

.bg-dark .cta-block__sub {
  color: rgba(255, 255, 255, 0.7);
}

/* Split on dark */
.bg-dark .split__badge {
  background: rgba(0, 0, 0, 0.7);
  color: white;
}

.bg-dark .split__text p {
  color: rgba(255, 255, 255, 0.7);
}

.bg-dark .split__media {
  background: rgba(255, 255, 255, 0.03);
}

/* Buttons on dark — primary stays brand red, ghost adapts */
.bg-dark .btn--primary {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

.bg-dark .btn--primary:hover {
  background: var(--red-deep);
  color: white;
  border-color: var(--red-deep);
  box-shadow: 0 14px 36px -12px var(--red-glow);
}

.bg-dark .btn--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
}

.bg-dark .btn--ghost:hover {
  background: white;
  color: var(--text);
  border-color: white;
}

.bg-dark .btn--whatsapp {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
}

.bg-dark .btn--whatsapp:hover {
  background: white;
  color: var(--text);
  border-color: white;
}

.bg-dark .btn--whatsapp svg,
.bg-dark .btn--whatsapp:hover svg {
  color: #25d366;
}

.bg-dark .btn--link {
  color: white;
}

.bg-dark .btn--link::after {
  background: white;
}

.bg-dark .btn--link:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* Checklist on dark */
.bg-dark .checklist li {
  color: rgba(255, 255, 255, 0.75);
}

.bg-dark .checklist li::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

/* Breadcrumb on dark */
.bg-dark .breadcrumb {
  color: rgba(255, 255, 255, 0.5);
}

.bg-dark .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.bg-dark .breadcrumb a:hover {
  color: white;
}

.bg-dark .breadcrumb__sep {
  color: rgba(255, 255, 255, 0.3);
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--text);
  margin: 32px 0;
  opacity: 0.4;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
}

.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 6px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%230a0a0a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
}

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

/* ---------------------------------------------------------------
   30. RESPONSIVE — full mobile / tablet tightening
--------------------------------------------------------------- */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  :root {
    --section-y: clamp(70px, 9vw, 110px);
  }

  .section-head {
    margin-bottom: 56px;
  }

  .stats {
    padding: 70px 0;
  }

  .brands {
    padding: 110px 0;
  }

  .showcase__text {
    padding: 48px;
  }

  .map-wrap {
    aspect-ratio: 16 / 9;
  }
}

/* Small tablet / large mobile (≤900px) */
@media (max-width: 900px) {
  :root {
    --section-y: clamp(56px, 8vw, 90px);
    --nav-h: 72px;
  }

  /* Hero — vertical layout, image now reads below the text */
  .hero {
    min-height: 90vh;
  }

  .hero__content {
    padding: calc(var(--nav-h) + 40px) var(--gutter) 60px;
  }

  .hero__image {
    background-position: center bottom;
  }

  .hero__eyebrow {
    margin-bottom: 24px;
  }

  .hero__title {
    margin-bottom: 24px;
  }

  .hero__sub {
    margin-bottom: 32px;
  }

  /* Page hero — tighter top padding */
  .page-hero {
    padding: calc(var(--nav-h) + 60px) 0 60px;
  }

  /* Section heads */
  .section-head {
    margin-bottom: 48px;
  }

  .section-head__sub {
    margin-top: 24px;
  }

  /* Cards — less aggressive padding */
  .service-card {
    padding: 32px 26px;
  }

  .bento__cell {
    padding: 30px;
  }

  .testimonial-card {
    padding: 34px 28px;
  }

  .contact-card,
  .contact-form {
    padding: 32px;
  }

  /* Brand cards — wider aspect for narrow layouts */
  .brand-card {
    aspect-ratio: 16 / 9;
    padding: 26px;
  }

  /* Big marquee — smaller gap */
  .marquee--big .marquee__track {
    gap: 60px;
    padding-right: 60px;
  }

  /* Brands section padding */
  .brands {
    padding: 90px 0;
  }

  /* Stats padding */
  .stats {
    padding: 60px 0;
  }

  /* CTA block padding */
  .cta-block {
    padding: clamp(70px, 12vw, 120px) 0;
  }

  /* Showcase */
  .showcase__text {
    padding: 36px;
  }
}

/* Mobile (≤640px) */
@media (max-width: 640px) {
  :root {
    --gutter: clamp(16px, 4vw, 24px);
  }

  /* Hero mobile — tighter padding, full-width CTAs */
  .hero {
    min-height: 88vh;
  }

  .hero__content {
    padding: calc(var(--nav-h) + 24px) var(--gutter) 50px;
  }

  .hero__ctas {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Page hero */
  .page-hero {
    padding: calc(var(--nav-h) + 36px) 0 50px;
  }

  /* CTA block buttons stack */
  .cta-block .btn-row {
    flex-direction: column;
    width: 100%;
  }

  .cta-block .btn-row .btn {
    width: 100%;
    justify-content: center;
  }

  /* Page-hero CTAs in UK MOT etc. — stack */
  .page-hero__content > div[style*="display:flex"],
  .page-hero__content > div[style*="display: flex"] {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .page-hero__content > div[style*="display:flex"] .btn,
  .page-hero__content > div[style*="display: flex"] .btn {
    width: 100%;
    justify-content: center;
  }

  /* Bento — single col with --wide/--tall reset */
  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }

  .bento__cell--wide,
  .bento__cell--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento__cell {
    padding: 26px;
    min-height: auto;
  }

  .bento__cell--big h3 {
    font-size: 1.5rem;
  }

  /* Stats — single col on tiny screens */
  .stats {
    padding: 48px 0;
  }

  .stats__grid {
    grid-template-columns: 1fr;
  }

  .stat {
    padding: 28px 24px;
  }

  /* Brand cards smaller */
  .brand-card {
    aspect-ratio: 16 / 10;
    padding: 22px;
  }

  .brand-card__name {
    font-size: 1.9rem;
  }

  /* Service cards more compact */
  .service-card {
    padding: 28px 22px;
  }

  .service-card__arrow {
    bottom: 22px;
    right: 22px;
    width: 30px;
    height: 30px;
  }

  /* Hero ticker readable but compact */
  .hero__strip {
    padding: 16px 0;
  }

  .hero__strip .marquee__item {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    gap: 40px;
  }

  .hero__strip .marquee__track {
    gap: 40px;
    padding-right: 40px;
  }

  /* Big marquee */
  .marquee--big .marquee__item {
    font-size: clamp(2.4rem, 11vw, 4rem);
  }

  .marquee--big .marquee__track {
    gap: 48px;
    padding-right: 48px;
  }

  /* Map aspect more square */
  .map-wrap {
    aspect-ratio: 4 / 3;
    margin-top: 48px;
  }

  /* Showcase text */
  .showcase__text {
    padding: 24px;
  }

  .showcase__media {
    aspect-ratio: 4 / 5;
  }

  /* Split — tighter gap */
  .split {
    gap: 36px;
  }

  /* Detailing card padding */
  .detailing-card__content {
    padding: 22px;
  }

  /* Contact card / form */
  .contact-form,
  .contact-card {
    padding: 26px;
  }

  /* Buttons more compact */
  .btn {
    padding: 13px 22px;
    font-size: 0.88rem;
  }

  /* Floating WhatsApp smaller and tucked */
  .wa-float {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }

  /* Process — single col */
  .process {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Section head */
  .section-head {
    margin-bottom: 40px;
  }

  /* Footer */
  .footer {
    padding: 60px 0 30px;
  }

  .footer__top {
    margin-bottom: 40px;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Page hero title scale */
  .page-hero__title,
  .hero__title {
    margin-bottom: 20px;
  }

  /* Form label/input sizing */
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
}

/* Very small mobile (≤420px) */
@media (max-width: 420px) {
  :root {
    --nav-h: 64px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 11vw, 2.9rem);
    line-height: 1.02;
  }

  .page-hero__title {
    font-size: clamp(2.2rem, 11vw, 2.9rem);
  }

  .section-title,
  .cta-block__title {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .hero__sub,
  .page-hero__sub {
    font-size: 0.98rem;
  }

  .hero__eyebrow,
  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .stat__num {
    font-size: 2.4rem;
  }

  .nav__inner {
    padding: 0 16px;
  }

  .nav__logo {
    height: 30px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Bento minimal padding */
  .bento__cell {
    padding: 22px;
  }

  /* Marquee even smaller */
  .marquee--big .marquee__item {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  /* Buttons */
  .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  /* Brand card name smaller */
  .brand-card__name {
    font-size: 1.7rem;
  }

  /* Service card icon */
  .service-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
  }

  /* Showcase media */
  .showcase__media {
    aspect-ratio: 3 / 4;
  }

  /* Detail card aspect */
  .detailing-card {
    aspect-ratio: 4 / 5;
  }
}

/* Landscape phones — keep hero usable */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
  }

  .hero__content {
    padding-top: calc(var(--nav-h) + 20px);
    padding-bottom: 30px;
  }

  .hero__scroll {
    display: none;
  }

  .hero__title {
    font-size: clamp(1.9rem, 5vw, 3rem);
    margin-bottom: 16px;
  }

  .hero__sub {
    margin-bottom: 22px;
    font-size: 0.95rem;
  }

  .hero__eyebrow {
    margin-bottom: 16px;
  }
}

/* iOS-safe area + tap target */
@supports (padding: max(0px)) {
  .nav,
  .footer,
  .hero__strip {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }

  .wa-float {
    bottom: max(18px, env(safe-area-inset-bottom));
    right: max(18px, env(safe-area-inset-right));
  }
}

/* ---------------------------------------------------------------
   31. REGION SWITCHER (UK vs Pakistan content)
--------------------------------------------------------------- */

/* Show/hide by region — set on <html data-region="pk|uk"> */
html[data-region='pk'] [data-show-for='uk'],
html[data-region='uk'] [data-show-for='pk'] {
  display: none !important;
}

/* Region toggle pill in the nav */
.region-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  margin-right: 6px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  flex-shrink: 0;
}

.region-toggle__btn {
  padding: 6px 12px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border: none;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
  text-transform: uppercase;
}

.region-toggle__btn:hover {
  color: var(--text);
}

.region-toggle__btn.is-active {
  background: var(--text);
  color: white;
}

/* On the dark hero (home page), invert the toggle */
body.has-dark-hero .nav:not(.is-scrolled) .region-toggle {
  background: rgba(255, 255, 255, 0.1);
}

body.has-dark-hero .nav:not(.is-scrolled) .region-toggle__btn {
  color: rgba(255, 255, 255, 0.65);
}

body.has-dark-hero .nav:not(.is-scrolled) .region-toggle__btn:hover {
  color: white;
}

body.has-dark-hero .nav:not(.is-scrolled) .region-toggle__btn.is-active {
  background: white;
  color: var(--text);
}

/* When mobile menu is open, ensure toggle is dark/visible */
body.menu-open .region-toggle {
  background: rgba(0, 0, 0, 0.06);
}

body.menu-open .region-toggle__btn {
  color: var(--text-muted);
}

body.menu-open .region-toggle__btn.is-active {
  background: var(--text);
  color: white;
}

/* On mobile menu, give the toggle a bit more breathing room */
@media (max-width: 1100px) {
  .nav__links .region-toggle {
    margin: 16px 0 0;
  }
  .nav__links .region-toggle__btn {
    font-size: 0.85rem;
    padding: 8px 18px;
  }
}

/* ---------------------------------------------------------------
   32. COMING SOON BADGE
--------------------------------------------------------------- */

.is-coming-soon {
  position: relative;
  pointer-events: none;
}

.is-coming-soon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 250, 247, 0.55);
  -webkit-backdrop-filter: grayscale(0.3) blur(1px);
  backdrop-filter: grayscale(0.3) blur(1px);
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
}

.is-coming-soon::after {
  content: 'Coming Soon';
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 6px 14px;
  background: var(--text);
  color: white;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
}

/* Dark-section variant of coming soon overlay */
.bg-dark .is-coming-soon::before {
  background: rgba(10, 10, 10, 0.55);
}

.bg-dark .is-coming-soon::after {
  background: white;
  color: var(--text);
}

/* For detailing cards (image bg), darker overlay */
.detailing-card.is-coming-soon::before {
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: grayscale(0.6);
  backdrop-filter: grayscale(0.6);
}

.detailing-card.is-coming-soon::after {
  background: white;
  color: var(--text);
}
