/* ============================================================================
   BUGATTI CLEAN - DESIGN SYSTEM
   ============================================================================
   1.  Tokens
   2.  Reset & base
   3.  Layout primitives
   4.  Typography
   5.  Buttons
   6.  Header & navigation
   7.  Hero
   8.  Booking estimator
   9.  Calendar
   10. Sections
   11. Forms
   12. Footer
   13. Motion & utilities
   ========================================================================= */

/* ---------------------------------------------------------------- 1. TOKENS */
/* Bugatti Cleaning Services. Light blue, dark blue, navy and white.
   Nothing on this page is black: every "dark" is a navy, so the whole
   thing reads fresh and clean rather than heavy. Blue still leads on the
   primary action and the current selection. */
:root {
  /* --- Brand blues --- */
  --sky:       #1BA0E8;   /* Bugatti Blue - accents, marks, focus */
  --blue:      #0A6FB8;   /* Deep Blue - the primary action */
  --blue-ink:  #08578F;   /* pressed / hover on the primary action */
  --navy:      #123A63;   /* headings and primary text */
  --navy-deep: #0C2A49;   /* the one dark field */

  /* --- Text, all navy-derived --- */
  --text:       #123A63;
  --text-2:     #3D6288;  /* body copy */
  --text-3:     #52708E;  /* labels and captions - 4.9:1 on the tinted ground */
  --text-4:     #7593B0;  /* disabled controls only */

  /* --- Grounds --- */
  --surface:  #FFFFFF;
  --ground:   #F2F8FD;   /* a white with the faintest blue in it */
  --ground-2: #E6F1FA;
  --wash:     #EAF6FE;   /* light blue fill */
  --bg: var(--ground);

  /* --- Rules. Light blue hairlines, not black bars. --- */
  --line:      #CFE3F3;
  --line-soft: #E2EEF8;
  --line-strong: #A9CDE8;
  --border: var(--line);

  /* --- Feedback --- */
  --star:      var(--sky);
  --success:   #157A52;
  --success-bg:#E6F4EE;
  --error:     #C0392B;
  --error-bg:  #FCEEEC;

  /* --- Type --- */
  --font: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, 'Helvetica Neue', Arial, sans-serif;
  --fs-xs:  0.75rem;
  --fs-sm:  0.875rem;
  --fs-base:1rem;
  --fs-md:  1rem;
  --fs-lg:  clamp(1.0625rem, 0.4vw + 0.95rem, 1.1875rem);
  --fs-xl:  clamp(1.25rem, 0.9vw + 1.05rem, 1.5rem);
  --fs-2xl: clamp(1.625rem, 1.8vw + 1.15rem, 2.25rem);
  --fs-3xl: clamp(1.75rem, 2.2vw + 1.1rem, 2.625rem);
  --fs-4xl: clamp(2.25rem, 3.2vw + 1.1rem, 3.375rem);

  --lh-tight: 1.04;
  --lh-snug: 1.2;
  --lh-normal: 1.6;

  --track-label: 0.16em;
  --track-btn: 0.08em;
  --track-display: -0.025em;

  --s-1: 0.25rem;  --s-2: 0.5rem;   --s-3: 0.75rem;  --s-4: 1rem;
  --s-5: 1.25rem;  --s-6: 1.5rem;   --s-8: 2rem;     --s-10: 2.5rem;
  --s-12: 3rem;    --s-16: 4rem;    --s-20: 5rem;    --s-24: 6rem;
  --s-32: 8rem;

  --section-y: clamp(3.5rem, 6.5vw, 6.5rem);
  --gutter: clamp(1.125rem, 4vw, 3rem);
  --maxw: 1240px;
  --maxw-narrow: 720px;

  /* --- Radius. A little softness reads cleaner than hard corners. --- */
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 8px;
  --r-xl: 10px;
  --r-pill: 999px;

  /* --- Elevation. Blue-tinted, never grey-black. --- */
  --shadow-sm: 0 1px 2px rgba(18, 58, 99, 0.06);
  --shadow-md: 0 6px 18px -6px rgba(18, 58, 99, 0.14), 0 1px 3px rgba(18, 58, 99, 0.05);
  --shadow-lg: 0 24px 48px -24px rgba(12, 42, 73, 0.28), 0 2px 8px rgba(18, 58, 99, 0.06);
  --shadow-focus: 0 0 0 3px rgba(27, 160, 232, 0.35);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 130ms;
  --t: 200ms;
  --t-slow: 380ms;

  --header-h: 76px;
}

@media (max-width: 767px) {
  :root { --header-h: 64px; }
}

/* ------------------------------------------------------- 2. RESET & BASE */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern' 1, 'liga' 1;
  overflow-x: clip;
}

h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 700; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}
:focus:not(:focus-visible) { outline: none; }

::selection { background: var(--line-strong); color: var(--navy); }

