/* ====================================================
   Website UI Kit — Car Wash Design & Detailing de Luxe
   Inherits tokens from /colors_and_type.css
   ==================================================== */

html, body { background: var(--bg-page); color: var(--fg-1); }
body {
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* Page scaffolding */
.page { min-height: 100vh; }
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
section { position: relative; }

/* ============== NAVIGATION ============== */
.nav-shell {
  position: fixed; top: 16px; left: 0; right: 0;
  z-index: 50;
  display: grid; place-items: center;
  pointer-events: none;
}
.nav-shell .container { pointer-events: auto; }
.nav {
  display: flex; align-items: center; gap: 24px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--border-hairline);
  padding: 14px 18px 14px 22px;
  border-radius: 0;
  max-width: 100%;
}
.nav-brand {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 16px;
  color: var(--fg-1);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.nav-brand .shield {
  width: 40px; height: 40px; border-radius: 8px;
  background-size: cover; background-position: center;
  background-color: var(--brand-noir);
  border: 1px solid var(--brand-or);
  flex-shrink: 0;
}
.nav-brand-text { display: inline-flex; flex-direction: column; gap: 3px; }
.nav-brand-main { font-size: 15px; font-weight: 800; letter-spacing: 0.03em; color: var(--fg-1); }
.nav-brand-sub  { font-size: 9.5px; font-weight: 600; letter-spacing: 0.18em; color: var(--brand-or); }
.nav-brand .de-luxe { color: var(--brand-or); font-weight: 600; font-size: 11px; letter-spacing: 0.18em; }

.nav-links {
  display: flex; gap: 22px;
  margin: 0 0 0 10px;
  padding: 0;
  list-style: none;
}
.nav-links li { list-style: none; }
.nav-links li a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-2);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 200ms var(--ease-out);
}
.nav-links li a:hover { color: var(--fg-1); }
.nav-links li.current-menu-item > a,
.nav-links li.current_page_item > a { color: var(--brand-or); }
.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-2);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 200ms var(--ease-out);
}
.nav-link:hover { color: var(--fg-1); }
.nav-link.active { color: var(--brand-or); }
.nav-link.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--brand-or);
}

.nav-cta {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--gradient-gold-bevel);
  color: #000;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 6px 18px rgba(0,0,0,0.45);
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-fast);
}
.nav-cta:hover { box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset, 0 0 0 1px rgba(212,175,55,0.5), 0 10px 28px rgba(212,175,55,0.32); color: #000; }
.nav-cta:active { transform: scale(0.97); }

/* old .nav-burger removed — replaced by full burger styling below */

@media (max-width: 960px) {
  .nav { gap: 12px; padding: 12px 14px 12px 16px; justify-content: space-between; }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-burger { display: flex !important; margin-left: auto; flex-shrink: 0; }
  .nav-brand-sub { font-size: 8.5px; letter-spacing: 0.16em; }
  .nav-brand-main { font-size: 14px; }
  .nav-brand .shield { width: 34px; height: 34px; }
  .nav-brand { min-width: 0; flex: 0 1 auto; }
  .nav-brand-text { min-width: 0; }
}

/* Phone — tighten brand so burger has breathing room */
@media (max-width: 480px) {
  .nav { padding: 10px 12px; gap: 8px; }
  .nav-brand-main { font-size: 13px; }
  .nav-brand-sub  { font-size: 7.5px; }
  .nav-brand .shield { width: 30px; height: 30px; }
  .nav-burger { width: 36px; height: 36px; }
}

/* Burger icon — 3 lines that morph into an X when open */
.nav-burger {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: rgba(0,0,0,0.4);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav-burger:hover { border-color: var(--brand-or); }
.burger-bar {
  display: block;
  width: 18px; height: 2px;
  background: var(--brand-or);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-burger[aria-expanded="true"] .burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] .burger-bar:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] .burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 49;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border-hairline);
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu-inner {
  padding: 100px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 480px;
  margin: 0 auto;
}
.mobile-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--fg-1);
  text-decoration: none;
  padding: 18px 4px;
  border-bottom: 1px solid var(--border-hairline);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-link:hover, .mobile-link:focus-visible {
  color: var(--brand-or);
  padding-left: 10px;
}
.mobile-cta {
  margin-top: 24px;
  justify-content: center;
  width: 100%;
}
body.menu-open { overflow: hidden; }

