/* ---------- Tokens (pulled from the JJ logo) ---------- */
:root {
  --ink: #0e0f12;        /* logo background */
  --ink-2: #1b1d22;
  --paper: #eef0f3;      /* cool light grey page */
  --white: #ffffff;
  --red: #e11d32;        /* logo stripe */
  --red-dark: #b8142a;
  --silver: #b9bec6;     /* logo stripe */
  --steel: #5b616b;      /* muted text */
  --line: #d9dde3;

  --gutter: clamp(16px, 4vw, 48px);
  --max: 1240px;
  --radius-lg: 22px;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; }

h1, h2, h3 { margin: 0; line-height: 1.05; }

h2 {
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  font-weight: 700;
  font-stretch: 108%;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.3rem;
  font-weight: 700;
  font-stretch: 104%;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.5rem;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 600;
  font-size: 0.975rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s;
}
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--silver); }
.btn-ghost { color: var(--white); border: 1.5px solid rgba(255,255,255,.55); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-2); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  margin: 12px;
  min-height: min(92vh, 860px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(14,15,18,.55) 0%, rgba(14,15,18,0) 28%),
    linear-gradient(0deg, rgba(14,15,18,.9) 0%, rgba(14,15,18,.35) 45%, rgba(14,15,18,.1) 70%),
    url("https://images.unsplash.com/photo-1608506375591-b90e1f955e4b?w=2000&q=75&auto=format&fit=crop") center 40% / cover,
    var(--ink);
}

.nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 18px var(--gutter);
}
.nav-logo img { width: 52px; height: 52px; }
.nav-links {
  display: flex;
  gap: 2.25rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: .9;
}
.nav-links a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 6px; }
.nav-links-cta { display: none; }
.nav-phone {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
}
.nav-phone:hover { background: var(--silver); }
.nav-toggle { display: none; }

.hero-body {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px);
  align-items: end;
  gap: 2rem 4rem;
  padding: 0 var(--gutter) clamp(32px, 6vw, 64px);
}
.hero-kicker {
  margin: 0 0 1rem;
  font-weight: 500;
  font-size: 1rem;
  color: rgba(255,255,255,.85);
}
.hero-title {
  font-size: clamp(2.9rem, 5.9vw, 6.75rem);
  font-weight: 800;
  font-style: italic;
  font-stretch: 112%;
  line-height: .9;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.hero-side p {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  color: rgba(255,255,255,.88);
}
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* One orchestrated load moment: headline slides in like the logo's slash */
@media (prefers-reduced-motion: no-preference) {
  .hero-title { animation: sweep .9s cubic-bezier(.2,.7,.1,1) both .1s; }
  .hero-kicker, .hero-side { animation: fade .8s ease both .55s; }
  @keyframes sweep {
    from { opacity: 0; transform: translateX(-40px) skewX(-8deg); }
    to   { opacity: 1; transform: none; }
  }
  @keyframes fade { from { opacity: 0; } to { opacity: 1; } }
}

/* ---------- Service area strip ---------- */
.areas {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.5rem;
  flex-wrap: wrap;
  color: var(--steel);
}
.areas-label { margin: 0; font-size: .95rem; }
.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.areas-list li {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  font-stretch: 110%;
  font-size: 1.15rem;
  color: #7d838d;
}
.areas-list svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor; stroke-width: 2;
}

/* ---------- Sections ---------- */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 112px) var(--gutter);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem 3rem;
  flex-wrap: wrap;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section-head p {
  margin: 0;
  max-width: 36ch;
  color: var(--steel);
}
.section-head p a { color: var(--ink); font-weight: 600; white-space: nowrap; }

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
}
.service { display: flex; flex-direction: column; }
.service-img {
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  margin-bottom: 1.25rem;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service p { margin: .5rem 0 1rem; color: var(--steel); max-width: 40ch; }
.service-link {
  margin-top: auto;
  font-weight: 600;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
}
.service-link:hover { color: var(--red); }
.service-featured h3::after {
  content: "";
  display: inline-block;
  width: 14px; height: 18px;
  margin-left: .6rem;
  vertical-align: -1px;
  background: linear-gradient(90deg, var(--red) 0 45%, transparent 45% 62%, var(--silver) 62%);
  transform: skewX(-18deg);
}

/* ---------- Pricing ---------- */
.pricing {
  margin: 0 12px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
}
.pricing-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 112px) var(--gutter);
}
.pricing-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.pricing-head p { margin: 0; color: var(--silver); max-width: 34ch; }