.skip-link {
  position: absolute; left: var(--s-4); top: -100px; z-index: 200;
  background: var(--navy); color: var(--surface);
  padding: var(--s-3) var(--s-5); border-radius: var(--r-md);
  font-weight: 700; transition: top var(--t) var(--ease);
}
.skip-link:focus { top: var(--s-4); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------- 3. LAYOUT PRIMITIVES */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.section--surface { background: var(--surface); }
/* The one full field on the page. Navy rather than the bright accent so
   white copy clears contrast, which #1BA0E8 does not at 2.5:1. */
.section--deep { background: var(--navy-deep); color: var(--surface); }
/* Full-bleed photo band. The scrim is navy so the type stays readable
   whatever the photograph underneath is doing. */
.band { position: relative; isolation: isolate; }
.band__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.band__overlay {
  background: linear-gradient(90deg, rgba(12,42,73,0.94) 0%, rgba(12,42,73,0.80) 46%, rgba(12,42,73,0.44) 100%);
  padding-block: clamp(3.5rem, 8vw, 7rem);
}
.band__inner { max-width: 60ch; color: var(--surface); }
.band__inner h2 { color: var(--surface); }
.band__inner .lede { color: #C6DDF0; margin-top: var(--s-4); }
.band__inner .eyebrow { color: var(--sky); }
@media (max-width: 700px) {
  .band__overlay { background: linear-gradient(180deg, rgba(12,42,73,0.92), rgba(12,42,73,0.86)); }
}

.grid { display: grid; gap: var(--s-6); }
.stack > * + * { margin-top: var(--s-4); }

/* --------------------------------------------------------- 4. TYPOGRAPHY */
/* Brand roles: Display 700 / -0.025em, Heading 600, Label 600 / 0.16em caps,
   Body 400 / 16px, Price 700 tabular. Archivo throughout, no serif. */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--s-5);
}
.section--deep .eyebrow { color: var(--line-strong); }

.h1, h1 {
  font-size: var(--fs-4xl);
  line-height: var(--lh-tight);
  font-weight: 700;
  letter-spacing: var(--track-display);
}
.h2, h2 {
  font-size: var(--fs-3xl);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: var(--track-display);
  text-wrap: balance;
}
.h3, h3 {
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
  font-weight: 600;
  letter-spacing: -0.015em;
}
.h4 {
  font-size: var(--fs-lg);
  line-height: var(--lh-snug);
  font-weight: 600;
  letter-spacing: -0.012em;
}

.lede {
  font-size: var(--fs-lg);
  line-height: 1.5;
  color: var(--text-2);
  max-width: 58ch;
}
.section--deep .lede { color: #CFE3F3; }

.muted { color: var(--text-2); }
.small { font-size: var(--fs-sm); }
.xs { font-size: var(--fs-xs); }
.num { font-variant-numeric: tabular-nums; }

.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head .lede { margin-top: var(--s-4); }

/* ------------------------------------------------------------ 5. BUTTONS */
/* Brand spec: labels flush left, uppercase, 13px / 600 / 0.1em.
   Primary is a solid blue field. Secondary is a 2px ink rule. */
.btn {
  --btn-bg: var(--blue);
  --btn-fg: var(--surface);
  --btn-bd: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  min-height: 50px;
  min-width: 200px;
  padding: 13px 18px;
  border: 1px solid var(--btn-bd);
  border-radius: var(--r-md);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--track-btn);
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
}
/* Deep Blue carries white type at 5.2:1. The bright Bugatti Blue stays for
   accents and marks, where it never has to hold small text. */
.btn:hover { --btn-bg: var(--blue-ink); --btn-bd: var(--blue-ink); box-shadow: var(--shadow-md); }
.btn:active { --btn-bg: var(--navy); --btn-bd: var(--navy); box-shadow: none; transform: translateY(1px); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.4; cursor: not-allowed; }

.btn--lg { min-height: 58px; padding: 17px 22px; font-size: 14px; }
.btn--sm { min-height: 42px; min-width: 0; padding: 10px 14px; font-size: 12px; gap: var(--s-4); }
.btn--block { display: flex; width: 100%; }
.btn--center { justify-content: center; gap: var(--s-3); }

.btn--secondary {
  --btn-bg: var(--surface); --btn-fg: var(--blue); --btn-bd: var(--line-strong);
}
.btn--secondary:hover { --btn-bg: var(--wash); --btn-fg: var(--navy); --btn-bd: var(--blue); box-shadow: none; }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--blue); --btn-bd: transparent;
  min-width: 0; padding: 11px 0;
  border-bottom: 2px solid var(--blue);
  justify-content: flex-start; gap: var(--s-3);
}
.btn--ghost:hover { --btn-bg: transparent; --btn-fg: var(--sky); border-bottom-color: var(--sky); box-shadow: none; }

.btn--onDark {
  --btn-bg: var(--surface); --btn-fg: var(--blue); --btn-bd: var(--surface);
}
.btn--onDark:hover { --btn-bg: var(--wash); --btn-bd: var(--wash); --btn-fg: var(--navy); }

.btn--outlineDark {
  --btn-bg: transparent; --btn-fg: var(--surface); --btn-bd: var(--surface);
}
.btn--outlineDark:hover { --btn-bg: var(--surface); --btn-fg: var(--navy); }

/* The brand's 200px minimum applies to a button standing on its own.
   In a row, two of them would push past a phone's viewport, so the
   minimum is dropped wherever buttons share a line. */
.booker__nav .btn,
.card__foot .btn,
.cta-final__actions .btn,
.confirm__actions .btn,
.mobile-menu__foot .btn,
.btn--block { min-width: 0; }
@media (max-width: 560px) { .btn { min-width: 0; } }

.btn .arrow { flex: none; transition: transform var(--t) var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: 13px; font-weight: 600; letter-spacing: var(--track-btn);
  text-transform: uppercase; color: var(--blue);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
  transition: color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.link-arrow:hover { color: var(--blue); border-bottom-color: var(--blue); }
.link-arrow svg { transition: transform var(--t) var(--ease-out); }
.link-arrow:hover svg { transform: translateX(3px); }

/* --------------------------------------------- 6. HEADER & NAVIGATION */
.header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  height: 100%;
  display: flex; align-items: center; gap: var(--s-6);
}

/* The lockup is drawn as vector so both lines stay exactly the same width
   at any size, which is the one rule the mark cannot break. No monogram,
   no initials: the brand system forbids a letter-B mark outright. */