/* ============== BUTTON PRIMITIVE ============== */
.btn {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12.5px;
  border-radius: 999px;
  padding: 14px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-out);
}
.btn-primary {
  background: var(--gradient-gold-bevel);
  color: #000;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 8px 22px rgba(0,0,0,0.55);
}
.btn-primary:hover { box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 0 0 1px rgba(212,175,55,0.5), 0 12px 32px rgba(212,175,55,0.32); color: #000; }
.btn-primary:active { transform: scale(0.97); }
.btn-secondary {
  background: transparent;
  color: var(--brand-or);
  border-color: var(--brand-or);
}
.btn-secondary:hover { background: rgba(212,175,55,0.08); color: var(--or-200); }
.btn-ghost {
  background: transparent;
  color: var(--brand-or);
  padding: 14px 0;
  border-radius: 0;
}
.btn-ghost::after {
  content: ""; display: block; height: 1px;
  background: var(--brand-or);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.btn-ghost:hover::after { transform: scaleX(1); }

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 180px 0 80px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before { /* photo — URL set inline via --hero-photo */
  content: "";
  position: absolute; inset: 0;
  background-image: var(--hero-photo);
  background-size: cover; background-position: center 30%;
  filter: brightness(0.45) saturate(1.1);
  z-index: -2;
}
.hero::after { /* vignette overlay */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(110% 70% at 50% 0%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 60%, #000 100%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 95%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: end;
}
.hero-eyebrow { color: var(--brand-or); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 116px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--fg-1);
  margin: 0;
  text-wrap: balance;
}
.hero-title .neon {
  color: var(--brand-mauve);
  text-shadow: 0 0 12px rgba(200,0,255,0.55), 0 0 40px rgba(200,0,255,0.35);
}
.hero-title .gold {
  background: linear-gradient(180deg, #FFFFFF 0%, #D4AF37 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fg-2);
  max-width: 540px;
  line-height: 1.5;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 8px; }
.hero-stats {
  display: flex; gap: 36px; flex-wrap: wrap;
  margin-top: 40px;
  border-top: 1px solid var(--border-hairline);
  padding-top: 24px;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat .n {
  font-family: var(--font-display); font-weight: 800;
  font-size: 36px; line-height: 1; color: var(--brand-or);
  letter-spacing: -0.02em;
}
.hero-stat .lbl {
  font-family: var(--font-display);
  font-weight: 600; font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--fg-3);
}

/* Hero marquee */
.marquee {
  position: relative;
  margin-top: 60px;
  padding: 14px 0;
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 56px;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-2);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 56px;
}
.marquee-item::after {
  content: "✦"; color: var(--brand-or); font-size: 14px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== EYEBROW / LOCKUP / SECTION HEADER ============== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-or);
}
.lockup-rule {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-or);
}
.lockup-rule::before, .lockup-rule::after {
  content: "";
  width: 36px; height: 1px;
  background: var(--brand-or);
}
.section-head {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  margin-bottom: 56px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.5vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}
.section-sub {
  color: var(--fg-2);
  font-size: 17px;
  max-width: 620px;
  text-wrap: pretty;
}

