/* ─────────────────────────────────────────────────────────────────
   V Detailing, mobile auto detailing in Kitchener. Phase 1 brand site.
   Hand-authored on the Site Factory base architecture (greenscape lineage).
   Light showroom theme, red accent pulled from the logo.
   Scroll-reveal layer (.sf-reveal) preserved verbatim from the standard.
   ───────────────────────────────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

:root {
  --red: #d6151c; /* 5.2:1 on white, primary actions + accents */
  --red-deep: #a90f15;
  --red-bright: #e8222a; /* decorative only, large marks on dark */
  --red-ondark: #ff5a60; /* small text on dark surfaces, 6:1 on ink */
  --ink: #14171b;
  --ink-2: #1b1f24;
  --ink-3: #0f1114;
  --silver: #f4f6f8;
  --silver-2: #e9edf1;
  --text: #1a1e23;
  --text-mid: #454d56;
  --text-soft: #667079;
  --white: #ffffff;
  --line: rgba(20, 23, 27, 0.1);
  --line-dark: rgba(255, 255, 255, 0.1);
  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 4px 18px rgba(20, 23, 27, 0.07);
  --shadow-md: 0 20px 55px rgba(20, 23, 27, 0.16);
  --maxw: 1180px;
  --font-heading: "Chakra Petch";
  --font-body: "Inter";
}

body {
  font-family: var(--font-body), "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading), "Segoe UI", sans-serif;
  font-weight: 600;
  line-height: 1.12;
}
input,
select,
textarea,
button {
  font-family: inherit;
}

/* ── SHARED LAYOUT ── */
.section {
  padding: 96px 60px;
}
.section-alt {
  background: var(--silver);
}
.section-dark {
  background: radial-gradient(
    120% 140% at 85% 0%,
    #23282e 0%,
    var(--ink) 55%,
    var(--ink-3) 100%
  );
  color: rgba(255, 255, 255, 0.85);
}
.section-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.left {
  margin-left: 0;
  text-align: left;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}
.section-dark .section-eyebrow {
  color: var(--red-ondark);
}
.section-dark .section-eyebrow::before {
  background: var(--red-ondark);
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--text);
  margin-bottom: 18px;
}
.section-dark .section-title {
  color: var(--white);
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 38px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 50px;
  border: 1.5px solid var(--text);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.15s;
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.on-dark .btn-secondary,
.cta-band .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.on-dark .btn-secondary:hover,
.cta-band .btn-secondary:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
}
.btn-service::after {
  content: "\203A";
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s;
}
.btn-service:hover::after {
  transform: translateX(4px);
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 60px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-mark {
  font-family: var(--font-heading), sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--ink);
  letter-spacing: 0.5px;
}
.logo-mark .logo-v {
  color: var(--red);
}
.logo-sub {
  font-size: 0.53rem;
  font-weight: 600;
  letter-spacing: 4.5px;
  color: var(--text-soft);
  margin-top: 3px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}
.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--red);
}
.nav-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--text-mid);
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-ig:hover {
  color: var(--red);
  background: var(--silver);
}
.nav-ig svg {
  width: 21px;
  height: 21px;
}
.btn-book-nav {
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 50px;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-book-nav:hover {
  background: var(--red-deep);
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--ink);
  cursor: pointer;
  width: 48px;
  height: 44px;
}

