/* ============================================================
   EMİR OTO — Premium Tamirci Web Sitesi
   Design System + Components
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Renkler — Tabela paletinden alınmış: Kırmızı + Lacivert + Beyaz */
  --bg-0: #0c1019;
  --bg-1: #131826;
  --bg-2: #1a2032;
  --bg-3: #232a3f;
  --line: #2a3147;
  --line-strong: #353d56;

  --text-0: #f5f5f5;
  --text-1: #d4d6dc;
  --text-2: #9aa0ad;
  --text-3: #6b7080;

  /* Tabela kırmızısı — ana vurgu */
  --accent: #e11d26;
  --accent-hot: #f23942;
  --accent-deep: #b81720;
  --accent-glow: rgba(225, 29, 38, 0.45);

  /* Tabela lacivert — ikincil */
  --secondary: #1f2c45;
  --secondary-light: #2a3a55;

  --success: #4ade80;
  --warn: #fbbf24;
  --danger: #ef4444;

  /* Tipografi */
  --font-body: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Anton', 'Bebas Neue', 'Manrope', sans-serif;

  /* Ölçek */
  --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.85rem);
  --fs-sm: clamp(0.85rem, 0.8rem + 0.25vw, 0.95rem);
  --fs-base: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
  --fs-md: clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
  --fs-lg: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
  --fs-xl: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
  --fs-2xl: clamp(2.5rem, 2rem + 2.5vw, 4rem);
  --fs-3xl: clamp(3.5rem, 2.5rem + 5vw, 6.5rem);
  --fs-hero: clamp(4rem, 3rem + 7vw, 9rem);

  /* Spacing */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 6rem;
  --sp-8: 8rem;

  /* Layout */
  --container: 1280px;
  --container-narrow: 980px;
  --radius: 4px;
  --radius-lg: 8px;
  --radius-xl: 16px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --dur-fast: 200ms;
  --dur: 360ms;
  --dur-slow: 700ms;

  /* Shadow */
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.4);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-accent: 0 12px 40px var(--accent-glow);
}

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

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text-1);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button {
  background: none;
  border: none;
  cursor: pointer;
}

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-0);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

/* ---------- LENIS SMOOTH SCROLL ---------- */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

section {
  position: relative;
  padding-block: clamp(4rem, 8vw, 8rem);
}

/* ---------- TYPOGRAPHY HELPERS ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 0.95;
}

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

.section-lede {
  font-size: var(--fs-md);
  color: var(--text-2);
  max-width: 60ch;
  margin-bottom: 3rem;
}

/* Display heading variant */
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
  font-weight: 400;
}

/* Reveal helpers (set initial state — JS triggers reveal) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* No-JS / safety fallback — after a moment, show everything */
.no-js .reveal,
.reveal.is-force-show {
  opacity: 1;
  transform: none;
}

/* Cascade reveal for grids (service cards, process steps, etc.)
   Default state is hidden but a JS safety net + animation guarantees visibility. */
[data-cascade] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-cascade].is-cascade-in {
  opacity: 1;
  transform: none;
}

/* Word-stagger reveal (JS splits into spans) */
.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.split-word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease);
}

.split-word.is-visible > span {
  transform: none;
}

/* ---------- BUTTON ---------- */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: var(--bg-0);
  --btn-bd: var(--accent);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 1.05em 2em;
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    background var(--dur) var(--ease), color var(--dur) var(--ease);
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-hot);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
  z-index: -1;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn:hover::before {
  transform: translateY(0);
}

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

.btn-outline {
  --btn-bg: transparent;
  --btn-fg: var(--text-0);
  --btn-bd: var(--text-0);
}

.btn-outline::before {
  background: var(--text-0);
}

.btn-outline:hover {
  --btn-fg: var(--bg-0);
}

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text-0);
  --btn-bd: transparent;
  padding-inline: 0;
}

.btn-ghost::before {
  display: none;
}

.btn-lg {
  padding: 1.25em 2.4em;
  font-size: var(--fs-base);
}

.btn-icon {
  width: 1.2em;
  height: 1.2em;
}

/* Magnetic wrapper helper */
.magnetic {
  display: inline-block;
  will-change: transform;
}

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--bg-0);
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader__gear {
  width: 64px;
  height: 64px;
  color: var(--accent);
  animation: gear-spin 1.6s linear infinite;
}

.preloader__brand {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: var(--text-0);
  text-transform: uppercase;
  overflow: hidden;
}

.preloader__brand span {
  display: inline-block;
  animation: brand-up 0.8s var(--ease) backwards;
}

.preloader__brand span:nth-child(2) {
  animation-delay: 0.08s;
}
.preloader__brand span:nth-child(3) {
  animation-delay: 0.16s;
}
.preloader__brand span:nth-child(4) {
  animation-delay: 0.24s;
}
.preloader__brand span:nth-child(5) {
  animation-delay: 0.32s;
}
.preloader__brand span:nth-child(6) {
  animation-delay: 0.4s;
}
.preloader__brand span:nth-child(7) {
  animation-delay: 0.48s;
}
.preloader__brand span:nth-child(8) {
  animation-delay: 0.56s;
}

@keyframes gear-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes brand-up {
  from {
    transform: translateY(110%);
  }
  to {
    transform: translateY(0);
  }
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding-block: 1.25rem;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease),
    border-color var(--dur) var(--ease), padding var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.is-scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  padding-block: 0.85rem;
}

.navbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--text-0);
  text-transform: uppercase;
  font-style: italic;
}

.navbar__brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0;
  font-style: italic;
  border: 1.5px solid rgba(255,255,255,0.15);
  box-shadow: 0 2px 12px var(--accent-glow);
}

.navbar__menu {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.navbar__link {
  position: relative;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-1);
  padding-block: 0.5rem;
}

.navbar__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.navbar__link:hover {
  color: var(--text-0);
}

.navbar__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--text-0);
  padding: 0.65em 1.2em;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.navbar__phone:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg-0);
}

.navbar__phone svg {
  width: 1em;
  height: 1em;
}

/* Mobile burger */
.navbar__burger {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}

.navbar__burger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--text-0);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), top 0.4s var(--ease);
}

.navbar__burger span:nth-child(1) {
  top: 14px;
}
.navbar__burger span:nth-child(2) {
  top: 19px;
}
.navbar__burger span:nth-child(3) {
  top: 24px;
}

.navbar__burger.is-open span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.navbar__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.navbar__burger.is-open span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg-0);
  padding-top: 6rem;
  padding-inline: clamp(1.5rem, 6vw, 3rem);
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text-0);
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--line);
}

.mobile-menu__link:hover {
  color: var(--accent);
}