/* ============== SERVICES ============== */
.services {
  padding: 120px 0;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(200,0,255,0.07) 0%, rgba(0,0,0,0) 60%),
    var(--bg-page);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  border-radius: 18px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 220px;
  transition: all var(--dur-base) var(--ease-out);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.service-card.featured {
  border-color: rgba(212,175,55,0.45);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(200,0,255,0.10) 0%, rgba(0,0,0,0) 60%),
    var(--bg-card);
  box-shadow: var(--shadow-md);
}
.service-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  border: 1px solid var(--brand-or);
  display: grid; place-items: center;
  color: var(--brand-or);
  background: rgba(212,175,55,0.06);
  transition: all var(--dur-base) var(--ease-out);
}
.service-card:hover .icon { color: var(--brand-mauve); border-color: var(--brand-mauve); box-shadow: 0 0 22px rgba(200,0,255,0.25); }
.service-card .icon svg { width: 22px; height: 22px; stroke-width: 1.5; }
.service-card .ti {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--fg-1);
}
.service-card .desc {
  font-size: 14.5px;
  color: var(--fg-3);
  line-height: 1.5;
}
.service-card .price {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--brand-or);
  letter-spacing: 0;
  display: flex; align-items: baseline; gap: 4px;
}
.service-card .price small {
  font-family: var(--font-body); font-weight: 500;
  font-size: 11px; color: var(--gris-2); text-transform: uppercase; letter-spacing: 0.1em;
}

.service-badge {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-display); font-weight: 600; font-size: 9.5px;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  background: linear-gradient(180deg,#F2D879,#D4AF37);
  color: #000;
}
.service-badge.mauve {
  background: var(--brand-mauve);
  color: #fff;
  box-shadow: 0 0 18px rgba(200,0,255,0.4);
}

/* All-services strip */
.service-word-list {
  margin-top: 56px;
  display: flex; flex-wrap: wrap; gap: 6px 0;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
}
.service-word-list .w {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-2);
  padding: 0 18px;
  position: relative;
}
.service-word-list .w + .w::before {
  content: "·";
  position: absolute; left: -2px; top: 50%; transform: translateY(-50%);
  color: var(--brand-or);
}

/* ============== ABOUT ============== */
.about {
  padding: 120px 0;
  background:
    linear-gradient(180deg, var(--bg-page) 0%, var(--noir-1) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  aspect-ratio: 4/3;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 50%, transparent 50%, rgba(0,0,0,0.55) 100%);
}
.about-stats {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 22px;
  z-index: 2;
  white-space: nowrap;
}
.about-stat {
  background: rgba(0,0,0,0.7); backdrop-filter: blur(10px);
  border: 1px solid var(--border-hairline);
  padding: 12px 16px;
  border-radius: 12px;
  text-align: left;
}
.about-stat .n { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--brand-or); }
.about-stat .lbl { font-family: var(--font-display); font-weight: 600; font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-2); }

.values { display: grid; gap: 18px; margin-top: 28px; }
.value {
  display: flex; gap: 14px; align-items: flex-start;
  padding-top: 18px;
  border-top: 1px solid var(--border-hairline);
}
.value:first-child { border-top: none; padding-top: 0; }
.value .ic {
  width: 32px; height: 32px; flex-shrink: 0;
  display: grid; place-items: center;
  color: var(--brand-or);
}
.value .ic svg { width: 22px; height: 22px; stroke-width: 1.5; }
.value .ti { font-family: var(--font-display); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--fg-1); margin-bottom: 4px; }
.value .desc { font-size: 14px; color: var(--fg-3); line-height: 1.5; }

/* ============== GALLERY ============== */
.gallery {
  padding: 120px 0;
  background: var(--bg-page);
}
.gallery-tabs {
  display: flex; gap: 8px; justify-content: center; margin-bottom: 32px;
  flex-wrap: wrap;
}
.gallery-tab {
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  color: var(--fg-2);
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
}
.gallery-tab:hover { color: var(--fg-1); border-color: var(--border-strong); }
.gallery-tab.active { color: #000; background: var(--gradient-gold-bevel); border-color: transparent; }

/* Pair-based layout (4 columns desktop, 2 mobile) — avant + après side-by-side */
.gallery-pairs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .gallery-pairs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-pairs { grid-template-columns: 1fr; } }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-hairline);
  cursor: pointer;
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  margin: 0;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 700ms var(--ease-out), filter 400ms;
}
.gallery-item:hover img { transform: scale(1.04); filter: brightness(1.05); }
.gallery-item .tag {
  position: absolute; left: 10px; bottom: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(6px);
  color: var(--brand-or);
  padding: 5px 10px; border-radius: 999px;
}
/* Visual hint for avant/apres */
.gallery-item.gi-avant .tag { color: #FFC3CD; background: rgba(80,0,10,0.7); }
.gallery-item.gi-apres .tag {
  color: var(--brand-or);
  background: rgba(0,0,0,0.7);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.45);
}
.gallery-item.gi-apres { box-shadow: 0 0 0 1px rgba(212,175,55,0.18); }