.logo { display: inline-block; color: var(--navy); }
.logo svg { display: block; height: 34px; width: auto; }
.logo:hover { color: var(--blue); }
.footer .logo, .section--deep .logo { color: var(--surface); }
.footer .logo:hover { color: var(--line-strong); }
@media (max-width: 767px) { .logo svg { height: 28px; } }

.nav { display: none; margin-left: auto; }
.nav ul { display: flex; align-items: center; gap: var(--s-2); }
.nav a {
  display: block; padding: var(--s-3);
  font-size: 12px; font-weight: 600; letter-spacing: var(--track-btn);
  text-transform: uppercase; color: var(--text-2);
  border-bottom: 2px solid transparent;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.nav a:hover { color: var(--blue); border-bottom-color: var(--line-strong); }
.nav a.is-current { color: var(--blue); border-bottom-color: var(--blue); }

.header__actions { display: flex; align-items: center; gap: var(--s-3); margin-left: auto; }
.header__phone {
  display: none; align-items: center; gap: var(--s-2);
  font-size: var(--fs-sm); font-weight: 700; color: var(--navy);
  padding: var(--s-2) var(--s-3); border-radius: var(--r-sm);
  transition: color var(--t-fast) var(--ease);
}
.header__phone:hover { color: var(--blue); }
.header__cta { display: none; }

@media (min-width: 900px) {
  .nav { display: block; }
  .header__actions { margin-left: 0; }
  .header__phone { display: inline-flex; }
  .header__cta { display: inline-flex; }
}

/* Mobile menu */
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-right: -8px;
  border-radius: var(--r-sm); color: var(--navy);
}
.menu-toggle:hover { background: var(--surface); }
@media (min-width: 900px) { .menu-toggle { display: none; } }

.menu-toggle span {
  display: block; position: relative; width: 20px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: background var(--t-fast) var(--ease);
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform var(--t) var(--ease);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0; z-index: 99;
  background: var(--ground);
  padding: var(--s-6) var(--gutter) var(--s-12);
  overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility var(--t);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a.mobile-menu__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-4) 0; font-size: 1.0625rem; font-weight: 600;
  letter-spacing: var(--track-btn); text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
}
.mobile-menu__foot { margin-top: var(--s-8); display: grid; gap: var(--s-3); }
@media (min-width: 900px) { .mobile-menu { display: none; } }

/* Sticky mobile booking bar */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: var(--s-3);
  padding: var(--s-3) var(--gutter);
  padding-bottom: max(var(--s-3), env(safe-area-inset-bottom));
  background: var(--ground);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform var(--t-slow) var(--ease-out);
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta .btn { flex: 1; min-width: 0; justify-content: center; }
.sticky-cta__call {
  flex: none; width: 52px; min-width: 0; padding: 0;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  background: var(--surface); color: var(--navy);
}
.sticky-cta__call:hover { background: var(--blue); color: var(--surface); }
@media (min-width: 900px) { .sticky-cta { display: none; } }
/* Leave room so the sticky booking bar never covers the last of the footer. */
@media (max-width: 899px) {
  .footer { padding-bottom: calc(var(--s-8) + 76px); }
}

/* --------------------------------------------------------------- 7. HERO */
.hero {
  position: relative;
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 5rem);
}
/* Ambient light: a single soft wash, not a "cheap gradient" band. */
.hero::before { content: none; }

.hero__grid { position: relative; }

.hero__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  justify-items: stretch;
}
@media (min-width: 900px) {
  .hero { padding-bottom: clamp(3.5rem, 6vw, 6rem); }
}

.hero__copy { max-width: 46rem; }
.hero h1 { margin-bottom: var(--s-5); }
.hero h1 .thin { font-weight: 400; color: var(--text-2); display: block; letter-spacing: -0.03em; }
.hero .lede { max-width: 38rem; }

.hero__local {
  display: inline-flex; align-items: center; gap: var(--s-2);
  margin-bottom: var(--s-6);
  font-size: 11px; font-weight: 600; letter-spacing: var(--track-label);
  text-transform: uppercase; color: var(--text-3);
}
.hero__local .dot {
  width: 7px; height: 7px; background: var(--blue);
}

/* Sits under the estimator: the reasons to trust us come after the thing
   we are asking people to do, not before it. */
.hero__trust {
  /* Matched to the estimator's width so the rule above it lines up with
     the card's right edge instead of running past it. */
  width: 100%; max-width: 940px;
  padding-top: var(--s-8);
  border-top: 1px solid var(--line);
  display: grid; gap: var(--s-6);
}
@media (min-width: 560px) { .hero__trust { grid-template-columns: 1fr 1fr; gap: var(--s-6) var(--s-8); } }
@media (min-width: 1000px) { .hero__trust { grid-template-columns: repeat(4, 1fr); gap: var(--s-6); } }

/* ---------------------------------------------- 8. BOOKING ESTIMATOR */
.booker {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
}
.booker--page { max-width: 760px; margin-inline: auto; }

.booker__head {
  padding: var(--s-5) var(--s-6) 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.booker__title {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-4);
  margin-bottom: var(--s-4);
}
.booker__title h2, .booker__title .h4 { font-size: var(--fs-lg); font-weight: 700; letter-spacing: -0.02em; }
.booker__step-count { font-size: var(--fs-xs); font-weight: 600; color: var(--text-3); letter-spacing: var(--track-label); text-transform: uppercase; white-space: nowrap; }

