/* Dylan Detailing — visual system */

:root {
  /* core palette */
  --bg-0: #050506;
  --bg-1: #0b0b0d;
  --bg-2: #14141a;
  --bg-3: #1c1c24;

  /* reds */
  --red: #E10600;
  --red-bright: #FF1F1F;
  --red-deep: #8B0000;
  --red-glow: rgba(225, 6, 0, 0.55);

  /* tiger orange — used very sparingly */
  --orange: #F77B2C;

  /* neutrals */
  --white: #FFFFFF;
  --ash-1: #E6E6EA;
  --ash-2: #9CA3AF;
  --ash-3: #5C5C66;
  --ash-4: #2A2A33;

  /* typography (controlled via tweaks) */
  --f-display: "Anton", "Barlow Condensed", "Oswald", system-ui, sans-serif;
  --f-body: "Barlow", "Manrope", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --display-tracking: 0.01em;
  --display-skew: -0.02em;

  /* sizing */
  --container: 1280px;
  --gutter: clamp(16px, 4vw, 40px);
}

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

html, body {
  background: var(--bg-0);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(1400px 800px at 80% -10%, rgba(225, 6, 0, 0.18), transparent 60%),
    radial-gradient(1000px 700px at -10% 30%, rgba(225, 6, 0, 0.08), transparent 70%),
    var(--bg-0);
}

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

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

/* ─────────────────── helpers ─────────────────── */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-bright);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red-bright);
  box-shadow: 0 0 8px var(--red-glow);
}

.h-display {
  font-family: var(--f-display);
  font-weight: 400; /* Anton is built bold */
  letter-spacing: var(--display-tracking);
  line-height: 0.92;
  text-transform: uppercase;
  font-stretch: condensed;
}

.h-section {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: var(--display-tracking);
  text-transform: uppercase;
}

/* "elegant" mode swaps */
body[data-typo="elegant"] {
  --f-display: "Bodoni Moda", "Playfair Display", Georgia, serif;
  --display-tracking: 0;
  --display-skew: 0;
}
body[data-typo="elegant"] .h-display,
body[data-typo="elegant"] .h-section {
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  font-stretch: normal;
  letter-spacing: -0.01em;
  line-height: 1;
}

.red { color: var(--red-bright); }
.italic-slash {
  display: inline-block;
  transform: skewX(var(--display-skew));
}

/* ─────────────────── nav ─────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--gutter);
  background: rgba(5, 5, 6, 0.7);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s, border-color 0.3s;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav__brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  box-shadow: 0 0 16px var(--red-glow);
}
.nav__brand b { color: var(--white); font-weight: 400; }
.nav__brand span { color: var(--red-bright); font-weight: 400; }

.nav__links {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash-2);
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transition: right 0.25s;
}
.nav__links a:hover::after { right: 0; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 11px 20px;
  font-family: var(--f-display);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover { background: var(--red-bright); transform: translateX(2px); }

.nav__burger {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  width: 16px; height: 2px;
  background: var(--white);
  position: relative;
}
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 2px;
  background: var(--white);
}
.nav__burger span::before { top: -5px; }
.nav__burger span::after { top: 5px; }

@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

/* mobile menu drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(5,5,6,0.96);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  gap: 24px;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.drawer.open { transform: translateY(0); }
.drawer a {
  font-family: var(--f-display);
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0;
}

/* ─────────────────── hero ─────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 110px 0 60px;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) contrast(1.05) saturate(0.92);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,6,0.4) 0%, rgba(5,5,6,0.1) 35%, rgba(5,5,6,0.85) 90%, var(--bg-0) 100%),
    radial-gradient(800px 500px at 80% 50%, rgba(225, 6, 0, 0.25), transparent 70%);
}

/* split layout */
.hero[data-layout="split"] .hero__media {
  inset: auto 0 0 50%;
}
.hero[data-layout="split"] .hero__media video {
  filter: brightness(0.65) contrast(1.05) saturate(0.95);
}
.hero[data-layout="split"] .hero__media::after {
  background:
    linear-gradient(90deg, var(--bg-0) 0%, rgba(5,5,6,0.6) 30%, rgba(5,5,6,0.0) 60%, rgba(5,5,6,0.4) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}
.hero[data-layout="split"] .hero__grid {
  grid-template-columns: 1.05fr 1fr;
}
@media (max-width: 920px) {
  .hero[data-layout="split"] .hero__grid { grid-template-columns: 1fr; }
  .hero[data-layout="split"] .hero__media { inset: 0; }
}

.hero__title {
  font-size: clamp(64px, 11vw, 168px);
  margin-top: 24px;
}
.hero__title .word {
  display: block;
  position: relative;
}
.hero__title .word--accent {
  color: var(--red-bright);
  text-shadow: 0 0 60px rgba(225, 6, 0, 0.45);
}
.hero__title .word--strike {
  position: relative;
  padding-left: 0.1em;
}
.hero__title .word--strike::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 0.16em; height: 0.08em;
  background: var(--white);
  transform: translateY(-50%) skewX(-20deg);
  box-shadow: 0.22em 0 0 var(--white), 0.44em 0 0 var(--white);
}