/* ============== REVIEWS ============== */
.reviews {
  padding: 120px 0;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(212,175,55,0.07) 0%, rgba(0,0,0,0) 60%),
    var(--noir-1);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  border-radius: 18px;
  padding: 26px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 220px;
}
.review-stars { color: var(--brand-or); letter-spacing: 4px; font-size: 16px; }
.review-quote { font-family: var(--font-body); font-size: 15px; color: var(--fg-2); line-height: 1.5; }
.review-quote::before { content: "«\00a0"; color: var(--brand-or); font-weight: 700; }
.review-quote::after { content: "\00a0»"; color: var(--brand-or); font-weight: 700; }
.review-who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border-hairline); }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gradient-gold-bevel);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; color: #000; font-size: 13px;
}
.review-name { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-1); }
.review-meta { font-size: 12px; color: var(--fg-3); }

.google-badge {
  margin-top: 40px;
  display: flex; gap: 16px; justify-content: center; align-items: center;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border-hairline);
  background: var(--bg-card);
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.google-badge .score {
  font-family: var(--font-display); font-weight: 800; font-size: 36px;
  color: var(--brand-or); line-height: 1;
}
.google-badge .meta { font-family: var(--font-display); font-weight: 600; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-2); }
.google-badge .sub  { font-size: 13px; color: var(--fg-3); margin-top: 2px; }

/* ============== CONTACT / BOOKING ============== */
.contact {
  padding: 120px 0;
  background: var(--bg-page);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border-hairline); }
.contact-row .ic { width: 28px; height: 28px; color: var(--brand-or); flex-shrink: 0; }
.contact-row .ic svg { width: 22px; height: 22px; stroke-width: 1.5; }
.contact-row .lb { font-family: var(--font-display); font-weight: 600; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-or); }
.contact-row .val { font-size: 15px; color: var(--fg-1); margin-top: 2px; }

/* Form */
.booking-form {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  border-radius: 22px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-display); font-weight: 600; font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-or);
}
.field input, .field select, .field textarea {
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  color: var(--fg-1);
  padding: 13px 14px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border var(--dur-base), box-shadow var(--dur-base);
}
.field input::placeholder { color: var(--gris-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brand-or);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.18);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.form-success {
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.4);
  border-radius: 12px;
  padding: 14px;
  color: #B8F0C8;
  font-size: 14px;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--brand-noir);
  border-top: 1px solid var(--border-hairline);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand .row { display: flex; align-items: center; gap: 12px; }
.footer-brand .row img { width: 48px; height: 48px; border-radius: 8px; border: 1px solid var(--brand-or); }
.footer-brand .name { font-family: var(--font-display); font-weight: 800; font-size: 18px; text-transform: uppercase; letter-spacing: 0.02em; }
.footer-brand .name .gold { color: var(--brand-or); font-weight: 600; font-size: 11px; letter-spacing: 0.18em; display: block; }
.footer-brand p { font-size: 14px; color: var(--fg-3); max-width: 340px; }

.footer-col h4 {
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand-or);
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--fg-2); text-decoration: none; font-size: 14px; transition: color var(--dur-fast); }
.footer-col a:hover { color: var(--brand-or); }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border-hairline);
  display: grid; place-items: center;
  color: var(--brand-or);
  transition: all var(--dur-base);
}
.footer-socials a:hover { border-color: var(--brand-or); background: rgba(212,175,55,0.08); }
.footer-socials svg { width: 16px; height: 16px; stroke-width: 1.5; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border-hairline);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 12px;
  color: var(--gris-2);
  letter-spacing: 0.02em;
}
.footer-bottom .legal { display: flex; gap: 22px; }
.footer-bottom .legal a { color: var(--gris-2); text-decoration: none; }
.footer-bottom .legal a:hover { color: var(--brand-or); }

