/* ============================================================
   Masons Auto Detailing — luxury mobile detailing
   Palette: black drench · electric blue · chrome
   Type: Archivo (display) + Manrope (body)
   ============================================================ */

:root {
  /* surfaces */
  --bg:        #06080d;
  --bg-2:      #0a0e16;
  --surface:   #111826;
  --surface-2: #161f30;
  --line:      rgba(255, 255, 255, .085);
  --line-2:    rgba(255, 255, 255, .16);

  /* ink */
  --ink:   #eef2f8;
  --ink-2: #c4cdda;   /* body copy */
  --muted: #8b98ac;

  /* brand */
  --blue:      #2e86ff;
  --blue-2:    #5aa2ff;
  --blue-deep: #1450b8;
  --blue-glow: rgba(46, 134, 255, .45);

  /* metal */
  --chrome: linear-gradient(100deg,#eef2f7 0%,#aab4c3 22%,#5c6675 48%,#c9d1dd 66%,#8b95a4 82%,#eef2f7 100%);

  /* type */
  --f-display: "Archivo", "Arial Narrow", sans-serif;
  --f-body:    "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* rhythm */
  --pad: clamp(1.25rem, 5vw, 6rem);
  --maxw: 1240px;

  /* z-scale */
  --z-nav: 100;
  --z-overlay: 200;
  --z-toast: 300;

  /* easing */
  --e-out: cubic-bezier(.22,.61,.36,1);
  --e-expo: cubic-bezier(.16,1,.3,1);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink-2);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--blue); color: #fff; }

/* ---------- type scale ---------- */
h1,h2,h3,h4 {
  font-family: var(--f-display);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.display {
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  word-spacing: 0.14em;
  text-transform: uppercase;
}
h2 { font-size: clamp(1.9rem, 4.2vw, 3.4rem); text-transform: uppercase; letter-spacing: -0.015em; word-spacing: 0.12em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); letter-spacing: -0.01em; }
p  { text-wrap: pretty; }

.kicker {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--blue-2);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.kicker::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue-glow);
}

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
section { position: relative; }
.section-pad { padding-block: clamp(4.5rem, 11vw, 9rem); }
.hairline {
  height: 1px; border: 0;
  background: var(--chrome);
  opacity: .28;
  mask-image: linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent);
}

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .35s var(--e-out), box-shadow .35s var(--e-out), background .3s, color .3s, border-color .3s;
  will-change: transform;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  color: #fff;
  box-shadow: 0 0 0 1px rgba(90,162,255,.4), 0 14px 34px -12px var(--blue-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(90,162,255,.6), 0 22px 48px -14px var(--blue-glow); }
.btn-primary::after {
  content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s var(--e-expo);
}
.btn-primary:hover::after { transform: translateX(120%); }

.btn-ghost {
  background: rgba(255,255,255,.04);
  color: var(--ink);
  border-color: var(--line-2);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--blue); color: #fff; transform: translateY(-2px); box-shadow: 0 0 24px -6px var(--blue-glow); }

/* Facebook Messenger: its own gradient so it stays distinct from the solid
   blue primary CTA sitting next to it */