.hero__sub {
  margin-top: 28px;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ash-1);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-top: 32px;
  align-items: center;
}
.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ash-1);
}
.hero__meta-item svg { color: var(--red-bright); }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  font-family: var(--f-display);
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}
.btn--primary:hover {
  background: var(--red-bright);
  box-shadow: 0 0 30px var(--red-glow);
  transform: translateY(-2px);
}
.btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}
.btn svg { transition: transform 0.25s; }
.btn:hover svg { transform: translateX(4px); }

/* hero side card (split layout) */
.hero__card {
  background: rgba(11, 11, 13, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--red);
  padding: 28px;
  backdrop-filter: blur(14px);
  display: none;
}
.hero[data-layout="split"] .hero__card { display: block; }

.hero__card h4 {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero__card .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  font-size: 14px;
}
.hero__card .row:last-child { border-bottom: 0; }
.hero__card .price {
  color: var(--red-bright);
  font-family: var(--f-display);
  font-size: 22px;
}

/* hero ticker */
.ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transform: skewY(-0.4deg);
  margin-bottom: -2px;
}
.ticker__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  animation: ticker 32s linear infinite;
}
.ticker__track span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.ticker__dot {
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  display: inline-block;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─────────────────── section base ─────────────────── */

section { position: relative; }

.section {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 720px) {
  .section { padding: 80px 0; }
}

.section__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 60px;
  max-width: 720px;
}
.section__head--row {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  max-width: none;
  gap: 32px;
  flex-wrap: wrap;
}
.section__head p {
  color: var(--ash-2);
  font-size: 17px;
  max-width: 540px;
}

/* ─────────────────── services / pricing ─────────────────── */

.services {
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 50%, var(--bg-0) 100%);
}

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

.svc-card {
  position: relative;
  padding: 36px 32px 32px;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 6, 0, 0.3);
}
.svc-card--featured {
  background: linear-gradient(160deg, #1a0606 0%, #0b0b0d 60%);
  border-color: rgba(225, 6, 0, 0.5);
  box-shadow: 0 0 0 1px rgba(225, 6, 0, 0.15), 0 30px 60px -20px rgba(225, 6, 0, 0.3);
}
.svc-card__tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--red);
  color: var(--white);
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%);
}
.svc-card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  margin-bottom: 24px;
  color: var(--red-bright);
}
.svc-card__name {
  font-family: var(--f-display);
  font-size: 36px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 4px;
}
.svc-card__sub {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash-2);
  margin-bottom: 24px;
}
.svc-card__price {
  font-family: var(--f-display);
  font-size: 88px;
  line-height: 0.9;
  color: var(--white);
  margin: 12px 0 4px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.svc-card__price .currency {
  font-size: 36px;
  color: var(--red-bright);
}
.svc-card--featured .svc-card__price { color: var(--red-bright); }
.svc-card__duration {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ash-2);
  margin-bottom: 24px;
}
.svc-card__list {
  list-style: none;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.svc-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ash-1);
}
.svc-card__list li::before {
  content: "";
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 4px;
  background: var(--red);
  clip-path: polygon(0 50%, 35% 100%, 100% 15%, 85% 0, 35% 70%, 12% 38%);
}
.svc-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.svc-card__cta:hover {
  background: var(--red);
  border-color: var(--red);
}
.svc-card--featured .svc-card__cta {
  background: var(--red);
  border-color: var(--red);
}
.svc-card--featured .svc-card__cta:hover {
  background: var(--red-bright);
}

