/* ==========================================================================
   Charlie's Car Detailing
   Built from the Claude Design handoff: "Charlies Car Detailing.dc.html"
   Tokens follow Brand Guide v1.
   ========================================================================== */

:root {
  /* Colour */
  --navy:        #0A2A57;  /* Showroom Navy — ink, footers */
  --blue:        #0B63D6;  /* Charlie Blue — primary */
  --blue-bright: #1273EE;  /* primary hover */
  --blue-deep:   #084CA6;  /* primary button shadow */
  --blue-mid:    #3E8EF7;
  --blue-pale:   #E6F0FC;
  --blue-wash:   #F4F8FD;  /* page background */
  --yellow:      #FFCE00;  /* Detail Yellow — accents, CTAs */
  --yellow-lit:  #FFD940;  /* yellow hover */
  --yellow-deep: #C9A200;  /* yellow button shadow */
  --yellow-ink:  #6B5400;
  --ink:         #111418;
  --ink-soft:    #2A3542;
  --slate:       #5A6B7D;
  --line:        #D3E2F3;
  --line-strong: #C6D9EE;
  --on-navy:     #DCE9F8;
  --on-navy-dim: #C9DFF9;
  --on-navy-mid: #8FB6E6;
  --on-blue:     #E4EFFC;
  --star:        #E8A800;
  --error:       #B03030;

  /* Type */
  --display: 'Anton', 'Arial Narrow', sans-serif;
  --body: 'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --condensed: 'Barlow Condensed', 'Arial Narrow', sans-serif;

  /* Layout */
  --wrap: 1180px;
  --gutter: 22px;
  --header-h: 78px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--blue-wash);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
p { text-wrap: pretty; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--condensed);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 12px 20px;
}
.skip-link:focus { left: 8px; top: 8px; color: var(--ink); }

/* --------------------------------------------------------------------------
   Shared bits
   -------------------------------------------------------------------------- */

.eyebrow {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow--yellow { color: var(--yellow); }

.section {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 74px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.section--services { padding: 84px var(--gutter) 0; gap: 28px; }

.section__head { display: flex; flex-direction: column; gap: 10px; }

.section__title {
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 50px);
  margin: 0;
  text-transform: uppercase;
  line-height: 1;
}

.section__lede {
  margin: 0;
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 58ch;
}

/* Buttons ---------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 0;
  border-radius: 999px;
  padding: 14px 26px;
  cursor: pointer;
  text-align: center;
  transition: background-color .15s ease, color .15s ease;
}
.btn--sm { font-size: 16px; padding: 11px 22px; letter-spacing: .12em; }
.btn--lg { font-size: 19px; padding: 16px 30px; }

.btn--yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 4px 0 var(--yellow-deep);
}
.btn--yellow.btn--sm { box-shadow: 0 3px 0 var(--yellow-deep); }
.btn--yellow:hover { background: var(--yellow-lit); color: var(--ink); }

.btn--blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 3px 0 var(--blue-deep);
}
.btn--blue:hover { background: var(--blue-bright); color: #fff; }

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .7);
  padding: 14px 30px;
}
.btn--ghost:hover { background: #fff; color: var(--blue); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover { background: var(--navy); color: #fff; }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid #4A5560;
  padding: 10px 20px;
}
.btn--outline-light:hover { background: #fff; color: var(--ink); }

.btn--start { align-self: flex-start; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--navy);
  border-bottom: 3px solid var(--yellow);
}
.site-header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__badge { flex: 0 0 auto; }
.brand__text { display: flex; flex-direction: column; }
.brand__name {
  font-family: var(--display);
  font-size: 21px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}
.brand__sub {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--yellow);
}
.brand--footer .brand__name { font-size: 20px; }

.site-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  flex-wrap: wrap;
  align-items: center;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-nav a { color: var(--on-navy); }
.site-nav a:hover { color: var(--yellow); }
.site-nav .btn:hover { color: var(--ink); }

@media (max-width: 560px) {
  /* Keep the sticky header shallow on a phone: the nav wraps under the
     logo as one compact row rather than pushing the CTA onto its own line. */
  .site-header__inner { gap: 10px; padding: 12px var(--gutter); }
  .site-nav {
    gap: 8px 16px;
    margin-left: 0;
    width: 100%;
    font-size: 15px;
    justify-content: space-between;
  }
  .site-nav .btn { padding: 8px 16px; font-size: 14px; box-shadow: 0 2px 0 var(--yellow-deep); }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero { background: var(--blue); position: relative; overflow: hidden; }
.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 18%, var(--blue-mid) 0%, rgba(11, 99, 214, 0) 55%);
}
.hero__inner {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 70px var(--gutter) 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 44px;
  align-items: center;
}
.hero__copy { display: flex; flex-direction: column; gap: 22px; min-width: 0; }
.hero__title {
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: .94;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero__title span { color: var(--yellow); }
.hero__lede {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  color: var(--on-blue);
  max-width: 48ch;
}
.hero .eyebrow { font-size: 15px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 6px; }
.hero__actions .btn--lg { padding: 16px 34px; letter-spacing: .1em; }
.hero__actions .btn--ghost { padding: 14px 30px; letter-spacing: .1em; }

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 14px 0 0;
  margin: 0;
  list-style: none;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-navy-dim);
}