.mobile-menu__cta {
  margin-top: auto;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 8rem;
  padding-bottom: 4rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* CSS-only premium gradient base — Kırmızı + Lacivert harmony */
  background:
    radial-gradient(ellipse 80% 60% at 70% 25%, rgba(225, 29, 38, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 15% 85%, rgba(31, 44, 69, 0.6) 0%, transparent 60%),
    linear-gradient(135deg, #1a2033 0%, #0c1019 50%, #060810 100%);
}

/* Animated grid pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(225, 29, 38, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 29, 38, 0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
  animation: hero-grid 40s linear infinite;
}

@keyframes hero-grid {
  to {
    background-position: 80px 80px;
  }
}

/* Hero decorative SVG car silhouette / atmosphere */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -5%;
  width: 70%;
  height: 60%;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400' fill='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23e11d26' stop-opacity='0.22'/%3E%3Cstop offset='1' stop-color='%23e11d26' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M120 280c0-30 30-50 70-55l60-80c10-13 25-20 42-20h220c20 0 38 8 50 23l60 75c50 5 90 25 110 50 15 18 18 35 18 50v15h-50c-3-25-25-45-50-45s-47 20-50 45H280c-3-25-25-45-50-45s-47 20-50 45h-50c-12 0-22-10-22-22 0-12 8-22 22-22-1-5-3-10-10-14z' fill='%23000' opacity='.4'/%3E%3Cpath d='M120 280c0-30 30-50 70-55l60-80c10-13 25-20 42-20h220c20 0 38 8 50 23l60 75c50 5 90 25 110 50 15 18 18 35 18 50v15h-50c-3-25-25-45-50-45s-47 20-50 45H280c-3-25-25-45-50-45s-47 20-50 45h-50c-12 0-22-10-22-22 0-12 8-22 22-22-1-5-3-10-10-14z' stroke='url(%23g)' stroke-width='1.5' fill='none'/%3E%3Ccircle cx='230' cy='325' r='35' stroke='%23e11d26' stroke-opacity='.25' stroke-width='1.5' fill='none'/%3E%3Ccircle cx='230' cy='325' r='20' stroke='%23e11d26' stroke-opacity='.45' stroke-width='1' fill='none'/%3E%3Ccircle cx='580' cy='325' r='35' stroke='%23e11d26' stroke-opacity='.25' stroke-width='1.5' fill='none'/%3E%3Ccircle cx='580' cy='325' r='20' stroke='%23e11d26' stroke-opacity='.45' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  opacity: 0.85;
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
}

.hero__bg-img,
.hero__bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(0.85) brightness(0.45);
  opacity: 0.6;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(12, 16, 25, 0.4) 0%,
    rgba(12, 16, 25, 0.2) 40%,
    rgba(12, 16, 25, 0.9) 100%
  );
  pointer-events: none;
}

.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(225, 29, 38, 0.18) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
  max-width: 1100px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-0);
  font-weight: 400;
}

.hero__title .accent {
  color: var(--accent);
  font-style: italic;
}

.hero__title .outline {
  -webkit-text-stroke: 1.5px var(--text-0);
  color: transparent;
}

.hero__subtitle {
  font-size: var(--fs-md);
  color: var(--text-1);
  max-width: 60ch;
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero__meta-item dt {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-3);
  font-weight: 500;
}

.hero__meta-item dd {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-0);
  letter-spacing: 0.02em;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-2);
  font-weight: 600;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--accent), transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  animation: scroll-line 2s var(--ease) infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

/* ---------- MARQUEE ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: var(--bg-0);
  padding-block: 1.5rem;
  border-block: 2px solid var(--bg-0);
  box-shadow: 0 8px 30px rgba(225, 29, 38, 0.25);
}

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

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

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

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
  padding-inline: 1.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 400;
  line-height: 1;
}

.marquee__item::after {
  content: '✦';
  font-size: 0.7em;
  color: var(--bg-0);
  display: inline-block;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- COUNTERS / STATS ---------- */
.stats {
  background: var(--bg-1);
  border-block: 1px solid var(--line);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line);
}

.stats__item {
  background: var(--bg-1);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: background var(--dur) var(--ease);
}

.stats__item:hover {
  background: var(--bg-2);
}

.stats__num {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.05em;
  letter-spacing: -0.02em;
}

.stats__suffix {
  font-size: 0.6em;
}

.stats__label {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-2);
  font-weight: 600;
}

/* ---------- SERVICES GRID ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.services__grid--main {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.services__grid--secondary {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.service-group-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-1);
  font-weight: 400;
}

.service-group-heading::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.service-group-heading::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: var(--line);
}

.service-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 0.3em 0.65em;
  border-radius: 2px;
  z-index: 2;
  box-shadow: 0 4px 12px var(--accent-glow);
}

.service-card--featured {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(225, 29, 38, 0.18) 0%, transparent 60%),
    linear-gradient(160deg, var(--bg-2), var(--bg-1));
  border-color: var(--accent);
  border-width: 2px;
  min-height: 340px;
}

.service-card--featured .service-card__title {
  font-size: 2.2rem;
}

.service-card--featured::after {
  width: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
}

.service-card--secondary {
  background: var(--bg-1);
  min-height: 240px;
  padding: 1.5rem 1.25rem;
  opacity: 0.92;
}

.service-card--secondary .service-card__title {
  font-size: 1.4rem;
}

.service-card--secondary .service-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
}

.service-card--secondary:hover {
  opacity: 1;
}

.service-card--secondary .service-card__bg-num {
  font-size: 8rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(225, 29, 38, 0.08) 0%, transparent 55%),
    var(--bg-1);
  border: 1px solid var(--line);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease),
    background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  isolation: isolate;
  min-height: 300px;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 80% 80%, rgba(225, 29, 38, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, rgba(225, 29, 38, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  z-index: -1;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.5s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  background: var(--bg-2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 8px 24px rgba(225, 29, 38, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

/* Big watermark number in background */
.service-card__bg-num {
  position: absolute;
  bottom: -2.5rem;
  right: -1rem;
  font-family: var(--font-display);
  font-size: 12rem;
  color: rgba(225, 29, 38, 0.04);
  line-height: 0.8;
  letter-spacing: -0.04em;
  pointer-events: none;
  z-index: 0;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.service-card:hover .service-card__bg-num {
  color: rgba(225, 29, 38, 0.1);
  transform: translate(-4px, -4px);
}

.service-card__num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card__num::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: transform 0.6s var(--ease);
  position: relative;
  z-index: 1;
}

.service-card__title,
.service-card__desc,
.service-card__arrow {
  position: relative;
  z-index: 1;
}

.service-card:hover .service-card__icon {
  transform: rotate(-12deg) scale(1.1);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text-0);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.service-card__desc {
  font-size: var(--fs-sm);
  color: var(--text-2);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  transition: gap var(--dur) var(--ease);
}

.service-card:hover .service-card__arrow {
  gap: 1rem;
}

/* ---------- ABOUT ---------- */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* Layered CSS-only portrait illustration — never blank */
  background:
    radial-gradient(ellipse 70% 80% at 50% 30%, rgba(225, 29, 38, 0.25) 0%, transparent 65%),
    linear-gradient(160deg, #2a1a10 0%, #1a0f08 40%, #0a0a0a 100%);
}

.about__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 500' fill='none'%3E%3Cdefs%3E%3ClinearGradient id='p' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23e11d26'/%3E%3Cstop offset='1' stop-color='%23801116'/%3E%3C/linearGradient%3E%3CradialGradient id='light' cx='0.5' cy='0.3' r='0.6'%3E%3Cstop offset='0' stop-color='%23f5acaf' stop-opacity='0.4'/%3E%3Cstop offset='1' stop-color='%23f5acaf' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect fill='url(%23light)' width='400' height='500'/%3E%3Cg opacity='0.92'%3E%3Cellipse cx='200' cy='160' rx='65' ry='80' fill='%23241510'/%3E%3Cpath d='M135 140c0-50 35-90 65-90s65 40 65 90c0 25-10 45-25 60-12 12-25 22-40 22s-28-10-40-22c-15-15-25-35-25-60z' fill='%232d1a13'/%3E%3Cpath d='M155 110c5-25 25-45 45-45s40 20 45 45c-15-12-30-15-45-15s-30 3-45 15z' fill='%231a0f0a'/%3E%3Cellipse cx='180' cy='160' rx='4' ry='6' fill='%23000'/%3E%3Cellipse cx='220' cy='160' rx='4' ry='6' fill='%23000'/%3E%3Cpath d='M170 200c8 8 20 12 30 12s22-4 30-12' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3Cpath d='M150 240c0 15 22 30 50 30s50-15 50-30' stroke='%23000' stroke-width='1.5' fill='none' opacity='0.5'/%3E%3Cpath d='M130 280h140v220H130z' fill='%231f1611'/%3E%3Cpath d='M130 280l25 90h-25zM270 280l-25 90h25z' fill='%23150c08'/%3E%3Cpath d='M155 280l45 50 45-50v50l-45 30-45-30z' fill='%23e11d26' opacity='0.6'/%3E%3Crect x='185' y='340' width='30' height='40' rx='2' fill='%23000' opacity='0.4'/%3E%3Cg opacity='0.7'%3E%3Crect x='80' y='400' width='240' height='100' fill='%23e11d26' opacity='0.05'/%3E%3Cpath d='M0 350c50 0 100 25 200 25s150-25 200-25v150H0z' fill='%23000' opacity='0.4'/%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.6'%3E%3Ccircle cx='350' cy='80' r='3' fill='%23e11d26'/%3E%3Ccircle cx='370' cy='100' r='2' fill='%23e11d26' opacity='0.5'/%3E%3Ccircle cx='50' cy='420' r='2' fill='%23e11d26' opacity='0.6'/%3E%3Ccircle cx='30' cy='450' r='2' fill='%23e11d26' opacity='0.4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  filter: contrast(1.1) saturate(1.05);
  transition: transform 1.2s var(--ease);
  z-index: 0;
}

