:root {
  --canvas: #f5f2ec;
  --surface: #fcfbf8;
  --surface-2: #ebe7e1;
  --ink: #242628;
  --muted: #6f7072;
  --wine: #8c2f4d;
  --wine-dark: #65223a;
  --rose: #d6bbc3;
  --stone: #c8c2ba;
  --line: rgba(36, 38, 40, .14);
  --shadow: 0 20px 55px rgba(20, 22, 24, .08);
  --ui: "Segoe UI", Arial, Helvetica, sans-serif;
  --display: Georgia, "Times New Roman", serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--ui);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
[hidden] { display: none !important; }
a { color: inherit; }
button,
input,
select,
textarea { font: inherit; }
button { color: inherit; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible { outline: 2px solid var(--wine); outline-offset: 2px; }

.shell {
  width: min(calc(100% - 48px), 1240px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
}

.skip-link:focus { transform: none; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal-delay { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal.visible { opacity: 1; transform: none; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 242, 236, .94);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: var(--ink);
  text-decoration: none;
}

.brand-monogram {
  position: relative;
  font-size: 25px;
  font-weight: 760;
  letter-spacing: -.045em;
  line-height: 1;
}

.brand-monogram i {
  position: absolute;
  top: -7px;
  right: -10px;
  color: var(--wine);
  font-size: 9px;
  font-style: normal;
}

.brand-word { display: grid; gap: 0; padding-left: 11px; border-left: 1px solid var(--line); }
.brand-word b { font-size: 12px; letter-spacing: .16em; line-height: 1.1; }
.brand-word small { color: var(--muted); font-size: 8px; letter-spacing: .06em; }

.desktop-nav { display: flex; align-items: center; gap: 29px; }
.desktop-nav a {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}
.desktop-nav a:hover { color: var(--wine); }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-address { color: var(--muted); font-size: 10px; }

.menu-button {
  width: 43px;
  height: 43px;
  display: none;
  place-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
}

.menu-button span { width: 18px; height: 1px; display: block; background: var(--ink); }

.mobile-menu {
  position: fixed;
  z-index: 999;
  inset: 70px 0 auto;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  padding: 22px 24px 34px;
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
  box-shadow: var(--shadow);
}

.mobile-menu a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -.03em;
  text-decoration: none;
}

.button {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .015em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover { transform: translateY(-1px); }
.button:disabled { opacity: .56; cursor: wait; transform: none; }
.button-large { min-height: 52px; padding-inline: 24px; }
.button-primary { background: var(--wine); color: #fff; }
.button-primary:hover { background: var(--wine-dark); }
.button-secondary { border-color: var(--line); background: transparent; color: var(--ink); }
.button-light { background: #fff; color: var(--ink); }

.launch-banner {
  border-bottom: 1px solid var(--line);
  background: #e9e6e1;
}

.launch-banner .shell {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block: 8px;
}

.launch-banner b { color: var(--wine); font-size: 8px; letter-spacing: .13em; white-space: nowrap; }
.launch-banner span { color: var(--muted); font-size: 9px; }

.marketplace-hero {
  position: relative;
  overflow: hidden;
  padding: 65px 0 58px;
}

.marketplace-hero::after {
  position: absolute;
  z-index: -1;
  top: -110px;
  right: -70px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(140, 47, 77, .09);
  border-radius: 50%;
  content: "";
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
  align-items: end;
  gap: 75px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--wine);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
}

.hero-copy h1,
.catalog-heading h2,
.booking-heading h2,
.compact-heading h2,
.visit-copy h2 {
  margin: 0;
  font-size: clamp(46px, 5.9vw, 79px);
  font-weight: 650;
  line-height: .99;
  letter-spacing: -.055em;
}

.hero-copy h1 em,
.catalog-heading h2 em,
.compact-heading h2 em,
.visit-copy h2 em {
  color: var(--wine);
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
}

.hero-lead {
  max-width: 710px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

.client-return-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.returning-client {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(252, 251, 248, .7);
}

.returning-client span { color: var(--muted); font-size: 9px; }
.returning-client b { color: var(--ink); }
.returning-client button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--wine);
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.my-bookings-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 9px 12px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
}

.my-bookings-link span { margin-left: 4px; color: rgba(255,255,255,.58); }

.hero-promise {
  border-top: 1px solid var(--line);
}

.hero-promise > div {
  min-height: 76px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}

.hero-promise > div > span { color: var(--wine); font-size: 9px; font-weight: 800; }
.hero-promise p { display: grid; gap: 2px; margin: 0; }
.hero-promise b { font-size: 13px; }
.hero-promise small { color: var(--muted); font-size: 10px; }

.marketplace-stage {
  padding: 76px 0 95px;
  background: var(--surface);
}

.style-match {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: stretch;
  gap: 1px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}
.style-match[hidden] { display: none; }

.style-match > div:first-child {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 22px;
  background: var(--ink);
  color: #fff;
}

.style-match > div:first-child small { color: var(--rose); font-size: 7px; font-weight: 850; letter-spacing: .12em; }
.style-match > div:first-child b { font-size: 15px; }
.style-match-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }

.style-match-actions button {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 15px 18px;
  border: 0;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}

.style-match-actions button:hover,
.style-match-actions button.active { background: #eee6e8; color: var(--wine-dark); }
.style-match-actions button:disabled { color: var(--muted); cursor: wait; opacity: .62; }
.style-match-actions button span { font-size: 11px; font-weight: 750; }
.style-match-actions button small { color: var(--muted); font-size: 8px; }

.fast-openings {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1px;
  margin-bottom: 58px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.fast-openings-copy {
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 20px 22px;
  background: #eee6e8;
}

.fast-openings-copy small { color: var(--wine); font-size: 7px; font-weight: 850; letter-spacing: .12em; }
.fast-openings-copy h2 { margin: 0; font-size: 15px; line-height: 1.2; letter-spacing: -.02em; }
.fast-openings-copy p { margin: 0; color: var(--muted); font-size: 8px; }
.fast-opening-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }

.fast-opening-list > button {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 2px 12px;
  padding: 14px 17px;
  border: 0;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: background .18s ease;
}

.fast-opening-list > button:hover,
.fast-opening-list > button:focus-visible { background: var(--canvas); outline: 0; }
.fast-opening-list > button small { grid-column: 1 / -1; color: var(--wine); font-size: 7px; font-weight: 800; letter-spacing: .08em; }
.fast-opening-list > button b { font-size: 12px; }
.fast-opening-list > button strong { grid-row: 2 / span 2; grid-column: 2; align-self: center; color: var(--wine); font-size: 15px; }
.fast-opening-list > button span { color: var(--muted); font-size: 8px; }
.fast-opening-message { grid-column: 1 / -1; margin: 0; padding: 27px 22px; background: #fff; color: var(--muted); font-size: 9px; }

.marketplace-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(390px, .8fr);
  align-items: start;
  gap: 58px;
}

.catalog-heading { max-width: 720px; margin-bottom: 33px; }
.catalog-heading h2,
.compact-heading h2,
.visit-copy h2 { font-size: clamp(39px, 4.5vw, 59px); }
.catalog-heading > p:last-child,
.booking-heading > p:last-child,
.visit-copy > p:last-child {
  max-width: 620px;
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.master-grid { display: grid; gap: 14px; }

.master-item {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  align-items: center;
  gap: 5px 20px;
  min-height: 190px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.master-item:hover { transform: translateY(-2px); box-shadow: 0 13px 38px rgba(20, 22, 24, .07); }
.master-item.selected { border-color: var(--wine); box-shadow: inset 0 0 0 1px var(--wine); }
.master-item.phone-only { background: linear-gradient(135deg, #fff 0%, #fff 72%, #f7f3f0 100%); }
.master-item.profile-pending > p { max-width: 560px; color: #6f6661; }
.master-item.featured-master {
  grid-template-columns: 148px minmax(0, 1fr) auto;
  align-items: start;
  padding: 22px;
  border-color: rgba(140, 47, 77, .34);
  background:
    radial-gradient(circle at 94% 7%, rgba(140, 47, 77, .08), transparent 31%),
    linear-gradient(135deg, #fff 0%, #fff 61%, #fbf6f7 100%);
  box-shadow: 0 18px 50px rgba(89, 31, 50, .08);
}

.master-avatar {
  width: 112px;
  height: 148px;
  display: grid;
  grid-row: 1 / span 5;
  place-content: center;
  border-radius: 10px;
  background: #e3dbd2;
  color: #655a52;
  font-size: 54px;
  font-weight: 650;
}

.master-avatar.has-photo {
  position: relative;
  overflow: hidden;
  place-content: stretch;
  background: #eee5df;
}

.master-avatar.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 18%;
}

.featured-master .master-avatar {
  width: 148px;
  height: 218px;
  align-self: start;
  box-shadow: 0 8px 24px rgba(75, 47, 54, .12);
}

.master-item:nth-child(2) .master-avatar { background: #dfe1df; color: #555d60; }
.master-item:nth-child(3) .master-avatar { background: #e5d8dc; color: var(--wine-dark); }
.master-specialty { grid-column: 2; color: var(--wine); font-size: 8px; font-weight: 850; letter-spacing: .12em; }
.master-item h3 { grid-column: 2; margin: 0; font: 400 33px/.95 var(--display); }
.master-item > p { grid-column: 2; margin: 2px 0; color: var(--muted); font-size: 10px; }

.master-tags {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}

.master-tags span {
  padding: 3px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 7px;
}

.service-preview { grid-column: 2; display: grid; gap: 3px; margin-top: 4px; }
.master-featured-badge {
  width: fit-content;
  margin-bottom: 4px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .1em;
}

.service-preview .master-disclosure,
.service-preview .master-extra-copy {
  margin: 0 0 4px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 8px;
  line-height: 1.45;
}

.service-preview .master-disclosure {
  border: 1px solid rgba(140, 47, 77, .24);
  background: #f8eef1;
  color: var(--wine-dark);
  font-weight: 700;
}

.service-preview .master-extra-copy {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
  color: var(--muted);
}
.service-preview__choice {
  width: 100%;
  min-height: 34px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 7px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  text-align: left;
  cursor: pointer;
}
.service-preview__choice:hover,
.service-preview__choice:focus-visible {
  border-color: var(--line);
  background: var(--canvas);
  outline: 0;
}
.service-preview__choice.is-static { cursor: default; }
.service-preview__choice.is-static:hover { border-color: transparent; background: transparent; }
.service-preview__choice[hidden] { display: none; }
.service-preview b { color: var(--ink); font-weight: 650; }
.service-preview em { color: var(--wine); font-style: normal; white-space: nowrap; }
.service-preview small { color: var(--muted); font-size: 8px; font-weight: 400; }

.service-list-toggle {
  min-height: 38px;
  margin-top: 3px;
  padding: 8px 10px;
  border: 1px dashed rgba(140, 47, 77, .38);
  border-radius: 8px;
  background: transparent;
  color: var(--wine);
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.service-list-toggle:hover,
.service-list-toggle:focus-visible { border-style: solid; background: #f8eef1; }

.master-next-slot {
  width: 100%;
  min-height: 59px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2px 12px;
  margin-bottom: 4px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--canvas);
  color: var(--ink);
  text-align: left;
}

.master-next-slot small {
  grid-column: 1 / -1;
  color: var(--wine);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .08em;
}

.master-next-slot b { font-size: 10px; line-height: 1.25; }
.master-next-slot span { color: var(--muted); font-size: 8px; text-align: right; }
.master-next-slot:disabled { opacity: 1; }
.master-next-slot.is-loading b { color: var(--muted); }
.master-next-slot.is-available {
  border-color: rgba(140, 47, 77, .34);
  background: #f5ecef;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.master-next-slot.is-available:hover,
.master-next-slot.is-available:focus-visible {
  border-color: var(--wine);
  background: #f1e3e7;
  transform: translateY(-1px);
}

.master-next-slot.is-waitlist {
  border-color: rgba(140, 47, 77, .34);
  background: #f5ecef;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.master-next-slot.is-waitlist:hover,
.master-next-slot.is-waitlist:focus-visible {
  border-color: var(--wine);
  background: #f1e3e7;
  transform: translateY(-1px);
}

.master-next-slot.is-phone {
  border-color: rgba(140, 47, 77, .2);
  background: #f8f2f3;
}

.master-next-slot.is-phone b { color: var(--wine-dark); }

.master-item .button {
  grid-column: 3;
  grid-row: 1 / span 5;
  min-width: 142px;
  padding-inline: 14px;
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.master-item.selected .button { border-color: var(--wine); background: var(--wine); }

.skeleton-card {
  height: 190px;
  border-radius: 14px;
  background: linear-gradient(90deg, #ebe8e2, #fff, #ebe8e2);
  background-size: 200% 100%;
  animation: skeleton 1.35s linear infinite;
}

@keyframes skeleton { to { background-position: -200% 0; } }

.empty-masters {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 14px;
}

.empty-masters h3 { margin: 0 0 6px; font-size: 24px; }
.empty-masters p { margin: 0; color: var(--muted); font-size: 12px; }

.marketplace-booking {
  position: sticky;
  top: 96px;
}

.booking-heading { margin-bottom: 23px; }
.booking-heading h2 { font-size: clamp(38px, 4.2vw, 54px); }

.form-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--canvas);
}

.panel-head { margin-bottom: 22px; }
.panel-head > span { color: var(--wine); font-size: 8px; font-weight: 850; letter-spacing: .13em; }
.panel-head h3 { margin: 7px 0 4px; font-size: 27px; line-height: 1.05; letter-spacing: -.03em; }
.panel-head p { margin: 0; color: var(--muted); font-size: 10px; }

form { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.field label {
  color: var(--ink);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .03em;
}
.field-label {
  color: var(--ink);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .03em;
}
.field label span { color: var(--muted); font-weight: 450; }
.field-help { color: var(--muted); font-size: 8px; line-height: 1.4; }

.service-guide {
  border-top: 1px solid var(--line);
  padding-top: 7px;
}

.service-guide summary {
  width: fit-content;
  color: var(--wine);
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
}

.service-guide > div { display: grid; gap: 1px; margin-top: 8px; border: 1px solid var(--line); border-radius: 7px; overflow: hidden; background: var(--line); }
.service-guide p { display: grid; gap: 1px; margin: 0; padding: 8px 10px; background: #fff; }
.service-guide b { font-size: 8px; }
.service-guide span { color: var(--muted); font-size: 7px; }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
}

.field textarea { min-height: 66px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--wine); box-shadow: 0 0 0 3px rgba(140, 47, 77, .1); }

.quick-date-block {
  display: grid;
  gap: 9px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.quick-date-head { display: flex; justify-content: space-between; gap: 12px; }
.quick-date-head span { font-size: 9px; font-weight: 750; }
.quick-date-head small { color: var(--muted); font-size: 7px; }
.quick-date-picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }

.quick-date-picker button {
  min-height: 45px;
  display: grid;
  place-content: center;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--canvas);
  cursor: pointer;
}

.quick-date-picker button:hover,
.quick-date-picker button.active {
  border-color: var(--wine);
  background: var(--wine);
  color: #fff;
}

.quick-date-picker b { font-size: 9px; }
.quick-date-picker span { color: var(--muted); font-size: 7px; }
.quick-date-picker button.active span,
.quick-date-picker button:hover span { color: rgba(255,255,255,.72); }
.quick-date-message {
  grid-column: 1 / -1;
  margin: 0;
  padding: 7px 2px;
  color: var(--muted);
  font-size: 8px;
}

.time-slot-field { align-content: start; }
.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  border-radius: 8px;
}

.time-slot-button {
  min-width: 0;
  min-height: 44px;
  padding: 7px 5px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, color .16s ease;
}

.time-slot-button:hover,
.time-slot-button.active {
  border-color: var(--wine);
  background: var(--wine);
  color: #fff;
}

.time-slot-button:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 2px;
}

.time-slot-grid.invalid {
  outline: 2px solid var(--wine);
  outline-offset: 3px;
}

.time-slot-message {
  grid-column: 1 / -1;
  min-height: 44px;
  display: grid;
  place-content: center start;
  margin: 0;
  padding: 8px 10px;
  border: 1px dashed var(--line);
  border-radius: 7px;
  background: rgba(255,255,255,.48);
  color: var(--muted);
  font-size: 8px;
}

.visually-hidden-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.honey-field { position: absolute; left: -10000px; }
.slot-hint { min-height: 17px; color: var(--wine); font-size: 9px; }

.waitlist-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.waitlist-entry span { display: grid; gap: 1px; }
.waitlist-entry b { font-size: 9px; }
.waitlist-entry small { color: var(--muted); font-size: 7px; }
.waitlist-entry button,
.waitlist-mode > button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--wine);
  font-size: 8px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.waitlist-mode {
  display: grid;
  gap: 9px;
  padding: 13px;
  border: 1px solid var(--wine);
  border-radius: 9px;
  background: #eee6e8;
}

.waitlist-mode > div { display: grid; gap: 2px; }
.waitlist-mode small { color: var(--wine); font-size: 7px; font-weight: 850; letter-spacing: .1em; }
.waitlist-mode b { font-size: 11px; }
.waitlist-mode p { margin: 0; color: var(--muted); font-size: 8px; }
.waitlist-mode label { font-size: 8px; font-weight: 750; }
.waitlist-mode select {
  width: 100%;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font-size: 10px;
}
.waitlist-mode > button { width: fit-content; }

.nail-profile {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.nail-profile.invalid { border-color: #a22639; box-shadow: 0 0 0 3px rgba(162, 38, 57, .08); }
.nail-profile legend { padding: 0 5px; font-size: 9px; font-weight: 800; }
.nail-profile legend span { color: var(--wine); font-size: 7px; font-weight: 550; }
.nail-profile-question { display: grid; gap: 6px; }
.nail-profile-question > b { font-size: 8px; }
.nail-profile > p { margin: 0; color: var(--muted); font-size: 8px; }
.nail-profile > p.attention { color: var(--wine-dark); }

.choice-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.choice-chips button {
  min-height: 31px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--canvas);
  color: var(--muted);
  font-size: 8px;
  cursor: pointer;
}
.choice-chips button:hover,
.choice-chips button:focus-visible,
.choice-chips button.active {
  border-color: var(--wine);
  background: var(--wine);
  color: #fff;
  outline: 0;
}

.nail-brief {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.nail-brief legend { margin-bottom: 6px; padding: 0; font-size: 9px; font-weight: 750; }
.nail-brief-options { display: flex; flex-wrap: wrap; gap: 6px; }

.nail-brief-options button {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 8px;
  cursor: pointer;
}

.nail-brief-options button:hover,
.nail-brief-options button.active {
  border-color: var(--wine);
  background: #eee6e8;
  color: var(--wine-dark);
}

.nail-brief p { margin: 0; color: var(--muted); font-size: 8px; }
.nail-brief p.attention { color: var(--wine-dark); }
.repair-details {
  display: grid;
  gap: 6px;
  padding: 9px;
  border-radius: 8px;
  background: #eee6e8;
}
.repair-details > span { font-size: 8px; font-weight: 700; }
.form-divider { position: relative; margin: 2px 0; border-top: 1px solid var(--line); }
.form-divider span {
  position: relative;
  top: -8px;
  padding-right: 9px;
  background: var(--canvas);
  color: var(--muted);
  font-size: 7px;
  letter-spacing: .11em;
}

.consent {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 8px;
  color: var(--muted);
  font-size: 8px;
}
.consent input { width: 16px; height: 16px; margin: 1px 0 0; accent-color: var(--wine); }
.consent a { color: var(--wine); }

.booking-summary {
  display: grid;
  gap: 9px;
  padding: 14px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
}

.booking-summary > span { color: var(--rose); font-size: 7px; font-weight: 850; letter-spacing: .12em; }
.booking-summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.14); }
.booking-summary p { min-width: 0; display: grid; gap: 3px; margin: 0; padding: 10px; background: #2d2f31; }
.booking-summary small { color: rgba(255,255,255,.48); font-size: 6px; letter-spacing: .08em; }
.booking-summary b { overflow: hidden; font-size: 9px; text-overflow: ellipsis; }

.submit-button { width: 100%; min-height: 51px; justify-content: space-between; }
.submit-button i { font-size: 16px; font-style: normal; }
.form-status { min-height: 18px; color: var(--muted); font-size: 10px; }
.form-status.success { color: #23653e; }
.form-status.error { color: #a22639; }

.booking-success-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
}

.booking-success-card > small { color: var(--rose); font-size: 7px; font-weight: 850; letter-spacing: .13em; }
.booking-success-card h3 { margin: 0; font-size: 24px; line-height: 1.05; }
.booking-success-card > p { margin: 0; color: rgba(255,255,255,.68); font-size: 10px; }
.booking-success-card > div { display: grid; gap: 2px; padding: 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; }
.booking-success-card > div b { font-size: 9px; }
.booking-success-card > div span { color: rgba(255,255,255,.55); font-size: 8px; }
.booking-success-card nav { display: flex; flex-wrap: wrap; gap: 16px; }
.booking-success-card nav a,
.booking-success-card nav button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 9px;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--rose);
  text-underline-offset: 4px;
  cursor: pointer;
}

.booking-note {
  display: grid;
  gap: 2px;
  margin-top: 13px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 9px;
}
.booking-note b { font-size: 10px; }
.booking-note span { color: var(--muted); font-size: 9px; }

.how-section { padding: 92px 0; background: #242628; color: #fff; }
.compact-heading { max-width: 760px; }
.compact-heading .section-label { color: var(--rose); }
.compact-heading h2 em { color: var(--rose); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 47px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  overflow: hidden;
}

.steps-grid article {
  min-height: 200px;
  padding: 27px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.steps-grid article:last-child { border-right: 0; }
.steps-grid span { color: var(--rose); font-size: 9px; }
.steps-grid h3 { margin: 69px 0 8px; font-size: 22px; }
.steps-grid p { margin: 0; color: rgba(255,255,255,.6); font-size: 11px; }

.visit-section { padding: 92px 0; background: var(--surface-2); }
.visit-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(430px, 1.2fr);
  align-items: center;
  gap: 75px;
}

.address-card {
  padding: 40px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
}
.address-card > small { color: var(--rose); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.address-card h3 { margin: 13px 0 0; font-size: clamp(35px, 4vw, 52px); line-height: 1; letter-spacing: -.045em; }
.address-card > p { margin: 7px 0 30px; color: rgba(255,255,255,.55); }
.address-facts { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid rgba(255,255,255,.15); }
.address-facts span { display: grid; gap: 4px; padding: 18px 14px; border-right: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.58); font-size: 9px; }
.address-facts span:first-child { padding-left: 0; }
.address-facts span:last-child { border-right: 0; }
.address-facts b { color: #fff; font-size: 10px; }
.address-actions { display: flex; align-items: center; gap: 22px; margin-top: 28px; }
.text-link { color: #fff; font-size: 11px; font-weight: 700; text-decoration-color: var(--rose); text-underline-offset: 4px; }

.site-footer { padding: 58px 0 22px; background: #181a1b; color: #fff; }
.footer-layout { display: grid; grid-template-columns: 1.6fr .7fr 1fr; gap: 50px; }
.footer-brand { display: grid; gap: 8px; }
.footer-brand > span { font-size: 20px; font-weight: 750; letter-spacing: .02em; }
.footer-brand b { font-size: 13px; }
.footer-brand p { margin: 0; color: rgba(255,255,255,.47); font-size: 9px; }
.footer-links { display: grid; align-content: start; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.62); font-size: 10px; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.35);
  font-size: 8px;
}

.mobile-dock { display: none; }

.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.redirect-card { max-width: 480px; padding: 32px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); text-align: center; }
.redirect-card h1 { margin: 0 0 10px; font-size: 28px; }
.redirect-card p { margin: 0 0 20px; color: var(--muted); }

.appointment-page { min-height: 100vh; }
.appointment-main {
  min-height: calc(100vh - 150px);
  padding-bottom: 95px;
  background:
    radial-gradient(circle at 82% 6%, rgba(148,48,78,.08), transparent 26%),
    var(--surface);
}

.appointment-intro { padding: 78px 0 52px; }
.appointment-intro h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 6.6vw, 86px);
  line-height: .95;
  letter-spacing: -.06em;
}
.appointment-intro h1 em {
  color: var(--wine);
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
}
.appointment-intro > p:last-child {
  max-width: 650px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.appointment-section {
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(252,251,248,.82);
}
.appointment-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.appointment-section-head .section-label { margin-bottom: 5px; }
.appointment-section-head h2 { margin: 0; font-size: 30px; letter-spacing: -.03em; }
.appointment-refresh-all {
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}
.appointment-refresh-all:disabled { opacity: .5; cursor: wait; }
.appointment-message { min-height: 18px; margin-bottom: 9px; color: var(--muted); font-size: 9px; }
.appointment-list { display: grid; gap: 12px; }
.appointment-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 4px solid #b79864;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(30,31,32,.045);
}
.appointment-card.confirmed { border-left-color: #347351; }
.appointment-card.completed { border-left-color: #4f5c69; }
.appointment-card.cancelled,
.appointment-card.error { border-left-color: #a65555; }
.appointment-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.appointment-card-top > small,
.appointment-card > small { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.appointment-status-badge {
  padding: 6px 9px;
  border-radius: 999px;
  background: #f2eadb;
  color: #745c30;
  font-size: 8px;
  font-weight: 850;
}
.appointment-card.confirmed .appointment-status-badge { background: #e2f0e7; color: #245d3d; }
.appointment-card.completed .appointment-status-badge { background: #e9ecef; color: #46515d; }
.appointment-card.cancelled .appointment-status-badge { background: #f6e5e5; color: #813b3b; }
.appointment-card h2 { margin: 0; font-size: clamp(25px, 3vw, 36px); letter-spacing: -.035em; }
.appointment-primary { margin: -4px 0 0; color: var(--ink); font-size: 12px; font-weight: 700; }
.appointment-meta { margin: -5px 0 0; color: var(--wine); font-size: 10px; font-weight: 800; }
.appointment-state-box {
  display: grid;
  gap: 3px;
  padding: 13px 14px;
  border-radius: 9px;
  background: var(--surface-2);
}
.appointment-state-box b { font-size: 10px; }
.appointment-state-box p { margin: 0; color: var(--muted); font-size: 10px; }
.appointment-state-box small { margin-top: 3px; color: rgba(36,38,39,.47); font-size: 8px; }
.appointment-actions { display: flex; flex-wrap: wrap; gap: 7px; }
.appointment-action {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.appointment-action.primary { border-color: var(--wine); background: var(--wine); color: #fff; }
.appointment-action.quiet { color: var(--muted); }
.appointment-action:disabled { opacity: .5; cursor: wait; }
.appointment-empty { padding: 45px 20px; text-align: center; }
.appointment-empty small { color: var(--wine); font-size: 8px; font-weight: 850; letter-spacing: .13em; }
.appointment-empty h2 { max-width: 600px; margin: 9px auto; font-size: clamp(27px, 4vw, 42px); letter-spacing: -.04em; }
.appointment-empty p { max-width: 520px; margin: 0 auto 22px; color: var(--muted); font-size: 11px; }
.appointment-local-note { margin: 17px 0 0; color: var(--muted); font-size: 8px; }
.appointment-footer { padding: 22px 0; background: #181a1b; color: rgba(255,255,255,.48); }
.appointment-footer .shell { display: flex; justify-content: space-between; gap: 20px; font-size: 8px; }
.appointment-footer a { color: rgba(255,255,255,.68); }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .marketplace-layout { grid-template-columns: minmax(0, 1fr) minmax(350px, .72fr); gap: 35px; }
  .master-item { grid-template-columns: 90px minmax(0, 1fr); }
  .master-item.featured-master { grid-template-columns: 104px minmax(0, 1fr); }
  .master-avatar { width: 90px; height: 126px; grid-row: 1 / span 4; }
  .featured-master .master-avatar { width: 104px; height: 154px; }
  .master-item .button { grid-column: 1 / -1; grid-row: auto; width: 100%; margin-top: 8px; }
}

@media (max-width: 850px) {
  .desktop-only { display: none !important; }
  .menu-button { display: grid; }
  .hero-layout,
  .marketplace-layout,
  .visit-layout { grid-template-columns: 1fr; }
  .hero-layout { gap: 43px; }
  .hero-promise { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-promise > div { grid-template-columns: 1fr; align-content: center; gap: 4px; padding: 12px; border-right: 1px solid var(--line); }
  .hero-promise > div:last-child { border-right: 0; }
  .style-match { grid-template-columns: 1fr; }
  .fast-openings { grid-template-columns: 1fr; }
  .marketplace-booking { position: static; order: -1; }
  .marketplace-catalog { margin-top: 25px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article { min-height: 150px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .steps-grid article:last-child { border-bottom: 0; }
  .steps-grid h3 { margin-top: 40px; }
  .footer-layout { grid-template-columns: 1.4fr 1fr 1fr; gap: 25px; }
}

@media (max-width: 620px) {
  html { scroll-padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
  .shell { width: min(calc(100% - 28px), 1240px); }
  .nav-shell { min-height: 66px; }
  .brand-word small { font-size: 7px; }
  .mobile-menu { inset-block-start: 66px; }
  .launch-banner .shell { align-items: flex-start; flex-direction: column; gap: 3px; padding-block: 9px; }
  .launch-banner span { line-height: 1.35; }
  .marketplace-hero { padding: 47px 0 43px; }
  .hero-copy h1 { font-size: clamp(43px, 12.5vw, 58px); }
  .hero-lead { font-size: 14px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .client-return-tools { align-items: stretch; flex-direction: column; }
  .returning-client { width: 100%; align-items: flex-start; justify-content: space-between; }
  .my-bookings-link { width: 100%; justify-content: center; }
  .hero-promise { grid-template-columns: 1fr; }
  .hero-promise > div { min-height: 63px; grid-template-columns: 30px 1fr; padding: 0; border-right: 0; }
  .marketplace-stage,
  .how-section,
  .visit-section { padding: 62px 0; }
  .style-match { margin-bottom: 10px; }
  .style-match-actions { grid-template-columns: 1fr; }
  .style-match-actions button { min-height: 58px; }
  .fast-openings { margin-bottom: 35px; }
  .fast-opening-list { grid-template-columns: 1fr; }
  .fast-opening-list > button { min-height: 68px; }
  .booking-heading h2,
  .catalog-heading h2,
  .compact-heading h2,
  .visit-copy h2 { font-size: clamp(36px, 11vw, 48px); }
  .form-panel { padding: 20px; border-radius: 12px; }
  .field-row { grid-template-columns: 1fr; }
  .field input,
  .field select,
  .field textarea,
  .waitlist-mode select { font-size: 16px; }
  .quick-date-head { align-items: flex-start; flex-direction: column; gap: 2px; }
  .quick-date-picker { grid-template-columns: repeat(3, 1fr); }
  .waitlist-entry { align-items: flex-start; flex-direction: column; }
  .choice-chips button { min-height: 38px; font-size: 9px; }
  .booking-summary-grid { grid-template-columns: 1fr; }
  .booking-summary small { font-size: 8px; }
  .booking-summary b { font-size: 11px; }
  .master-item { grid-template-columns: 72px minmax(0, 1fr); padding: 14px; gap: 4px 13px; }
  .master-item.featured-master { grid-template-columns: 84px minmax(0, 1fr); padding: 15px; }
  .master-avatar { width: 72px; height: 102px; }
  .featured-master .master-avatar { width: 84px; height: 122px; }
  .master-item h3 { font-size: 28px; }
  .master-item > p { grid-column: 1 / -1; margin-top: 8px; }
  .master-tags,
  .service-preview { grid-column: 1 / -1; margin-top: 7px; }
  .master-next-slot { grid-template-columns: 1fr; align-items: start; gap: 2px; }
  .master-next-slot span { text-align: left; }
  .service-preview__choice { min-height: 44px; padding: 9px 8px; font-size: 12px; }
  .service-preview__choice small { font-size: 11px; }
  .service-list-toggle { min-height: 44px; font-size: 12px; }
  .service-preview .master-disclosure,
  .service-preview .master-extra-copy { font-size: 11px; }
  .master-featured-badge { font-size: 9px; }
  .master-item .button { min-width: 0; }
  .address-card { padding: 25px; }
  .address-facts { grid-template-columns: 1fr; }
  .address-facts span,
  .address-facts span:first-child { padding: 13px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .address-facts span:last-child { border-bottom: 0; }
  .address-actions { align-items: stretch; flex-direction: column; }
  .address-actions .button { width: 100%; }
  .text-link { align-self: center; }
  .footer-layout { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .site-footer { padding-bottom: calc(92px + env(safe-area-inset-bottom)); }
  .appointment-main { padding-bottom: 62px; }
  .appointment-intro { padding: 55px 0 35px; }
  .appointment-intro h1 { font-size: clamp(43px, 13vw, 61px); }
  .appointment-section { padding: 18px; }
  .appointment-section-head { align-items: flex-start; }
  .appointment-card { padding: 17px; }
  .appointment-card-top { align-items: flex-start; flex-direction: column; gap: 8px; }
  .appointment-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .appointment-action { width: 100%; }
  .appointment-footer .shell { align-items: flex-start; flex-direction: column; }
  .mobile-dock {
    position: fixed;
    z-index: 990;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
    background: var(--ink);
    color: #fff;
    box-shadow: 0 12px 35px rgba(20,22,24,.28);
  }
  .mobile-dock a { display: grid; gap: 1px; padding: 11px 15px; border-right: 1px solid rgba(255,255,255,.14); text-decoration: none; }
  .mobile-dock a:last-child { border-right: 0; background: var(--wine); }
  .mobile-dock small { color: rgba(255,255,255,.52); font-size: 7px; }
  .mobile-dock b { font-size: 10px; }
}

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