/* ==========================================================================
   OPAL DETAILS — design system
   Adapted from a cinematic dark editorial reference:
   black voids, full-bleed photography, uppercase tracked type, 0px radius.
   Single accent: opal teal (#3ee0c5); gradient reserved for the brand mark
   and hairline decorations only.
   ========================================================================== */

:root {
  /* Colors */
  --opal-teal: #3ee0c5;
  --opal-blue: #4f8ee8;
  --opal-violet: #9d8cff;
  --grad: linear-gradient(100deg, var(--opal-teal), var(--opal-blue) 55%, var(--opal-violet));

  --void: #08090c;          /* full-bleed hero + section backgrounds */
  --night: #101318;         /* footer / secondary dark surfaces      */
  --graphite: #262b33;      /* hairline borders on dark              */
  --white: #f4f6f8;         /* primary text on dark                  */
  --muted: #8f96a0;         /* secondary text on dark                */
  --quiet: #7b828b;         /* quietest labels — holds 4.5:1 on void */
  --canvas: #ffffff;        /* light sections                        */
  --ink: #14171c;           /* text on light                         */
  --hairline-light: #d8dbdf;

  /* Type */
  --font-ui: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mark: 'Michroma', 'Inter', sans-serif;
  --track-wide: 0.32em;
  --track-mid: 0.18em;
  --track-tight: 0.08em;

  /* Layout */
  --page-max: 1440px;
  --gutter: clamp(20px, 4vw, 60px);
  --section-gap: clamp(72px, 10vw, 128px);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--void);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--opal-teal); color: var(--void); }

:focus-visible {
  outline: 2px solid var(--opal-teal);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed; top: -100%; left: var(--gutter);
  z-index: 200;
  display: inline-flex; align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  background: var(--opal-teal); color: var(--void);
  font-size: 11px; letter-spacing: var(--track-mid); text-transform: uppercase;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ---------- Shared type ---------- */
.kicker,
.section__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--muted);
}

.section__title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  line-height: 1.5;
  margin-top: 14px;
}

.section__sub {
  max-width: 52ch;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 13px;
}

.arrow { display: inline-block; transition: transform 0.25s var(--ease-out); }

/* CTA arrow link — no chrome, the arrow is the affordance */
.cta-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}
.cta-arrow:hover, .cta-arrow:focus-visible { color: var(--opal-teal); }
.cta-arrow:hover .arrow { transform: translateX(6px); }

.ghost-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 12px;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.ghost-link:hover, .ghost-link:focus-visible { color: var(--opal-teal); border-color: var(--opal-teal); }

.grad-rule {
  display: block;
  width: 72px; height: 1px;
  margin: 0 auto 34px;
  background: var(--grad);
}

/* ==========================================================================
   NAVIGATION — flat transparent bar over hero; gains a surface on scroll
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  height: 72px;
  transition: border-color 0.3s;
  border-bottom: 1px solid transparent;
}
/* Blur lives on a pseudo-element: backdrop-filter on .nav itself would
   turn it into the containing block for the fixed mobile menu overlay. */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(8, 9, 12, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.3s;
}
.nav--scrolled { border-bottom-color: var(--graphite); }
.nav--scrolled::before { opacity: 1; }

.nav__brand { display: inline-flex; align-items: center; gap: 11px; min-height: 44px; }
/* Brand artwork is the supplied logo, split into mark + wordmark so the
   lockup can sit horizontally in a 72px bar. Heights drive the sizing;
   width:auto preserves each crop's aspect ratio. */
.nav__mark { height: 26px; width: auto; }
.nav__wordmark { height: 13px; width: auto; }