.about__visual:hover::before {
  transform: scale(1.05);
}

.about__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.2s var(--ease);
  filter: contrast(1.05) saturate(0.9);
  position: relative;
  z-index: 1;
}

.about__visual:hover img {
  transform: scale(1.1);
}

.about__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--accent);
  transform: translate(16px, 16px);
  pointer-events: none;
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about__visual-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--accent);
  color: var(--bg-0);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: var(--shadow);
  z-index: 2;
}

.about__visual-badge strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.about__visual-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--text-0);
  background: rgba(10, 10, 10, 0.7);
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(225, 29, 38, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
  border-radius: 2px;
}

.about__text p {
  margin-bottom: 1.25rem;
  font-size: var(--fs-md);
  line-height: 1.75;
}

.about__quote {
  margin-top: 2rem;
  padding: 1.75rem 1.75rem 1.75rem 2rem;
  background: var(--bg-1);
  border-left: 3px solid var(--accent);
  font-style: italic;
  color: var(--text-0);
  font-size: var(--fs-md);
}

.about__quote-author {
  display: block;
  margin-top: 1rem;
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.about__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  margin-top: 2rem;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text-0);
  font-size: var(--fs-sm);
}

.about__feature svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ---------- PROCESS / STEPS ---------- */
.process {
  background: var(--bg-1);
  border-block: 1px solid var(--line);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

.process__step {
  position: relative;
  padding: 2rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.process__step:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.process__num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.9;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
  letter-spacing: -0.02em;
}

.process__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-0);
  margin-bottom: 0.75rem;
}

.process__desc {
  font-size: var(--fs-sm);
  color: var(--text-2);
  line-height: 1.7;
}

/* ---------- BEFORE / AFTER ---------- */
.beforeafter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.ba {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  border: 1px solid var(--line);
  background: var(--bg-2);
}

.ba__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}

.ba__img--after {
  clip-path: inset(0 0 0 50%);
}

/* Caption tag for each before/after card */
.ba__caption {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-0);
  background: rgba(10, 10, 10, 0.85);
  padding: 0.5rem 1rem;
  border: 1px solid var(--accent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 2px;
  white-space: nowrap;
}

/* ---- CSS-only Before/After artworks ---- */
.ba-art {
  background-color: var(--bg-2);
}

/* Brake disc — before (rusty, cracked) */
.ba-art--brake-before {
  background:
    radial-gradient(circle at 50% 50%, transparent 18%, rgba(0, 0, 0, 0.4) 19%, rgba(0, 0, 0, 0.4) 22%, transparent 23%),
    radial-gradient(circle at 50% 50%, #6b3010 0%, #4a200a 35%, #2a1208 70%),
    repeating-conic-gradient(from 0deg at 50% 50%, rgba(80, 30, 10, 0.6) 0deg 8deg, rgba(120, 50, 20, 0.4) 8deg 16deg);
  background-blend-mode: overlay, normal, normal;
  position: relative;
}
.ba-art--brake-before::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, #1a0a04 6%, transparent 7%),
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(255, 100, 50, 0.15) 31%, transparent 32%),
    radial-gradient(circle at 50% 50%, transparent 45%, rgba(255, 100, 50, 0.1) 46%, transparent 47%);
}
.ba-art--brake-before::after {
  content: '';
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg at 50% 50%, rgba(80, 30, 10, 0.8) 0deg 6deg, rgba(60, 25, 8, 0.6) 6deg 12deg);
  filter: blur(0.5px);
  border: 2px solid rgba(60, 25, 8, 0.7);
}

/* Brake disc — after (clean, polished metal) */
.ba-art--brake-after {
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 25%),
    radial-gradient(circle at 50% 50%, transparent 18%, rgba(0, 0, 0, 0.5) 19%, rgba(0, 0, 0, 0.5) 22%, transparent 23%),
    radial-gradient(circle at 50% 50%, #7a8088 0%, #4a5058 50%, #2a2e34 80%);
  position: relative;
}
.ba-art--brake-after::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, #1a1a1a 6%, transparent 7%),
    repeating-conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0.04) 0deg 4deg, transparent 4deg 8deg);
}
.ba-art--brake-after::after {
  content: '';
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg at 50% 50%, rgba(180, 185, 195, 0.4) 0deg 3deg, rgba(120, 125, 135, 0.4) 3deg 6deg);
  border: 2px solid rgba(160, 165, 175, 0.6);
}

/* Tire — before (worn, smooth) */
.ba-art--tire-before {
  background:
    radial-gradient(circle at 50% 50%, transparent 20%, #1a1a1a 21%, #0d0d0d 60%, #050505 100%),
    radial-gradient(circle at 50% 50%, #2a2a2a 0%, transparent 22%);
  position: relative;
}
.ba-art--tire-before::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg 18deg, rgba(50, 50, 50, 0.5) 18deg 22deg);
  border-radius: 50%;
  mask: radial-gradient(circle at 50% 50%, transparent 20%, black 25%, black 90%, transparent 100%);
  -webkit-mask: radial-gradient(circle at 50% 50%, transparent 20%, black 25%, black 90%, transparent 100%);
}
.ba-art--tire-before::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 30% at 50% 50%, rgba(120, 80, 50, 0.2) 0%, transparent 60%);
}