.hero__media { min-width: 0; display: flex; flex-direction: column; gap: 12px; }

.hero__banner {
  position: relative;
  margin: 0;
  background: var(--navy);
  padding: 18px var(--gutter);
  text-align: center;
  font-family: var(--display);
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}
.hero__banner span { color: var(--yellow); }

/* Before / after comparison slider -------------------------------------- */

.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid var(--navy);
  box-shadow: 0 22px 44px rgba(10, 42, 87, .35);
  background: var(--navy);
  /* Both set by JS from the range input. --frame-width counter-scales the
     clipped "before" image so it stays aligned with the "after" beneath it. */
  --reveal: 55%;
  --frame-width: 181.8%;
}
.compare__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.compare__before {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: var(--reveal);
}
.compare__before .compare__img {
  width: var(--frame-width);
  max-width: none;
}
.compare__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--reveal);
  width: 4px;
  background: var(--yellow);
  transform: translateX(-2px);
  pointer-events: none;
}
.compare__handle {
  position: absolute;
  top: 50%;
  left: var(--reveal);
  width: 46px;
  height: 46px;
  margin: -23px 0 0 -23px;
  border-radius: 999px;
  background: var(--yellow);
  border: 3px solid var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 16px;
  color: var(--navy);
  pointer-events: none;
}
.compare__tag {
  position: absolute;
  top: 16px;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  pointer-events: none;
}
.compare__tag--before { left: 16px; background: rgba(10, 42, 87, .92); color: #fff; }
.compare__tag--after { right: 16px; background: var(--yellow); color: var(--ink); }

.compare__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}
.compare__range:focus-visible { opacity: 1; outline-offset: -6px; }

.compare__caption {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--on-navy-dim);
  text-align: center;
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 20px;
}

.service {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service--hero { border-color: var(--yellow); }

.service__head {
  background: var(--navy);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.service--hero .service__head { background: var(--yellow); }

.service__heading { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.service__tag {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--on-navy-mid);
}
.service--hero .service__tag { color: var(--yellow-ink); }

.service__name {
  font-family: var(--display);
  font-size: 21px;
  text-transform: uppercase;
  line-height: 1.08;
  color: #fff;
  margin: 0;
  font-weight: 400;
}
.service--hero .service__name { color: var(--ink); }

.service__pricing { display: flex; flex-direction: column; align-items: flex-end; flex: 0 0 auto; }
.service__price { font-family: var(--display); font-size: 36px; line-height: 1; color: var(--yellow); }
.service--hero .service__price { color: var(--ink); }
.service__unit {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-navy-mid);
}
.service--hero .service__unit { color: var(--yellow-ink); }

.service__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.service__items {
  margin: 0;
  padding: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink-soft);
  flex: 1;
}
.service__book {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--blue);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  cursor: pointer;
  box-shadow: 0 3px 0 var(--blue-deep);
  transition: background-color .15s ease;
}
.service__book:hover { background: var(--blue-bright); }

/* Wax add-on strip ------------------------------------------------------- */