/* Progress */
.progress { display: flex; gap: 6px; padding-bottom: var(--s-4); }
.progress__item { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.progress__bar {
  height: 3px; background: var(--line);
  overflow: hidden; position: relative;
}
.progress__bar::after {
  content: ''; position: absolute; inset: 0; width: 0;
  background: var(--blue);
  transition: width var(--t-slow) var(--ease-out);
}
.progress__item.is-active .progress__bar::after { background: var(--blue); }
.progress__item.is-done .progress__bar::after { background: var(--line-strong); }
.progress__item.is-done .progress__bar::after,
.progress__item.is-active .progress__bar::after { width: 100%; }
.progress__label {
  font-size: 10px; font-weight: 600; letter-spacing: var(--track-label); text-transform: uppercase;
  color: var(--text-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color var(--t) var(--ease);
}
.progress__item.is-active .progress__label { color: var(--navy); }
.progress__item.is-done .progress__label { color: var(--text-3); }
@media (max-width: 520px) { .progress__label { display: none; } }

.booker__body { padding: var(--s-6); flex: 1; }
.booker__panel { display: none; }
.booker__panel.is-active { display: block; animation: panelIn var(--t-slow) var(--ease-out); }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.booker__panel.is-active.is-back { animation-name: panelInBack; }
@keyframes panelInBack {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

.field { margin-bottom: var(--s-6); }
.field:last-child { margin-bottom: 0; }
.field__label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: var(--track-label); text-transform: uppercase;
  color: var(--navy); margin-bottom: var(--s-2);
}
.field__hint { display: block; font-size: var(--fs-xs); color: var(--text-3); margin-bottom: var(--s-3); }
.field__label + .field__hint { margin-top: -2px; }
fieldset { border: 0; margin: 0; padding: 0; }
legend { padding: 0; }

/* Choice - the booking pattern.
   One ruled stack, rows separated by 2px ink. Selection is a solid blue
   row, never a tick. The value sits tabular and right, always visible. */
.options, .addons, .windows {
  display: block;
  border: 1px solid var(--line);
  background: var(--surface);
}
.options--2, .options--3 { display: block; }

.opt { position: relative; display: block; }
.opt + .opt .opt__box { border-top: 1px solid var(--line); }
.opt input {
  position: absolute; inset: 0; opacity: 0;
  width: 100%; height: 100%; margin: 0; cursor: pointer;
}
.opt__box {
  display: flex; align-items: center; gap: var(--s-4);
  min-height: 54px; padding: 13px 16px;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.opt__box:hover { background: var(--wash); }
.opt input:focus-visible + .opt__box { outline: 3px solid var(--blue); outline-offset: -3px; }

/* The selected row keeps the exact Bugatti Blue field the brand specifies.
   The label is ink rather than white: white on #1BA0E8 measures 2.9:1 and
   fails AA at this text size, while ink clears it at 5.7:1. This is the
   same contrast trap the brand system flags for blue body copy. */
.opt input:checked + .opt__box {
  background: var(--blue);
  color: var(--surface);
}
.opt input:checked + .opt__box .opt__desc,
.opt input:checked + .opt__box .opt__meta,
.opt input:checked + .opt__box .addon__price { color: var(--surface); }
.opt input:checked + .opt__box .opt__title { font-weight: 600; }

.opt__main { flex: 1; min-width: 0; }
.opt__title { font-size: var(--fs-sm); font-weight: 600; line-height: 1.3; }
.opt__desc { font-size: var(--fs-xs); color: var(--text-2); line-height: 1.4; margin-top: 3px; }
.opt__meta {
  flex: none; font-size: var(--fs-sm); font-weight: 700;
  font-variant-numeric: tabular-nums; color: var(--text-2); text-align: right;
  white-space: nowrap;
}
.opt__check { display: none; }

.opt__tag {
  position: absolute; top: 50%; right: 16px; transform: translateY(-50%);
  z-index: 2; pointer-events: none;
  font-size: 10px; font-weight: 600; letter-spacing: var(--track-label);
  text-transform: uppercase; color: var(--text-3);
}
.opt input:checked ~ .opt__tag { color: var(--surface); }
.opt--row .opt__box { min-height: 50px; }
/* The frequency rows carry their own note, so the tag would collide. */
.options .opt__tag { display: none; }

.addon__price {
  flex: none; font-size: var(--fs-sm); font-weight: 700;
  color: var(--navy); font-variant-numeric: tabular-nums;
}

.windows .opt__box { justify-content: space-between; }

/* Stepper (bedrooms / bathrooms) */
.stepper {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-3); padding: var(--s-2);
  border: 1px solid var(--line);
  background: var(--surface);
}
.stepper__btn {
  flex: none; width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  background: var(--surface); color: var(--navy);
  transition: all var(--t-fast) var(--ease);
}
.stepper__btn:hover:not([disabled]) { background: var(--blue); color: var(--surface); }
.stepper__btn[disabled] { opacity: 0.3; cursor: not-allowed; }
.stepper__value {
  flex: 1; text-align: center; font-size: var(--fs-lg); font-weight: 700;
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.stepper__value small { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); margin-top: -2px; }

.addons + .notice, .field > .notice { margin-top: var(--s-3); }
.two-col { display: grid; gap: var(--s-4); }
@media (min-width: 480px) { .two-col { grid-template-columns: 1fr 1fr; } }

/* Add-on grid */
.addons { display: grid; gap: var(--s-2); grid-template-columns: 1fr; }
@media (min-width: 480px) { .addons { grid-template-columns: 1fr 1fr; } }
.addons .opt__box { min-height: 52px; align-items: center; padding: var(--s-3) var(--s-4); }
.addons .opt__title { font-size: var(--fs-sm); }
.addon__price {
  flex: none; font-size: var(--fs-sm); font-weight: 700;
  color: var(--blue); font-variant-numeric: tabular-nums;
}

/* Live price summary */
/* The price and the Continue button must never scroll out of reach.
   On phones the footer pins to the viewport; on desktop the card itself
   is capped and its body scrolls, so head and foot stay put. */
.booker__foot {
  border-top: 1px solid var(--line);
  background: var(--ground);
  padding: var(--s-4) var(--s-6);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  position: sticky; bottom: 0; z-index: 2;
}
/* Below the copy rather than beside it, so it reads as the next step
   rather than a sidebar. The footer still pins to the viewport, which is
   what keeps the price and Continue in reach on a long step. */
.hero .booker { width: 100%; max-width: 940px; margin-inline: 0 auto; }
.price-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4); margin-bottom: var(--s-3);
}
.price-row__label { font-size: 10px; font-weight: 600; letter-spacing: var(--track-label); text-transform: uppercase; color: var(--text-3); }
.price-row__sum { font-size: var(--fs-xs); color: var(--text-2); margin-top: 2px; line-height: 1.35; }
.price-row__amount {
  font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 700;
  letter-spacing: -0.03em; color: var(--navy);
  font-variant-numeric: tabular-nums; line-height: 1; white-space: nowrap;
}
.price-row__amount .per { font-size: var(--fs-xs); font-weight: 600; color: var(--text-3); letter-spacing: 0; margin-left: 3px; }
.price-row__amount.is-updating { animation: pricePulse var(--t-slow) var(--ease-out); }
@keyframes pricePulse {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.04); color: var(--blue); }
  100% { transform: scale(1); }
}
.price-strike { font-size: var(--fs-sm); color: var(--text-3); text-decoration: line-through; margin-right: var(--s-2); font-weight: 600; }