/* Tire — after (deep tread, fresh) */
.ba-art--tire-after {
  background:
    radial-gradient(circle at 50% 50%, transparent 20%, #1a1a1a 21%, #0a0a0a 70%, #000 100%),
    radial-gradient(circle at 50% 50%, #5a5a5a 0%, #3a3a3a 22%, transparent 23%);
  position: relative;
}
.ba-art--tire-after::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-conic-gradient(from 0deg at 50% 50%,
      transparent 0deg 6deg,
      rgba(40, 40, 40, 0.95) 6deg 8deg,
      transparent 8deg 14deg,
      rgba(60, 60, 60, 0.85) 14deg 16deg
    );
  border-radius: 50%;
  mask: radial-gradient(circle at 50% 50%, transparent 22%, black 28%, black 88%, transparent 95%);
  -webkit-mask: radial-gradient(circle at 50% 50%, transparent 22%, black 28%, black 88%, transparent 95%);
}
.ba-art--tire-after::after {
  content: '';
  position: absolute;
  inset: 35%;
  border-radius: 50%;
  background: radial-gradient(circle, #444 0%, #222 100%);
  border: 2px solid #666;
}

/* Engine — before (greasy, dirty) */
.ba-art--engine-before {
  background:
    linear-gradient(135deg, #1a1208 0%, #0a0805 50%, #150c06 100%),
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(80, 50, 20, 0.15) 30px 31px);
  position: relative;
}
.ba-art--engine-before::before {
  content: '';
  position: absolute;
  inset: 15% 10%;
  background:
    linear-gradient(180deg, #2a1810 0%, #1a0e08 100%);
  border: 4px solid #1a0a04;
  border-radius: 4px;
  box-shadow:
    inset 0 0 40px rgba(0, 0, 0, 0.8),
    inset 20px 0 30px rgba(80, 40, 15, 0.3);
}
.ba-art--engine-before::after {
  content: '';
  position: absolute;
  inset: 15% 10%;
  background:
    repeating-linear-gradient(180deg, transparent 0 8px, rgba(0, 0, 0, 0.5) 8px 12px),
    radial-gradient(circle at 30% 40%, rgba(60, 30, 10, 0.6) 0%, transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(40, 20, 5, 0.7) 0%, transparent 30%);
}

/* Engine — after (clean, metallic) */
.ba-art--engine-after {
  background: linear-gradient(135deg, #1a1d22 0%, #0a0c10 50%, #15181d 100%);
  position: relative;
}
.ba-art--engine-after::before {
  content: '';
  position: absolute;
  inset: 15% 10%;
  background:
    linear-gradient(180deg, #4a5158 0%, #2a3038 100%);
  border: 4px solid #1a1d22;
  border-radius: 4px;
  box-shadow:
    inset 0 0 40px rgba(0, 0, 0, 0.6),
    inset 0 4px 8px rgba(255, 255, 255, 0.1);
}
.ba-art--engine-after::after {
  content: '';
  position: absolute;
  inset: 15% 10%;
  background:
    repeating-linear-gradient(180deg, transparent 0 8px, rgba(255, 255, 255, 0.06) 8px 12px),
    radial-gradient(ellipse at 50% 30%, rgba(225, 29, 38, 0.18) 0%, transparent 50%);
}

/* ---- CSS-only Gallery artworks ---- */
.gallery__item {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  break-inside: avoid;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: transform 0.6s var(--ease), border-color var(--dur) var(--ease);
}

.gallery__item:nth-child(3n + 1) { aspect-ratio: 4 / 5; }
.gallery__item:nth-child(4n + 2) { aspect-ratio: 1 / 1; }

.gallery__item:hover {
  transform: scale(1.02);
  border-color: var(--accent);
}

.gallery__caption {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-0);
  background: rgba(10, 10, 10, 0.75);
  padding: 0.35rem 0.7rem;
  border-left: 2px solid var(--accent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: none;
}

/* Workshop atmosphere */
.gallery__item--workshop {
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(225, 29, 38, 0.2) 0%, transparent 60%),
    linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}
.gallery__item--workshop::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.6) 100%),
    repeating-linear-gradient(90deg, transparent 0 60px, rgba(225, 29, 38, 0.04) 60px 61px),
    repeating-linear-gradient(0deg, transparent 0 60px, rgba(225, 29, 38, 0.04) 60px 61px);
}
.gallery__item--workshop::before {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 10%;
  right: 10%;
  height: 50%;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(225, 29, 38, 0.4) 0%, transparent 40%),
    linear-gradient(180deg, transparent 0%, rgba(40, 30, 20, 0.6) 100%);
  filter: blur(8px);
}

/* Bench (workbench with tools) */
.gallery__item--bench {
  background: linear-gradient(180deg, #15110d 0%, #0a0805 100%);
}
.gallery__item--bench::before {
  content: '';
  position: absolute;
  inset: 30% 5% 5% 5%;
  background:
    linear-gradient(180deg, #3a2a1a 0%, #1a1208 100%);
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.6), 0 -4px 16px rgba(0, 0, 0, 0.7);
}
.gallery__item--bench::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg,
      transparent 0 25%,
      rgba(225, 29, 38, 0.4) 25% 25.5%,
      transparent 25.5% 30%,
      rgba(180, 180, 190, 0.5) 30% 31%,
      transparent 31%);
  background-size: 100% 30%;
  background-position: 0 35%;
  background-repeat: no-repeat;
  mask: linear-gradient(180deg, transparent 25%, black 35%, black 50%, transparent 60%);
  -webkit-mask: linear-gradient(180deg, transparent 25%, black 35%, black 50%, transparent 60%);
}