/* ============== MOBILE FAB ============== */
.fab-mobile {
  display: none;
  position: fixed; right: 16px; bottom: 16px; z-index: 60;
  font-family: var(--font-display); font-weight: 700; font-size: 11.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--gradient-gold-bevel); color: #000;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  border: none;
}
@media (max-width: 960px) { .fab-mobile { display: inline-flex; } }

/* ============== MODAL ============== */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  display: grid; place-items: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-base);
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  padding: 30px;
  max-width: 480px; width: 100%;
  box-shadow: var(--shadow-lg);
  transform: translateY(10px);
  transition: transform var(--dur-base) var(--ease-out);
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: transparent; border: 1px solid var(--border-hairline);
  width: 32px; height: 32px; border-radius: 50%;
  color: var(--fg-2); cursor: pointer;
}
.modal-head { margin-bottom: 18px; }


/* ============== INNER PAGES — top padding under fixed nav ============== */
body.page-services .services,
body.page-contact  .contact,
body.page-faq      .faq-section {
  padding-top: 180px;
}
/* Tablet — direct selectors (no body class dependency) */
@media (max-width: 960px) {
  .services, .contact, .faq-section {
    padding-top: 150px !important;
  }
}
/* Phone */
@media (max-width: 600px) {
  .services, .contact, .faq-section {
    padding-top: 125px !important;
  }
}
@media (max-width: 700px) { .page-pad-top { height: 90px; } }

/* ============== FAQ PREMIUM ============== */
.faq-section {
  padding: 120px 0 120px;
  background: var(--bg-page);
  position: relative;
}
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 50% at 50% 0%, rgba(212,175,55,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 72px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.faq-eyebrow {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brand-or);
}
.faq-main-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--fg-1);
  margin: 0;
}
.faq-main-sub {
  font-size: 16px;
  color: var(--fg-3);
  max-width: 480px;
  line-height: 1.6;
  margin: 0;
}

/* Layout */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr 280px; gap: 32px; }
}
@media (max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* FAQ Cards */
.faq-list-wrap { display: flex; flex-direction: column; gap: 0; }

.faq-card {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s ease;
}
.faq-card:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.faq-card-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr 36px;
  align-items: center;
  gap: 20px;
  padding: 24px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--fg-1);
  transition: color 0.2s ease;
}
.faq-card-trigger:hover { color: var(--brand-or); }
.faq-card--open .faq-card-trigger { color: var(--brand-or); }

.faq-card-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand-or);
  opacity: 0.5;
  transition: opacity 0.2s;
  line-height: 1;
}
.faq-card--open .faq-card-num { opacity: 1; }

