:root {
  --ink: #1c1614;
  --ink-soft: #4a3f3a;
  --muted: #7a6e68;
  --paper: #f3efec;
  --paper-2: #e8e2dd;
  --surface: #fffcfa;
  --line: rgba(28, 22, 20, 0.1);
  --rose: #b56b6f;
  --rose-deep: #8f4e53;
  --champagne: #9c8260;
  --shadow: 0 24px 60px rgba(28, 22, 20, 0.14);
  --radius: 18px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(181, 107, 111, 0.12), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(156, 130, 96, 0.1), transparent 55%),
    linear-gradient(180deg, #f6f2ef 0%, var(--paper) 40%, #efe9e4 100%);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(243, 239, 236, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 252, 250, 0.9);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-size: 1rem;
  line-height: 1;
}

.site-nav {
  margin-left: auto;
  display: none;
  gap: 1.5rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-soft);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-inner .btn-book {
  margin-left: auto;
}

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

.mobile-nav {
  display: grid;
  gap: 0.5rem;
  padding: 0 1.25rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 252, 250, 0.96);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 860px) {
  .site-nav {
    display: flex;
  }

  .header-inner .auth-nav {
    margin-left: 0;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }
}

.auth-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.auth-nav .btn-ghost {
  display: inline-flex;
}

.auth-user {
  font-size: 0.9rem;
  color: var(--ink-soft);
  max-width: 8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-auth {
  display: none;
}

@media (min-width: 860px) {
  .btn-auth {
    display: inline-flex;
  }
}

@media (max-width: 859px) {
  .auth-nav .auth-user {
    display: none;
  }
}

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: rgba(28, 22, 20, 0.48);
  display: grid;
  align-items: end;
  animation: fadeOverlay 0.3s var(--ease);
}

.auth-overlay[hidden] {
  display: none;
}

@media (min-width: 720px) {
  .auth-overlay {
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
  }
}

.auth-sheet {
  width: min(440px, 100%);
  background: var(--surface);
  border-radius: 24px 24px 0 0;
  box-shadow: var(--shadow);
  padding-bottom: 1.25rem;
  animation: sheetUp 0.45s var(--ease);
}

@media (min-width: 720px) {
  .auth-sheet {
    border-radius: 22px;
  }
}

.auth-form {
  display: grid;
  gap: 0.75rem;
  padding: 0 1.25rem 1.25rem;
}

.auth-switch {
  margin: 0.15rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.auth-switch-btn {
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}

.auth-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.auth-form input {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  background: white;
}

.auth-error {
  margin: 0;
  color: var(--rose-deep);
  font-size: 0.88rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: var(--ink);
  color: #f7f3f0;
}

.btn-primary:hover:not(:disabled) {
  background: var(--rose-deep);
}

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

.btn-ghost:hover:not(:disabled) {
  border-color: var(--ink);
}

.btn-lg {
  padding: 0.95rem 1.55rem;
  font-size: 1rem;
}

.icon-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f8f4f1;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 22, 20, 0.25) 0%, rgba(28, 22, 20, 0.15) 35%, rgba(28, 22, 20, 0.72) 100%),
    linear-gradient(90deg, rgba(28, 22, 20, 0.45) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 3.5rem;
}