.btn-msg {
  background: linear-gradient(45deg, #0099FF 0%, #6644FF 58%, #B14FE0 100%);
  color:#fff; box-shadow: 0 14px 30px -14px rgba(90,70,255,.75);
}
.btn-msg:hover {
  transform: translateY(-2px);
  background: linear-gradient(45deg, #1aa5ff 0%, #7754ff 58%, #bd60e6 100%);
}

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

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem var(--pad);
  transition: padding .4s var(--e-out), background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
/* dark scrim behind nav content so the logo + links stay legible over a bright hero */
.nav::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 200%;
  background: linear-gradient(180deg, rgba(6,8,13,.7) 0%, rgba(6,8,13,.35) 45%, transparent 100%);
  pointer-events: none; z-index: -1; transition: opacity .4s var(--e-out);
}
.nav.scrolled::before { opacity: 0; }
.nav.scrolled {
  padding-block: .6rem;
  background: rgba(6,8,13,.72);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}
.nav__logo { display: flex; align-items: center; gap: .7rem; }
.nav__logo img { height: 62px; width: auto; transition: height .4s var(--e-out); filter: drop-shadow(0 2px 10px rgba(0,0,0,.7)); }
.nav.scrolled .nav__logo img { height: 48px; }
/* text fallback if logo file not yet dropped */
.nav__logo .fallback { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; letter-spacing:-.02em; font-size:1.05rem; line-height:1; white-space:nowrap; color:var(--ink); display:none; }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-size: .92rem; font-weight: 600; color: var(--ink-2);
  position: relative; padding: .3rem 0;
  transition: color .25s;
}
.nav__links a::after {
  content:""; position:absolute; left:0; bottom:-2px; height:2px; width:100%;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--e-out);
  box-shadow: 0 0 10px var(--blue-glow);
}
.nav__links a:hover { color:#fff; }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { display:flex; align-items:center; gap:.7rem; }

.nav__burger { display:none; background:none; border:0; padding:.4rem; color:var(--ink); }
.nav__burger svg{ width:26px; height:26px; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset:0; z-index: var(--z-overlay);
  background: rgba(6,8,13,.96); backdrop-filter: blur(10px);
  display:flex; flex-direction:column; justify-content:center; gap:1.5rem;
  padding: var(--pad);
  transform: translateY(-100%);
  transition: transform .5s var(--e-expo);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family:var(--f-display); font-weight:800; text-transform:uppercase; font-size:2rem; letter-spacing:-.02em; color:var(--ink); }
.mobile-menu a:hover{ color:var(--blue-2); }
.mobile-menu .close { position:absolute; top:1.4rem; right:var(--pad); background:none;border:0;color:var(--ink); }
.mobile-menu .close svg{ width:30px;height:30px; }
.mobile-menu .mm-cta { margin-top:1rem; display:flex; gap:.8rem; flex-wrap:wrap; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-top: clamp(96px, 12vh, 130px);
  padding-bottom: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
}
.hero__bg { position:absolute; inset:0; z-index:0; }
.hero__bg img { width:100%; height:100%; object-fit:cover; object-position:center 45%; }
/* collage grid — square-ish tiles so square photos fit with minimal crop */
/* minmax(0,1fr) is required: a bare 1fr floors at the image's intrinsic height,
   so the rows blow out and every tile shows the whole photo (mostly sky) */
.hero__collage {
  display:grid; height:100%;
  grid-template-columns:repeat(4,minmax(0,1fr));
  grid-template-rows:repeat(2,minmax(0,1fr));
  gap:3px; background:var(--bg);
}
.hero__collage img { min-height:0; min-width:0; object-position:center 55%; }
.hero__bg::after {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(120% 80% at 80% 5%, rgba(46,134,255,.22), transparent 52%),
    linear-gradient(90deg, rgba(6,8,13,.82) 0%, rgba(6,8,13,.5) 42%, rgba(6,8,13,.35) 100%),
    linear-gradient(180deg, rgba(6,8,13,.5) 0%, rgba(6,8,13,.3) 30%, rgba(6,8,13,.92) 84%, var(--bg) 100%);
}
@media (max-width: 720px){
  .hero__collage { grid-template-columns:repeat(2,minmax(0,1fr)); grid-template-rows:repeat(4,minmax(0,1fr)); }
}
.hero__glow { display: none; }
.hero__inner { position:relative; z-index:2; width:100%; }
.hero h1 { max-width: 16ch; margin-top: 1.3rem; }
.hero h1 .em { color: var(--blue-2); }
.hero__sub {
  margin-top: 1.4rem; max-width: 46ch;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  color: var(--ink-2);
}
.hero__actions { margin-top: 2rem; display:flex; gap:.9rem; flex-wrap:wrap; }
.hero__trust {
  margin-top: 2.4rem; display:flex; gap:1.4rem 2rem; flex-wrap:wrap;
  align-items:center; color:var(--muted); font-size:.86rem; font-weight:600;
}
.hero__trust b { color:var(--ink); font-weight:700; }
.hero__trust .dot { width:5px;height:5px;border-radius:50%;background:var(--blue); box-shadow:0 0 8px var(--blue-glow); }
.hero__trust span{ display:inline-flex; align-items:center; gap:.6rem; }

.scroll-cue {
  position:absolute; z-index:2; left:var(--pad); bottom:1.6rem;
  display:flex; align-items:center; gap:.6rem;
  font-size:.74rem; letter-spacing:.22em; text-transform:uppercase; color:var(--muted);
}
.scroll-cue .line { width:1px; height:34px; background:linear-gradient(var(--blue),transparent); position:relative; overflow:hidden; }
.scroll-cue .line::after{ content:""; position:absolute; top:-40%; left:0; width:100%; height:40%; background:var(--blue-2); animation: cue 1.9s var(--e-out) infinite; }
@keyframes cue { to { top:100%; } }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden; padding-block: 1.15rem;
  display:flex; user-select:none;
  -webkit-mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
          mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}