.nav__links { display: flex; align-items: center; gap: clamp(18px, 3vw, 44px); }
.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}
.nav__link:hover, .nav__link:focus-visible { color: var(--opal-teal); }
.nav__link--cta { color: var(--opal-teal); }
.nav__link--cta:hover .arrow { transform: translateX(5px); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px; height: 44px;
  padding: 10px;
}
.nav__toggle span {
  display: block; height: 1px; width: 100%;
  background: var(--white);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ==========================================================================
   HERO — full viewport, photography is the layout
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,9,12,0.55) 0%, rgba(8,9,12,0.05) 35%, rgba(8,9,12,0.2) 60%, rgba(8,9,12,0.92) 100%);
}
.hero__content {
  position: relative;
  text-align: center;
  padding: 0 var(--gutter) clamp(96px, 16vh, 160px);
  max-width: 900px;
}
.hero__title {
  font-size: clamp(26px, 5.4vw, 54px);
  font-weight: 500;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  line-height: 1.35;
  margin-top: 22px;
}
.hero__sub {
  margin: 18px auto 0;
  max-width: 46ch;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: var(--track-tight);
  text-transform: uppercase;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  margin-top: 34px;
  flex-wrap: wrap;
}

/* Hero type sits over photography, so the muted grey used on flat dark
   sections loses legibility against bright reflections. Everything in the
   hero is pure white, with a soft shadow to hold up over highlights.
   Scoped to .hero — muted grey stays as-is everywhere else. */
.hero__content .kicker,
.hero__sub,
.hero__actions .cta-arrow,
.hero__actions .ghost-link {
  color: #ffffff;
}
.hero__content .kicker,
.hero__title,
.hero__sub,
.hero__actions .cta-arrow,
.hero__actions .ghost-link {
  text-shadow: 0 1px 14px rgba(8, 9, 12, 0.75);
}
/* Re-assert hover after the white override above. */
.hero__actions .cta-arrow:hover,
.hero__actions .cta-arrow:focus-visible,
.hero__actions .ghost-link:hover,
.hero__actions .ghost-link:focus-visible {
  color: var(--opal-teal);
}
.hero__scroll {
  position: absolute;
  bottom: 0; left: 50%;
  width: 1px; height: 64px;
  overflow: hidden;
}
.hero__scroll span {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent, var(--opal-teal));
  animation: scrollhint 2.2s var(--ease-out) infinite;
}
@keyframes scrollhint {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

/* ==========================================================================
   STATEMENT — quiet dark panel
   ========================================================================== */
.statement { padding: var(--section-gap) var(--gutter); }
.statement__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.statement__inner p {
  font-size: 14px;
  line-height: 2;
  color: var(--muted);
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: var(--section-gap) var(--gutter);
}
.section--narrow { max-width: 860px; }
.section__head { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); }

/* ==========================================================================
   SERVICES — flat editorial cards, images bleed to edges
   ========================================================================== */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.service {
  background: var(--night);
  border: 1px solid var(--graphite);
  display: flex;
  flex-direction: column;
}
.service__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.service__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.service:hover .service__media img { transform: scale(1.04); }
.service__tag {
  position: absolute;
  top: 14px; right: 14px;
  padding: 5px 14px;
  border: 1px solid var(--white);
  border-radius: 9999px; /* the single rounded element in the system */
  font-size: 10px;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  background: rgba(8, 9, 12, 0.55);
  backdrop-filter: blur(4px);
}
.service__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(22px, 2.5vw, 32px);
}
.service__name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
}
.service__price {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  color: var(--muted);
}
.service__price strong {
  color: var(--opal-teal);
  font-weight: 600;
  font-size: 13px;
}
.service__list {
  margin: 18px 0 26px;
  flex: 1;
}
.service__list li {
  font-size: 11px;
  letter-spacing: var(--track-tight);
  text-transform: uppercase;
  color: var(--muted);
  padding: 9px 0;
  border-bottom: 1px solid var(--graphite);
}
.service__list li:last-child { border-bottom: 0; }

/* ==========================================================================
   FULL-BLEED IMAGE PANELS
   ========================================================================== */
.panel {
  position: relative;
  height: clamp(320px, 62vh, 640px);
  overflow: hidden;
}
.panel--tall { height: clamp(360px, 72vh, 760px); }
.panel__img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.panel__caption {
  position: absolute;
  inset: auto 0 clamp(28px, 5vh, 56px);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 12px rgba(8, 9, 12, 0.8);
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3vw, 44px);
  counter-reset: step;
}
.step {
  border-top: 1px solid var(--graphite);
  padding-top: 24px;
}
.step__num {
  font-family: var(--font-mark);
  font-size: 12px;
  letter-spacing: var(--track-mid);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step__name {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
}
.step__text {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

/* ==========================================================================
   LIGHT SECTION
   ========================================================================== */
.light { background: var(--canvas); color: var(--ink); }
.light__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--section-gap) var(--gutter);
  text-align: center;
}
.light .section__label { color: var(--ink); }
.light__text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 2;
  color: #4a4f56;
}