.brand-wordmark {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero-headline {
  margin: 0 0 0.85rem;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.15;
  color: rgba(248, 244, 241, 0.92);
}

.hero-lede {
  margin: 0 0 1.75rem;
  max-width: 34ch;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(248, 244, 241, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero .btn-ghost {
  border-color: rgba(248, 244, 241, 0.35);
  color: #f8f4f1;
}

.hero .btn-ghost:hover {
  border-color: #f8f4f1;
  background: rgba(248, 244, 241, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: riseIn 0.9s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }

@keyframes riseIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroDrift {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

/* Trust */
.trust-bar {
  border-block: 1px solid var(--line);
  background: rgba(255, 252, 250, 0.65);
}

.trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.1rem 1.25rem;
  display: grid;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.trust-inner strong {
  color: var(--ink);
  font-weight: 600;
}

@media (min-width: 720px) {
  .trust-inner {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }
}

/* Sections */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.section-head h2,
.visit-copy h2,
.cta-inner h2,
.booking-panel h3,
.confirm-block h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.section-head p,
.visit-lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
}

/* Services */
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-tab {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.service-tab.is-active,
.service-tab:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #f7f3f0;
}

.service-list {
  display: grid;
  gap: 0.75rem;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(12px);
  animation: riseIn 0.6s var(--ease) forwards;
}

.service-row:nth-child(1) { animation-delay: 0.02s; }
.service-row:nth-child(2) { animation-delay: 0.06s; }
.service-row:nth-child(3) { animation-delay: 0.1s; }
.service-row:nth-child(4) { animation-delay: 0.14s; }
.service-row:nth-child(5) { animation-delay: 0.18s; }
.service-row:nth-child(6) { animation-delay: 0.22s; }

.service-meta h3 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
  font-weight: 500;
}

.service-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}

.service-side {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: right;
}

.service-price {
  font-weight: 500;
  white-space: nowrap;
}

.service-duration {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 300;
}

.service-row .btn {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

@media (max-width: 640px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .service-side {
    justify-content: space-between;
    text-align: left;
  }
}

/* Team */
.team-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

.team-card img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 0.7s var(--ease);
}

.team-card:hover img {
  transform: scale(1.04);
}

.team-card-body {
  padding: 1.1rem 1.15rem 1.35rem;
}

.team-card h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.team-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}

/* Gallery */
.gallery {
  max-width: none;
  padding-inline: 0;
}

.gallery .section-head {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 28vw);
  gap: 0.85rem;
  overflow-x: auto;
  padding: 0 1.25rem 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallery-item {
  margin: 0;
  scroll-snap-align: start;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Reviews */
.review-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 860px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review {
  margin: 0;
  padding: 1.5rem;
  background: rgba(255, 252, 250, 0.72);
  border-top: 2px solid var(--rose);
}

.review p {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.35;
}

.review footer {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Visit */
.visit {
  max-width: 1180px;
}

.visit-layout {
  display: grid;
  gap: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

@media (min-width: 900px) {
  .visit-layout {
    grid-template-columns: 1fr 1.1fr;
  }
}

.visit-copy {
  padding: 2rem 1.5rem;
}

@media (min-width: 900px) {
  .visit-copy {
    padding: 2.75rem;
  }
}

.visit-copy address {
  font-style: normal;
  margin: 1.5rem 0;
  line-height: 1.7;
}

.hours {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  max-width: 22rem;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.visit-map {
  min-height: 320px;
  background: var(--paper-2);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(0.25) contrast(1.02);
}

/* CTA */
.cta-band {
  padding: 4.5rem 1.25rem 5.5rem;
}

.cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  text-align: center;
  color: #f7f3f0;
  background:
    linear-gradient(135deg, rgba(28, 22, 20, 0.92), rgba(143, 78, 83, 0.88)),
    url("https://images.unsplash.com/photo-1521590832167-7bcbfaaae14e?auto=format&fit=crop&w=1600&q=70") center/cover;
  animation: ctaGlow 8s ease-in-out infinite alternate;
}

.cta-inner p {
  margin: 0 0 1.5rem;
  color: rgba(247, 243, 240, 0.82);
  font-weight: 300;
}

.cta-inner .btn-primary {
  background: #f7f3f0;
  color: var(--ink);
}

.cta-inner .btn-primary:hover {
  background: white;
}

@keyframes ctaGlow {
  from { filter: saturate(1); }
  to { filter: saturate(1.08) brightness(1.03); }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.25rem 2.5rem;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-brand {
  margin: 0 0 0.25rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.footer-inner > div p:last-child {
  margin: 0;
}

.footer-note {
  margin: 0;
  align-self: end;
}

/* Booking overlay */
.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(28, 22, 20, 0.48);
  display: grid;
  align-items: end;
  padding: 0;
  animation: fadeOverlay 0.3s var(--ease);
}

.booking-overlay[hidden] {
  display: none;
}

@media (min-width: 720px) {
  .booking-overlay {
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
  }
}

@keyframes fadeOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

.booking-sheet {
  width: min(560px, 100%);
  max-height: min(92svh, 820px);
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: 24px 24px 0 0;
  box-shadow: var(--shadow);
  animation: sheetUp 0.45s var(--ease);
  overflow: hidden;
}

@media (min-width: 720px) {
  .booking-sheet {
    border-radius: 22px;
  }
}

@keyframes sheetUp {
  from { transform: translateY(24px); opacity: 0.6; }
  to { transform: none; opacity: 1; }
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  padding: 1.25rem 1.25rem 0.75rem;
}

.booking-kicker {
  margin: 0 0 0.2rem;
  color: var(--rose);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.booking-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
}

.booking-steps {
  list-style: none;
  margin: 0;
  padding: 0.5rem 1.25rem 1rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.35rem;
}

.booking-steps li {
  font-size: 0.75rem;
  color: var(--muted);
  padding-bottom: 0.45rem;
  border-bottom: 2px solid var(--line);
  text-align: center;
}

.booking-steps li.is-active {
  color: var(--ink);
  border-bottom-color: var(--rose);
  font-weight: 500;
}

.booking-steps li.is-done {
  color: var(--rose-deep);
  border-bottom-color: var(--rose-deep);
}

.booking-body {
  flex: 1;
  overflow: auto;
  padding: 0 1.25rem 1rem;
}

.booking-panel h3 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.booking-services,
.booking-pros {
  display: grid;
  gap: 0.65rem;
}

.choice {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.choice:hover,
.choice.is-selected {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.choice strong {
  display: block;
  font-weight: 500;
}

.choice span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
}

.choice .choice-meta {
  text-align: right;
  font-weight: 500;
  white-space: nowrap;
}

.pro-choice {
  grid-template-columns: auto 1fr;
}

.pro-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.date-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(64px, 1fr);
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}

.date-chip,
.time-chip {
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.date-chip {
  padding: 0.7rem 0.4rem;
  text-align: center;
}

.date-chip small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.date-chip strong {
  font-size: 1.1rem;
  font-weight: 500;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.time-chip {
  padding: 0.75rem 0.5rem;
  font-size: 0.92rem;
}

.time-chip span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.time-chip.is-unavailable,
.time-chip:disabled {
  cursor: not-allowed;
  color: #8a7d76;
  border-color: #d5cbc4;
  background-color: #ebe4de;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(143, 78, 83, 0.22),
    rgba(143, 78, 83, 0.22) 6px,
    rgba(235, 228, 222, 0.9) 6px,
    rgba(235, 228, 222, 0.9) 12px
  );
  transform: none;
  opacity: 1;
}

.time-chip.is-unavailable:hover,
.time-chip:disabled:hover {
  transform: none;
  border-color: #d5cbc4;
}

.time-loading {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.date-chip.is-selected,
.time-chip.is-selected {
  background: var(--ink);
  border-color: var(--ink);
  color: #f7f3f0;
}

.date-chip.is-selected small {
  color: rgba(247, 243, 240, 0.7);
}

.booking-form {
  display: grid;
  gap: 0.85rem;
}

.name-field {
  position: relative;
}

.client-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 5;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.client-suggest button {
  display: grid;
  gap: 0.1rem;
  width: 100%;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 0.7rem 0.85rem;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
}

.client-suggest button:last-child {
  border-bottom: 0;
}

.client-suggest button:hover,
.client-suggest button.is-active {
  background: #f7f1ef;
}

.client-suggest strong {
  font-weight: 500;
  font-size: 0.95rem;
}

.client-suggest span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 300;
}

.field-hint {
  margin: 0.35rem 0 0;
  color: var(--rose-deep);
  font-size: 0.8rem;
}

.booking-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.booking-form .optional {
  color: var(--muted);
  font-weight: 300;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  background: white;
  color: var(--ink);
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(181, 107, 111, 0.35);
  border-color: var(--rose);
}

.booking-summary {
  margin-top: 1.25rem;
  padding: 1rem;
  background: var(--paper);
  border-radius: 14px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.booking-summary strong {
  color: var(--ink);
}

.review-lede {
  margin: -0.35rem 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
}

.review-card {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.review-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.review-row:last-child {
  border-bottom: 0;
}

.review-row dt {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.review-row dd {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}

.review-row dd span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.88rem;
}

.booking-footer {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 252, 250, 0.95);
}

.booking-footer .btn-primary {
  margin-left: auto;
}

.booking-footer[hidden] {
  display: none;
}

.confirm-block {
  text-align: center;
  padding: 2rem 0.5rem 1rem;
}

.confirm-check {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(181, 107, 111, 0.15);
  color: var(--rose-deep);
  font-size: 1.4rem;
  animation: popIn 0.5s var(--ease);
}

@keyframes popIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: none; opacity: 1; }
}

.confirm-block p {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

body.booking-open {
  overflow: hidden;
}