@media (max-width: 940px) {
  .nav {
    padding: 12px 20px;
    flex-wrap: wrap;
  }
  .nav-hamburger {
    display: block;
  }
  .nav-right {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 8px;
  }
  .nav.nav-open .nav-right {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    gap: 0;
  }
  .nav.nav-open .nav-links li {
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }
  .nav.nav-open .nav-links a {
    display: block;
    padding: 2px 0;
  }
  .nav-ig {
    margin: 10px 0 0;
    align-self: flex-start;
  }
  .btn-book-nav {
    text-align: center;
    margin-top: 12px;
    padding: 15px 22px;
  }
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 56px;
  padding: 84px 60px 76px;
  background:
    radial-gradient(
      90% 120% at 100% 0%,
      rgba(214, 21, 28, 0.06) 0%,
      rgba(214, 21, 28, 0) 45%
    ),
    linear-gradient(165deg, #f8fafc 0%, var(--silver-2) 100%);
}
.hero-inner {
  max-width: 600px;
  justify-self: end;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.73rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}
.hero-title {
  font-size: clamp(2.1rem, 6.5vw, 3.9rem);
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero-title .accent {
  color: var(--red);
}
.hero-tagline {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 34px;
  max-width: 33rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-trust span {
  font-size: 0.86rem;
  color: var(--text-mid);
}
.hero-media {
  position: relative;
}
.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.hero-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 20px 48px;
    gap: 30px;
    text-align: center;
  }
  .hero-inner {
    max-width: 100%;
    justify-self: stretch;
  }
  .hero-eyebrow,
  .hero-trust,
  .hero-actions {
    justify-content: center;
  }
  .hero-media {
    order: -1;
  }
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}
.trust-strip-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 17px 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 28px;
  font-size: 0.82rem;
  letter-spacing: 1px;
}
.trust-strip-inner .dot {
  color: var(--red-ondark);
}
@media (max-width: 940px) {
  .trust-strip-inner {
    padding: 15px 20px;
    gap: 8px 16px;
    font-size: 0.76rem;
  }
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    box-shadow 0.25s,
    transform 0.2s,
    border-color 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(214, 21, 28, 0.25);
}
.service-card.featured {
  background: linear-gradient(170deg, var(--ink-2) 0%, var(--ink-3) 100%);
  border-color: transparent;
  color: rgba(255, 255, 255, 0.85);
}
.service-card.featured h3 {
  color: var(--white);
}
.service-card.featured .service-desc {
  color: rgba(255, 255, 255, 0.8);
}
.service-card.featured .btn-service {
  color: var(--red-ondark);
}
.service-badge {
  position: absolute;
  top: -12px;
  left: 30px;
  background: var(--red);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 50px;
}
.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--silver);
  color: var(--red);
  margin-bottom: 20px;
}
.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--red-ondark);
}
.service-icon svg {
  width: 26px;
  height: 26px;
}
.service-card h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-mid);
}
.service-points {
  list-style: none;
  margin-top: 16px;
  flex: 1;
}
.service-points li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.9;
}
.service-points li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.service-card.featured .service-points li {
  color: rgba(255, 255, 255, 0.78);
}
.service-card.featured .service-points li::before {
  color: var(--red-ondark);
}
@media (max-width: 940px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 941px) and (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.addons {
  margin-top: 46px;
  text-align: center;
}
.addons-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.addon-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.addon-pill {
  font-size: 0.88rem;
  color: var(--text-mid);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: 50px;
}
.services-note {
  margin: 26px auto 0;
  max-width: 56ch;
  font-size: 0.95rem;
  color: var(--text-mid);
}

/* ── SCRUB BANDS (the signature: scroll wipes before into after) ── */
/* Default (no JS, old browsers): one static screen split 50/50. vd.js adds
   .armed for the tall sticky scrub. Reduced motion never arms. */
.vd-scrub {
  position: relative;
  --pos: 50%;
  background: var(--ink-3);
}
.vd-scrub-sticky {
  position: relative;
  height: 78vh;
  min-height: 520px;
  overflow: hidden;
}
.vd-scrub.armed {
  height: 240vh;
}
.vd-scrub.armed .vd-scrub-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  min-height: 0;
}
.vd-layer {
  position: absolute;
  inset: 0;
}
.vd-after {
  z-index: 1;
}
.vd-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.vd-ba-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.vd-img-ext {
  background-image: url("images/ba-exterior-v1.jpg");
}
.vd-img-int {
  background-image: url("images/ba-interior-v1.jpg");
}
/* Placeholder era: the before layer is the SAME photo with a grime filter so the
   wipe aligns pixel perfect. Real before photos later: point .vd-before .vd-ba-img
   at the new file and remove the vd-sim class from both bands. */
.vd-sim .vd-before .vd-ba-img {
  filter: saturate(0.55) contrast(0.95) brightness(0.8) sepia(0.22);
}
.vd-sim .vd-before .vd-ba-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(56, 44, 30, 0.16), rgba(52, 44, 34, 0.2));
}
.vd-chip {
  position: absolute;
  top: 22px;
  z-index: 2;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(10, 12, 14, 0.55);
  padding: 7px 14px;
  border-radius: 50px;
}
.vd-chip-before {
  left: 22px;
}
.vd-chip-after {
  right: 22px;
}
.vd-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  margin-left: -1px;
  background: rgba(255, 255, 255, 0.92);
  z-index: 4;
  pointer-events: none;
}
.vd-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading), sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 6px 18px rgba(10, 12, 14, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.9);
}
.vd-scrub-sticky::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(
    0deg,
    rgba(10, 12, 14, 0.72),
    rgba(10, 12, 14, 0)
  );
  z-index: 3;
  pointer-events: none;
}
.vd-overlay {
  position: absolute;
  left: clamp(24px, 6vw, 72px);
  right: clamp(24px, 6vw, 72px);
  bottom: clamp(28px, 9vh, 90px);
  z-index: 5;
  max-width: 560px;
  pointer-events: none;
}
.vd-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--red-ondark);
  margin-bottom: 12px;
}
.vd-band-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: 10px;
}
.vd-band-line {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 44ch;
  font-weight: 300;
}