/* Tools cabinet */
.gallery__item--tools {
  background:
    repeating-linear-gradient(0deg, #1a1a1a 0 25%, #2a2a2a 25% 25.5%, #1a1a1a 25.5% 50%),
    linear-gradient(180deg, #2a2a2a, #0a0a0a);
}
.gallery__item--tools::before {
  content: '';
  position: absolute;
  inset: 5%;
  background:
    repeating-linear-gradient(90deg,
      transparent 0 18%,
      rgba(225, 29, 38, 0.5) 18% 18.5%,
      transparent 18.5% 33%,
      rgba(180, 180, 190, 0.4) 33% 33.5%,
      transparent 33.5% 50%,
      rgba(225, 29, 38, 0.3) 50% 50.5%,
      transparent 50.5% 67%,
      rgba(180, 180, 190, 0.5) 67% 67.5%,
      transparent 67.5% 85%,
      rgba(225, 29, 38, 0.4) 85% 85.5%,
      transparent 85.5%
    ),
    linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 2px;
  border: 1px solid rgba(225, 29, 38, 0.2);
}
.gallery__item--tools::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(225, 29, 38, 0.05) 0%, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
}

/* Engine close-up */
.gallery__item--engine {
  background:
    radial-gradient(circle at 50% 50%, #4a4a52 0%, #1a1c20 60%, #050505 100%);
}
.gallery__item--engine::before {
  content: '';
  position: absolute;
  inset: 15%;
  background:
    repeating-linear-gradient(0deg,
      #2a2e34 0 14%,
      #15181d 14% 16%,
      #2a2e34 16% 30%,
      #1a1d22 30% 32%,
      #2a2e34 32%);
  border-radius: 4px;
  border: 2px solid #0a0c10;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.7);
}
.gallery__item--engine::after {
  content: '';
  position: absolute;
  inset: 15%;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(225, 29, 38, 0.2) 0%, transparent 40%);
  border-radius: 4px;
}

/* Lift (car on lift) */
.gallery__item--lift {
  background: linear-gradient(180deg, #15110d 0%, #050403 100%);
}
.gallery__item--lift::before {
  content: '';
  position: absolute;
  left: 15%;
  right: 15%;
  top: 25%;
  height: 50%;
  background:
    linear-gradient(180deg, #2a2a30 0%, #1a1a20 100%);
  border-radius: 25% 25% 8% 8% / 50% 50% 8% 8%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}
.gallery__item--lift::after {
  content: '';
  position: absolute;
  bottom: 18%;
  left: 5%;
  right: 5%;
  height: 6%;
  background: linear-gradient(180deg, #e11d26, #b81720);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(225, 29, 38, 0.4);
}

/* Rim (alloy wheel) */
.gallery__item--rim {
  background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0a0a0a 100%);
}
.gallery__item--rim::before {
  content: '';
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 18%, #2a2a2a 19%, #1a1a1a 22%, transparent 23%),
    radial-gradient(circle at 50% 50%, #4a4a52 0%, #2a2c30 60%, #15171a 100%);
  border: 3px solid #0a0a0a;
}
.gallery__item--rim::after {
  content: '';
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg at 50% 50%,
      rgba(60, 60, 70, 0.7) 0deg 5deg,
      transparent 5deg 60deg
    );
  mask: radial-gradient(circle at 50% 50%, transparent 22%, black 25%, black 65%, transparent 70%);
  -webkit-mask: radial-gradient(circle at 50% 50%, transparent 22%, black 25%, black 65%, transparent 70%);
}

/* Keys */
.gallery__item--keys {
  background:
    radial-gradient(ellipse 60% 60% at 30% 40%, rgba(225, 29, 38, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, #1a1612 0%, #0a0805 100%);
}
.gallery__item--keys::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 25%;
  width: 20%;
  height: 50%;
  background: linear-gradient(135deg, #c0c0c8 0%, #707078 100%);
  border-radius: 50% 50% 8% 8% / 30% 30% 8% 8%;
  transform: rotate(-15deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}
.gallery__item--keys::after {
  content: '';
  position: absolute;
  top: 35%;
  right: 25%;
  width: 18%;
  height: 45%;
  background: linear-gradient(135deg, #f23942 0%, #c0c0c8 35%, #707078 100%);
  border-radius: 50% 50% 8% 8% / 30% 30% 8% 8%;
  transform: rotate(20deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* Service (mechanic working) */
.gallery__item--service {
  background:
    radial-gradient(ellipse 70% 50% at 60% 40%, rgba(225, 29, 38, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}
.gallery__item--service::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  top: 30%;
  background:
    linear-gradient(180deg, transparent 0%, #1a1a1a 60%, #0a0a0a 100%);
  border-radius: 30% 30% 0 0 / 20% 20% 0 0;
}
.gallery__item--service::after {
  content: '';
  position: absolute;
  top: 35%;
  left: 35%;
  width: 30%;
  height: 35%;
  background:
    radial-gradient(ellipse at 50% 30%, #1a1a1a 0%, #050505 100%);
  border-radius: 50% 50% 30% 30% / 40% 40% 30% 30%;
  box-shadow: 0 0 20px rgba(225, 29, 38, 0.3);
}

/* Diagnostic (OBD scanner) */
.gallery__item--diagnostic {
  background: linear-gradient(180deg, #1a1a1a 0%, #050505 100%);
}
.gallery__item--diagnostic::before {
  content: '';
  position: absolute;
  inset: 20% 25%;
  background: linear-gradient(180deg, #15171a 0%, #0a0c10 100%);
  border: 2px solid #2a2c30;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7), inset 0 0 20px rgba(0, 0, 0, 0.5);
}
.gallery__item--diagnostic::after {
  content: '';
  position: absolute;
  top: 28%;
  left: 30%;
  right: 30%;
  height: 30%;
  background:
    repeating-linear-gradient(0deg,
      rgba(74, 222, 128, 0.5) 0 1px,
      transparent 1px 8px
    ),
    linear-gradient(180deg, #001008 0%, #002010 100%);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.4), inset 0 0 8px rgba(74, 222, 128, 0.3);
}

.ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--accent);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.ba__handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow);
}

.ba__handle::after {
  content: '⇆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bg-0);
  z-index: 3;
}

.ba__label {
  position: absolute;
  top: 1rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4em 0.8em;
  background: rgba(10, 10, 10, 0.85);
  color: var(--text-0);
  border-radius: 2px;
  backdrop-filter: blur(4px);
  z-index: 3;
}

.ba__label--before {
  left: 1rem;
}

.ba__label--after {
  right: 1rem;
  background: var(--accent);
  color: var(--bg-0);
}

/* Gallery — CSS art grid (no images, internet-independent) */
.gallery {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

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

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

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.testimonials::before {
  content: '“';
  position: absolute;
  top: 2rem;
  left: -3rem;
  font-family: serif;
  font-size: 28rem;
  line-height: 1;
  color: var(--bg-2);
  font-weight: 900;
  pointer-events: none;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.swiper.testimonial-swiper {
  margin-top: 3rem;
  padding-bottom: 3rem;
  overflow: visible;
}

.testimonial {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 2.25rem;
  border-radius: var(--radius);
  height: auto;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.swiper-slide-active .testimonial,
.testimonial:hover {
  border-color: var(--accent);
}

.testimonial__stars {
  display: inline-flex;
  gap: 0.2em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial__quote {
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--text-1);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial__person {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-0);
  font-family: var(--font-display);
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 700;
  color: var(--text-0);
  font-size: var(--fs-sm);
}

.testimonial__plate {
  font-size: var(--fs-xs);
  color: var(--text-3);
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
}

.swiper-pagination-bullet {
  background: var(--text-3);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ---------- BOOKING FORM ---------- */
.booking {
  position: relative;
  overflow: hidden;
}

.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.booking__intro h2 {
  margin-bottom: 1rem;
}

.booking__intro p {
  color: var(--text-2);
  font-size: var(--fs-md);
  margin-bottom: 2rem;
}

.booking__perks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking__perk {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: var(--fs-sm);
  color: var(--text-1);
}

.booking__perk svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

.booking__form {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}

.booking__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.booking__form-grid .full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-2);
}

.field__input,
.field__select,
.field__textarea {
  width: 100%;
  padding: 0.9em 1em;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-0);
  font-size: var(--fs-base);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-3);
}

.field__textarea {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
}

.field__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23e11d26' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.5em;
}

/* Service chips multi-select */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  padding: 0.55em 1em;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  user-select: none;
  color: var(--text-1);
}

.chip:hover {
  border-color: var(--accent);
  color: var(--text-0);
}

.chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-0);
}

.booking__submit {
  margin-top: 1.5rem;
  width: 100%;
}

.booking__legal {
  margin-top: 1rem;
  font-size: var(--fs-xs);
  color: var(--text-3);
  text-align: center;
}

/* ---------- LOCATION ---------- */
.location__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: stretch;
}

.location__map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 460px;
  background: var(--bg-2);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.6);
  transition: filter 0.6s var(--ease);
}

.location__map:hover iframe {
  filter: invert(0.85) hue-rotate(180deg) saturate(0.8);
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location__card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  padding: 1.75rem;
  border-radius: var(--radius);
}

.location__card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-0);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.location__card-title svg {
  width: 1.2em;
  height: 1.2em;
  color: var(--accent);
}

.location__card-content {
  color: var(--text-1);
  line-height: 1.7;
}

.hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours__row {
  display: flex;
  justify-content: space-between;
  padding-block: 0.4rem;
  border-bottom: 1px dashed var(--line);
  font-size: var(--fs-sm);
}

.hours__row:last-child {
  border-bottom: 0;
}

.hours__day {
  color: var(--text-2);
  letter-spacing: 0.04em;
}

.hours__time {
  color: var(--text-0);
  font-weight: 600;
}

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

.location__ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.location__ctas .btn {
  flex: 1;
  min-width: 140px;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--bg-1);
  border-block: 1px solid var(--line);
}

.faq__list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 900px;
  margin-inline: auto;
}

.faq__item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}

.faq__item[open] {
  border-color: var(--accent);
}

.faq__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--text-0);
  font-size: var(--fs-md);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__summary:hover {
  background: var(--bg-3);
}

.faq__icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}

.faq__item[open] .faq__icon {
  transform: rotate(45deg);
}

.faq__body {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-2);
  line-height: 1.75;
  font-size: var(--fs-base);
  animation: faq-open 0.4s var(--ease);
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--accent);
  color: var(--bg-0);
  padding-block: clamp(3rem, 6vw, 6rem);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
}

.cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--bg-0);
}

.cta-banner__sub {
  margin-top: 0.75rem;
  font-size: var(--fs-md);
  color: rgba(10, 10, 10, 0.8);
  font-weight: 500;
}

.cta-banner__ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cta-banner .btn {
  --btn-bg: var(--bg-0);
  --btn-fg: var(--text-0);
  --btn-bd: var(--bg-0);
}

.cta-banner .btn::before {
  background: var(--bg-1);
}

.cta-banner .btn-outline {
  --btn-bg: transparent;
  --btn-fg: var(--bg-0);
  --btn-bd: var(--bg-0);
}

.cta-banner .btn-outline::before {
  background: var(--bg-0);
}

.cta-banner .btn-outline:hover {
  --btn-fg: var(--accent);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  padding-block: 4rem 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--text-0);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__about {
  color: var(--text-2);
  font-size: var(--fs-sm);
  line-height: 1.7;
  max-width: 36ch;
}

.footer__col h4 {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__col a {
  font-size: var(--fs-sm);
  color: var(--text-2);
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}

.footer__col a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-1);
  font-size: var(--fs-sm);
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-1);
  transition: all var(--dur) var(--ease);
}

.footer__social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-0);
  padding-left: 0;
  transform: translateY(-2px);
}

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

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--fs-xs);
  color: var(--text-3);
}