/* ==========================================================================
   SERVICE AREA — pill tags (single rounded element)
   ========================================================================== */
.cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 10px;
  max-width: 760px;
  margin: 0 auto;
}
.city-pill {
  padding: 9px 20px;
  border: 1px solid var(--graphite);
  border-radius: 9999px;
  font-size: 11px;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
}
.city-pill:hover { color: var(--opal-teal); border-color: var(--opal-teal); }

/* ==========================================================================
   FAQ — hairline accordion
   ========================================================================== */
.faq { border-top: 1px solid var(--graphite); }
.faq__item { border-bottom: 1px solid var(--graphite); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 44px;
  padding: 20px 0;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--track-tight);
  text-transform: uppercase;
  transition: color 0.2s;
}
.faq__q:hover { color: var(--opal-teal); }
.faq__icon {
  position: relative;
  flex: 0 0 14px;
  height: 14px;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 14px; height: 1px;
  background: currentColor;
  transition: transform 0.3s var(--ease-out);
}
.faq__icon::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(0deg); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}
.faq__a > p {
  overflow: hidden;
  font-size: 13px;
  color: var(--muted);
  max-width: 62ch;
}
.faq__item--open .faq__a { grid-template-rows: 1fr; }
.faq__item--open .faq__a > p { padding-bottom: 22px; }

/* ==========================================================================
   QUOTE FORM
   ========================================================================== */
/* Cinematic closing panel: full-bleed photography behind a scrim, with the
   booking card floating on top. Mirrors the hero treatment so the page opens
   and closes on the same note. */
.quote {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--graphite);
  background: var(--night);
}
.quote__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.quote__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(8, 9, 12, 0.94) 0%,
      rgba(8, 9, 12, 0.80) 45%,
      rgba(8, 9, 12, 0.95) 100%);
}
.quote__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: var(--section-gap) var(--gutter);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 28px);
}
.form__field { margin-bottom: 22px; }
/* Direct child only — the slot picker wraps each radio in its own <label>,
   which must not pick up field-label styling. */
.form__field > label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.req { color: var(--opal-teal); }
.form__field input,
.form__field select {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  background: var(--void);
  border: 1px solid var(--graphite);
  border-radius: 0;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 16px; /* prevents iOS zoom */
  transition: border-color 0.2s;
  color-scheme: dark;
}
.form__field input::placeholder { color: var(--quiet); }
.form__field input:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--opal-teal);
}
.form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%238f96a0' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form__field--wide { grid-column: 1 / -1; }

.form__help {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--quiet);
}

/* ---- Date + time picker: calendar beside the slots ---- */
.picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 28px);
  margin-bottom: 22px;
}
/* Matches .form__field > label without being a <label> — these blocks label a
   group of controls rather than a single input. */
.form__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.cal {
  border: 1px solid var(--graphite);
  background: var(--void);
  padding: 14px;
}
.cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
/* Month label and jump control in one. Chrome is stripped so it reads as the
   heading it replaces; the caret only appears on hover/focus. */
.cal__month {
  flex: 1;
  min-width: 0;
  min-height: 36px;
  padding: 0 22px 0 8px;
  appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%237b828b' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  border: 1px solid transparent;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  text-align: center;
  text-align-last: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cal__month:hover { border-color: var(--graphite); }
.cal__month:focus-visible { border-color: var(--opal-teal); }
/* The native dropdown list renders on the OS surface, so give it dark colours. */
.cal__month option {
  background: var(--night);
  color: var(--white);
  letter-spacing: normal;
}
.cal__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  flex: 0 0 36px;
  border: 1px solid var(--graphite);
  color: var(--white);
  transition: border-color 0.2s, color 0.2s;
}
.cal__nav svg { width: 16px; height: 16px; }
.cal__nav:hover:not(:disabled) { border-color: var(--opal-teal); color: var(--opal-teal); }
.cal__nav:disabled { opacity: 0.3; cursor: default; }