.vd-connector {
  background: var(--ink);
  text-align: center;
  padding: 84px 24px;
}
.vd-connector p {
  font-family: var(--font-heading), sans-serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  color: rgba(255, 255, 255, 0.92);
}

@media (prefers-reduced-motion: reduce) {
  .vd-scrub.armed {
    height: auto;
  }
  .vd-scrub.armed .vd-scrub-sticky {
    position: relative;
    height: 78vh;
    min-height: 520px;
  }
}

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}
.process-step {
  position: relative;
  padding-top: 8px;
}
.step-num {
  font-family: var(--font-heading), sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.process-step h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text);
}
.process-step p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 23px;
  left: 58px;
  right: -13px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--silver-2) 0 8px,
    transparent 8px 14px
  );
}
@media (max-width: 940px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .process-step:not(:last-child)::after {
    display: none;
  }
}
@media (min-width: 941px) and (max-width: 1100px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-step::after {
    display: none;
  }
}

/* ── ABOUT / BRAND ── */
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-body {
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 30px;
  max-width: 46rem;
  font-weight: 300;
}
.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  padding: 14px 30px;
  border-radius: 50px;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.btn-ig:hover {
  background: var(--red);
  border-color: var(--red);
}
.btn-ig svg {
  width: 18px;
  height: 18px;
}
.about-logo {
  display: flex;
  justify-content: center;
}
.about-logo-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-dark);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
@media (max-width: 940px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }
  .about-logo-img {
    max-width: 320px;
  }
  .btn-ig {
    justify-content: center;
  }
}

/* ── CTA BAND ── */
.cta-band {
  background:
    radial-gradient(
      70% 120% at 0% 100%,
      rgba(214, 21, 28, 0.32) 0%,
      rgba(214, 21, 28, 0) 55%
    ),
    linear-gradient(160deg, var(--ink-2) 0%, var(--ink-3) 100%);
  text-align: center;
  color: var(--white);
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.02rem;
  margin-bottom: 34px;
  line-height: 1.7;
  font-weight: 300;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ── BOOKING ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.7rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-soft);
  gap: 7px;
  font-weight: 600;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  padding: 13px 15px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
  width: 100%;
}
.contact-form textarea {
  min-height: 0;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(214, 21, 28, 0.12);
}
.contact-form .btn-primary {
  align-self: flex-start;
  margin-top: 6px;
}
.contact-aside {
  padding-top: 4px;
}
.contact-aside h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
  color: var(--text);
}
.aside-lead {
  color: var(--text-mid);
  margin-bottom: 26px;
}
.contact-line {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-line .ci {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-line .ci svg {
  width: 20px;
  height: 20px;
}
.contact-line .ct-label {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 2px;
  font-weight: 600;
}
.contact-line .ct-val {
  font-size: 1rem;
  color: var(--text);
}
.contact-line a.ct-val {
  color: var(--red);
  font-weight: 500;
}
@media (max-width: 940px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 26px;
  }
}

/* ── FOOTER ── */
.footer {
  background: var(--ink-3);
  color: rgba(255, 255, 255, 0.7);
  padding: 66px 60px 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 44px;
  align-items: start;
  max-width: var(--maxw);
  margin: 0 auto 44px;
}
.footer-logo-img {
  width: 190px;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line-dark);
  margin-bottom: 18px;
}
.footer-col h5 {
  font-size: 0.74rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-ondark);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col p,
.footer-col a,
.footer-about {
  font-size: 0.88rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.68);
}
.footer-about {
  max-width: 32ch;
}
.footer-col a {
  display: block;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-copy {
  text-align: center;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.34);
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 26px;
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (max-width: 940px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer {
    padding: 46px 24px 26px;
  }
}
@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ── STICKY MOBILE BAR ── */
.mobile-cta {
  display: none;
}
@media (max-width: 940px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    box-shadow: 0 -6px 20px rgba(20, 23, 27, 0.18);
  }
  .mobile-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .mc-ig {
    background: var(--ink);
    color: var(--white);
  }
  .mc-ig svg {
    width: 17px;
    height: 17px;
  }
  .mc-book {
    background: var(--red);
    color: var(--white);
    flex: 1.4;
  }
  body {
    padding-bottom: 60px;
  }
}