.addon {
  background: var(--navy);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.addon__copy { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.addon .eyebrow { font-size: 13px; letter-spacing: .18em; }
.addon__title {
  font-family: var(--display);
  font-size: 27px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
}
.addon__text { font-size: 17px; color: var(--on-navy); max-width: 46ch; }
.addon__cta { display: flex; align-items: center; gap: 20px; }
.addon__price { font-family: var(--display); font-size: 48px; color: var(--yellow); line-height: 1; }

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.shot { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.shot__frame {
  position: relative;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--line);
}
.shot--after .shot__frame { border-color: var(--blue); }
.shot__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.shot__label {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--slate);
}
.shot--after .shot__label { color: var(--blue); }

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.about { background: var(--navy); color: #fff; }
.about__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 80px var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 44px;
  align-items: center;
}
.about__portrait {
  position: relative;
  aspect-ratio: 494 / 665;
  width: 100%;
  align-self: stretch;
  border-radius: 22px;
  overflow: hidden;
  border: 4px solid var(--yellow);
}
.about__portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.about__copy { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.about__copy p { margin: 0; font-size: 19px; line-height: 1.6; color: var(--on-navy); }

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  padding: 6px 0 0;
  margin: 0;
  list-style: none;
}
.fact { background: var(--blue); border-radius: 14px; padding: 18px; }
.fact__head { display: block; font-family: var(--display); font-size: 28px; line-height: 1.1; }
.fact__body { display: block; font-size: 15px; color: var(--on-blue); }

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}
.review {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review p { margin: 0; font-size: 18px; line-height: 1.55; color: var(--ink-soft); }
.review__stars { color: var(--star); font-size: 20px; letter-spacing: .1em; }
.review__by {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate);
  font-style: normal;
}

/* --------------------------------------------------------------------------
   Area
   -------------------------------------------------------------------------- */

