:root {
  --ink: #111111;
  --ink-soft: #4a4a4a;
  --muted: #7a7a7a;
  --paper: #f5f5f5;
  --paper-2: #ebebeb;
  --surface: #ffffff;
  --line: rgba(0, 0, 0, 0.1);
  --rose: #1a1a1a;
  --rose-deep: #000000;
  --champagne: #b0b0b0;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  --radius: 18px;
  --font-display: "Montserrat", "Noto Sans KR", system-ui, sans-serif;
  --font-korean: "Noto Sans KR", "Montserrat", system-ui, sans-serif;
  --font-body: "Montserrat", "Noto Sans KR", system-ui, sans-serif;
  --header-h: 168px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --auth-vh: 100svh;
  --auth-vt: 0px;
  --booking-vh: 100svh;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: #fafafa;
  background-image:
    radial-gradient(ellipse 70% 50% at 8% 0%, rgba(255, 255, 255, 0.9), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 30%, rgba(235, 235, 235, 0.7), transparent 50%),
    linear-gradient(
      118deg,
      transparent 0%,
      transparent 46%,
      rgba(150, 150, 150, 0.05) 47.5%,
      transparent 49%,
      transparent 100%
    ),
    linear-gradient(180deg, #ffffff 0%, #f7f7f7 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 — white marble band */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background-color: #fafafa;
  background-image:
    radial-gradient(ellipse 85% 65% at 10% 12%, rgba(255, 255, 255, 0.98), transparent 56%),
    radial-gradient(ellipse 60% 50% at 92% 18%, rgba(236, 236, 236, 0.85), transparent 52%),
    radial-gradient(ellipse 50% 40% at 55% 95%, rgba(228, 228, 228, 0.4), transparent 58%),
    linear-gradient(
      122deg,
      transparent 0%,
      transparent 38%,
      rgba(160, 160, 160, 0.12) 40%,
      transparent 42.2%,
      transparent 100%
    ),
    linear-gradient(
      162deg,
      transparent 0%,
      transparent 55%,
      rgba(120, 120, 120, 0.09) 57%,
      transparent 59.5%,
      transparent 100%
    ),
    linear-gradient(
      24deg,
      transparent 0%,
      transparent 70%,
      rgba(170, 170, 170, 0.08) 72%,
      transparent 74.5%,
      transparent 100%
    ),
    linear-gradient(
      78deg,
      transparent 0%,
      transparent 19%,
      rgba(140, 140, 140, 0.06) 20.5%,
      transparent 22%,
      transparent 100%
    ),
    linear-gradient(180deg, #ffffff 0%, #f6f6f6 52%, #efefef 100%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.1rem 1.25rem 1.25rem;
  min-height: var(--header-h);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  position: absolute;
  left: 1.25rem;
  top: 1.15rem;
  z-index: 1;
}

.header-brand {
  margin: 0;
  text-align: center;
  min-width: 0;
  width: 100%;
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-brand .brand-plate-en {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.8vw, 2.15rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.header-brand .brand-plate-ko {
  margin: 0.35rem 0 0;
  font-family: var(--font-korean);
  font-size: clamp(1.18rem, 2.8vw, 1.5rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.header-brand .brand-plate-rule {
  display: none;
}

.header-brand .brand-plate-tag-plain {
  margin: 0.45rem 0 0;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

.header-brand .auth-nav {
  margin: 0.9rem 0 0;
}

.header-brand .btn-book {
  min-width: 8.75rem;
  padding: 0.62rem 1.35rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.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-nav .btn-admin {
  display: inline-flex;
  font-weight: 500;
}

.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;
  width: 100%;
  background: rgba(28, 22, 20, 0.48);
  display: grid;
  align-items: end;
  overflow: hidden;
  animation: fadeOverlay 0.3s var(--ease);
}

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

@media (max-width: 719px) {
  .auth-sheet {
    height: auto;
    max-height: var(--auth-vh, 100svh);
    min-height: min(18rem, var(--auth-vh, 100svh));
  }

  .auth-form input,
  .auth-form textarea {
    font-size: 16px;
  }
}

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

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

@media (min-width: 720px) {
  .auth-sheet {
    height: auto;
    border-radius: 22px;
    max-height: min(92svh, 820px);
  }
}

.auth-sheet > .booking-header,
.auth-sheet > .auth-mode-tabs {
  flex-shrink: 0;
}

.auth-mode-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin: 0 1.25rem 0.85rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f3f3f3;
}

.auth-mode-tabs[hidden] {
  display: none !important;
}

.auth-mode-tab {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  cursor: pointer;
}

.auth-mode-tab.is-active {
  background: var(--rose-deep);
  color: #ffffff;
}

.auth-ref-lede {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.auth-form {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1 1 auto;
}

.auth-form[hidden] {
  display: none !important;
}

.auth-form-scroll {
  display: grid;
  gap: 0.75rem;
  padding: 0 1.25rem 1rem;
  overflow: auto;
  min-height: 0;
  flex: 1 1 auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.auth-form-actions {
  flex-shrink: 0;
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem 1.25rem max(1.5rem, calc(env(safe-area-inset-bottom, 0px) + 1.15rem));
  border-top: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 -10px 24px rgba(28, 22, 20, 0.06);
}

.auth-form-actions .btn {
  width: 100%;
}

.booking-auth .btn-auth-link {
  text-decoration: none;
}

.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);
}

.consent-check {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  font-size: 0.8rem !important;
  line-height: 1.45;
  color: var(--ink-soft);
}

.consent-check input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  accent-color: var(--ink);
}

.consent-check a {
  color: var(--rose-deep);
}

.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;
}

.auth-success {
  margin: 0;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(0, 0, 0, 0.04);
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* 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: #ffffff;
}

.btn-primary:hover:not(:disabled) {
  background: #333333;
}

.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(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.18) 35%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42) 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-lockup {
  margin: 0 0 1.4rem;
  max-width: 22ch;
}

.brand-wordmark {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.8vw, 3.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.brand-phone {
  display: inline-block;
  margin-top: 0;
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.brand-phone:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.hero-upcoming {
  margin: 0.85rem 0 0;
  max-width: 28ch;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(247, 243, 240, 0.88);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.vacation-banner {
  position: relative;
  z-index: 35;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #111111;
  color: #ffffff;
  animation: vacationBannerIn 0.55s var(--ease);
}

.vacation-banner[hidden] {
  display: none !important;
}

@keyframes vacationBannerIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.vacation-banner-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 1rem 1.25rem 1.15rem;
  text-align: center;
}

.vacation-banner-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 247, 249, 0.86);
}

.vacation-banner-dates {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.vacation-banner-dates:empty {
  display: none;
}

.vacation-banner-text {
  margin: 0 auto;
  max-width: 46ch;
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 500;
  line-height: 1.45;
  white-space: pre-wrap;
}

body.has-vacation-notice .hero-upcoming {
  display: none;
}

.brand-plate {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 30;
}

.brand-plate-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
  text-align: center;
}

.brand-plate-cta {
  display: flex;
  justify-content: center;
  padding: 0.85rem 1.25rem 1.1rem;
}

.brand-plate-cta .auth-nav {
  margin-left: 0;
}

.brand-plate-cta .btn-book {
  min-width: 10.5rem;
}

.brand-plate-title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

.brand-plate-en {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.brand-plate-ko {
  margin: 0;
  font-family: var(--font-korean);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.brand-plate-tag {
  margin: 0.45rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.hero-headline {
  margin: 0 0 0.75rem;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  color: rgba(248, 244, 241, 0.88);
}

.hero-lede {
  margin: 0 0 1.75rem;
  max-width: 34ch;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(248, 244, 241, 0.78);
}

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

.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);
}

.hero-instagram,
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  background: var(--ink);
  border-color: var(--ink);
  color: #f7f3f0;
}

.hero-instagram:hover,
.hero-phone:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: #f7f3f0;
}

.hero-instagram-icon,
.hero-phone-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
}

.hero-instagram-icon {
  color: #e1306c;
}

.hero-phone-icon {
  color: #34c759;
}

.hero-instagram:hover .hero-instagram-icon {
  color: #e1306c;
}

.hero-phone:hover .hero-phone-icon {
  color: #34c759;
}

.hero-instagram span,
.hero-phone span {
  font-size: 0.95em;
  letter-spacing: 0.01em;
}

.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); }
}

