/* Self-hosted Barlow (OFL) - no external font CDN on the critical path */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/barlow-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/barlow-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/barlow-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/barlow-condensed-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/barlow-condensed-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/barlow-condensed-700.woff2') format('woff2');
}

/* MV Detailing design system */
:root {
  --ink: #05080c;
  --surface: #0b1117;
  --panel: #101923;
  --panel-2: #0d151d;
  --line: rgba(255, 255, 255, 0.09);
  --text: #eef3f7;
  --muted: #93a5b4;
  --accent: #00bfff;
  --accent-deep: #0096cf;
  --good: #35c98a;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Barlow", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 12px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
h1, h2, h3 { font-family: var(--display); text-transform: uppercase; line-height: 1.05; }
h1 { font-size: clamp(2.15rem, 6.5vw, 5rem); font-weight: 700; letter-spacing: 0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 700; letter-spacing: 0.03em; margin-bottom: 14px; }
h3 { font-size: 1.35rem; font-weight: 600; letter-spacing: 0.05em; }
.lede { color: var(--muted); font-size: 1.08rem; max-width: 640px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.btn-solid { background: var(--accent); color: #001824; box-shadow: 0 8px 26px rgba(0, 191, 255, 0.35); }
.btn-solid:hover { background: #2fceff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid rgba(255, 255, 255, 0.35); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-whatsapp { background: #1fbf5f; color: #04220f; }
.btn-whatsapp:hover { background: #2bd571; transform: translateY(-2px); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}
.nav.scrolled {
  background: rgba(5, 8, 12, 0.92);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-links .btn { padding: 10px 22px; font-size: 0.88rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--text); margin: 6px 0; transition: 0.2s; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 340px);
    flex-direction: column;
    justify-content: center;
    background: rgba(5, 8, 12, 0.98);
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }
  .nav-links.open { transform: translateX(0); }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 90px;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center 30%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(5, 8, 12, 0.6) 0%, rgba(5, 8, 12, 0.3) 35%, rgba(5, 8, 12, 0.95) 100%),
    linear-gradient(100deg, rgba(5, 8, 12, 0.9) 0%, rgba(5, 8, 12, 0.62) 45%, rgba(5, 8, 12, 0.2) 78%);
}
.hero h1 { max-width: 820px; text-wrap: balance; }
.hero .lede { margin: 22px 0 34px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-marques {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  align-items: baseline;
  font-family: var(--display);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-marques strong { color: var(--text); font-weight: 600; }

/* ---------- sections ---------- */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }

.band { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- services ladder ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.svc {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.svc:hover { transform: translateY(-6px); border-color: rgba(0, 191, 255, 0.45); box-shadow: var(--shadow); }
.svc-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.svc:hover .svc-img img { transform: scale(1.05); }
.svc-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--accent);
  color: #001824;
  border-radius: 4px;
  padding: 4px 10px;
}
.svc-badge.gold { background: #e8b64c; color: #201400; }
.svc-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.svc-price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
  margin: 4px 0 12px;
}
.svc-price small { font-size: 0.85rem; font-weight: 400; color: var(--muted); letter-spacing: 0.05em; }
.svc ul { list-style: none; margin: 0 0 22px; }
.svc li { padding-left: 22px; position: relative; margin-bottom: 7px; color: #c9d4dd; font-size: 0.97rem; }
.svc li::before { content: "+"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.svc .btn { margin-top: auto; align-self: flex-start; padding: 11px 24px; font-size: 0.9rem; }
.svc-note { color: var(--muted); font-size: 0.92rem; margin-top: 26px; }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.step { background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.step-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.98rem; }

/* ---------- trust band ---------- */
.trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; text-align: center; }
.trust-item { padding: 10px; }
.trust-item .t-title { font-family: var(--display); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; font-size: 1.05rem; margin-bottom: 4px; }
.trust-item .t-sub { color: var(--muted); font-size: 0.92rem; }
.trust-item svg { width: 34px; height: 34px; stroke: var(--accent); fill: none; stroke-width: 1.6; margin: 0 auto 12px; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.gallery-grid figure { position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; aspect-ratio: 3 / 4; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 30px 16px 12px;
  background: linear-gradient(to top, rgba(5, 8, 12, 0.85), transparent);
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

/* lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(2, 4, 6, 0.96);
  justify-content: center;
  align-items: center;
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 10px; }
.lightbox .close {
  position: absolute;
  top: 22px; right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  background: none;
  border: 0;
  line-height: 1;
}

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-grid .photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-grid p { color: #c9d4dd; margin-bottom: 16px; }

/* ---------- coverage ---------- */
.coverage-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 640px;
}
.pc-form { display: flex; gap: 12px; margin: 18px 0 8px; flex-wrap: wrap; }
.pc-form input {
  flex: 1;
  min-width: 200px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--body);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 18px;
}
.pc-form input:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.pc-result { min-height: 28px; font-size: 1rem; margin-top: 10px; }
.pc-result.ok { color: var(--good); }
.pc-result.no { color: #f0a532; }
.towns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.town {
  font-family: var(--display);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9d4dd;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 7px 16px;
}

/* ---------- cta band ---------- */
.cta-band { position: relative; text-align: center; padding: 110px 0; isolation: isolate; overflow: hidden; }
.cta-band .bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center 65%; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(5, 8, 12, 0.78); }
.cta-band h2 { margin-bottom: 12px; }
.cta-band .lede { margin: 0 auto 30px; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-line { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; font-size: 1.05rem; }
.contact-line svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.8; flex-shrink: 0; }
.contact-line a { color: var(--text); }
.contact-line a:hover { color: var(--accent); }
.form-grid { display: grid; gap: 14px; }
.form-grid input, .form-grid textarea, .form-grid select {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--body);
  font-size: 1rem;
  padding: 14px 16px;
  width: 100%;
}
.form-grid input:focus, .form-grid textarea:focus, .form-grid select:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.form-grid textarea { min-height: 130px; resize: vertical; }

/* ---------- social ---------- */
.social-links { display: flex; gap: 14px; margin-top: 26px; }
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-links a:hover { background: var(--accent); transform: translateY(-3px); }
.social-links a:hover svg { fill: #001824; }
.social-links svg { width: 21px; height: 21px; fill: #fff; transition: fill 0.2s ease; }

/* ---------- footer ---------- */
footer { background: #04070a; border-top: 1px solid var(--line); padding: 54px 0 34px; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.footer-grid img { height: 40px; width: auto; margin-bottom: 14px; }
footer p { color: var(--muted); font-size: 0.9rem; max-width: 480px; }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line); color: #5c6d7b; font-size: 0.84rem; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }

/* ---------- floating whatsapp ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #1fbf5f;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ================= booking wizard ================= */
.book-page { min-height: 100svh; padding: 130px 0 80px; }
.book-shell { max-width: 760px; margin: 0 auto; }
.progress { display: flex; gap: 8px; margin: 26px 0 34px; }
.progress span { flex: 1; height: 4px; border-radius: 4px; background: var(--panel); }
.progress span.done { background: var(--accent); }
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: fadeUp 0.35s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.wizard-step h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.wizard-step .hint { color: var(--muted); margin-bottom: 24px; }
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-bottom: 8px; }
.choice {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 16px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.choice:hover { border-color: rgba(0, 191, 255, 0.5); }
.choice.selected { border-color: var(--accent); background: rgba(0, 191, 255, 0.08); }
.choice .c-title { font-family: var(--display); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 1rem; }
.choice .c-sub { color: var(--muted); font-size: 0.85rem; margin-top: 3px; }
.choice .c-price { color: var(--accent); font-family: var(--display); font-weight: 700; font-size: 1.15rem; margin-top: 6px; }
.pkg-grid { grid-template-columns: 1fr; }
.pkg-grid .choice { text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.addon-grid { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.wizard-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 34px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--display); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--body);
  font-size: 1.02rem;
  padding: 13px 15px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.summary-box { background: var(--panel-2); border: 1px solid var(--line); border-radius: 8px; padding: 20px 22px; margin: 22px 0; font-size: 0.98rem; }
.summary-box dt { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--display); margin-top: 10px; }
.summary-box dd { margin: 2px 0 0; }
.form-error { color: #ff8f6b; font-size: 0.92rem; min-height: 22px; margin-top: 10px; }


/* ---------- founder ---------- */
.founder-grid { grid-template-columns: 1fr 1fr; align-items: center; }
@media (max-width: 860px) { .founder-grid { grid-template-columns: 1fr; } }
.founder-points { list-style: none; margin: 22px 0 0; padding: 0; }
.founder-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: #c9d4dd;
}
.founder-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
}
.founder-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.founder-photos figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.founder-photos img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }
.founder-photos .fp-main { grid-column: 1 / -1; }
.founder-photos .fp-main img { aspect-ratio: 4 / 3; object-position: center 38%; }

/* portrait tiles: two-up on phones so 12 shots don't become an endless scroll */
@media (max-width: 620px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-grid figcaption { font-size: 0.72rem; padding: 22px 10px 9px; }
}

/* ---------- about-max page ---------- */
.about-hero { padding: 160px 0 80px; }
.about-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .about-hero-grid { grid-template-columns: 1fr; gap: 34px; } .about-hero { padding: 130px 0 60px; } }
.about-hero h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); margin-bottom: 18px; }
.about-hero-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-hero-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 38%; }
.container.narrow { max-width: 780px; }
.container.narrow p { color: #c9d4dd; margin-bottom: 16px; }
.container.narrow h2 { margin-bottom: 16px; }

/* ---------- our-work page ---------- */
.work-hero { padding: 150px 0 46px; }
.work-hero h1 { font-size: clamp(2.3rem, 6vw, 4.2rem); margin-bottom: 16px; }
@media (max-width: 860px) { .work-hero { padding: 125px 0 36px; } }

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.filter-btn {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.filter-btn span {
  font-size: 0.78rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.filter-btn:hover { border-color: rgba(0, 191, 255, 0.5); }
.filter-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.filter-btn.is-active { background: var(--accent); border-color: var(--accent); color: #001824; }
.filter-btn.is-active span { color: rgba(0, 24, 36, 0.65); }

.gallery-grid figcaption strong { display: block; font-weight: 600; }
.gallery-grid figcaption span {
  display: block;
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-top: 2px;
}
.work-empty { color: var(--muted); padding: 30px 0; }

/* "there is more" nudge on the add-ons tile: deliberately not a feature bullet */
.svc-more {
  color: var(--muted);
  font-size: 0.92rem;
  font-style: italic;
  margin: -8px 0 22px;
}

/* expectation-setting note inside the booking wizard */
.form-note {
  border-left: 3px solid var(--accent);
  background: var(--panel-2);
  border-radius: 0 8px 8px 0;
  padding: 13px 17px;
  color: #c9d4dd;
  font-size: 0.93rem;
  line-height: 1.5;
  margin: 2px 0 22px;
}

/* ---------- lightbox with paging ---------- */
.lightbox { flex-direction: column; padding: 0; }
.lb-stage {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 16px 8px;
  min-height: 0;
}
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 10px; object-fit: contain; }
.lb-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 16px calc(16px + env(safe-area-inset-bottom));
  width: 100%;
}
.lb-caption {
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #c9d4dd;
  text-align: center;
  max-width: 60vw;
}
.lb-count { font-family: var(--mono, monospace); font-size: 0.8rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(11, 17, 23, 0.72);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.lb-nav:hover { background: var(--accent); border-color: var(--accent); color: #001824; }
.lb-nav:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.lb-prev { left: 14px; }
.lb-next { right: 14px; }
.lightbox .close {
  position: absolute;
  top: 14px; right: 16px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(11, 17, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.lightbox .close:hover { background: var(--accent); color: #001824; }
@media (max-width: 620px) {
  .lb-stage { padding: 58px 8px 4px; }
  .lb-nav { width: 46px; height: 46px; font-size: 22px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-caption { font-size: 0.76rem; max-width: 70vw; }
}

/* load-more control on the work gallery */
.work-more { display: flex; justify-content: center; margin-top: 34px; }
.work-more .btn { padding: 14px 34px; }
.work-more .btn span { font-weight: 400; letter-spacing: 0.06em; opacity: 0.75; margin-left: 6px; }