.area { background: var(--blue-pale); }
.area__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 78px var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 40px;
  align-items: center;
}
.area__copy { display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.area__copy p { margin: 0; font-size: 19px; line-height: 1.6; color: var(--ink-soft); max-width: 46ch; }

.places {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.places li {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 9px 16px;
}

.area__map {
  background: var(--navy);
  border-radius: 22px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.area__map svg { width: 100%; height: auto; border-radius: 14px; background: var(--blue); }
.area__note { margin: 0; font-size: 15px; color: var(--on-navy-dim); }

/* --------------------------------------------------------------------------
   Booking
   -------------------------------------------------------------------------- */

.book { background: #fff; border-top: 3px solid var(--navy); }
.book__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 78px var(--gutter) 90px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.book__head { display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }

.steps {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.step {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--blue-pale);
  color: var(--slate);
}
.step.is-on { background: var(--navy); color: var(--yellow); }

.panel {
  background: var(--blue-wash);
  border: 2px solid var(--line);
  border-radius: 22px;
  padding: 30px;
}

.pane { display: flex; flex-direction: column; gap: 20px; }
.pane[hidden] { display: none; }
.pane--done { gap: 18px; align-items: flex-start; }

.pane__title { font-family: var(--display); font-size: 22px; text-transform: uppercase; }
.pane__title--spaced { padding-top: 4px; }
.pane__title--big { font-size: 30px; line-height: 1.05; }
.pane__note { margin: 0; font-size: 15px; color: var(--slate); }
.pane[data-pane="2"] .pane__note { font-size: 16px; }
.pane__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.form-error {
  margin: 0;
  font-size: 15px;
  color: var(--error);
  min-height: 20px;
}

/* Step 1 — service choice ------------------------------------------------ */

.choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 12px;
}
.choice {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  text-align: left;
  padding: 16px 18px;
  border-radius: 14px;
  cursor: pointer;
  border: 2px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  font-family: var(--body);
}
.choice.is-active { border-color: var(--blue); background: var(--blue); color: #fff; }
.choice__name { font-family: var(--display); font-size: 17px; text-transform: uppercase; line-height: 1.15; }
.choice__price { font-size: 15px; font-weight: 600; }

.wax {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  text-align: left;
  padding: 16px 18px;
  border-radius: 14px;
  cursor: pointer;
  border: 2px dashed var(--line-strong);
  background: #fff;
  color: var(--ink);
  font-family: var(--body);
}
.wax.is-active { border-color: var(--blue); background: var(--blue-pale); }
.wax__title { font-family: var(--display); font-size: 17px; text-transform: uppercase; }
.wax__meta { font-size: 15px; font-weight: 600; }

.chip {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  border: 2px solid var(--line-strong);
  background: #fff;
  color: var(--navy);
}
.chip.is-active { border-color: var(--blue); background: var(--blue); color: #fff; }
.chip--stacked { text-align: left; }
.chip--stacked span {
  display: block;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--body);
}

.sizes { display: flex; gap: 10px; flex-wrap: wrap; }

/* Step 2 — date & time --------------------------------------------------- */

.days { display: flex; gap: 10px; overflow-x: auto; padding: 2px 2px 8px; }
.day {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  flex: 0 0 auto;
  min-width: 74px;
  padding: 12px 10px;
  border-radius: 14px;
  cursor: pointer;
  border: 2px solid var(--line-strong);
  background: #fff;
  color: var(--navy);
  font-family: var(--body);
}
.day.is-active { border-color: var(--blue); background: var(--blue); color: #fff; }
.day__dow {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.day__dom { font-family: var(--display); font-size: 23px; line-height: 1; }
.day__mon { font-size: 13px; }

.slots { display: flex; gap: 10px; flex-wrap: wrap; }

/* Step 3 — details ------------------------------------------------------- */

.pane[data-pane="3"] { gap: 18px; }

.fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field__label {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--slate);
}
.field input,
.field textarea {
  font-family: var(--body);
  font-size: 17px;
  padding: 13px 15px;
  border: 2px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  color: var(--ink);
}
.field textarea { resize: vertical; }
.field input:focus,
.field textarea:focus { border-color: var(--blue); outline: none; }
.field input:focus-visible,
.field textarea:focus-visible { outline: 3px solid var(--yellow); outline-offset: 1px; }
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--error); }

.summary {
  background: var(--navy);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
}
.summary .eyebrow { font-size: 13px; letter-spacing: .18em; }
.summary__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 17px;
}
.summary__row strong { text-align: right; }
.summary__row--total {
  align-items: baseline;
  border-top: 1px solid #2A5390;
  padding-top: 12px;
}
.summary__total { font-family: var(--display); font-size: 32px; color: var(--yellow); }

/* Done ------------------------------------------------------------------- */

.tick {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: var(--blue);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 30px;
  color: var(--yellow);
}
.done__text { margin: 0; font-size: 18px; color: var(--ink-soft); max-width: 52ch; }

/* --------------------------------------------------------------------------
   Admin / booking log
   -------------------------------------------------------------------------- */

.admin { background: var(--ink); color: #fff; }
.admin[hidden] { display: none; }
.admin__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 56px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.admin__head {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.admin__title { display: flex; flex-direction: column; gap: 6px; }
.admin .eyebrow { font-size: 13px; letter-spacing: .18em; }
.admin__heading { font-family: var(--display); font-size: 30px; text-transform: uppercase; line-height: 1; }
.admin__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.admin__note { margin: 0; font-size: 16px; color: #A8B4C0; max-width: 70ch; }
.admin__note[hidden] { display: none; }

.admin__table-wrap { overflow-x: auto; border: 1px solid var(--ink-soft); border-radius: 14px; }
.admin__table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 760px; }
.admin__table thead tr { background: #1B2028; text-align: left; }
.admin__table th {
  padding: 12px 14px;
  font-family: var(--condensed);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: #A8B4C0;
  text-align: left;
}
.admin__table td { padding: 12px 14px; }
.admin__table tbody tr { border-top: 1px solid var(--ink-soft); }
.admin__table td:first-child { font-family: var(--condensed); font-weight: 700; color: var(--yellow); }
.admin__table td:last-child { font-weight: 700; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer { background: var(--navy); color: #fff; }
.site-footer__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 56px var(--gutter) 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 32px;
}
.site-footer__col { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col:first-child { gap: 14px; }
.site-footer .eyebrow { font-size: 13px; letter-spacing: .18em; }
.site-footer__blurb { margin: 0; font-size: 16px; color: var(--on-navy-dim); max-width: 34ch; }
.site-footer__phone { font-family: var(--display); font-size: 24px; color: #fff; }
.site-footer__phone:hover { color: var(--yellow); }
.site-footer__link { font-size: 17px; color: var(--on-navy-dim); }
.site-footer__link:hover { color: var(--yellow); }
.site-footer__line { font-size: 17px; color: var(--on-navy-dim); }
.site-footer__fine { font-size: 15px; color: var(--on-navy-mid); }

.site-footer__bar { border-top: 1px solid #1E4478; }
.site-footer__bar-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: var(--on-navy-mid);
}
.site-footer__admin {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: transparent;
  color: var(--on-navy-mid);
  border: 1px solid #1E4478;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
}
.site-footer__admin:hover { color: var(--yellow); border-color: var(--yellow); }

/* --------------------------------------------------------------------------
   Narrow screens
   -------------------------------------------------------------------------- */

@media (max-width: 640px) {
  .section { padding: 56px var(--gutter); }
  .section--services { padding: 64px var(--gutter) 0; }
  .hero__inner { padding: 48px var(--gutter) 60px; gap: 32px; }
  .about__inner, .area__inner { padding: 60px var(--gutter); gap: 32px; }
  .book__inner { padding: 60px var(--gutter) 70px; }
  .panel { padding: 22px 18px; }
  .addon { padding: 22px; }
  .addon__cta { width: 100%; justify-content: space-between; }
  .hero__points { gap: 14px; }
}