/* ── BOOKING MODAL ── */
.vd-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.vd-modal.open {
  display: flex;
}
.vd-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 14, 0.62);
}
.vd-modal-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  max-width: 540px;
  width: 100%;
  padding: 36px;
  max-height: 86vh;
  overflow: auto;
  overscroll-behavior: contain;
}
.vd-modal-card h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 10px;
  padding-right: 40px;
}
.vd-modal-card > p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.vd-msg {
  font-family: inherit;
  white-space: pre-wrap;
  word-break: break-word;
  text-align: left;
  background: var(--silver);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 0.93rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.7;
}
.vd-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.vd-modal-actions .btn-primary,
.vd-modal-actions .btn-secondary {
  padding: 13px 26px;
  font-size: 0.78rem;
}
.vd-modal-x {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  font-size: 1.05rem;
  color: var(--text-soft);
  cursor: pointer;
  border-radius: 12px;
}
.vd-modal-x:hover {
  background: var(--silver);
  color: var(--text);
}
body.modal-open {
  overflow: hidden;
}

/* ── scroll-reveal layer (Site Factory standard) ── */
@media (prefers-reduced-motion: no-preference) {
  .sf-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .sf-reveal.sf-in {
    opacity: 1;
    transform: translateY(0);
  }
}

/* mobile section padding */
@media (max-width: 940px) {
  .section {
    padding: 64px 20px;
  }
}


/* ─────────────────────────────────────────────────────────────────
   REVIEW-WAVE FIXES (2026-07-29, run wf_3b78df88-05c)
   Appended overrides; each rule traces to a confirmed finding.
   ───────────────────────────────────────────────────────────────── */
:root { --nav-h: 73px; --line-strong: rgba(20, 23, 27, 0.5); }
@media (max-width: 940px) { :root { --nav-h: 69px; } }

/* chips clear the sticky nav while the band is pinned */
.vd-scrub.armed .vd-chip { top: calc(var(--nav-h) + 16px); }

/* chips carry a stronger scrim so white text never sinks into a bright photo */
.vd-chip { background: rgba(10, 12, 14, 0.72); }

/* overlay carries its own scrim: contrast never depends on the photo */
.vd-overlay {
  background: rgba(8, 10, 12, 0.7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 20px 24px;
  border-radius: 16px;
  max-width: 600px;
}
.vd-kicker { color: rgba(255, 255, 255, 0.95); display: inline-flex; align-items: center; gap: 10px; }
.vd-kicker::before { content: ""; width: 26px; height: 2px; background: var(--red-bright); display: inline-block; }
.vd-band-line { color: rgba(255, 255, 255, 0.95); }

/* landscape phones: overlay clears the fixed CTA bar */
@media (max-width: 940px) {
  .vd-overlay { bottom: max(clamp(28px, 9vh, 90px), calc(74px + env(safe-area-inset-bottom, 0px))); }
}

/* form controls get perceivable borders (WCAG 1.4.11) */
.contact-form input, .contact-form select, .contact-form textarea { border-color: var(--line-strong); }

/* tap targets */
.btn-service { min-height: 44px; margin-top: 12px; }
.nav.nav-open .nav-links li { padding: 0; }
.nav.nav-open .nav-links a { padding: 14px 0; }

/* footer copyright contrast */
.footer-copy { color: rgba(255, 255, 255, 0.55); }

/* modal height on iOS small viewport */
.vd-modal-card { max-height: 86vh; max-height: 86svh; }

/* nav blur on iOS 17 and earlier */
.nav { -webkit-backdrop-filter: blur(10px); }

/* headings retagged for outline (process h4 to h3, footer h5 to h2), same look */
.process-step h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--text); }
.footer-col h2 { font-family: var(--font-body), sans-serif; font-size: 0.74rem; letter-spacing: 2px; text-transform: uppercase; color: var(--red-ondark); margin-bottom: 16px; font-weight: 600; }

/* skip link for keyboard and screen reader users */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 400; background: var(--ink); color: var(--white); padding: 12px 20px; border-radius: 0 0 12px 0; font-size: 0.85rem; letter-spacing: 1px; }
.skip-link:focus { left: 0; }

/* no-JS note in the booking section */
.noscript-note { background: var(--white); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 22px; color: var(--text-mid); }

/* KTI designer signature (BUILD_STANDARD section 7): small, muted, discreet */
.footer-kti { text-align: center; font-size: 0.68rem; margin-top: 6px; }
.footer-kti a { color: rgba(255, 255, 255, 0.28); text-decoration: none; letter-spacing: 0.4px; }
.footer-kti a:hover, .footer-kti a:focus-visible { color: rgba(255, 255, 255, 0.5); text-decoration: underline; }