.faq-card-q {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
@media (max-width: 600px) { .faq-card-q { font-size: 15px; } }

.faq-card-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--fg-3);
  flex-shrink: 0;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.faq-card--open .faq-card-icon {
  border-color: rgba(212,175,55,0.4);
  color: var(--brand-or);
  background: rgba(212,175,55,0.08);
}
.faq-icon-v {
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.3s;
}
.faq-card--open .faq-icon-v {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-card-body {
  padding: 0 4px 28px calc(48px + 20px);
  animation: faqSlideDown 0.3s cubic-bezier(0.16,1,0.3,1);
}
.faq-card-body[hidden] { display: none; }
@keyframes faqSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-card-a {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 600px) {
  .faq-card-trigger { grid-template-columns: 36px 1fr 32px; gap: 12px; padding: 20px 0; }
  .faq-card-body { padding: 0 0 24px calc(36px + 12px); }
}

/* Aside Card */
.faq-aside { position: sticky; top: 120px; }
@media (max-width: 768px) { .faq-aside { position: static; } }

.faq-aside-card {
  background: #0D0D0D;
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
}
.faq-aside-card::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.faq-aside-icon {
  width: 52px; height: 52px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-or);
}
.faq-aside-label {
  font-family: var(--font-display);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand-or);
  margin: 0;
}
.faq-aside-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  line-height: 1.2; letter-spacing: -0.01em;
  color: var(--fg-1);
  margin: 0;
}
.faq-aside-desc {
  font-size: 14px; color: var(--fg-3);
  line-height: 1.6; margin: 0;
}
.faq-aside-actions {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 4px;
}
.faq-aside-btn-primary {
  display: flex; align-items: center; justify-content: center;
  padding: 13px 20px;
  background: linear-gradient(180deg, #F2D879 0%, #D4AF37 50%, #8E6F18 100%);
  color: #000;
  font-family: var(--font-display); font-size: 12px;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 999px; text-decoration: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 6px 18px rgba(0,0,0,0.4);
  transition: box-shadow 0.2s, transform 0.15s;
}
.faq-aside-btn-primary:hover {
  box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset, 0 0 0 1px rgba(212,175,55,0.5), 0 10px 28px rgba(212,175,55,0.28);
  color: #000;
}
.faq-aside-btn-ghost {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px;
  background: transparent;
  color: var(--fg-2);
  font-family: var(--font-display); font-size: 12px;
  font-weight: 600; letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.faq-aside-btn-ghost:hover { border-color: rgba(212,175,55,0.4); color: var(--brand-or); }

.faq-aside-rating {
  display: flex; align-items: center; gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 4px;
}
.faq-aside-stars { color: var(--brand-or); font-size: 13px; letter-spacing: 2px; }
.faq-aside-rating-txt { font-size: 12px; color: var(--fg-3); }

@media (max-width: 768px) {
  .faq-aside-card { padding: 28px 24px; }
  .faq-aside-actions { flex-direction: row; }
  .faq-aside-btn-primary, .faq-aside-btn-ghost { flex: 1; }
}


/* ============== LEGAL PAGES (Politique de confidentialité, Mentions légales) ============== */
.legal-section {
  padding: 180px 0 120px;
  background: var(--bg-page);
}
@media (max-width: 700px) {
  .legal-section { padding: 140px 0 90px; }
}
.legal-container { max-width: 820px; }

.legal-meta {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-or);
  margin: 24px 0 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-hairline);
}

.legal-body {
  color: var(--fg-2);
  font-size: 15.5px;
  line-height: 1.7;
}
.legal-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--fg-1);
  margin: 40px 0 14px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--fg-1);
  margin: 24px 0 10px;
}
.legal-body p { margin: 0 0 14px; text-wrap: pretty; }
.legal-body ul {
  margin: 0 0 18px;
  padding-left: 20px;
}
.legal-body li {
  margin-bottom: 8px;
  line-height: 1.65;
}
.legal-body a {
  color: var(--brand-or);
  text-decoration: underline;
  text-decoration-color: rgba(213, 175, 55, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}
.legal-body a:hover { text-decoration-color: var(--brand-or); }
.legal-body strong { color: var(--fg-1); font-weight: 600; }
.legal-body em { color: var(--fg-2); font-style: italic; opacity: 0.85; }


/* ============== NAV — center the links group ============== */
@media (min-width: 961px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
  }
  .nav-brand { justify-self: start; }
  .nav-links { justify-self: center; margin: 0; }
  .nav-cta   { justify-self: end;    margin-left: 0; }
}


