:root {
  --ink: #171315;
  --ink-soft: rgba(23, 19, 21, 0.72);
  --mist: #f3eef0;
  --paper: #fcfafb;
  --panel: #ebe3e6;
  --blush: #f5e7df;
  --rose: #8f5e68;
  --gold: #b79a45;
  --line: rgba(23, 19, 21, 0.1);
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --body: "Manrope", system-ui, sans-serif;
  --radius: 0.35rem;
  --max: 40rem;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 4rem;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.brand strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin: 0 0 0.4rem;
}
h1, h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.5rem;
}
h1 { font-size: clamp(2rem, 6vw, 3rem); }
h1 em, h2 em { font-style: italic; }
.lede { color: var(--ink-soft); margin: 0 0 1.5rem; }

.progress {
  display: flex;
  gap: 0.35rem;
  margin: 0 0 1.5rem;
}
.progress span {
  flex: 1;
  height: 3px;
  background: var(--panel);
}
.progress span.on { background: var(--rose); }

.choices { display: grid; gap: 0.55rem; }
.choice {
  display: grid;
  grid-template-columns: 2.6rem 1fr auto;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  text-align: left;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.choice:hover, .choice.on { border-color: var(--rose); }
.choice.on { background: var(--blush); }
.choice__ico {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--mist);
  color: var(--rose);
}
.choice.on .choice__ico { background: #fff; }
.choice__ico .ico { width: 1.4rem; height: 1.4rem; }
.choice__ico img {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  object-fit: cover;
}
.choice__body { display: grid; gap: 0.1rem; min-width: 0; }
.choice__body strong { font-weight: 600; line-height: 1.3; }
.choice__body small {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.35;
}
.choice__price {
  font-family: var(--display);
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  color: var(--rose);
  white-space: nowrap;
}

.note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  background: var(--blush);
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
  margin: 0 0 1rem;
}
.slot {
  display: grid;
  gap: 0.15rem;
  padding: 0.8rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.slot small { color: var(--ink-soft); font-size: 0.75rem; }
.pin {
  display: grid;
  grid-template-columns: repeat(3, 4.2rem);
  gap: 0.55rem;
  justify-content: center;
  margin: 1.5rem 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  background: var(--rose);
  color: #fff;
}
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn--line { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ink { background: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink-soft); }
.btn--zone {
  width: 100%;
  min-height: 6.5rem;
  font-size: 1rem;
  letter-spacing: 0.14em;
}
.btn--zone.is-out { background: var(--ink); }
.actions { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.25rem; }

.days {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0 0 0.75rem;
  margin: 0 0 0.75rem;
}
.day {
  flex: 0 0 auto;
  min-width: 4.4rem;
  padding: 0.65rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font: inherit;
  cursor: pointer;
}
.day on, .day.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.day b { display: block; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.slots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.45rem; }
.slot.on { border-color: var(--ink); background: var(--blush); }

label { display: grid; gap: 0.3rem; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.85rem; }
input, textarea {
  font: inherit;
  padding: 0.8rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.policy { font-size: 0.88rem; color: var(--ink-soft); }
.card {
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  margin: 0 0 0.75rem;
}
.muted { color: var(--ink-soft); font-size: 0.9rem; }
.err { color: #8a2430; font-size: 0.92rem; margin: 0.5rem 0; }
.ok { color: #2c5a3c; }
.price { font-family: var(--display); font-size: 1.6rem; margin: 0; }
.row { display: flex; justify-content: space-between; gap: 1rem; }
.board { display: grid; gap: 0.6rem; }
.appt {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--rose);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.appt[data-staff="rose"] { border-left-color: var(--gold); }
.pin button {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-size: 1.25rem;
  cursor: pointer;
}
.dots { display: flex; gap: 0.45rem; justify-content: center; }
.dots i {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--panel);
}
.dots i.on { background: var(--ink); }

@media (max-width: 520px) {
  .slots { grid-template-columns: 1fr 1fr; }
}

/* Service detail: a quiet disclosure under each choice, so the flow stays one
   tap deep for people who already know what they want. */
.choicebox { display: grid; }
.choicebox--open .choice { border-color: var(--rose); }
.info-toggle {
  justify-self: start;
  background: none;
  border: 0;
  margin: 0.1rem 0 0;
  padding: 0.5rem 0.15rem 0.5rem 3.45rem;
  font: inherit;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  color: var(--rose);
  cursor: pointer;
}
.info-toggle::before {
  content: "";
  display: inline-block;
  width: 0.85rem;
  border-top: 1px solid currentColor;
  vertical-align: 0.25rem;
  margin-right: 0.45rem;
  opacity: 0.6;
}
.infopanel {
  margin: 0 0 0.35rem 3.45rem;
  padding: 0 0 0.2rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.infopanel p { margin: 0 0 0.4rem; }
.infopanel__for strong { color: var(--ink); font-weight: 600; }
.infopanel ul { margin: 0; padding-left: 1rem; }
.infopanel li { margin: 0.12rem 0; }

.linkish {
  background: none;
  border: 0;
  padding: 0.35rem 0.15rem;
  font: inherit;
  font-size: 0.8rem;
  color: var(--rose);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.linkish--top {
  display: block;
  margin: -0.6rem 0 0.9rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
}

.hero {
  position: relative;
  margin: 0 0 1.4rem;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 7;
}
.hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__text {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 0.1rem;
  padding: 2.4rem 1rem 0.9rem;
  background: linear-gradient(to top, rgba(23, 19, 21, 0.62), transparent);
  color: #fff;
}
.hero__text span {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero__text strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.2;
}

.sheet {
  position: fixed;
  inset: 0;
  background: rgba(23, 19, 21, 0.45);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 40;
}
.sheet__inner {
  background: var(--paper);
  width: min(46rem, 100%);
  max-height: 86vh;
  border-radius: 0.6rem 0.6rem 0 0;
  padding: 1.1rem 1rem 1.3rem;
  display: grid;
  gap: 0.6rem;
  align-content: start;
}
.sheet__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.sheet__head h2 { font-size: 1.3rem; margin: 0; }
.sheet__scroll { overflow: auto; -webkit-overflow-scrolling: touch; }
.cmp { border-collapse: collapse; width: 100%; font-size: 0.8rem; }
.cmp th, .cmp td {
  border-bottom: 1px solid var(--line);
  padding: 0.5rem 0.6rem;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}
.cmp thead th {
  position: sticky;
  top: 0;
  background: var(--paper);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
}
.cmp tbody th { font-weight: 600; white-space: normal; min-width: 9.5rem; }
.cmp tbody th small { display: block; font-weight: 400; color: var(--rose); }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }

@media (max-width: 22.5rem) {
  .wrap { width: calc(100% - 1.5rem); }
  .choice { padding: 0.85rem 0.8rem; gap: 0.7rem; grid-template-columns: 2.3rem 1fr auto; }
  .choice__ico { width: 2.3rem; height: 2.3rem; }
  .info-toggle, .infopanel { padding-left: 3rem; margin-left: 0; }
  .infopanel { margin-left: 3rem; padding-left: 0; }
}
@media (min-width: 40rem) {
  .sheet { align-items: center; }
  .sheet__inner { border-radius: 0.6rem; padding: 1.3rem 1.4rem; }
}