/* ---------- FLOATING ELEMENTS ---------- */
.fab-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 90;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
  transition: transform var(--dur) var(--ease);
}

.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  z-index: -1;
  animation: pulse 2.5s var(--ease) infinite;
}

.fab-whatsapp:hover {
  transform: scale(1.1);
}

.fab-whatsapp svg {
  width: 30px;
  height: 30px;
}

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

/* Mobile sticky bottom bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  z-index: 91;
  padding: 0.5rem;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}

.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-1);
  border-radius: var(--radius);
  background: var(--bg-2);
}

.mobile-bar a svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.mobile-bar a:active {
  background: var(--accent);
  color: var(--bg-0);
}

.mobile-bar a:active svg {
  color: var(--bg-0);
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s var(--ease);
  opacity: 0;
}

.cursor.is-hover {
  width: 48px;
  height: 48px;
  background: var(--accent);
  mix-blend-mode: normal;
  opacity: 0.4;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease), opacity 0.3s var(--ease);
  opacity: 0;
}

.cursor.is-active,
.cursor-ring.is-active {
  opacity: 1;
}

/* Disable on touch */
@media (hover: none) {
  .cursor,
  .cursor-ring {
    display: none;
  }
}

/* ---------- BREADCRUMB (service pages) ---------- */
.breadcrumb {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-3);
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

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

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

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

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

/* ---------- SERVICE PAGE LAYOUT ---------- */
.svc-hero {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 75% 30%, rgba(225, 29, 38, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 60%, #050505 100%);
  border-bottom: 1px solid var(--line);
}

.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(225, 29, 38, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 29, 38, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 60% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 60% 50%, black 30%, transparent 80%);
  pointer-events: none;
}

/* Per-service decorative SVG */
.svc-hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 60%;
  height: 100%;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  opacity: 0.55;
  pointer-events: none;
}

/* Rot Balans — wheel with gauge */
.svc-hero--rot-balans::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400' fill='none'%3E%3Ccircle cx='200' cy='200' r='180' stroke='%23e11d26' stroke-width='2' stroke-opacity='.4'/%3E%3Ccircle cx='200' cy='200' r='140' stroke='%23e11d26' stroke-width='1' stroke-opacity='.3' stroke-dasharray='4 6'/%3E%3Ccircle cx='200' cy='200' r='90' stroke='%23e11d26' stroke-width='2' stroke-opacity='.5'/%3E%3Ccircle cx='200' cy='200' r='40' fill='%23e11d26' fill-opacity='.2'/%3E%3Cg transform='translate(200 200)'%3E%3Cpath d='M0 -90 L0 -130' stroke='%23e11d26' stroke-width='3'/%3E%3Cpath d='M-90 0 L-130 0' stroke='%23e11d26' stroke-width='3'/%3E%3Cpath d='M64 64 L92 92' stroke='%23e11d26' stroke-width='3'/%3E%3Cpath d='M-64 64 L-92 92' stroke='%23e11d26' stroke-width='3'/%3E%3C/g%3E%3C/svg%3E");
}

/* On Takim — suspension spring */
.svc-hero--on-takim::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400' fill='none'%3E%3Cpath d='M150 50h100v40h-100zM150 350h100v40h-100z' fill='%23e11d26' fill-opacity='.3'/%3E%3Cg stroke='%23e11d26' stroke-width='6' stroke-opacity='.5' fill='none'%3E%3Cpath d='M170 90c-30 5-30 25 0 30s30-25 60-20 30 25 0 30-30-25-60-20-30 25 0 30 30-25 60-20 30 25 0 30-30-25-60-20-30 25 0 30 30-25 60-20 30 25 0 30'/%3E%3C/g%3E%3C/svg%3E");
}

/* Fren — brake disc with caliper */
.svc-hero--fren::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400' fill='none'%3E%3Ccircle cx='200' cy='200' r='160' stroke='%23ef4444' stroke-width='2' stroke-opacity='.3'/%3E%3Ccircle cx='200' cy='200' r='130' stroke='%23ef4444' stroke-width='2' stroke-opacity='.5'/%3E%3Ccircle cx='200' cy='200' r='40' fill='%23ef4444' fill-opacity='.3'/%3E%3Cg fill='%23ef4444' fill-opacity='.2'%3E%3Cpath d='M310 170h60v60h-60zM330 180v40h20v-40z' /%3E%3C/g%3E%3Cg stroke='%23ef4444' stroke-width='1.5' stroke-opacity='.4' fill='none'%3E%3Cpath d='M70 200a130 130 0 010 0M70 200a130 130 0 11260 0M70 200a130 130 0 11260 0a130 130 0 01-260 0' stroke-dasharray='3 8'/%3E%3C/g%3E%3C/svg%3E");
}

/* Lastik — tire */
.svc-hero--lastik::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400' fill='none'%3E%3Ccircle cx='200' cy='200' r='180' stroke='%23e11d26' stroke-width='3' stroke-opacity='.4'/%3E%3Ccircle cx='200' cy='200' r='130' stroke='%23e11d26' stroke-width='2' stroke-opacity='.5'/%3E%3Ccircle cx='200' cy='200' r='100' stroke='%23e11d26' stroke-width='1' stroke-opacity='.4'/%3E%3Cg stroke='%23e11d26' stroke-width='8' stroke-opacity='.4' stroke-linecap='round'%3E%3Cpath d='M200 30v40M200 330v40M30 200h40M330 200h40M70 70l28 28M302 302l28 28M70 330l28-28M302 98l28-28'/%3E%3C/g%3E%3C/svg%3E");
}

/* Motor — engine block */
.svc-hero--motor::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400' fill='none'%3E%3Crect x='80' y='120' width='240' height='180' rx='8' stroke='%23fbbf24' stroke-width='3' stroke-opacity='.4'/%3E%3Cg stroke='%23fbbf24' stroke-width='2' stroke-opacity='.5'%3E%3Cline x1='80' y1='160' x2='320' y2='160'/%3E%3Cline x1='80' y1='200' x2='320' y2='200'/%3E%3Cline x1='80' y1='240' x2='320' y2='240'/%3E%3C/g%3E%3Cg fill='%23fbbf24' fill-opacity='.25'%3E%3Ccircle cx='130' cy='180' r='14'/%3E%3Ccircle cx='200' cy='180' r='14'/%3E%3Ccircle cx='270' cy='180' r='14'/%3E%3Ccircle cx='130' cy='220' r='14'/%3E%3Ccircle cx='200' cy='220' r='14'/%3E%3Ccircle cx='270' cy='220' r='14'/%3E%3C/g%3E%3Cpath d='M50 200h30M320 200h30M170 70v50M210 70v50' stroke='%23fbbf24' stroke-width='3' stroke-opacity='.5'/%3E%3C/svg%3E");
}

/* Yag — oil drop with bottle */
.svc-hero--yag-degisimi::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400' fill='none'%3E%3Cpath d='M200 60c-50 80-80 130-80 180a80 80 0 00160 0c0-50-30-100-80-180z' stroke='%23e11d26' stroke-width='3' stroke-opacity='.5' fill='%23e11d26' fill-opacity='.15'/%3E%3Cpath d='M170 220c0 25 15 40 30 40' stroke='%23fff' stroke-width='3' stroke-opacity='.4' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

/* Egzoz — exhaust pipe */
.svc-hero--egzoz::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400' fill='none'%3E%3Crect x='40' y='180' width='220' height='40' rx='4' stroke='%23999' stroke-width='3' stroke-opacity='.4' fill='%23999' fill-opacity='.1'/%3E%3Crect x='260' y='160' width='100' height='80' rx='8' stroke='%23999' stroke-width='3' stroke-opacity='.5' fill='%23999' fill-opacity='.15'/%3E%3Cg stroke='%23999' stroke-width='2' stroke-opacity='.4'%3E%3Cline x1='280' y1='180' x2='280' y2='220'/%3E%3Cline x1='300' y1='180' x2='300' y2='220'/%3E%3Cline x1='320' y1='180' x2='320' y2='220'/%3E%3Cline x1='340' y1='180' x2='340' y2='220'/%3E%3C/g%3E%3Cg stroke='%23e11d26' stroke-width='2' stroke-opacity='.5' stroke-linecap='round'%3E%3Cpath d='M30 200c-15-10-15-15 0-25M30 200c-15 10-15 15 0 25M50 200c-15-10-15-15 0-25M50 200c-15 10-15 15 0 25'/%3E%3C/g%3E%3C/svg%3E");
}