.marquee__row { display:flex; gap:2.6rem; padding-right:2.6rem; flex:none; animation: scroll-x 32s linear infinite; }
.marquee:hover .marquee__row { animation-play-state: paused; }
.marquee__row span {
  font-family:var(--f-display); font-weight:800; text-transform:uppercase;
  font-size:clamp(1rem,1.8vw,1.35rem); letter-spacing:.02em; color:var(--ink);
  display:flex; align-items:center; gap:2.6rem; white-space:nowrap;
}
.marquee__row span::after { content:""; width:7px;height:7px;border-radius:50%;background:var(--blue); flex:none; box-shadow:0 0 10px var(--blue-glow); }
@keyframes scroll-x { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce){ .marquee__row{ animation:none; } }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sec-head { max-width: 60ch; margin-bottom: clamp(2.2rem,5vw,3.6rem); }
.sec-head h2 { margin-top: .9rem; }
.sec-head p { margin-top: 1rem; color:var(--ink-2); font-size:1.05rem; }
.sec-head.center { margin-inline:auto; text-align:center; }
.sec-head.center .kicker::before{ display:none; }

/* ============================================================
   SERVICES / PACKAGES
   ============================================================ */
.packages { display:grid; gap:1.2rem; grid-template-columns: repeat(3, 1fr); align-items:stretch; }
.pkg {
  position:relative; display:flex; flex-direction:column;
  padding: 2rem 1.9rem 2.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform .5s var(--e-out), border-color .5s, box-shadow .5s;
}
.pkg:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 30px 60px -30px #000; }
.pkg__name { font-family:var(--f-display); font-weight:800; text-transform:uppercase; font-size:1.15rem; letter-spacing:-.01em; color:var(--ink); }
.pkg__desc { margin-top:.5rem; font-size:.92rem; color:var(--muted); min-height:2.8em; }
.pkg__price { margin-top:1.4rem; display:flex; align-items:baseline; gap:.4rem; }
.pkg__price .from { font-size:.8rem; color:var(--muted); font-weight:600; }
.pkg__price .amt { font-family:var(--f-display); font-weight:900; font-size:2.6rem; color:var(--ink); letter-spacing:-.03em; line-height:1; }
.pkg__price .amt s { color:var(--muted); font-weight:600; font-size:1.2rem; margin-left:.3rem; }
.pkg__meta { margin-top:.4rem; font-size:.82rem; color:var(--blue-2); font-weight:600; }
.pkg__list { list-style:none; padding:0; margin:1.5rem 0 0; display:flex; flex-direction:column; gap:.7rem; }
.pkg__list li { position:relative; padding-left:1.7rem; font-size:.92rem; color:var(--ink-2); }
.pkg__list li::before {
  content:""; position:absolute; left:0; top:.35em;
  width:15px; height:9px; border-left:2px solid var(--blue); border-bottom:2px solid var(--blue);
  transform: rotate(-45deg); border-radius:1px;
}
.pkg .btn { margin-top:auto; padding-top:.95rem; width:100%; justify-content:center; }
.pkg__list { margin-bottom:1.8rem; }