/* extras / add-ons strip */
.extras {
  margin-top: 60px;
  padding: 32px;
  background: var(--bg-1);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--red);
}
.extras__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.extras__head h3 {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.extras__head span {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash-2);
}
.extras__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 720px) { .extras__grid { grid-template-columns: 1fr; } }

.extra {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.2s;
}
.extra:hover { border-color: rgba(225, 6, 0, 0.3); background: rgba(225, 6, 0, 0.04); }
.extra__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(225, 6, 0, 0.08);
  color: var(--red-bright);
  border-radius: 50%;
}
.extra strong { display: block; font-size: 15px; font-weight: 600; }
.extra small { color: var(--ash-2); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }

/* ─────────────────── gallery / réalisations ─────────────────── */

.gallery {
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}
.gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}
@media (max-width: 980px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px 240px;
  }
}
@media (max-width: 560px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
  }
}

.gal-tile {
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.04);
  transition: transform 0.4s;
}
.gal-tile:hover { transform: scale(1.01); }
.gal-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 0.3s;
}
.gal-tile:hover video { filter: brightness(1); }
.gal-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,5,6,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  pointer-events: none;
}
.gal-tile__title {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.gal-tile__sub {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-top: 4px;
}
.gal-tile__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: rgba(225, 6, 0, 0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  pointer-events: none;
  transition: transform 0.3s, background 0.3s;
}
.gal-tile:hover .gal-tile__play {
  background: var(--red-bright);
  transform: translate(-50%, -50%) scale(1.1);
}

.gal-tile--featured {
  grid-column: 1; grid-row: 1 / span 2;
}
@media (max-width: 980px) {
  .gal-tile--featured { grid-column: 1 / -1; grid-row: 1; }
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox__inner {
  max-width: 1100px;
  width: 100%;
  position: relative;
}
.lightbox video {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: #000;
}
.lightbox__close {
  position: absolute;
  top: -50px; right: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 22px;
}

/* ─────────────────── about / story ─────────────────── */

.about {
  background: linear-gradient(180deg, var(--bg-0), var(--bg-1));
  position: relative;
  overflow: hidden;
}
.about__bg {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.12), transparent 60%);
  pointer-events: none;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; gap: 40px; } }

.about__visual {
  position: relative;
}
.about__logo-wrap {
  position: relative;
  aspect-ratio: 1;
  max-width: 460px;
  margin: 0 auto;
}
.about__logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--red);
  box-shadow: 0 0 60px var(--red-glow), inset 0 0 60px rgba(0,0,0,0.5);
}
.about__logo-wrap::before {
  content: "";
  position: absolute;
  inset: -20px;
  border: 1px dashed rgba(225, 6, 0, 0.3);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.about__stats {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--bg-2);
  border: 1px solid var(--red);
  padding: 16px 20px;
  font-family: var(--f-display);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about__stats b {
  font-size: 36px;
  color: var(--red-bright);
  line-height: 1;
}
.about__stats span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash-2);
}

.about__content h2 { margin-bottom: 24px; }
.about__content p {
  color: var(--ash-1);
  font-size: 17px;
  margin-bottom: 16px;
  line-height: 1.65;
}
.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about__value {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}
.about__value strong {
  display: block;
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--red-bright);
  margin-bottom: 6px;
}
.about__value small {
  color: var(--ash-2);
  font-size: 13px;
  line-height: 1.45;
  display: block;
}

/* ─────────────────── reviews ─────────────────── */

.reviews { background: var(--bg-0); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .reviews__grid { grid-template-columns: 1fr; } }

.review {
  background: var(--bg-1);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.review__stars {
  display: flex;
  gap: 3px;
  color: var(--red-bright);
}
.review__quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ash-1);
  flex: 1;
}
.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.review__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 18px;
}
.review__author b { font-size: 14px; display: block; }
.review__author small { color: var(--ash-2); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }

.reviews__strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding: 24px 32px;
  background: var(--bg-1);
  border: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 16px;
}
.reviews__strip-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.reviews__strip-item b {
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--red-bright);
}
.reviews__strip-item span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash-2);
}

