/* Honey Lips® – preview site
   Palette taken from the clinic's own material: a black brush wordmark on white, warmed with
   the honey the name asks for. */

:root {
  --paper:      #FBF7F2;
  --paper-deep: #F3EBE1;
  --blush:      #F0E0D5;
  --ink:        #17120E;
  --ink-soft:   #4A4038;
  --muted:      #6E6055;
  --honey:      #A9762A;   /* 4.9:1 on --paper */
  --honey-lift: #C9963F;
  --line:       #E2D6C8;
  --white:      #FFFFFF;

  --measure: 34rem;
  --wrap: 76rem;
  --r: 2px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Karla', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* figure carries a 40px inline margin by default, which insets every photo and review card
   inside its own grid cell */
figure { margin: 0; }

h1, h2, h3, .display {
  font-family: 'Newsreader', ui-serif, Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

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

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  z-index: 60;
}
.skip:focus { left: 0.75rem; top: 0.75rem; }

/* ---------- offer bar + header ---------- */

.offer {
  background: var(--ink);
  color: #F0E7DC;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.6rem 1rem;
}
.offer b { color: var(--honey-lift); font-weight: 500; }

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-head .wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.5rem;
}
.brand { display: flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand img { width: 118px; }

.nav {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
  font-size: 0.9375rem;
}
.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}
.nav a:hover { color: var(--ink); border-bottom-color: var(--honey); }

.head-call {
  font-variant-numeric: tabular-nums;
  text-decoration: none;
  font-size: 0.9375rem;
  color: var(--ink);
  white-space: nowrap;
}
.head-call:hover { color: var(--honey); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font: inherit;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:hover { background: var(--honey); border-color: var(--honey); color: var(--white); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn--light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--light:hover { background: var(--honey-lift); border-color: var(--honey-lift); color: var(--ink); }

.btn--wide { padding-inline: 2.25rem; }

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 6vw, 5rem);
}
.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.4rem);
}
.hero h1 em {
  font-style: italic;
  color: var(--honey);
}
.eyebrow {
  font-size: 0.78125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.25rem;
}
.hero-lead {
  max-width: var(--measure);
  color: var(--ink-soft);
  font-size: 1.125rem;
  margin: 1.5rem 0 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r);
}