/* signature (middle) tier — dominant, not identical */
.pkg--signature {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border-color: rgba(46,134,255,.5);
  box-shadow: 0 0 0 1px rgba(46,134,255,.25), 0 40px 80px -40px var(--blue-glow);
}
.pkg--signature:hover { transform: translateY(-6px); }
.pkg__tag {
  position:absolute; top:-.85rem; left:50%; transform:translateX(-50%);
  background: linear-gradient(180deg,var(--blue-2),var(--blue)); color:#fff;
  font-size:.7rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  padding:.35rem .9rem; border-radius:999px; white-space:nowrap;
  box-shadow:0 8px 20px -8px var(--blue-glow);
}
.pkg--signature .amt { color:#fff; }

.addons {
  margin-top: 1.6rem; padding: 1.3rem 1.6rem;
  border:1px solid var(--line); border-radius:16px; background:var(--bg-2);
  display:flex; flex-wrap:wrap; gap:.7rem 1.4rem; align-items:center;
}
.addons b { font-family:var(--f-display); text-transform:uppercase; font-size:.85rem; color:var(--ink); letter-spacing:.02em; }
.addons ul { list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; gap:.6rem; }
.addons li { font-size:.85rem; color:var(--ink-2); padding:.3rem .8rem; border:1px solid var(--line); border-radius:999px; background:rgba(255,255,255,.02); }
.pkg-note { margin-top:1rem; font-size:.82rem; color:var(--muted); }

/* ============================================================
   GALLERY — moving photo marquee
   ============================================================ */
.photo-rows { display:flex; flex-direction:column; gap:1rem; }
.photo-marquee {
  overflow:hidden;
  -webkit-mask-image: linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent);
          mask-image: linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent);
}
.photo-track {
  display:flex; gap:1rem; width:max-content; will-change:transform;
  animation: photoscroll 80s linear infinite;
}
.photo-track.reverse { animation-direction: reverse; }
.photo-rows:hover .photo-track { animation-play-state: paused; }
.photo-track img {
  height: clamp(210px, 20vw, 250px); width:auto; flex:none;
  /* portrait phone shots are ~0.48 ratio, so without a floor they render as
     unreadable slivers on mobile; cover crops the sides instead */
  min-width: clamp(150px, 34vw, 190px);
  border-radius:14px; object-fit:cover; border:1px solid var(--line);
  transition: transform .5s var(--e-out), border-color .4s;
}
.photo-track img:hover { transform: scale(1.04); border-color: var(--line-2); }
@keyframes photoscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .photo-track { animation: none; } }

/* ============================================================
   PROCESS  (a genuine ordered sequence — numbers earn place)
   ============================================================ */
#process { overflow:hidden; }
#process::before {
  content:""; position:absolute; top:6%; right:-6%; z-index:0;
  width:min(56%,620px); aspect-ratio:1099/261;
  background:url("logo-car.png") no-repeat center/contain;
  opacity:.06; pointer-events:none;
}
#process .wrap { position:relative; z-index:1; }
.process { display:grid; gap:1rem; grid-template-columns: repeat(4,1fr); counter-reset: step; }
.step {
  position:relative; padding:2rem 1.5rem 1.7rem;
  border:1px solid var(--line); border-radius:18px; background:var(--bg-2);
  transition: border-color .4s, transform .4s var(--e-out);
}
.step:hover { border-color: var(--line-2); transform: translateY(-4px); }
.step__num {
  font-family:var(--f-display); font-weight:900; font-size:2.4rem;
  color:transparent; -webkit-text-stroke:1.5px var(--blue); letter-spacing:-.04em;
  line-height:1;
}
.step h3 { margin-top:1rem; }
.step p { margin-top:.5rem; font-size:.92rem; color:var(--ink-2); }
.step::after {
  content:""; position:absolute; top:2.9rem; right:-.5rem; width:1rem; height:2px;
  background:var(--blue); opacity:.4;
}
.process .step:last-child::after { display:none; }

/* ============================================================
   ABOUT / OPERATOR
   ============================================================ */
.about { display:grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,5vw,4.5rem); align-items:center; }
.about__media { position:relative; }
.about__media img { width:100%; border-radius:20px; border:1px solid var(--line); aspect-ratio:4/5; object-fit:cover; }
.about__media .badge {
  position:absolute; bottom:-1.1rem; right:-1.1rem;
  background:var(--surface); border:1px solid var(--line-2); border-radius:16px;
  padding:1rem 1.3rem; box-shadow:0 24px 50px -24px #000;
}
.about__media .badge .n { font-family:var(--f-display); font-weight:900; font-size:1.9rem; color:var(--blue-2); line-height:1; }
.about__media .badge .l { font-size:.72rem; color:var(--muted); text-transform:uppercase; letter-spacing:.14em; margin-top:.3rem; }
.about__body h2 { margin-top:.9rem; }
.about__body p { margin-top:1.1rem; color:var(--ink-2); font-size:1.05rem; }
.about__facts { list-style:none; margin:1.6rem 0 0; padding:0; display:grid; gap:.8rem; }
.about__facts li { display:flex; gap:.8rem; align-items:flex-start; font-size:.96rem; color:var(--ink-2); }
.about__facts svg { width:20px; height:20px; color:var(--blue); flex:none; margin-top:.15rem; }