.price-list { list-style: none; margin: 0; padding: 0; }
.price {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.5rem clamp(16px, 4vw, 48px);
  padding: clamp(20px, 3vw, 32px) 0;
  border-top: 1px solid #2c2f36;
}
.price:last-child { border-bottom: 1px solid #2c2f36; }
.price-size h3 { font-size: clamp(1.25rem, 2.4vw, 1.75rem); }
.price-size p { margin: .25rem 0 0; color: var(--silver); font-size: .975rem; }
.price-amount {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  font-style: italic;
  font-stretch: 112%;
  line-height: 1;
  letter-spacing: -0.03em;
  min-width: 4ch;
  text-align: right;
}
.price-amount span { font-size: .45em; vertical-align: .9em; margin-right: .08em; color: var(--silver); }
.price-amounts { text-align: right; }
.price-alt { margin: .4rem 0 0; color: var(--silver); font-size: .95rem; white-space: nowrap; }
.price-alt strong { color: var(--white); font-weight: 700; }

/* the logo's red + silver stripes */
.slash {
  display: block;
  width: 34px;
  height: clamp(44px, 6vw, 64px);
  background: linear-gradient(90deg, var(--red) 0 42%, transparent 42% 64%, var(--silver) 64%);
  transform: skewX(-18deg);
}

.extras { margin-top: 2.5rem; }
.extras h3 { font-size: 1.05rem; color: var(--silver); font-weight: 600; margin-bottom: .75rem; }
.extras-list { list-style: none; margin: 0; padding: 0; max-width: 520px; }
.extras-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px dashed #3a3e46;
  font-weight: 600;
  font-size: 1.1rem;
}
.extras-price { font-style: italic; font-stretch: 110%; font-weight: 800; white-space: nowrap; }
.extras-list small { display: block; color: var(--silver); font-weight: 400; font-size: .875rem; }

.pricing-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  margin-top: 2rem;
}
.pricing-foot p { margin: 0; color: var(--silver); max-width: 56ch; font-size: .975rem; }

/* ---------- Before / after ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
}
.ba { margin: 0; }
.ba figcaption { margin-top: .9rem; font-weight: 700; font-stretch: 104%; font-size: 1.1rem; }

.ba-frame {
  --pos: 50%;
  position: relative;
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
  user-select: none;
  touch-action: pan-y;
}
.ba-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-frame .ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-tag {
  position: absolute;
  top: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(14,15,18,.75);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  pointer-events: none;
}
.ba-tag-before { left: 12px; }
.ba-tag-after { right: 12px; }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 3px;
  margin-left: -1.5px;
  background: var(--white);
  pointer-events: none;
}
.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 40px; height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e0f12' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 6-6 6 6 6M15 6l6 6-6 6'/%3E%3C/svg%3E") center / 22px no-repeat;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.ba-range {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}
.ba-range:focus-visible + .ba-handle::after { outline: 3px solid var(--red); outline-offset: 2px; }

/* shown until real photos are added to assets/gallery */
.ba-empty {
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius);
  border: 2px dashed #c3c8cf;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--steel);
  font-size: .95rem;
}
.ba-empty strong { display: block; color: var(--ink); font-size: 1.05rem; margin-bottom: .25rem; }

/* ---------- Reviews ---------- */
.reviews {
  margin: 0 12px;
  border-radius: var(--radius-lg);
  background: var(--white);
}
.reviews-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) var(--gutter);
  text-align: center;
}
.stars { color: var(--red); font-size: 1.5rem; letter-spacing: .2em; margin-bottom: 1rem; }
.reviews p { color: var(--steel); margin: 1rem auto 1.75rem; max-width: 44ch; }

/* ---------- FAQ ---------- */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 2rem clamp(32px, 6vw, 96px);
  align-items: start;
}
.faq-layout .section-head { flex-direction: column; align-items: start; margin: 0; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  flex: none;
  width: 14px; height: 14px;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 100% 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 2px 100% no-repeat;
  transition: transform .25s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: -.4rem 0 1.4rem; color: var(--steel); max-width: 60ch; }

/* ---------- Booking ---------- */
.book {
  margin: 0 12px 12px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
}
.book-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 112px) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 3rem clamp(32px, 6vw, 96px);
}
.book-info > p { color: var(--silver); max-width: 36ch; margin: 1rem 0 2.5rem; }
.contact-list { margin: 0; display: grid; gap: 1.5rem; }
.contact-list dt { color: var(--silver); font-size: .9rem; margin-bottom: .2rem; }
.contact-list dd { margin: 0; font-weight: 600; font-size: 1.1rem; word-break: break-word; }
.contact-list a { text-decoration: none; }
.contact-list a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Booker: build your detail, then pick a time ---------- */
.booker { display: grid; gap: 1.25rem; align-content: start; }
.booker-step {
  margin: 0;
  padding: clamp(20px, 3.5vw, 36px);
  border: 1px solid #2c2f36;
  border-radius: var(--radius-lg);
  background: var(--ink-2);
}
.booker-step-head { display: flex; align-items: center; gap: .85rem; margin-bottom: 1.75rem; }
.booker-step-head h3 { font-size: 1.45rem; font-stretch: 108%; }