/* ─────────────────── FAQ ─────────────────── */

.faq { background: linear-gradient(180deg, var(--bg-0), var(--bg-1) 50%, var(--bg-0)); }
.faq__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 60px;
}
@media (max-width: 900px) { .faq__grid { grid-template-columns: 1fr; gap: 32px; } }

.faq__list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  cursor: pointer;
}
.faq-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.faq-item:hover .faq-item__head { color: var(--red-bright); }
.faq-item__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red-bright);
  transition: transform 0.3s;
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  color: var(--ash-1);
  font-size: 15.5px;
  line-height: 1.65;
}
.faq-item.open .faq-item__body {
  max-height: 300px;
  padding-top: 12px;
}

/* ─────────────────── zone d'intervention ─────────────────── */

.zone {
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}
.zone__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 900px) { .zone__grid { grid-template-columns: 1fr; } }

.zone__map {
  position: relative;
  min-height: 460px;
  background: var(--bg-1);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.zone__map svg { width: 100%; height: 100%; display: block; }
.zone__pin {
  position: absolute;
  top: 50%; left: 52%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.zone__pin-dot {
  width: 18px; height: 18px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(225, 6, 0, 0.3);
  position: relative;
  z-index: 2;
}
.zone__pin-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2.4s ease-out infinite;
  opacity: 0.8;
}
@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(8); opacity: 0; }
}
.zone__map-label {
  position: absolute;
  background: var(--bg-2);
  border: 1px solid var(--red);
  padding: 10px 14px;
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zone__list h3 { margin-bottom: 24px; }
.zone__cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.zone__city {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-1);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
}
.zone__city svg { color: var(--red-bright); flex-shrink: 0; }
.zone__city b { font-weight: 600; }
.zone__city small { color: var(--ash-2); margin-left: auto; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }

/* ─────────────────── booking ─────────────────── */

.booking {
  background: linear-gradient(180deg, var(--bg-0), #0a0203 50%, var(--bg-0));
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 20% 50%, rgba(225, 6, 0, 0.18), transparent 60%),
    radial-gradient(600px 400px at 90% 80%, rgba(225, 6, 0, 0.12), transparent 70%);
  pointer-events: none;
}

.booking__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: var(--bg-1);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
@media (max-width: 980px) { .booking__inner { grid-template-columns: 1fr; } }

.booking__side {
  background: linear-gradient(180deg, #1a0606 0%, #0a0203 100%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(225, 6, 0, 0.2);
}
.booking__side h3 {
  font-family: var(--f-display);
  font-size: 36px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}
.booking__side p {
  color: var(--ash-1);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 28px;
}
.booking__steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}
.booking__step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s;
}
.booking__step.active {
  border-color: var(--red);
  background: rgba(225, 6, 0, 0.1);
}
.booking__step.done {
  border-color: rgba(225, 6, 0, 0.4);
  opacity: 0.85;
}
.booking__step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 14px;
  flex-shrink: 0;
}
.booking__step.active .booking__step-num { background: var(--red); border-color: var(--red); }
.booking__step.done .booking__step-num { background: rgba(225, 6, 0, 0.3); border-color: var(--red); }
.booking__step b {
  display: block;
  font-family: var(--f-display);
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.booking__step small { color: var(--ash-2); font-size: 12px; }

.booking__main {
  padding: 40px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 720px) {
  .booking__side, .booking__main { padding: 28px 22px; }
}

.booking__step-title {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.booking__step-sub {
  color: var(--ash-2);
  font-size: 14px;
  margin-bottom: 28px;
}

/* service select */
.bk-services {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.bk-svc {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  width: 100%;
}
.bk-svc:hover { border-color: rgba(225, 6, 0, 0.4); }
.bk-svc.selected {
  border-color: var(--red);
  background: linear-gradient(90deg, rgba(225, 6, 0, 0.12), rgba(225, 6, 0, 0.04));
  box-shadow: 0 0 0 1px var(--red);
}
.bk-svc__radio {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  position: relative;
  transition: border-color 0.2s;
}
.bk-svc.selected .bk-svc__radio {
  border-color: var(--red);
}
.bk-svc.selected .bk-svc__radio::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
}
.bk-svc__info { flex: 1; }
.bk-svc__info b {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.bk-svc__info small { color: var(--ash-2); font-size: 12.5px; }
.bk-svc__price {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--red-bright);
}

/* date picker */
.bk-cal {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 20px;
  margin-bottom: 24px;
}
.bk-cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.bk-cal__head b {
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.bk-cal__nav {
  display: flex;
  gap: 6px;
}
.bk-cal__nav button {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.bk-cal__nav button:hover:not(:disabled) {
  border-color: var(--red);
  color: var(--red-bright);
}
.bk-cal__nav button:disabled { opacity: 0.3; cursor: not-allowed; }

.bk-cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.bk-cal__weekdays span {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ash-2);
  padding: 6px 0;
}

.bk-cal__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.bk-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255,255,255,0.02);
  border: 1px solid transparent;
  transition: all 0.15s;
  position: relative;
}
.bk-day:hover:not(:disabled):not(.selected) {
  border-color: rgba(225, 6, 0, 0.4);
  color: var(--white);
}
.bk-day:disabled, .bk-day.unavail {
  color: rgba(255,255,255,0.15);
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.1);
}
.bk-day.empty { background: transparent; pointer-events: none; }
.bk-day.today { color: var(--red-bright); font-weight: 700; }
.bk-day.today::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--red);
}
.bk-day.selected {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  font-weight: 700;
}