/* ============== MOBILE & TABLET POLISH — center & tidy ============== */
@media (max-width: 960px) {
  /* Section heads — centered, balanced */
  .section-head { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
  .section-head .lockup-rule { display: inline-block; }
  .section-title { font-size: clamp(28px, 5.5vw, 40px); text-align: center; }
  .section-sub   { margin-left: auto; margin-right: auto; }

  /* Hero — centered stack */
  .hero { padding: 140px 16px 60px; min-height: auto; text-align: center; }
  .hero-inner { align-items: center; text-align: center; }
  .hero-title { font-size: clamp(38px, 8vw, 64px); text-align: center; }
  .hero-sub   { margin: 0 auto; max-width: 56ch; text-align: center; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .hero-actions .btn { flex: 0 1 auto; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stat { text-align: center; }

  /* About — photo on top, content centered */
  .about-grid { gap: 32px; }
  .about-photo { max-width: 560px; margin: 0 auto; }
  .about-stats {
    left: 50% !important;
    right: auto !important;
    bottom: 12px !important;
    transform: translateX(-50%) !important;
    width: max-content !important;
    max-width: calc(100% - 16px) !important;
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: center !important;
    gap: 6px !important;
    margin: 0 !important;
  }
  .about-stat { padding: 8px 10px !important; min-width: 0; }
  .about-stat .n  { font-size: 15px !important; }
  .about-stat .lbl { font-size: 7.5px !important; letter-spacing: 0.10em !important; white-space: nowrap; }
}
@media (max-width: 480px) {
  .about-stats {
    gap: 4px !important;
    max-width: calc(100% - 10px) !important;
  }
  .about-stat { padding: 5px 7px !important; border-radius: 8px !important; }
  .about-stat .n  { font-size: 13px !important; }
  .about-stat .lbl { font-size: 6.5px !important; letter-spacing: 0.06em !important; }
  .values { max-width: 560px; margin: 0 auto; }
  .about .lead { text-align: center; max-width: 56ch; margin-left: auto; margin-right: auto; }

  /* Services */
  .services { padding: 80px 0; }
  .service-card { text-align: center; }
  .service-card .icon { margin-left: auto; margin-right: auto; }
  .service-word-list { justify-content: center; }

  /* Gallery */
  .gallery-tabs { justify-content: center; flex-wrap: wrap; }

  /* Reviews */
  .reviews { padding: 80px 0; }
  .review-card { text-align: left; }
  .google-badge { flex-direction: column; gap: 16px; text-align: center; }
  .google-badge > div[style*="width:1px"] { display: none !important; }

  /* Contact */
  .contact { padding: 80px 0; }
  .contact-info { max-width: 560px; margin: 0 auto; }
  .booking-form { max-width: 560px; margin: 0 auto; }

  /* FAQ */
  .faq-side-card { text-align: center; align-items: center; }
  .faq-side-card .lockup-rule { display: inline-block; }

  /* Footer */
  .footer-grid { text-align: center; }
  .footer-brand { align-items: center; text-align: center; }
  .footer-brand .row { justify-content: center; }
  .footer-socials { justify-content: center; }
  .footer-col h4 { text-align: center; }
  .footer-col ul { padding: 0; list-style: none; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    align-items: center;
  }
  .footer-bottom .legal { justify-content: center; flex-wrap: wrap; }
}

/* TABLET (601–960) — 2-col layouts where it helps */
@media (min-width: 601px) and (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); max-width: 600px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

/* PHONE (<= 600) — tighter spacing */
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .lockup-rule { font-size: 11px; letter-spacing: 0.18em; }
  .about-stat .n { font-size: 24px; }
  .footer-bottom .legal { gap: 14px; font-size: 12px; }

  /* Service word list — colonne centrée sur mobile */
  .service-word-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .service-word-list .w {
    padding: 10px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border-hairline);
  }
  .service-word-list .w:last-child { border-bottom: none; }
  .service-word-list .w + .w::before { display: none; }
}

/* ============== CONTACT — réseaux as icon buttons ============== */
.social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 6px;
}
.social-icon {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-hairline);
  background: rgba(212,175,55,0.05);
  color: var(--brand-or);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.social-icon:hover {
  border-color: var(--brand-or);
  background: rgba(212,175,55,0.12);
  transform: translateY(-2px);
}
.social-icon svg { width: 17px; height: 17px; stroke-width: 1.6; }

/* ============== FOOTER BRAND — center CARWASH on mobile ============== */
@media (max-width: 960px) {
  .footer-brand .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  .footer-brand .row img { margin: 0 auto; }
  .footer-brand .name { text-align: center; }
  .footer-brand .name .gold { display: block; margin-top: 4px; }
}

