/* ---------------------------------------------------------------
   Service landing pages.

   Ad traffic arrives here on a phone, so this is mobile-first and
   deliberately light: no scroll library, no GSAP, no video. The main
   site's motion layer is 144KB of JavaScript that earns its place on
   a browse; it does not earn it on a page whose only job is one tap
   to Book.

   Tokens copied from src/style.css :root. These pages live in public/
   and are outside the Vite bundle, so they cannot import them.
   Mirror any palette change here.
   --------------------------------------------------------------- */

:root {
  --noir: #100b09;
  --espresso: #1a1310;
  --umber: #241a16;
  --mahogany: #3b241d;
  --ivory: #f6efe7;
  --sand: #d6c4b2;
  --taupe: #9a8778;
  --gilt: #d2a24c;
  --gilt-deep: #a87c33;
  --gilt-soft: #e8c888;
  --font: "Manrope", system-ui, -apple-system, sans-serif;
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --pad: clamp(1.1rem, 5vw, 2.5rem);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--noir);
  color: var(--sand);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gilt); }

.skip {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  transform: translateY(-120%);
  padding: 0.85rem 1.25rem;
  background: var(--gilt);
  color: var(--noir);
  font-weight: 700;
  text-decoration: none;
}
.skip:focus { transform: translateY(0); }

/* ---------- masthead ---------- */

.mast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--pad);
  border-bottom: 1px solid var(--mahogany);
}

.mast__word {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ivory);
  text-decoration: none;
}
.mast__dot { color: var(--gilt); }

.mast__call {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* ---------- hero ---------- */

.hero {
  display: grid;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  padding: clamp(1.5rem, 5vw, 3.5rem) var(--pad);
  max-width: 68rem;
  margin: 0 auto;
}

.hero__img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--mahogany);
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gilt);
}

h1 {
  margin: 0 0 0.7rem;
  font-family: var(--font-head);
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ivory);
  text-wrap: balance;
}

.lede {
  margin: 0 0 1rem;
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  color: var(--sand);
  max-width: 46ch;
}

.facts {
  margin: 0 0 1.5rem;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gilt);
  font-variant-numeric: tabular-nums;
}

/* ---------- calls to action ---------- */

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.9rem;
  background: var(--gilt);
  color: var(--noir);
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
}
.cta:hover { background: var(--gilt-soft); }
.cta:focus-visible { outline: 2px solid var(--ivory); outline-offset: 3px; }

.cta__sub {
  margin: 0.9rem 0 0;
  font-size: 0.88rem;
  color: var(--taupe);
}

/* ---------- content blocks ---------- */

.block {
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(1.75rem, 5vw, 3rem) var(--pad);
  border-top: 1px solid var(--mahogany);
}

.block h2 {
  margin: 0 0 1rem;
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3.5vw, 1.65rem);
  font-weight: 600;
  color: var(--ivory);
  text-wrap: balance;
}

.block p { margin: 0 0 1rem; max-width: 62ch; }

.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }

.ticks li {
  position: relative;
  padding-left: 1.6rem;
  max-width: 60ch;
}

/* Marker drawn in CSS rather than an emoji or an image request. */
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gilt);
}

.block--cta { text-align: center; }
.block--cta p { margin-left: auto; margin-right: auto; }

/* ---------- faq ---------- */

.faq { display: grid; gap: 0.6rem; }

.faq details {
  background: var(--espresso);
  border: 1px solid var(--mahogany);
  border-radius: 4px;
  padding: 0.85rem 1.1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ivory);
  list-style: none;
  min-height: 32px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.faq summary::-webkit-details-marker { display: none; }

.faq summary::before {
  content: "+";
  color: var(--gilt);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  flex: 0 0 auto;
}
.faq details[open] summary::before { content: "\2212"; }

.faq summary:focus-visible { outline: 2px solid var(--gilt); outline-offset: 3px; }

.faq p { margin: 0.6rem 0 0; color: var(--sand); font-size: 0.95rem; }

/* ---------- footer ---------- */

.foot {
  padding: 2rem var(--pad) 3rem;
  border-top: 1px solid var(--mahogany);
  text-align: center;
  font-size: 0.85rem;
  color: var(--taupe);
}
.foot p { margin: 0 0 0.4rem; }

/* ---------- wide screens ---------- */

@media (min-width: 800px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .skip { transition: transform 0.18s ease; }
}