.booker__nav { display: flex; gap: var(--s-3); }
.booker__nav .btn--secondary { flex: none; padding-inline: var(--s-5); }
.booker__nav .btn:not(.btn--secondary) { flex: 1; }

.booker__note {
  font-size: var(--fs-xs); color: var(--text-3); text-align: center;
  margin-top: var(--s-3); line-height: 1.4;
}

/* ----------------------------------------------------------- 9. CALENDAR */
.cal { border: 1px solid var(--line); background: var(--surface); }
.cal__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-3) var(--s-3) var(--s-3) var(--s-4);
  border-bottom: 1px solid var(--line);
}
.cal__month { font-size: var(--fs-base); font-weight: 700; letter-spacing: -0.02em; }
.cal__nav { display: flex; gap: var(--s-1); }
.cal__nav button {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--navy);
  transition: all var(--t-fast) var(--ease);
}
.cal__nav button:hover:not([disabled]) { background: var(--blue); color: var(--surface); }
.cal__nav button[disabled] { opacity: 0.3; cursor: not-allowed; }

.cal__dow {
  display: grid; grid-template-columns: repeat(7, 1fr);
  padding: var(--s-2) var(--s-2) 0;
}
.cal__dow span {
  text-align: center; font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3);
  padding-bottom: var(--s-1);
}
.cal__grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px; padding: var(--s-2);
}
.cal__day {
  aspect-ratio: 1 / 1; min-height: 40px;
  display: grid; place-items: center;
  border: 2px solid transparent;
  font-size: var(--fs-sm); font-weight: 600; font-variant-numeric: tabular-nums;
  color: var(--navy);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
}
.cal__day:hover:not(:disabled) { background: var(--wash); border-color: var(--navy); }
.cal__day:disabled { color: var(--text-4); cursor: not-allowed; text-decoration: line-through; text-decoration-thickness: 1px; }
.cal__day.is-empty { visibility: hidden; }
.cal__day.is-today { border-color: var(--navy); }
.cal__day.is-selected {
  background: var(--blue); color: var(--surface); border-color: var(--blue);
}
.cal__day.is-selected:hover { background: var(--blue); color: var(--surface); border-color: var(--blue); }

.cal__legend {
  display: flex; flex-wrap: wrap; gap: var(--s-4);
  padding: 0 var(--s-4) var(--s-3);
  font-size: var(--fs-xs); color: var(--text-3);
}
.cal__legend span { display: inline-flex; align-items: center; gap: 6px; }
.cal__legend i { width: 10px; height: 10px; display: block; }

.windows { display: grid; gap: var(--s-2); grid-template-columns: 1fr 1fr; }
.windows .opt__box { justify-content: center; text-align: center; min-height: 54px; align-items: center; }
.windows .opt__title { font-size: var(--fs-sm); }

.notice {
  display: flex; gap: var(--s-3); align-items: flex-start;
  padding: var(--s-3) var(--s-4);
  background: var(--wash); border: 1px solid var(--line);
  font-size: var(--fs-xs); line-height: 1.5; color: var(--navy);
}
.notice svg { flex: none; margin-top: 1px; color: var(--navy); }
.notice--warn { background: var(--error-bg); border-color: var(--navy); color: var(--navy); }
.notice--warn svg { color: var(--error); }

/* ---------------------------------------------------------- 10. SECTIONS */
/* Trust strip */
.trust-strip {
  display: grid; gap: var(--s-4);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 780px) { .trust-strip { grid-template-columns: repeat(4, 1fr); gap: var(--s-6); } }
.trust-item { display: flex; gap: var(--s-3); align-items: flex-start; }
.trust-item__icon {
  flex: none; width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: var(--ground-2); color: var(--blue);
  display: grid; place-items: center;
}
.trust-item__title { font-size: var(--fs-base); font-weight: 600; line-height: 1.3; color: var(--navy); }