/* Welcome note */
.welcome {
  position: relative;
  padding: 3.25rem 1.25rem 2.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.82));
  border-bottom: 0;
  overflow: hidden;
}

.welcome-inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.welcome-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2.5vw, 1.5rem);
  margin: 0 0 1rem;
  flex-wrap: wrap;
}

.welcome-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}

.welcome-logo {
  width: min(7.5rem, 23vw);
  height: auto;
  flex: 0 0 auto;
}

@media (min-width: 900px) {
  .welcome-logo {
    width: min(8.75rem, 14vw);
  }
}

.welcome-copy {
  margin: 0;
  font-size: clamp(1.02rem, 2vw, 1.12rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-soft);
}

.welcome-sign {
  margin: 1.15rem 0 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
}

/* Trust */
.trust-bar {
  border-block: 1px solid var(--line);
  background: #ffffff;
}

.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: 0 1.25rem 3.5rem;
  position: relative;
}

.welcome + .section::before,
.section + .section::before,
.section + .cta-band::before {
  content: "";
  display: block;
  width: min(10rem, 44vw);
  height: 1px;
  margin: 2.6rem auto;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 18%,
    rgba(0, 0, 0, 0.28) 50%,
    rgba(0, 0, 0, 0.08) 82%,
    transparent 100%
  );
}