/* Genel Bakim — checklist & wrench */
.svc-hero--genel-bakim::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400' fill='none'%3E%3Crect x='80' y='60' width='240' height='280' rx='8' stroke='%234ade80' stroke-width='3' stroke-opacity='.4' fill='%234ade80' fill-opacity='.05'/%3E%3Cg stroke='%234ade80' stroke-width='3' stroke-opacity='.5' stroke-linecap='round'%3E%3Cpath d='M120 110l15 15 30-30M120 170l15 15 30-30M120 230l15 15 30-30M120 290l15 15 30-30'/%3E%3C/g%3E%3Cg stroke='%234ade80' stroke-width='2' stroke-opacity='.4'%3E%3Cline x1='190' y1='115' x2='280' y2='115'/%3E%3Cline x1='190' y1='130' x2='270' y2='130'/%3E%3Cline x1='190' y1='175' x2='280' y2='175'/%3E%3Cline x1='190' y1='190' x2='260' y2='190'/%3E%3Cline x1='190' y1='235' x2='280' y2='235'/%3E%3Cline x1='190' y1='250' x2='270' y2='250'/%3E%3Cline x1='190' y1='295' x2='280' y2='295'/%3E%3Cline x1='190' y1='310' x2='250' y2='310'/%3E%3C/g%3E%3C/svg%3E");
}

.svc-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: end;
}

.svc-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw + 1rem, 6rem);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--text-0);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

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

.svc-hero__sub {
  font-size: var(--fs-md);
  color: var(--text-1);
  max-width: 60ch;
}

.svc-hero__meta {
  display: grid;
  gap: 1rem;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.svc-hero__meta-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-sm);
}

.svc-hero__meta-row:last-child {
  border: 0;
  padding-bottom: 0;
}

.svc-hero__meta-row dt {
  color: var(--text-2);
}

.svc-hero__meta-row dd {
  color: var(--text-0);
  font-weight: 700;
}

.svc-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.svc-content h2 {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  line-height: 1;
}

.svc-content h2:first-child {
  margin-top: 0;
}

.svc-content p {
  font-size: var(--fs-md);
  line-height: 1.75;
  margin-bottom: 1rem;
  color: var(--text-1);
}

.svc-content ul {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.svc-content ul li {
  position: relative;
  padding-left: 2rem;
  color: var(--text-1);
  font-size: var(--fs-base);
  line-height: 1.6;
}

.svc-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 18px;
  height: 2px;
  background: var(--accent);
}