/* Service cards */
.services {
  display: grid; gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
@media (min-width: 700px)  { .services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .services { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--surface);
  display: flex; flex-direction: column;
  transition: background var(--t) var(--ease);
}
.card:hover { background: var(--wash); }

.card__media {
  aspect-ratio: 4 / 3; background: var(--ground-2);
  position: relative; overflow: hidden; border-bottom: 1px solid var(--line);
}
.card__media img, .card__media svg {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: var(--fs-lg); font-weight: 600; letter-spacing: -0.015em; }
.card__desc { font-size: var(--fs-sm); color: var(--text-2); line-height: 1.5; margin-top: var(--s-2); }
.card__list { margin-top: var(--s-4); margin-bottom: var(--s-5); display: grid; gap: 7px; }
.card__list li {
  display: flex; gap: var(--s-2); align-items: flex-start;
  font-size: var(--fs-xs); color: var(--text-2); line-height: 1.45;
}
.card__list svg { flex: none; margin-top: 3px; color: var(--navy); }
.card__foot {
  margin-top: auto; padding-top: var(--s-5);
  border-top: 1px solid var(--line);
  /* Bottom-aligned so the buttons sit on one line across a row even when
     the text beside them wraps to a different number of lines. */
  display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s-4);
  min-height: 0;
}
.card__foot .btn { flex: none; }
.card__foot .card__price {
  flex: 1 1 auto; min-width: 0;
}
.card__price {
  font-size: 10px; color: var(--text-3); line-height: 1.3;
  font-weight: 600; letter-spacing: var(--track-label); text-transform: uppercase;
}
.card__price b {
  display: block; font-size: var(--fs-lg); font-weight: 700; color: var(--navy);
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
  margin-top: 3px; text-transform: none;
}

/* Specialty (yacht / commercial) on dark */
.specialty {
  display: grid; gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
@media (min-width: 860px) { .specialty { grid-template-columns: 1fr 1fr; } }
.spec-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--surface);
  display: flex; flex-direction: column;
}
.spec-card h3 { color: var(--navy); }
.spec-card p { color: var(--text-2); font-size: var(--fs-sm); line-height: 1.55; margin-top: var(--s-3); }
.spec-card .card__foot { margin-top: auto; }

/* Why grid */
.why { display: grid; gap: var(--s-8) var(--s-6); }
@media (min-width: 640px)  { .why { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .why { grid-template-columns: repeat(3, 1fr); } }
.why__item { border-top: 1px solid var(--line); padding-top: var(--s-4); }
.why__item h3 { font-size: var(--fs-base); font-weight: 600; letter-spacing: -0.01em; }
.why__item p { font-size: var(--fs-sm); color: var(--text-2); line-height: 1.55; margin-top: var(--s-2); }

/* How it works */
.steps { display: grid; gap: var(--s-8); counter-reset: step; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-10); } }
.step { position: relative; }
.step__num {
  font-size: 11px; font-weight: 600; letter-spacing: var(--track-label);
  color: var(--text-3); margin-bottom: var(--s-3); display: block;
}
.step h3 { font-size: var(--fs-xl); letter-spacing: -0.025em; }
.step p { font-size: var(--fs-base); color: var(--text-2); line-height: 1.55; margin-top: var(--s-2); max-width: 32ch; }
@media (min-width: 780px) {
  .step::after {
    content: ''; position: absolute; top: 9px; left: calc(100% - var(--s-2));
    width: var(--s-8); height: 2px; background: var(--navy);
  }
  .step:last-child::after { display: none; }
}

/* FAQ accordion */
.faq { max-width: 820px; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between;
  gap: var(--s-5); padding: var(--s-5) 0; text-align: left;
  font-size: var(--fs-md); font-weight: 600; letter-spacing: -0.01em; line-height: 1.4;
  color: var(--navy); transition: color var(--t-fast) var(--ease);
}
.faq__q:hover { color: var(--blue); }
.faq__icon {
  flex: none; width: 22px; height: 22px; margin-top: 2px; position: relative;
  border: 1px solid var(--line);
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease), transform var(--t) var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; top: 50%; left: 50%; background: var(--text-2);
  transform: translate(-50%, -50%); border-radius: 1px;
  transition: transform var(--t) var(--ease), background var(--t) var(--ease);
}
.faq__icon::before { width: 9px; height: 1.5px; }
.faq__icon::after  { width: 1.5px; height: 9px; }
.faq__q[aria-expanded="true"] .faq__icon { background: var(--blue); border-color: var(--blue); transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__icon::before,
.faq__q[aria-expanded="true"] .faq__icon::after { background: var(--surface); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }

/* Height is set in JS from the measured content. The `0fr -> 1fr` grid
   trick is prettier but silently collapses to 0 in some engines, and an
   FAQ that will not open is worse than one that animates plainly. */
.faq__a {
  height: 0;
  overflow: hidden;
  transition: height var(--t-slow) var(--ease-out);
}
.faq__a p {
  font-size: var(--fs-base); color: var(--text-2); line-height: 1.65;
  max-width: 66ch; padding-bottom: var(--s-5);
}

/* Areas */
.areas { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.area-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px;
  border: 1px solid var(--line); background: var(--surface);
  font-size: 13px; font-weight: 600; color: var(--navy);
  transition: all var(--t-fast) var(--ease);
}
.area-chip:hover { background: var(--blue); color: var(--surface); }
.area-chip:hover i, .area-chip:hover .area-chip__fee { color: var(--surface); }
.area-chip i { width: 6px; height: 6px; background: var(--text-4); display: block; }
.area-chip--core i { background: var(--blue); }
.area-chip__fee { font-size: var(--fs-xs); color: var(--text-3); font-weight: 600; font-variant-numeric: tabular-nums; }

/* Team: copy beside two portrait photographs */
.team { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .team { grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); } }
.team__copy .lede { margin-top: var(--s-4); }
.team__actions { margin-top: var(--s-8); }
/* Four small shots rather than two large ones, so the team reads as a
   team without the section taking over the page. */