.pick { border: 0; margin: 0 0 1.75rem; padding: 0; min-width: 0; }
.pick legend { padding: 0; margin-bottom: .75rem; font-weight: 600; color: #d7dade; }
.pick-options { display: grid; gap: .75rem; }
.pick-3 { grid-template-columns: repeat(3, 1fr); }
.pick-2 { grid-template-columns: repeat(2, 1fr); }
.pick-help { margin: .75rem 0 0; color: var(--silver); font-size: .925rem; }
.pick-help a { color: var(--white); font-weight: 600; text-underline-offset: 3px; }

.pick-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: 1rem 1.1rem;
  border: 1.5px solid #33363e;
  border-radius: var(--radius);
  background: var(--ink);
  cursor: pointer;
  transition: border-color .15s, background-color .15s;
}
.pick-card:hover { border-color: #5a5f69; }
.pick-card input { position: absolute; opacity: 0; pointer-events: none; }
.pick-title { font-weight: 700; font-size: 1.05rem; }
.pick-note { color: var(--silver); font-size: .85rem; line-height: 1.35; }
/* selected: red outline plus the logo's red + silver stripe in the corner */
.pick-card:has(input:checked) { border-color: var(--red); background: #1f1113; }
.pick-card:has(input:checked)::after {
  content: "";
  position: absolute;
  top: 12px; right: 14px;
  width: 14px; height: 16px;
  background: linear-gradient(90deg, var(--red) 0 42%, transparent 42% 64%, var(--silver) 64%);
  transform: skewX(-18deg);
}
.pick-card:has(input:focus-visible) { outline: 3px solid var(--red); outline-offset: 3px; }

.addons { display: grid; gap: .5rem; }
.addon {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .9rem;
  padding: .85rem 1rem;
  border: 1.5px solid #33363e;
  border-radius: var(--radius);
  background: var(--ink);
  cursor: pointer;
}
.addon:hover { border-color: #5a5f69; }
.addon:has(input:checked) { border-color: var(--red); }
.addon input {
  appearance: none;
  width: 1.25rem; height: 1.25rem;
  margin: 0;
  border: 1.5px solid #5a5f69;
  border-radius: 5px;
  cursor: pointer;
}
.addon input:checked {
  border-color: var(--red);
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5 9-10'/%3E%3C/svg%3E") center / 80% no-repeat;
}
.addon input:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }
.addon span { font-weight: 600; }
.addon small { display: block; color: var(--silver); font-weight: 400; font-size: .85rem; }
.addon-price { font-style: italic; font-stretch: 110%; font-weight: 800; white-space: nowrap; }

.total {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
.total p { margin: 0; }
.total-label { font-size: .875rem; color: var(--steel); }
.total-service { font-weight: 700; font-size: 1.1rem; }
.total .slash { width: 26px; height: 46px; }
.total-amount {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  font-style: italic;
  font-stretch: 112%;
  letter-spacing: -0.03em;
  line-height: 1;
}
.total-amount span { font-size: .45em; vertical-align: .9em; color: var(--steel); }
.total-note { margin: .85rem 0 1.5rem; color: var(--silver); font-size: .9rem; }
.booker-next { width: 100%; min-height: 56px; font-size: 1.05rem; text-align: center; }

.next-steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: .6rem;
  margin: 1.5rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid #2c2f36;
  color: var(--silver);
  font-size: .925rem;
}
.next-steps li { counter-increment: step; display: flex; gap: .75rem; }
.next-steps li::before {
  content: counter(step);
  flex: none;
  display: grid;
  place-items: center;
  width: 1.45rem; height: 1.45rem;
  border-radius: 50%;
  background: #2c2f36;
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
}
.next-steps strong { color: var(--white); }
.booking-open { margin: 1rem 0 0; color: var(--silver); font-size: .95rem; }
.booking-open a { color: var(--white); font-weight: 600; text-underline-offset: 4px; }

/* ---------- Before-we-arrive checklist ---------- */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.checklist li {
  position: relative;
  padding-left: 2rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: .15em;
  width: 1.2rem; height: 1.2rem;
  border-radius: 4px;
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5 9-10'/%3E%3C/svg%3E") center / 75% no-repeat;
}
.book-ready {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #2c2f36;
}
.book-ready h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.book-ready .checklist { color: #d7dade; font-size: .975rem; }
.book-ready p { margin: 1.25rem 0 0; color: var(--silver); font-size: .95rem; }
.book-ready p a { color: var(--white); font-weight: 600; text-underline-offset: 4px; }

/* ---------- Service agreement page ---------- */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
  padding: 20px var(--gutter);
}
.page-back {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 600;
  text-decoration: none;
}
.page-back:hover span { text-decoration: underline; text-underline-offset: 4px; }
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 56px) var(--gutter) 24px;
}
.legal h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  font-style: italic;
  font-stretch: 110%;
  letter-spacing: -0.03em;
  line-height: 1;
}
.legal-lede { font-size: 1.15rem; color: var(--steel); margin: 1.25rem 0 2.5rem; max-width: 56ch; }
.legal section { padding: 1.75rem 0; border-top: 1px solid var(--line); }
.legal h2 { font-size: 1.3rem; font-stretch: 104%; letter-spacing: 0; margin-bottom: .6rem; }
.legal section p { margin: 0; max-width: 68ch; color: #2d3138; }
.legal-checklist {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
}
.legal-checklist h3 { font-size: 1.05rem; margin-bottom: 1rem; }
.signature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem 2rem;
  margin-top: 2.5rem;
}
.signature-line { border-bottom: 1.5px solid var(--ink); height: 2.5rem; display: flex; align-items: flex-end; }
.signature-line span { transform: translateY(1.6rem); font-size: .85rem; color: var(--steel); }
.legal-contact { margin: 3.5rem 0 0; color: var(--steel); }
.legal-contact a { color: var(--ink); font-weight: 600; }