/* ============== FORCED CENTERING — phone & tablet polish v2 ============== */

/* Footer brand on mobile/tablet — stack & center logo + CARWASH + description */
@media (max-width: 960px) {
  .footer-brand {
    align-items: center !important;
    text-align: center !important;
  }
  .footer-brand .row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 14px !important;
  }
  .footer-brand .row img {
    margin: 0 auto !important;
    display: block !important;
  }
  .footer-brand .name {
    text-align: center !important;
    width: 100%;
  }
  .footer-brand .name .gold {
    display: block;
    margin-top: 6px;
  }
  .footer-brand p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Tablet — center every footer column's content */
@media (min-width: 601px) and (max-width: 960px) {
  .footer-col {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-col ul {
    list-style: none;
    padding: 0 !important;
    width: 100%;
  }
  .footer-col ul li {
    text-align: center !important;
  }
}

/* Contact réseaux — more icon spacing + centered on mobile */
.social-icons {
  display: flex !important;
  gap: 20px !important;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
@media (max-width: 960px) {
  .social-icons {
    justify-content: flex-start;
    gap: 22px !important;
  }
}

/* Contact info rows on mobile — keep icon + content side-by-side but tidy */
@media (max-width: 960px) {
  .contact-info {
    max-width: 560px;
    margin: 0 auto !important;
  }
  .booking-form {
    max-width: 560px;
    margin: 0 auto !important;
  }
}

/* ============== FOOTER ATELIER — span full width on tablet ============== */
@media (min-width: 601px) and (max-width: 1024px) {
  /* Atelier (4th child of footer-grid) — span both cols & center */
  .footer-grid .footer-col:nth-child(4),
  .footer-grid .footer-col:last-of-type {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    justify-self: center !important;
  }
}

/* ============== CONTACT — force center the booking form on phone ============== */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
  }
  .contact-info,
  .booking-form {
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    box-sizing: border-box;
  }
}

/* ============== FOOTER — tablet-only Google rating card ============== */
.footer-rating-card { display: none !important; }

@media (min-width: 601px) and (max-width: 1024px) {
  .footer-rating-card {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-rating-card h4 { text-align: center !important; }
}

.footer-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.footer-rating-stars {
  color: var(--brand-or);
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1;
}
.footer-rating-score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--fg-1);
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.footer-rating-meta {
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.04em;
}
.footer-rating-link {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-or);
  text-decoration: none;
  margin-top: 8px;
  border-bottom: 1px solid rgba(212,175,55,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}
.footer-rating-link:hover { border-bottom-color: var(--brand-or); }


/* ============== ABOUT STATS — center on tablet ============== */
@media (max-width: 1024px) {
  .about-photo .about-stats,
  .about-stats {
    left: 0 !important;
    right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: max-content !important;
    max-width: calc(100% - 24px) !important;
    justify-content: center !important;
    transform: none !important;
    grid-template-columns: none !important;
    display: flex !important;
  }
}


/* ============== LEGAL PAGES — fix title overflow ============== */
.legal-section .section-title,
.legal-section h1.section-title,
body .legal-section .section-head .section-title {
  font-size: clamp(24px, 3.4vw, 44px) !important;
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
  max-width: 100% !important;
  line-height: 1.1 !important;
  text-wrap: balance;
}
.legal-section,
.legal-section .container,
.legal-section .legal-container { overflow-x: hidden; }
.legal-section .section-head { max-width: 100% !important; }


/* ============== LEGAL PAGES — final size cap (highest priority) ============== */
html body .legal-section .section-head h1.section-title,
html body .legal-section .section-head .section-title,
html body section.legal-section .section-title,
.legal-section h1 {
  font-size: clamp(22px, 3vw, 40px) !important;
  line-height: 1.1 !important;
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
  max-width: 100% !important;
  white-space: normal !important;
  text-wrap: balance;
}
@media (max-width: 1024px) {
  html body .legal-section .section-title,
  html body section.legal-section h1.section-title {
    font-size: clamp(20px, 5vw, 32px) !important;
  }
}