/* time slots */
.bk-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}
@media (max-width: 600px) { .bk-slots { grid-template-columns: repeat(3, 1fr); } }
.bk-slot {
  padding: 12px 8px;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  transition: all 0.15s;
}
.bk-slot:hover:not(:disabled) {
  border-color: var(--red);
  color: var(--red-bright);
}
.bk-slot.selected {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.bk-slot:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* form */
.bk-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.bk-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bk-field--full { grid-column: 1 / -1; }
.bk-field label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash-2);
  font-weight: 600;
}
.bk-field input, .bk-field textarea, .bk-field select {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  padding: 12px 14px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.bk-field input:focus, .bk-field textarea:focus, .bk-field select:focus {
  border-color: var(--red);
}
.bk-field textarea { resize: vertical; min-height: 80px; }
.bk-field.error input, .bk-field.error textarea { border-color: var(--red-bright); }
.bk-field small.err { color: var(--red-bright); font-size: 11px; }
@media (max-width: 600px) {
  .bk-form { grid-template-columns: 1fr; }
}

/* booking summary card */
.bk-summary {
  background: var(--bg-2);
  border: 1px solid rgba(225, 6, 0, 0.3);
  padding: 18px 20px;
  margin-bottom: 24px;
}
.bk-summary h5 {
  font-family: var(--f-display);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash-2);
  margin-bottom: 12px;
}
.bk-summary .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
}
.bk-summary .row span { color: var(--ash-2); }
.bk-summary .row b { font-weight: 600; }
.bk-summary .total {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.bk-summary .total b { color: var(--red-bright); }

.bk-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  flex-wrap: wrap;
}

/* success */
.bk-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.bk-success__icon {
  width: 80px; height: 80px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px var(--red-glow);
}
.bk-success h3 {
  font-family: var(--f-display);
  font-size: 36px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.bk-success p { color: var(--ash-1); max-width: 420px; }

/* ─────────────────── footer ─────────────────── */

.footer {
  background: var(--bg-1);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 720px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer__brand img { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--red); }
.footer__brand b {
  font-family: var(--f-display);
  font-size: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer__brand span { color: var(--red-bright); }
.footer__about p { color: var(--ash-2); font-size: 13.5px; max-width: 320px; line-height: 1.55; }
.footer__col h5 {
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col a {
  color: var(--ash-2);
  font-size: 13.5px;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--red-bright); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ash-2);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: all 0.2s;
}
.footer__socials a:hover {
  border-color: var(--red);
  color: var(--red-bright);
  transform: translateY(-2px);
}

/* Floating CTA on mobile */
.float-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  background: var(--red);
  color: var(--white);
  padding: 16px;
  font-family: var(--f-display);
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(225, 6, 0, 0.4);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}
@media (max-width: 720px) { .float-cta { display: flex; } }

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s, transform 0.7s;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