.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 .section-head {
  max-width: 52rem;
}

.services-brand {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  margin-top: 0.35rem;
}

.services-brand-text,
.services-brand-mark {
  display: block;
  height: auto;
}

.services-brand-text {
  width: auto;
  height: clamp(1.55rem, 3.1vw, 2.35rem);
}

.services-brand-mark {
  width: auto;
  height: clamp(2.35rem, 4.4vw, 3.15rem);
}

@media (min-width: 720px) {
  .services-brand-text {
    height: clamp(1.7rem, 2.6vw, 2.45rem);
  }

  .services-brand-mark {
    height: clamp(2.5rem, 3.6vw, 3.25rem);
  }
}

/* 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(--rose-deep);
  border-color: var(--rose-deep);
  color: #ffffff;
}

.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-fill, minmax(220px, 260px));
  justify-content: start;
}

.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;
  padding-left: max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
  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(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .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;
}

.visit-phone {
  margin: -0.5rem 0 1.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.visit-phone a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.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: 0.35rem 1.25rem 4.5rem;
}

.cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  color: #ffffff;
  background: #000000;
}

.cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.cta-logo {
  width: min(10rem, 48vw);
  height: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.cta-details {
  text-align: center;
}

.cta-details p {
  margin: 0;
  color: rgba(247, 243, 240, 0.92);
  font-weight: 400;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.cta-details p + p {
  margin-top: 0.2rem;
}

.cta-phone a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 243, 240, 0.35);
}

.cta-phone a:hover {
  border-bottom-color: rgba(247, 243, 240, 0.8);
}

.cta-action {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
}

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

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

@media (min-width: 720px) {
  .cta-inner {
    padding: 3rem 1.75rem;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
  }

  .cta-logo {
    width: min(11.5rem, 18vw);
  }

  .cta-details {
    text-align: left;
  }

  .cta-details p {
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .cta-action {
    margin-top: 2rem;
  }
}

@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;
  background: #ffffff;
}

.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;
}

.footer-links {
  margin: 0.45rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer-links a:hover {
  color: var(--ink-soft);
}

/* Legal pages (privacy / terms) */
.legal-page .legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.legal-wrap h1 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 600;
}