.cal__weekdays,
.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal__weekdays {
  margin-bottom: 6px;
}
.cal__weekdays span {
  text-align: center;
  font-size: 10px;
  letter-spacing: var(--track-tight);
  text-transform: uppercase;
  color: var(--quiet);
  padding: 4px 0;
}

.cal__day {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  min-height: 36px;
  border: 1px solid transparent;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: var(--white);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.cal__day:hover:not(:disabled) { border-color: var(--muted); }
.cal__day:disabled {
  color: var(--graphite);
  cursor: default;
}
/* Today reads as a hint, not a selection. */
.cal__day--today:not([aria-selected="true"]) { color: var(--opal-teal); }
.cal__day[aria-selected="true"] {
  background: var(--opal-teal);
  border-color: var(--opal-teal);
  color: var(--void);
  font-weight: 600;
}
.cal__day--blank { visibility: hidden; }

.cal__chosen {
  font-size: 11px;
  letter-spacing: var(--track-tight);
  text-transform: uppercase;
  color: var(--quiet);
  margin-bottom: 10px;
  min-height: 18px;
}
.cal__chosen--set { color: var(--opal-teal); }

/* ---- Time slot picker: native radios, styled boxes ---- */
/* Stacked, so the slots sit alongside the calendar rather than under it. */
/* Compact time chips — the list is long enough now that a stacked row per
   time would dwarf the calendar beside it. */
.slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.slot { display: block; position: relative; cursor: pointer; }
/* The radio stays in the a11y tree and keyboard order — only visually hidden. */
.slot input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
  margin: 0;
}
.slot__box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 4px;
  border: 1px solid var(--graphite);
  background: var(--void);
  font-size: 12px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: var(--track-tight);
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, background 0.2s, opacity 0.2s;
}
/* Times stay visible but inert until a date is chosen. */
.slot input:disabled + .slot__box {
  opacity: 0.4;
  cursor: default;
}
.slot:has(input:disabled) { cursor: default; }
.slot:hover input:not(:disabled) + .slot__box { border-color: var(--muted); }
.slot input:checked + .slot__box {
  background: var(--opal-teal);
  border-color: var(--opal-teal);
  color: var(--void);
  font-weight: 600;
}
.slot input:focus-visible + .slot__box {
  outline: 2px solid var(--opal-teal);
  outline-offset: 3px;
}
.form__field--invalid .slot__box { border-color: #e05a5a; }

.form__field--invalid input,
.form__field--invalid select { border-color: #e05a5a; }
.form__error {
  min-height: 18px;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #e05a5a;
}

.form__submit {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 34px;
  border: 1px solid var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-submit:hover, .btn-submit:focus-visible {
  border-color: var(--opal-teal);
  color: var(--opal-teal);
}
.btn-submit:hover .arrow { transform: translateX(6px); }
.btn-submit[disabled] { opacity: 0.45; cursor: default; }
.form__status { font-size: 12px; letter-spacing: 0.04em; color: var(--muted); }
.form__status--ok { color: var(--opal-teal); }
.form__status--err { color: #e05a5a; }

/* ---- Setmore "Book Now" block ---- */
/* Translucent over the photo rather than solid, so the backdrop reads through
   without costing legibility. */
.booknow {
  border: 1px solid rgba(244, 246, 248, 0.14);
  background: rgba(8, 9, 12, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: clamp(30px, 5vw, 56px) clamp(20px, 4vw, 48px);
  text-align: center;
}
.booknow__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: clamp(30px, 4vw, 48px);
}
.booknow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 4px clamp(12px, 2vw, 26px);
  /* Hairline separators between steps, not around them. */
  border-left: 1px solid var(--graphite);
}
.booknow__step:first-child { border-left: 0; }
.booknow__num {
  font-family: var(--font-mark);
  font-size: 18px;
  letter-spacing: var(--track-tight);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2px;
}
/* Fixed height keeps the hints on a shared baseline even if a label wraps. */
.booknow__stepname {
  display: flex;
  align-items: center;
  min-height: 2.4em;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--track-tight);
  text-transform: uppercase;
  color: var(--white);
}
.booknow__stephint {
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--muted);
  max-width: 22ch;
}
.booknow__action {
  padding-top: clamp(26px, 3.5vw, 40px);
  border-top: 1px solid var(--graphite);
}
.booknow__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 clamp(32px, 5vw, 56px);
  background: var(--opal-teal);
  color: var(--void);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.booknow__btn:hover,
.booknow__btn:focus-visible {
  background: var(--white);
  box-shadow: 0 0 32px rgba(62, 224, 197, 0.28);
}
.booknow__btn:hover .arrow { transform: translateX(6px); }
.booknow__note {
  margin: 16px auto 0;
  max-width: 46ch;
  font-size: 11px;
  letter-spacing: var(--track-tight);
  text-transform: uppercase;
  color: var(--quiet);
}

@media (max-width: 720px) {
  .booknow__steps { grid-template-columns: 1fr; }
  /* Separators run horizontally once the steps stack. */
  .booknow__step {
    border-left: 0;
    border-top: 1px solid var(--graphite);
    padding: 18px 0;
  }
  .booknow__step:first-child { border-top: 0; padding-top: 0; }
  .booknow__stepname { min-height: 0; }
  .booknow__btn { width: 100%; }
}

.quote__direct {
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: 34px;
  border-top: 1px solid var(--graphite);
  text-align: center;
}
.quote__direct-label {
  font-size: 11px;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  color: var(--quiet);
}
.quote__direct-links {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
  margin-top: 10px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--void);
  border-top: 1px solid var(--graphite);
}
.footer__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) var(--gutter);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
}
.footer__lockup { width: clamp(150px, 15vw, 186px); height: auto; }
.footer__tagline {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
  max-width: 30ch;
}
.footer__head {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--quiet);
  margin-bottom: 16px;
}
.footer__col a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 12px;
  letter-spacing: var(--track-tight);
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}
.footer__col a:hover, .footer__col a:focus-visible { color: var(--opal-teal); }
.footer__muted { font-size: 11px; color: var(--quiet); margin-top: 8px; letter-spacing: 0.04em; }
.footer__social { display: flex; gap: 6px; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  color: var(--white);
  transition: color 0.2s;
}
.footer__social a:hover, .footer__social a:focus-visible { color: var(--opal-teal); }
.footer__social svg { width: 18px; height: 18px; }