/* ============================================================
   FILM — real McLaren reveal clip
   ============================================================ */
.film { display:grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem,5vw,4.5rem); align-items:center; }
.film__media { position:relative; display:flex; justify-content:center; }
.film__media::before {
  content:""; position:absolute; inset:8% -6% 4%;
  background:radial-gradient(closest-side, rgba(46,134,255,.30), transparent 72%);
  filter:blur(26px); z-index:0; pointer-events:none;
}
.film__vid {
  position:relative; z-index:1;
  width:100%; max-width:330px; aspect-ratio:9/16; object-fit:cover;
  display:block; border-radius:22px; border:1px solid var(--line-2);
  box-shadow:0 40px 70px -30px #000;
  background:var(--bg-2);
}
.film__body h2 { margin-top:.9rem; }
.film__body p { margin-top:1.1rem; color:var(--ink-2); font-size:1.05rem; }
@media (max-width: 860px){
  .film { grid-template-columns:1fr; }
  .film__body { text-align:left; }
  /* heading first: the clip means nothing without its context above it */
  .film__body { order:1; }
  .film__media { order:2; margin-top:1.8rem; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { display:grid; gap:1.2rem; grid-template-columns: repeat(3,1fr); }
.review { padding:2rem 1.8rem; border:1px solid var(--line); border-radius:18px; background:var(--surface); display:flex; flex-direction:column; }
.review .stars { display:flex; gap:.2rem; color:var(--blue-2); margin-bottom:1rem; }
.review .stars svg{ width:18px;height:18px; }
.review p { font-size:1.02rem; color:var(--ink); line-height:1.6; }
.review .who { margin-top:1.4rem; padding-top:1.1rem; border-top:1px solid var(--line); font-size:.88rem; }
.review .who b { color:var(--ink); font-weight:700; }
.review .who span { color:var(--muted); display:block; }
/* trust cards (stand in for testimonials until real reviews land) */
.review__ico {
  width:44px; height:44px; border-radius:12px; margin-bottom:1.1rem;
  display:flex; align-items:center; justify-content:center;
  background:rgba(46,134,255,.12); border:1px solid var(--line-2); color:var(--blue-2);
}
.review__ico svg { width:22px; height:22px; }
.review h3 { font-family:var(--f-display); font-size:1.12rem; letter-spacing:.01em; }
.review h3 + p { margin-top:.6rem; color:var(--ink-2); font-size:.98rem; }

/* ============================================================
   COVERAGE
   ============================================================ */
.coverage { position:relative; overflow:hidden; border-radius:24px; border:1px solid var(--line); }
.coverage__bg { position:absolute; inset:0; }
.coverage__bg img { width:100%;height:100%;object-fit:cover; opacity:.32; }
.coverage__bg::after { content:""; position:absolute; inset:0; background:linear-gradient(110deg, var(--bg) 20%, rgba(6,8,13,.6) 70%, transparent), radial-gradient(80% 60% at 90% 20%, var(--blue-glow), transparent 60%); }
.coverage__inner { position:relative; padding: clamp(2.4rem,5vw,4rem); max-width:640px; }
.coverage__inner h2 { margin-top:.8rem; }
.coverage__inner p { margin-top:1rem; color:var(--ink-2); }
.coverage__towns { margin-top:1.6rem; display:flex; flex-wrap:wrap; gap:.6rem; }
.coverage__towns span { font-size:.86rem; color:var(--ink-2); padding:.4rem .9rem; border:1px solid var(--line-2); border-radius:999px; background:rgba(255,255,255,.03); }
.coverage__note { margin-top:1.4rem; font-size:.9rem; color:var(--muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { display:grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items:start; }
.contact__aside h2 { margin-top:.8rem; }
.contact__aside p { margin-top:1rem; color:var(--ink-2); }
.contact__quick { margin-top:1.8rem; display:flex; flex-direction:column; gap:.8rem; }
.contact__quick a {
  display:flex; align-items:center; gap:1rem; padding:1rem 1.2rem;
  border:1px solid var(--line); border-radius:14px; background:var(--surface);
  transition: border-color .3s, transform .3s var(--e-out), background .3s;
}
.contact__quick a:hover { border-color:var(--blue); transform:translateX(4px); background:var(--surface-2); }
.contact__quick .ico { width:44px;height:44px;flex:none;display:grid;place-items:center;border-radius:11px;background:rgba(46,134,255,.12);color:var(--blue-2); }
.contact__quick .ico svg{ width:22px;height:22px; }
.contact__quick a > span:last-child { display:flex; flex-direction:column; gap:.15rem; min-width:0; }
.contact__quick .t { display:block; font-size:.72rem;color:var(--muted);text-transform:uppercase;letter-spacing:.12em; }
.contact__quick .v { display:block; font-family:var(--f-display); font-weight:700; color:var(--ink); font-size:1.02rem; word-break:break-word; }
.contact__hours { margin-top:1.6rem; font-size:.9rem; color:var(--muted); }
.contact__hours b { color:var(--ink); }

/* form */
.form { padding: clamp(1.6rem,3vw,2.4rem); border:1px solid var(--line); border-radius:20px; background:var(--surface); }
.form__grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.field { display:flex; flex-direction:column; gap:.45rem; }
.field.full { grid-column:1 / -1; }
.field label { font-size:.8rem; font-weight:600; color:var(--ink-2); letter-spacing:.02em; }
.field input, .field select, .field textarea {
  font: inherit; font-size:.95rem; color:var(--ink);
  background:var(--bg-2); border:1px solid var(--line-2); border-radius:11px;
  padding:.85rem 1rem; width:100%;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { resize:vertical; min-height:110px; }
/* "as soon as possible" tickbox that pairs with the date picker */
.field .check {
  display:flex; align-items:center; gap:.55rem; cursor:pointer;
  font-size:.85rem; font-weight:500; color:var(--muted); letter-spacing:0;
  margin-top:.15rem; min-height:32px;
}
.field .check input { width:17px; height:17px; flex:none; padding:0; accent-color:var(--blue); cursor:pointer; }
.field .check:hover { color:var(--ink-2); }
.field input[type="date"]:disabled { opacity:.45; cursor:not-allowed; }
.field input::placeholder, .field textarea::placeholder { color:var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color:var(--blue); background:var(--surface);
  box-shadow: 0 0 0 4px rgba(46,134,255,.16);
}
.field select { appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%238b98ac' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right .9rem center; padding-right:2.6rem; }
.form .btn { margin-top:1.4rem; width:100%; justify-content:center; }
.form__small { margin-top:1rem; font-size:.8rem; color:var(--muted); text-align:center; }
.hp { position:absolute; left:-9999px; opacity:0; }
.form__status { margin-top:1rem; font-size:.92rem; font-weight:600; display:none; padding:.9rem 1rem; border-radius:11px; }
.form__status.ok { display:block; color:#7ee6a3; background:rgba(31,175,84,.12); border:1px solid rgba(31,175,84,.3); }
.form__status.err { display:block; color:#ff9e9e; background:rgba(255,80,80,.1); border:1px solid rgba(255,80,80,.3); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top:1px solid var(--line); background:var(--bg-2); }
.footer__top { display:flex; flex-wrap:wrap; justify-content:space-between; gap:2rem; padding-block: clamp(3rem,6vw,4.5rem); }
.footer__brand img { height:50px; }
.footer__brand p { margin-top:1rem; max-width:34ch; color:var(--muted); font-size:.92rem; }
.footer__cols { display:flex; gap: clamp(2rem,6vw,5rem); flex-wrap:wrap; }
.footer__cols h4 { font-family:var(--f-body); font-size:.78rem; text-transform:uppercase; letter-spacing:.16em; color:var(--muted); font-weight:700; }
.footer__cols ul { list-style:none; padding:0; margin:1rem 0 0; display:flex; flex-direction:column; gap:.7rem; }
.footer__cols a { font-size:.95rem; color:var(--ink-2); transition:color .25s; }
.footer__cols a:hover { color:var(--blue-2); }
.footer__bottom { display:flex; flex-wrap:wrap; justify-content:space-between; gap:1rem; padding-block:1.6rem; border-top:1px solid var(--line); font-size:.82rem; color:var(--muted); }
.footer__bottom a { color:var(--muted); }
.footer__bottom a:hover { color:var(--ink); }
.socials { display:flex; gap:.7rem; }
.socials a { width:38px;height:38px;display:grid;place-items:center;border:1px solid var(--line-2);border-radius:10px;color:var(--ink-2); transition:.25s; }
.socials a:hover { color:#fff;border-color:var(--blue);box-shadow:0 0 18px -6px var(--blue-glow); }
.socials svg{ width:18px;height:18px; }

/* ============================================================
   MARQUES STRIP
   ============================================================ */
.marques { text-align:center; }
.marques__label { font-size:.78rem; font-weight:700; letter-spacing:.24em; text-transform:uppercase; color:var(--muted); }
.marques__row { margin-top:1.4rem; display:flex; flex-wrap:wrap; justify-content:center; gap:1rem 2.4rem; }
.marques__row span {
  font-family:var(--f-display); font-weight:700; text-transform:uppercase; letter-spacing:.02em;
  font-size:clamp(1.05rem,2vw,1.55rem); color:var(--ink-2);
  transition:color .3s, transform .3s var(--e-out);
}
.marques__row span:hover { color:#fff; transform:translateY(-2px); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width:820px; margin-inline:auto; display:flex; flex-direction:column; gap:.8rem; }
.faq details {
  border:1px solid var(--line); border-radius:14px; background:var(--surface);
  overflow:hidden; transition:border-color .3s;
}
.faq details[open] { border-color:var(--line-2); }
.faq summary {
  list-style:none; cursor:pointer; padding:1.2rem 1.4rem;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  font-family:var(--f-display); font-weight:700; font-size:1.05rem; color:var(--ink);
}
.faq summary::-webkit-details-marker { display:none; }
.faq summary .plus { flex:none; width:22px; height:22px; position:relative; }
.faq summary .plus::before, .faq summary .plus::after {
  content:""; position:absolute; background:var(--blue-2); border-radius:2px;
  top:50%; left:50%; transform:translate(-50%,-50%); transition:transform .3s var(--e-out);
}
.faq summary .plus::before { width:14px; height:2px; }
.faq summary .plus::after { width:2px; height:14px; }
.faq details[open] summary .plus::after { transform:translate(-50%,-50%) rotate(90deg); opacity:0; }
.faq__a { padding:0 1.4rem 1.3rem; color:var(--ink-2); font-size:.98rem; line-height:1.65; }

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.ba {
  position: relative; aspect-ratio: 4/3; max-width: 900px; margin-inline: auto;
  border-radius: 20px; overflow: hidden; border: 1px solid var(--line-2);
  box-shadow: 0 40px 80px -40px #000; touch-action: pan-y; cursor: ew-resize;
  --pos: 50%;
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before-img { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-line {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px;
  background: #fff; transform: translateX(-1px); pointer-events: none;
  box-shadow: 0 0 12px rgba(0,0,0,.6);
}
.ba-grip {
  position: absolute; top: 50%; left: var(--pos); transform: translate(-50%,-50%);
  width: 46px; height: 46px; border-radius: 50%; pointer-events: none;
  background: rgba(6,8,13,.7); border: 2px solid #fff; backdrop-filter: blur(4px);
  display: grid; place-items: center; box-shadow: 0 6px 18px rgba(0,0,0,.5);
}
.ba-grip::before, .ba-grip::after {
  content: ""; width: 0; height: 0; border-block: 5px solid transparent; position: absolute;
}
.ba-grip::before { border-right: 7px solid #fff; left: 11px; }
.ba-grip::after  { border-left: 7px solid #fff; right: 11px; }
.ba-tag {
  position: absolute; top: 1rem; z-index: 2; pointer-events: none;
  font-family: var(--f-body); font-weight: 700; font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; padding: .35rem .8rem; border-radius: 999px;
  background: rgba(6,8,13,.7); backdrop-filter: blur(6px); color: #fff; border: 1px solid var(--line-2);
}
.ba-tag-before { left: 1rem; }
.ba-tag-after  { right: 1rem; color: var(--blue-2); }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.ba-range:focus-visible ~ .ba-grip { outline: 3px solid var(--blue-2); outline-offset: 3px; }

/* ============================================================
   MOBILE STICKY ACTION BAR
   ============================================================ */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-nav);
  display: none; gap: .6rem;
  padding: .7rem .8rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(6,8,13,.9);
  backdrop-filter: blur(14px) saturate(1.2);
  border-top: 1px solid var(--line);
}
.mobile-bar .btn { flex: 1; justify-content: center; padding-block: .85rem; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
/* default (and no-JS): fully visible. Hidden state only applies once JS confirms it can drive + reveal the animation. */
.js .reveal { opacity:0; transform: translateY(26px); transition: opacity .8s var(--e-out), transform .8s var(--e-out); }
.js .reveal.in { opacity:1; transform:none; }
/* hidden-tab / headless rescue: apply end-state with no (frozen) transition */
.js.reveal-static .reveal { opacity:1 !important; transform:none !important; transition:none !important; }
.js .reveal[data-d="1"]{ transition-delay:.08s; }
.js .reveal[data-d="2"]{ transition-delay:.16s; }
.js .reveal[data-d="3"]{ transition-delay:.24s; }
@media (prefers-reduced-motion: reduce){
  .js .reveal { opacity:1; transform:none; transition:none; }
  .hero__bg img { transform:none !important; }
  .scroll-cue .line::after { animation:none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px){
  .packages { grid-template-columns:1fr; max-width:460px; margin-inline:auto; }
  .pkg--signature { transform:none; }
  .pkg--signature:hover { transform:translateY(-6px); }
  .process { grid-template-columns: repeat(2,1fr); }
  .step::after { display:none; }
  .reviews { grid-template-columns:1fr; max-width:520px; margin-inline:auto; }
  .about { grid-template-columns:1fr; }
  .about__media { max-width:440px; }
  .contact { grid-template-columns:1fr; }
  .gallery { columns:2; }
}
@media (max-width: 720px){
  .mobile-bar { display:flex; }
  /* clear the sticky action bar (approx 78px tall plus safe area) */
  body { padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
  /* hero: top-align below the nav so content never sits under it,
     and keep the trust row clear of the sticky bar at the bottom */
  .hero { align-items:flex-start; padding-top: 92px; padding-bottom: calc(104px + env(safe-area-inset-bottom)); }
  .hero .display { font-size: clamp(2.4rem, 12vw, 3.4rem); }
  .hero__sub { margin-top: 1.1rem; font-size: 1rem; }
  .hero__actions { margin-top: 1.5rem; }
  .nav__links, .nav__cta .btn-ghost { display:none; }
  .nav__burger { display:inline-flex; }
  .nav { gap:.6rem; }
  .nav__logo img { height:40px; }
  .nav.scrolled .nav__logo img { height:34px; }
  .nav__logo .fallback { font-size:.82rem; max-width:44vw; white-space:normal; }
  .nav__cta .btn-primary { padding:.6rem 1.05rem; font-size:.85rem; }
  .form__grid { grid-template-columns:1fr; }
  .process { grid-template-columns:1fr; }
  .gallery { columns:1; }
  .hero__trust { gap:.8rem 1.2rem; }
  .about__media .badge { right:0; }
  /* long email/phone values must wrap cleanly inside the narrow cards */
  .contact__quick .v { font-size:.95rem; overflow-wrap:anywhere; line-height:1.35; }
  /* comfortable tap targets on footer link columns */
  .footer__cols a { display:inline-block; padding-block:.4rem; }
  .footer__cols ul { gap:.3rem; }
}

/* ============================================================
   MOBILE PLACEMENT FIXES
   ============================================================ */
/* nav labels must never break mid item */
.nav__links a { white-space: nowrap; }
/* there is not room for the full link row on tablets, so collapse to the
   burger before the labels start wrapping (was only happening at 720) */
@media (max-width: 900px){
  .nav__links { display:none; }
  .nav__burger { display:inline-flex; }
}
/* anchor links must not drop headings behind the fixed nav */
#services, #gallery, #film, #transformation, #process,
#about, #reviews, #faq, #contact, #marques { scroll-margin-top: 84px; }

/* burger needs a 44px tap target, not 39px */
.nav__burger {
  min-width:44px; min-height:44px;
  align-items:center; justify-content:center;
}

/* values in the contact cards should never overflow their box */
.contact__quick .v { overflow-wrap:anywhere; }