.team__photos { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-2); }
@media (min-width: 560px) and (max-width: 899px) {
  .team__photos { grid-template-columns: repeat(4, 1fr); }
}
.team__photos img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: var(--r-md); background: var(--ground-2);
}
@media (min-width: 900px) {
  .team__photos { gap: var(--s-3); }
  .team__photos img:nth-child(odd) { margin-top: var(--s-6); }
  .team__photos img:nth-child(even) { margin-bottom: var(--s-6); }
}

/* Service areas: skyline band above the chips */
.areas-band { position: relative; height: clamp(180px, 26vw, 320px); overflow: hidden; }
.areas-band .band__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.areas-body { padding-top: var(--section-y); padding-bottom: var(--section-y); }

/* Work gallery */
.work { display: grid; gap: var(--s-3); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 820px) { .work { grid-template-columns: repeat(4, 1fr); gap: var(--s-4); } }
.work__item {
  margin: 0; overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--ground-2);
  aspect-ratio: 3 / 4;
}
.work__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
.work__item:hover img { transform: scale(1.04); }

/* Specialty cards now lead with a photograph */
.spec-card { padding: 0; overflow: hidden; border-radius: var(--r-lg); }
.spec-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--ground-2); }
.spec-card__media img { width: 100%; height: 100%; object-fit: cover; }
.spec-card__body {
  padding: clamp(1.375rem, 2.5vw, 2rem);
  display: flex; flex-direction: column; flex: 1;
}

/* Testimonials (hidden until real reviews exist) */
.quotes { display: grid; gap: var(--s-5); }
@media (min-width: 800px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--s-6);
  display: flex; flex-direction: column;
}
.quote__stars { display: flex; gap: 2px; color: var(--star); margin-bottom: var(--s-3); }
.quote p { font-size: var(--fs-base); line-height: 1.6; color: var(--navy); flex: 1; }
.quote footer { margin-top: var(--s-4); font-size: var(--fs-xs); color: var(--text-3); font-weight: 600; }
.quote footer b { color: var(--navy); font-weight: 700; display: block; font-size: var(--fs-sm); }

/* Final CTA */
.cta-final { text-align: center; }
.cta-final__logo {
  display: inline-block; margin-bottom: var(--s-8);
  color: var(--surface);
}
.cta-final__logo svg { height: 56px; }
@media (max-width: 600px) { .cta-final__logo svg { height: 42px; } }
.cta-final h2 { max-width: 20ch; margin-inline: auto; color: var(--surface); }
.cta-final .lede { margin: var(--s-5) auto 0; max-width: 48ch; }
.cta-final__actions {
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  justify-content: center; margin-top: var(--s-8);
}

/* ------------------------------------------------------------- 11. FORMS */
.input, .select, .textarea {
  width: 100%; min-height: 52px;
  padding: var(--s-3) var(--s-4);
  border: 1px solid var(--line);
  background: var(--surface); color: var(--navy);
  font-size: var(--fs-base);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  -webkit-appearance: none; appearance: none;
}
.input::placeholder, .textarea::placeholder { color: var(--text-4); }
.input:hover, .select:hover, .textarea:hover { border-color: var(--blue); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: var(--shadow-focus);
}
.textarea { min-height: 96px; resize: vertical; line-height: 1.5; }

.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%234E5F6E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--s-4) center;
  padding-right: var(--s-10);
}

.input[aria-invalid="true"], .select[aria-invalid="true"], .textarea[aria-invalid="true"] {
  border-color: var(--error); background: var(--error-bg);
}
.field__error {
  display: none; align-items: center; gap: 6px;
  font-size: var(--fs-xs); font-weight: 600; color: var(--error); margin-top: var(--s-2);
}
.field.has-error .field__error { display: flex; }

.form-grid { display: grid; gap: var(--s-4); }
@media (min-width: 520px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
.form-grid .field { margin-bottom: 0; }
.span-2 { grid-column: 1 / -1; }

/* Review / confirm list */
.review-list { border: 1px solid var(--line); }
.review-list__row {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-4);
  padding: var(--s-3) var(--s-4); font-size: var(--fs-sm);
  border-bottom: 1px solid var(--line);
}
.review-list__row:last-child { border-bottom: 0; }
.review-list__row dt { color: var(--text-2); }
.review-list__row dd { font-weight: 600; text-align: right; font-variant-numeric: tabular-nums; }
.review-list__row.is-discount dd { color: var(--success); }
.review-list__row.is-total {
  background: var(--ground); font-size: var(--fs-base); padding-block: var(--s-4);
}
.review-list__row.is-total dt { font-weight: 600; color: var(--navy); }
.review-list__row.is-total dd { font-size: var(--fs-xl); font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }

.review-edit {
  font-size: var(--fs-xs); font-weight: 700; color: var(--blue);
  border-bottom: 1px solid transparent; margin-left: var(--s-2);
}
.review-edit:hover { border-bottom-color: currentColor; }

