/* Radiant Waxing — landing pages. Navy / Lime / White ONLY.
   No lavender (#D0C3F2), no pink (#FF4FA3). Mobile-first. */

:root {
  --navy: #211752;
  --lime: #D6F84C;
  --white: #FFFFFF;
  --muted-70: rgba(255, 255, 255, 0.7);
  --muted-60: rgba(255, 255, 255, 0.6);
  --muted-50: rgba(255, 255, 255, 0.5);
  --hairline: rgba(255, 255, 255, 0.14);

  --font-head: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-script: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 20px 0;
}

section { padding: 28px 0; }

/* ---------- Section A — Hero ---------- */
.hero { text-align: center; padding-top: 34px; }

.hero-logo {
  display: block;
  width: 155px;
  height: auto;
  margin: 0 auto 22px;
}

.market-tag {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}

.hero-headline {
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(38px, 12vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  color: var(--white);
}

.hero-script {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 24px;
  color: var(--muted-70);
  margin-top: 8px;
}

.hero-subline {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--muted-70);
  margin-top: 18px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Section B — Trust bar ---------- */
.trust {
  text-align: center;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 16px 0;
}

.trust-stars {
  color: var(--lime);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.trust-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--white);
}

/* ---------- Section C — Offer box (Bay Area only) ---------- */
.offer {
  background: var(--lime);
  color: var(--navy);
  border-radius: 16px;
  padding: 22px 22px 24px;
  text-align: left;
  margin: 6px 0;
}

.offer-eyebrow {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(33, 23, 82, 0.7);
  margin-bottom: 10px;
}

.offer-heading {
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 0.95;
  color: var(--navy);
}

.offer-terms {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--navy);
  margin-top: 12px;
}

/* ---------- Section D — Find your salon ---------- */
.find-heading {
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

/* ---------- Section E — Location rows ---------- */
.salon-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.salon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 12px 14px;
}

.salon-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.salon-badge {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.salon-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.salon-city {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--white);
}

.salon-address {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--muted-50);
  margin-top: 2px;
}

.salon-phone {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted-60);
  text-decoration: none;
  margin-top: 2px;
}

.salon-phone:hover { color: var(--muted-70); }

.book-btn {
  flex: 0 0 auto;
  background: var(--lime);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 999px;
  transition: transform 0.08s ease, filter 0.12s ease;
}

.book-btn:hover { filter: brightness(0.95); }
.book-btn:active { transform: scale(0.97); }

/* ---------- Section F — Reviews ---------- */
.reviews {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review {
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 14px 16px;
}

.review-stars {
  color: var(--lime);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-quote {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--white);
}

.review-attr {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--muted-60);
  margin-top: 8px;
}

/* ---------- Section G — Footer ---------- */
.footer {
  text-align: center;
  border-top: 1px solid var(--hairline);
  padding: 28px 0 40px;
}

.footer-script {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 28px;
  color: var(--lime);
  margin-bottom: 12px;
}

.footer-brand {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-60);
}

.footer-links {
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 12px;
}

.footer-links a {
  color: var(--muted-50);
  text-decoration: none;
  margin: 0 8px;
}

.footer-links a:hover { color: var(--muted-70); }

/* ====================================================================
   AWARENESS PAGES — additive blocks (reuse the brand classes above).
   /bay-area/ and /utah/. Conversion pages live at /…/book/.
   ==================================================================== */

/* ---------- Hero fade-up (staggered) ---------- */
.hero-fade {
  opacity: 0;
  transform: translateY(10px);
  animation: rwFadeUp 0.6s ease forwards;
}
.hero-fade.d1 { animation-delay: 0.05s; }
.hero-fade.d2 { animation-delay: 0.18s; }
.hero-fade.d3 { animation-delay: 0.31s; }
.hero-fade.d4 { animation-delay: 0.44s; }

@keyframes rwFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-fade { opacity: 1; transform: none; animation: none; }
}

/* ---------- Reviews proof box (LIME) ---------- */
.proof {
  background: var(--lime);
  color: var(--navy);
  border-radius: 16px;
  padding: 26px 22px 28px;
  text-align: center;
  margin: 6px 0;
}

.proof-stars {
  color: var(--navy);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.proof-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
  color: var(--navy);
}

.proof-label {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-top: 6px;
}

.proof-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(33, 23, 82, 0.65);
  margin-top: 8px;
}

/* ---------- Differentiators ---------- */
.diffs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.diff-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.diff-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  stroke: var(--lime);
  fill: none;
  stroke-width: 2;
}

.diff-text {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 1.2;
}

/* ---------- What we do (menu) ---------- */
.menu-heading {
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 18px;
}

.service-list {
  display: flex;
  flex-direction: column;
}

.service-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
}
.service-row:last-child { border-bottom: none; }

.service-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.service-name {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--lime);
}

.service-desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--muted-60);
  margin-top: 2px;
}

.service-price {
  flex: 0 0 auto;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
}

.menu-note {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--muted-70);
  margin-top: 18px;
}
.menu-note .em { color: var(--lime); font-weight: 500; }

.menu-teaser {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted-50);
  margin-top: 8px;
}

/* ---------- Footer second script line (awareness) ---------- */
.footer-welcome {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 15px;
  color: var(--muted-70);
  margin-bottom: 12px;
}

/* ---------- Focus states (accessibility) ---------- */
a:focus-visible,
.book-btn:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 6px;
}