@media print {
  body { background: #fff; font-size: 11pt; }
  .page-print, .page-back span, .footer { display: none; }
  .page-header, .legal { padding-top: 0; padding-bottom: 0; }
  .legal section { break-inside: avoid; padding: 1rem 0; }
  .legal-checklist { padding: 0; }
  .checklist li::before { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
}

/* ---------- Footer ---------- */
.footer { padding: clamp(48px, 7vw, 80px) var(--gutter) 28px; }
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand img { width: 88px; height: 88px; margin-bottom: 1rem; }
.footer-brand p { margin: 0; color: var(--steel); max-width: 36ch; }
.footer-col { display: flex; flex-direction: column; gap: .5rem; }
.footer-col h3 { font-size: 1rem; margin-bottom: .35rem; }
.footer-col a { color: var(--steel); text-decoration: none; word-break: break-word; }
.footer-col a:hover { color: var(--ink); text-decoration: underline; }
.footer-legal {
  max-width: var(--max);
  margin: 3rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: #8a9099;
  font-size: .875rem;
}

.footer-legal a { color: inherit; margin-left: .75rem; text-underline-offset: 3px; }
.faq-list details p a { color: var(--ink); font-weight: 600; text-underline-offset: 3px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav { gap: 1rem; }
  .nav-phone { margin-left: auto; }
  .nav-toggle {
    display: grid;
    place-content: center;
    gap: 6px;
    width: 48px; height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    width: 18px; height: 2px;
    background: var(--white);
    transition: transform .25s;
  }
  .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); }

  .nav-links {
    position: absolute;
    top: calc(100% + 4px);
    left: 12px; right: 12px;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: .5rem;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(14,15,18,.25);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    padding: .9rem 1rem;
    color: var(--ink);
    font-size: 1.05rem;
    opacity: 1;
  }
  .nav-links-cta { display: block; }
  .nav-links-cta a { color: var(--red); font-weight: 700; }

  .hero-body { grid-template-columns: 1fr; }
  .service-grid, .ba-grid { grid-template-columns: 1fr 1fr; }
  .service-featured { grid-column: 1 / -1; }
  .faq-layout, .book-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .hero { margin: 8px; min-height: 88vh; }
  .pricing, .reviews { margin: 0 8px; }
  .book { margin: 0 8px 8px; }
  .nav-phone { display: none; }
  .nav-toggle { margin-left: auto; }
  .hero-actions .btn { flex: 1; }
  .areas { flex-direction: column; gap: .75rem; }
  .areas-list { gap: .5rem 1.5rem; }
  .areas-list li { font-size: 1rem; }
  .service-grid, .ba-grid { grid-template-columns: 1fr; }
  .ba-empty { aspect-ratio: 16 / 7; }
  .price { grid-template-columns: 1fr auto; }
  .price .slash { display: none; }
  .pick-3, .pick-2 { grid-template-columns: 1fr; }
  .total { grid-template-columns: 1fr auto; }
  .total .slash { display: none; }
  .signature { grid-template-columns: 1fr; }
  .page-print { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
}