.summary-card {
  border: 1px solid var(--line);
  padding: var(--s-4); background: var(--ground); margin-bottom: var(--s-5);
}
.summary-card__label { font-size: 10px; font-weight: 600; letter-spacing: var(--track-label); text-transform: uppercase; color: var(--text-3); }
.summary-card__value { font-size: var(--fs-base); font-weight: 600; margin-top: 3px; letter-spacing: -0.01em; }

/* Confirm step: the service, described rather than itemised */
.confirm__service { padding-bottom: var(--s-4); border-bottom: 1px solid var(--line); }
.confirm__service-name {
  font-size: var(--fs-lg); font-weight: 600; color: var(--navy); letter-spacing: -0.015em;
}
.confirm__service-meta {
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: var(--track-label);
  text-transform: uppercase; color: var(--text-3); margin-top: 6px;
}
.confirm__service-desc {
  font-size: var(--fs-sm); color: var(--text-2); line-height: 1.55; margin-top: var(--s-3);
}
.confirm__includes { margin-top: var(--s-4); margin-bottom: 0; }
.confirm__extras { margin-top: var(--s-4); padding-top: var(--s-4); border-top: 1px solid var(--line); }

/* Confirmation screen */
.confirm { text-align: center; padding: var(--s-6) 0 var(--s-2); }
.confirm__mark {
  width: 64px; height: 64px; margin: 0 auto var(--s-5);
  border: 1px solid var(--line); background: var(--surface);
  display: grid; place-items: center; color: var(--navy);
}
.confirm__mark svg path {
  stroke-dasharray: 40; stroke-dashoffset: 40;
  animation: drawCheck 520ms var(--ease-out) 140ms forwards;
}
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.confirm h2 { font-size: var(--fs-2xl); letter-spacing: -0.03em; }
.confirm > p { color: var(--text-2); margin-top: var(--s-3); max-width: 42ch; margin-inline: auto; font-size: var(--fs-base); }
.confirm__ref {
  display: inline-block; margin-top: var(--s-4);
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.08em;
  color: var(--text-2); background: var(--ground);
  border: 1px solid var(--line);
  padding: 6px 12px; font-variant-numeric: tabular-nums;
}
.confirm .review-list { text-align: left; margin-top: var(--s-6); }
.confirm__actions { display: grid; gap: var(--s-3); margin-top: var(--s-6); }

/* Modal (quote request) */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: var(--gutter);
  opacity: 0; visibility: hidden;
  transition: opacity var(--t) var(--ease), visibility var(--t);
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(32, 30, 29, 0.62); }
.modal__panel {
  position: relative; width: 100%; max-width: 520px;
  max-height: calc(100dvh - 2 * var(--gutter)); overflow-y: auto;
  background: var(--surface); border: 1px solid var(--line);
  padding: var(--s-6);
  transform: translateY(12px) scale(0.985);
  transition: transform var(--t-slow) var(--ease-out);
}
.modal.is-open .modal__panel { transform: none; }
.modal__close {
  position: absolute; top: var(--s-4); right: var(--s-4);
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: var(--r-sm); color: var(--text-2);
}
.modal__close:hover { background: var(--surface); color: var(--navy); }
body.modal-open { overflow: hidden; }

/* ------------------------------------------------------------ 12. FOOTER */
.footer { background: var(--navy-deep); color: #A9C4DC; padding-block: var(--s-16) var(--s-8); }
.footer__grid { display: grid; gap: var(--s-8); }
@media (min-width: 760px)  { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s-10); } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer .logo { color: var(--surface); }
.footer .logo__mark { background: var(--surface); color: var(--navy); }
.footer .logo__text small { color: var(--line-strong); }
.footer h3 {
  font-size: 11px; font-weight: 600; letter-spacing: var(--track-label);
  text-transform: uppercase; color: var(--surface); margin-bottom: var(--s-4);
}
.footer li + li { margin-top: 10px; }
.footer a {
  font-size: var(--fs-sm); color: #A9C4DC;
  transition: color var(--t-fast) var(--ease);
}
/* Keep every footer link comfortably above the 24px minimum target size. */
.footer li a, .footer address a {
  display: inline-block; padding-block: 3px; line-height: 1.4;
}
.footer a:hover { color: var(--surface); }
.footer__blurb { font-size: var(--fs-sm); line-height: 1.6; margin-top: var(--s-4); max-width: 34ch; }
.footer address { font-style: normal; font-size: var(--fs-sm); line-height: 1.7; }
.footer__bottom {
  margin-top: var(--s-12); padding-top: var(--s-6);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: var(--s-4);
  align-items: center; justify-content: space-between;
  font-size: var(--fs-xs); color: #7FA0BF;
}
.footer__social { display: flex; gap: var(--s-2); }
.footer__social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 2px solid rgba(255,255,255,0.28);
  color: #A9C4DC;
  transition: all var(--t-fast) var(--ease);
}
.footer__social a:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); color: var(--surface); }

/* -------------------------------------------------- 13. MOTION & UTILS */
/* Content is visible by default and only starts hidden once JS has proven
   it can reveal it again. A failed script, a blocked observer or a hidden
   tab must never leave the page blank. */
.js-anim [data-reveal] {
  opacity: 0; transform: translateY(14px);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
}
.js-anim [data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 70ms; }
[data-reveal-delay="2"] { transition-delay: 140ms; }
[data-reveal-delay="3"] { transition-delay: 210ms; }
[data-reveal-delay="4"] { transition-delay: 280ms; }

.is-hidden { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js-anim [data-reveal] { opacity: 1; transform: none; }
  .confirm__mark svg path { stroke-dashoffset: 0; }
}

@media print {
  .header, .sticky-cta, .mobile-menu, .booker__nav, .footer__social { display: none !important; }
  body { background: #fff; }
}