.scores {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2.5rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.score { padding: 0.35rem 0; }
.score b {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: 1.75rem;
  display: block;
  line-height: 1.15;
}
.score span { font-size: 0.8125rem; color: var(--muted); letter-spacing: 0.04em; }

/* ---------- generic section ---------- */

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section--rule { border-top: 1px solid var(--line); }
.section--deep { background: var(--paper-deep); }
.section--ink { background: var(--ink); color: #EFE6DB; }
.section--ink h2, .section--ink h3 { color: var(--paper); }
.section--ink .lead, .section--ink p { color: #CDBFB1; }

.section-head { max-width: var(--measure); margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
.section-head .lead { color: var(--ink-soft); margin-top: 1rem; }

/* ---------- treatments ---------- */

.treatments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.treatment {
  background: var(--paper);
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
}
.treatment h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.treatment p { color: var(--ink-soft); font-size: 0.9688rem; }
.treatment ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.treatment li { padding: 0.4rem 0; border-bottom: 1px dotted var(--line); }
.treatment li:last-child { border-bottom: 0; }
.from {
  margin-top: auto;
  font-family: 'Newsreader', serif;
  font-size: 1.375rem;
  color: var(--honey);
}
.from small {
  display: block;
  font-family: 'Karla', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- results ---------- */

.results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.5rem;
}
.result img { border-radius: var(--r); width: 100%; }
.result figcaption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.note-strip {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  border-left: 2px solid var(--honey);
  background: var(--white);
  max-width: 46rem;
}
.note-strip p { color: var(--ink-soft); }

/* ---------- split blocks ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media img { border-radius: var(--r); width: 100%; }
.split-body h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 1.25rem; }
.split-body p { color: var(--ink-soft); }
.split-body .btn { margin-top: 1.5rem; }

.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pair img { height: 100%; object-fit: cover; }

/* ---------- reviews ---------- */

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5rem;
}
.review {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section--deep .review { background: var(--paper); }
.review blockquote { margin: 0; font-size: 1rem; color: var(--ink-soft); }
.review cite {
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: auto;
}
.review cite b { color: var(--ink); font-weight: 500; display: block; font-size: 0.9375rem; }
.stars { color: var(--honey); letter-spacing: 0.18em; font-size: 0.875rem; }

/* ---------- price table ---------- */

.prices { width: 100%; border-collapse: collapse; font-size: 0.9688rem; }
.prices caption { text-align: left; color: var(--muted); font-size: 0.875rem; padding-bottom: 0.75rem; }
.prices th, .prices td { text-align: left; padding: 0.85rem 1rem 0.85rem 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.prices th { font-weight: 500; }
.prices thead th {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.prices td:last-child, .prices th:last-child {
  text-align: right;
  padding-right: 0;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
/* the group heading spans both columns, so it is also :last-child and would otherwise pick up
   the right-alignment meant for the price column */
.prices tbody th[scope="rowgroup"] {
  padding-top: 2rem;
  font-family: 'Newsreader', serif;
  font-size: 1.25rem;
  border-bottom-color: var(--ink);
  text-align: left;
}
.price-foot { margin-top: 1.75rem; color: var(--muted); font-size: 0.875rem; max-width: 44rem; }

/* ---------- visit ---------- */

.visit { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); }
.facts { list-style: none; margin: 0; padding: 0; }
.facts li { padding: 1.15rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); display: grid; grid-template-columns: 8.5rem 1fr; gap: 1rem; }
.facts li:first-child { padding-top: 0; }
.facts dt, .facts .k {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A2917F;
  padding-top: 0.28rem;
}
.facts .v { color: var(--paper); }
.facts .v a { color: var(--honey-lift); text-decoration: none; border-bottom: 1px solid rgba(201, 150, 63, 0.4); }
.facts .v a:hover { border-bottom-color: var(--honey-lift); }
.visit-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

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

.site-foot {
  border-top: 1px solid var(--line);
  padding: 3rem 0 3.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.foot-top { display: flex; flex-wrap: wrap; gap: 2rem 3rem; align-items: flex-start; }
.foot-top img { width: 104px; opacity: 0.9; }
.foot-links { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-left: auto; }
.foot-links a { color: var(--ink-soft); text-decoration: none; border-bottom: 1px solid var(--line); }
.foot-links a:hover { color: var(--honey); }
.foot-legal { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); max-width: 52rem; }
.foot-legal p { margin-bottom: 0.6rem; }

/* ---------- 404 ---------- */

.oops {
  min-height: 100vh;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 1.25rem;
  padding: 3rem 1.5rem;
}
.oops img { width: 150px; margin: 0 auto 1rem; }
.oops h1 { font-size: clamp(2rem, 6vw, 3rem); }
.oops p { color: var(--ink-soft); max-width: 30rem; margin-inline: auto; }
.oops .btn { justify-self: center; }

/* ---------- responsive ---------- */

@media (max-width: 60rem) {
  .hero { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .split, .visit { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: -1; }
  .nav { display: none; }
}

@media (max-width: 34rem) {
  body { font-size: 1rem; }
  .wrap { width: calc(100% - 2rem); }
  .facts li { grid-template-columns: 1fr; gap: 0.2rem; }
  .prices th, .prices td { padding-right: 0.5rem; }

  /* tap-to-call stays in the header on a phone, which is where it matters most: the number
     shortens to a label rather than disappearing */
  .site-head .wrap { gap: 0.6rem; }
  .brand img { width: 96px; }
  .head-call { font-size: 0.875rem; margin-left: auto; }
  .head-call .tel-full { display: none; }
  .btn { padding: 0.75rem 1.15rem; }
}

/* the full number is shown wherever it fits; the short label is the phone fallback */
.head-call .tel-short { display: none; }
@media (max-width: 34rem) {
  .head-call .tel-short { display: inline; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