.legal-updated {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-wrap h2 {
  margin: 1.75rem 0 0.55rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.legal-wrap p,
.legal-wrap li {
  color: var(--ink-soft);
}

.legal-wrap ul {
  padding-left: 1.2rem;
}

.legal-wrap a {
  color: var(--rose-deep);
}

.legal-nav {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

/* 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);
  overflow: hidden;
  animation: sheetUp 0.45s var(--ease);
  transition: width 0.25s var(--ease);
}

@media (max-width: 719px) {
  .booking-sheet {
    max-height: var(--booking-vh, 100svh);
    height: auto;
  }
}

.booking-sheet.is-schedule {
  width: min(820px, 100%);
  max-height: min(94svh, 900px);
}

@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;
  flex-shrink: 0;
}

.booking-header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.booking-auth {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.35rem;
  max-width: min(22rem, 68vw);
}

@media (max-width: 719px) {
  .booking-header {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "title close"
      "auth auth";
    gap: 0.45rem 0.75rem;
    align-items: center;
  }

  .booking-header > div:first-child {
    grid-area: title;
    min-width: 0;
  }

  .booking-header-actions {
    display: contents;
  }

  .booking-auth {
    grid-area: auth;
    max-width: none;
    width: 100%;
    justify-content: flex-start;
    padding-top: 0.55rem;
    border-top: 1px solid var(--line);
  }

  .booking-header-actions .icon-btn {
    grid-area: close;
    justify-self: end;
    align-self: start;
  }

  .booking-header h2 {
    font-size: 1.45rem;
  }
}

.booking-auth .btn-auth-link {
  border: 0;
  background: transparent;
  color: var(--rose-deep);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.55rem;
  cursor: pointer;
  border-radius: 999px;
}

.booking-auth .btn-auth-link:hover {
  background: rgba(163, 93, 107, 0.1);
}

.booking-auth .auth-divider {
  color: var(--muted);
  font-size: 0.75rem;
  opacity: 0.7;
}

.booking-auth .booking-user {
  font-size: 0.82rem;
  color: var(--ink-soft);
  max-width: 8.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0.25rem;
}

.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;
  flex-shrink: 0;
}

.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;
  flex: 0 0 auto;
}

.pro-avatar--logo {
  display: grid;
  place-items: center;
  background: #000;
  overflow: hidden;
}

.pro-avatar--logo img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.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;
}

.appt-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.appt-service-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 0.9rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  background: #fff;
}

.appt-service-card-copy {
  min-width: 0;
}

.appt-service-card-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.25;
  color: var(--ink);
}

.appt-service-card-meta {
  margin: 0.28rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.appt-service-clear {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  margin: -0.15rem -0.2rem 0 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}

.appt-service-clear:hover {
  color: var(--ink);
}

.appt-schedule {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
}

@media (min-width: 720px) {
  .appt-schedule {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }

  .appt-schedule .booking-calendar {
    border-right: 1px solid var(--line);
  }
}

.booking-calendar {
  margin: 0;
  padding: 1rem 1rem 0.85rem;
  border: 0;
  background: transparent;
}

.cal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.cal-toolbar-left {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  min-width: 0;
}

.cal-toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-shrink: 0;
}

.cal-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.cal-nav {
  width: 1.85rem;
  height: 1.85rem;
  border: 0;
  background: transparent;
  border-radius: 0;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}

.cal-nav:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.15rem;
  margin-bottom: 0.35rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.cal-weekdays .cal-weekday-sun {
  color: #c62828;
  font-weight: 600;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 0.15rem;
  min-height: 13.5rem;
}

.cal-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  border-radius: 50%;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}

.cal-day.is-empty {
  visibility: hidden;
  pointer-events: none;
}

.cal-day.is-today:not(.is-selected) {
  box-shadow: inset 0 0 0 1px rgba(28, 22, 20, 0.22);
}

.cal-day.is-selected {
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}

.cal-day:not(.is-disabled):not(.is-selected):hover {
  background: rgba(28, 22, 20, 0.06);
}

.cal-day.is-disabled,
.cal-day:disabled {
  color: #cfc6c0;
  cursor: not-allowed;
}

.cal-day.is-open:not(.is-selected):not(:disabled) {
  color: #2a5a3a;
}

.cal-day.is-limited:not(.is-selected):not(:disabled) {
  color: #8a5a1e;
}

.cal-day.is-full,
.cal-day.is-full:disabled {
  color: #c9a0a4;
  cursor: not-allowed;
}

.cal-legend,
.cal-note {
  display: none;
}

.appt-times-pane {
  padding: 1rem 1rem 1.1rem;
  min-width: 0;
}

.appt-date-label {
  margin: 0.15rem 0 0.35rem;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.appt-tz {
  margin: 0 0 1rem;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.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 {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.15;
  margin: 0.12rem 0;
}

.date-chip-month {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.time-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  min-height: 4.5rem;
  align-content: flex-start;
  transition: opacity 0.15s var(--ease);
}

.time-grid.is-loading {
  opacity: 0.55;
  pointer-events: none;
}

.time-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  min-height: 2.65rem;
  padding: 0.55rem 0.9rem;
  border-radius: 2px;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.15;
  background: #fff;
}

.time-chip span {
  display: none;
}

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

.time-chip.is-unavailable,
.time-chip:disabled {
  display: none;
}

.time-chip.is-unavailable:hover,
.time-chip:disabled:hover {
  transform: none;
}

.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: #f0f0f0;
}

.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;
}

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

.booking-form input.is-invalid,
.booking-form textarea.is-invalid {
  border-color: rgba(163, 93, 107, 0.55);
}

.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 max(1.25rem, calc(env(safe-area-inset-bottom, 0px) + 0.85rem));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.booking-footer .btn {
  min-height: 44px;
}

.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(0, 0, 0, 0.08);
  color: var(--ink);
  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;
}

.confirm-ref {
  margin: 0 auto 1.35rem;
  max-width: 22rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 247, 249, 0.9);
}

.confirm-ref-label {
  margin: 0 0 0.35rem !important;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-deep) !important;
}

.confirm-ref-code {
  margin: 0 0 0.45rem !important;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink) !important;
}

.confirm-ref-note {
  margin: 0 !important;
  font-size: 0.88rem;
  line-height: 1.45;
}

.confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

body.booking-open {
  overflow: hidden;
}