.svc-content ol {
  counter-reset: svc-step;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.svc-content ol li {
  counter-increment: svc-step;
  position: relative;
  padding-left: 4rem;
  color: var(--text-1);
  font-size: var(--fs-base);
  line-height: 1.6;
  min-height: 2.6rem;
}

.svc-content ol li::before {
  content: counter(svc-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -0.3rem;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.svc-content strong {
  color: var(--text-0);
}

.svc-aside {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1.25rem;
}

.svc-aside__card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.svc-aside__card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.svc-aside__price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.svc-aside__price-note {
  font-size: var(--fs-xs);
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.svc-aside__cta {
  width: 100%;
  margin-top: 0.5rem;
}

.svc-related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

/* ============================================================
   RESPONSIVE — Mobile-first overhaul
   Breakpoints: 1080 (tablet land) · 900 (tablet port) · 640 (mobile) · 480 (small)
   ============================================================ */

/* ---------- iOS / Touch base fixes (always-on) ---------- */
input,
textarea,
select {
  /* iOS Safari zooms in if font-size < 16px on focus — force 16px */
  font-size: max(16px, var(--fs-base));
}

button,
.btn,
a.btn,
.chip,
.navbar__phone,
.faq__summary,
.field__input,
.field__select,
.field__textarea {
  /* Apple HIG / Material — min 44–48px touch target */
  min-height: 44px;
}

/* Prevent horizontal scroll on tap-zoom edge cases */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Prevent iOS auto-detection styling phone numbers oddly */
@supports (-webkit-touch-callout: none) {
  .hero {
    /* iOS 100vh fix — already using 100svh but extra safety */
    min-height: -webkit-fill-available;
    min-height: 100svh;
  }
}

/* ---------- Tablet landscape (≤ 1080px) — Navbar collapses ---------- */
@media (max-width: 1080px) {
  .navbar__menu,
  .navbar__phone {
    display: none;
  }
  .navbar__burger {
    display: block;
  }
  .navbar__inner {
    grid-template-columns: auto 1fr auto;
  }
  .navbar__cta {
    grid-column: 3;
    justify-self: end;
  }

  /* Service cards a bit smaller */
  .service-card--featured {
    min-height: 320px;
  }
  .service-card--featured .service-card__title {
    font-size: 2rem;
  }
}

/* ---------- Tablet portrait (≤ 900px) — Two-col grids stack ---------- */
@media (max-width: 900px) {
  .about__inner,
  .booking__inner,
  .location__inner,
  .svc-grid,
  .svc-hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer__brand-col {
    grid-column: 1 / -1;
  }

  .cta-banner__inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 1.5rem;
  }

  .cta-banner__ctas {
    width: 100%;
  }
  .cta-banner__ctas .btn {
    flex: 1 1 auto;
    min-width: 0;
  }

  .svc-aside {
    position: static;
  }

  .about__visual {
    aspect-ratio: 16 / 12;
    max-width: 520px;
    margin-inline: auto;
  }

  .about__visual::after {
    display: none; /* shadow box duplication looks crowded on tablet */
  }

  /* Section spacing */
  section {
    padding-block: clamp(3rem, 7vw, 5rem);
  }

  /* Service hero meta full-width below title */
  .svc-hero__inner {
    align-items: stretch;
  }
  .svc-hero__meta {
    margin-top: 0;
  }

  /* Stats 2x2 on tablet portrait */
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Process steps 2x2 */
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Booking perks compact */
  .booking__perks {
    grid-row: 1;
  }

  /* Hide hero scroll indicator (takes vertical space) */
  .hero__scroll {
    display: none;
  }
}

/* ---------- Mobile (≤ 640px) — One col everywhere, optimized ---------- */
@media (max-width: 640px) {
  .container,
  .container-narrow {
    padding-inline: 1.25rem;
  }

  section {
    padding-block: clamp(2.5rem, 8vw, 4rem);
  }

  /* ---------- HERO ---------- */
  .hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
    min-height: auto;
  }

  .hero__title {
    font-size: clamp(2.6rem, 14vw, 4rem);
    line-height: 0.95;
  }

  .hero__subtitle {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero__eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }

  .hero__meta {
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 1rem 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .hero__meta-item dt {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }

  .hero__meta-item dd {
    font-size: 1.05rem;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

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

  .hero::after {
    width: 90%;
    height: 40%;
    opacity: 0.4;
  }

  /* Disable magnetic button drift on mobile (no fine pointer) */
  .magnetic {
    transform: none !important;
  }

  /* ---------- NAVBAR ---------- */
  .navbar {
    padding-block: 0.85rem;
  }
  .navbar.is-scrolled {
    padding-block: 0.6rem;
  }
  .navbar__brand {
    font-size: 1.1rem;
    gap: 0.5rem;
  }
  .navbar__brand-mark {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  /* ---------- MARQUEE ---------- */
  .marquee {
    padding-block: 1rem;
  }
  .marquee__item {
    font-size: 1.1rem;
    padding-inline: 1rem;
    gap: 1rem;
  }

  /* ---------- STATS ---------- */
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__item {
    padding: 1.5rem 0.75rem;
  }
  .stats__num {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
  .stats__label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  /* ---------- SERVICES ---------- */
  .services__grid,
  .services__grid--main,
  .services__grid--secondary {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    min-height: auto;
    padding: 1.5rem 1.25rem;
  }

  .service-card--featured {
    min-height: auto;
    padding: 2rem 1.5rem;
  }

  .service-card--featured .service-card__title {
    font-size: 1.8rem;
  }

  .service-card--secondary {
    min-height: auto;
    padding: 1.25rem 1rem;
  }

  .service-card__bg-num {
    font-size: 8rem;
    bottom: -1.5rem;
    right: -0.5rem;
  }

  .service-card--featured .service-card__bg-num {
    font-size: 10rem;
  }

  .service-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1rem;
  }

  .service-card--featured .service-card__icon {
    width: 52px;
    height: 52px;
  }

  .service-card__title {
    font-size: 1.4rem;
  }

  .service-card__desc {
    font-size: 0.92rem;
    margin-bottom: 1rem;
  }

  .service-card__badge {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.55rem;
    padding: 0.25em 0.5em;
  }

  .service-group-heading {
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    margin-top: 2rem;
  }

  /* ---------- ABOUT ---------- */
  .about__visual {
    aspect-ratio: 4 / 4;
    max-width: 100%;
  }
  .about__visual-badge {
    bottom: 1rem;
    left: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
  .about__visual-badge strong {
    font-size: 1.6rem;
  }
  .about__visual-tag {
    top: 1rem;
    right: 1rem;
    font-size: 0.6rem;
    padding: 0.4rem 0.65rem;
    letter-spacing: 0.18em;
  }
  .about__features {
    grid-template-columns: 1fr;
    gap: 0.75rem 1rem;
  }
  .about__quote {
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
    font-size: 1rem;
  }

  /* ---------- PROCESS ---------- */
  .process__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .process__step {
    padding: 1.5rem 1.25rem;
  }
  .process__num {
    font-size: 3.5rem;
  }
  .process__title {
    font-size: 1.2rem;
  }

  /* ---------- BEFORE/AFTER + GALLERY ---------- */
  .beforeafter {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .ba {
    aspect-ratio: 16 / 11;
    /* Bigger handle on touch for easier dragging */
  }
  .ba__handle::before {
    width: 52px;
    height: 52px;
  }
  .ba__handle::after {
    font-size: 1.6rem;
  }
  .ba__caption {
    font-size: 0.7rem;
    bottom: 0.75rem;
    padding: 0.4rem 0.7rem;
  }
  .ba__label {
    font-size: 0.6rem;
    padding: 0.3em 0.6em;
    top: 0.75rem;
  }
  .ba__label--before { left: 0.75rem; }
  .ba__label--after { right: 0.75rem; }

  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  /* ---------- TESTIMONIALS ---------- */
  .testimonials::before {
    font-size: 12rem;
    top: 1rem;
    left: -1.5rem;
  }
  .testimonial {
    min-height: auto;
    padding: 1.5rem 1.25rem;
  }
  .testimonial__quote {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  /* ---------- BOOKING FORM ---------- */
  .booking__form {
    padding: 1.5rem 1.25rem;
  }
  .booking__form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .field__input,
  .field__select,
  .field__textarea {
    /* Already 16px from base, but make sure no shrink */
    font-size: 16px;
    padding: 0.85em 1em;
  }
  .booking__intro h2 {
    font-size: clamp(2rem, 8vw, 2.4rem);
  }
  .chip {
    padding: 0.55em 0.9em;
    font-size: 0.7rem;
  }

  /* ---------- LOCATION ---------- */
  .location__map {
    min-height: 320px;
  }
  .location__map iframe {
    min-height: 320px;
  }
  .location__ctas {
    flex-direction: column;
    gap: 0.5rem;
  }
  .location__ctas .btn {
    width: 100%;
  }

  /* ---------- FAQ ---------- */
  .faq__summary {
    padding: 1rem 1.1rem;
    font-size: 1rem;
    gap: 0.75rem;
  }
  .faq__body {
    padding: 0 1.1rem 1.1rem;
    font-size: 0.95rem;
  }

  /* ---------- CTA BANNER ---------- */
  .cta-banner {
    padding-block: 2.5rem;
  }
  .cta-banner__title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .cta-banner__sub {
    font-size: 0.95rem;
  }
  .cta-banner__ctas {
    flex-direction: column;
    width: 100%;
  }
  .cta-banner__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* ---------- FOOTER ---------- */
  .footer {
    padding-block: 3rem 1.5rem;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer__about {
    max-width: 100%;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
  }

  /* ---------- FAB & MOBILE BAR ---------- */
  .fab-whatsapp {
    bottom: 5.25rem;
    right: 1rem;
    width: 52px;
    height: 52px;
  }
  .fab-whatsapp svg {
    width: 26px;
    height: 26px;
  }

  .mobile-bar {
    display: grid;
  }

  body {
    padding-bottom: 4.5rem;
  }

  /* Custom cursor — fully gone on touch */
  .cursor,
  .cursor-ring {
    display: none !important;
  }

  /* Navbar brand — keep both icon and text but compact */
  .navbar__brand-text {
    font-size: 0.95rem;
    letter-spacing: 0.06em;
  }

  /* ---------- SERVICE DETAIL PAGES ---------- */
  .svc-hero {
    padding-top: 6.5rem;
    padding-bottom: 2rem;
  }
  .svc-hero__title {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }
  .svc-hero__sub {
    font-size: 0.98rem;
  }
  .svc-hero__meta {
    padding: 1.25rem;
  }
  .svc-hero::after {
    width: 70%;
    opacity: 0.35;
  }

  .svc-content h2 {
    font-size: 1.7rem;
    margin-top: 2rem;
  }
  .svc-content p,
  .svc-content ul li,
  .svc-content ol li {
    font-size: 0.98rem;
  }
  .svc-content ol li {
    padding-left: 3rem;
  }
  .svc-content ol li::before {
    font-size: 1.9rem;
  }

  .svc-aside__card {
    padding: 1.25rem;
  }
  .svc-aside__price {
    font-size: 2rem;
  }
  .svc-related {
    grid-template-columns: 1fr;
  }

  .breadcrumb {
    font-size: 0.65rem;
    margin-bottom: 1rem;
  }
}

/* ---------- Small mobile (≤ 480px) — extra tightening ---------- */
@media (max-width: 480px) {
  .container,
  .container-narrow {
    padding-inline: 1rem;
  }

  .hero {
    padding-top: 5.5rem;
  }

  .hero__title {
    font-size: clamp(2.4rem, 13vw, 3.6rem);
  }

  .hero__meta {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1rem;
  }

  .marquee__item {
    font-size: 1rem;
    padding-inline: 0.75rem;
    gap: 0.75rem;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats__num {
    font-size: 1.9rem;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .gallery__item:nth-child(3n + 1) { aspect-ratio: 16/11; }
  .gallery__item:nth-child(4n + 2) { aspect-ratio: 16/11; }

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

  .btn {
    padding: 0.95em 1.5em;
    font-size: 0.85rem;
  }

  .btn-lg {
    padding: 1.05em 1.75em;
    font-size: 0.95rem;
  }

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

  /* About: badge & tag sizing */
  .about__visual-badge strong {
    font-size: 1.4rem;
  }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee__track,
  .preloader__gear,
  .fab-whatsapp::before,
  .hero__scroll-line::before {
    animation: none !important;
  }
}

/* ---------- PRINT ---------- */
@media print {
  .navbar,
  .fab-whatsapp,
  .mobile-bar,
  .cursor,
  .cursor-ring,
  .preloader,
  .marquee,
  video {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}