.footer__legal {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 22px var(--gutter) 30px;
  border-top: 1px solid var(--graphite);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__legal p {
  font-size: 11px;
  letter-spacing: var(--track-tight);
  text-transform: uppercase;
  color: var(--quiet);
}
.footer__legal .footer__muted { margin-top: 0; }

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal--in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll { display: none; }
  .service__media img { transition: none; }
  *, *::before, *::after { animation-duration: 0.001s !important; }
}

/* Anchor offset for fixed nav */
section[id] { scroll-margin-top: 84px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .services { grid-template-columns: 1fr 1fr; }
  .service--flagship { grid-column: 1 / -1; }
  .service--flagship .service__media { aspect-ratio: 21 / 9; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  body.menu-open { overflow: hidden; }
  .nav__links {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    background: rgba(8, 9, 12, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .nav__links--open {
    opacity: 1;
    pointer-events: auto;
  }
  .nav__link { font-size: 14px; padding: 10px 0; }

  .hero__scrim {
    background:
      linear-gradient(to bottom, rgba(8,9,12,0.62) 0%, rgba(8,9,12,0.28) 35%, rgba(8,9,12,0.5) 60%, rgba(8,9,12,0.95) 100%);
  }

  .services { grid-template-columns: 1fr; }
  .service--flagship .service__media { aspect-ratio: 16 / 10; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .picker { grid-template-columns: 1fr; }
  /* Touch targets: min-height beats aspect-ratio, so cells clear 44px. */
  .cal__day { min-height: 44px; }
  .cal__nav { width: 44px; height: 44px; flex-basis: 44px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__legal { justify-content: center; text-align: center; }
}
