:root {
  --pink: #ff9be0;
  --pink-strong: #ff7daf;
  --ink: #121212;
  --paper: #f8f8f8;
  --white: #ffffff;
  --muted: #766b72;
  --line: rgba(18, 18, 18, 0.12);
  --line-strong: rgba(18, 18, 18, 0.2);
  --shadow: 0 18px 55px rgba(18, 18, 18, 0.11);
  --soft-shadow: 0 10px 32px rgba(18, 18, 18, 0.08);
  --gradient: linear-gradient(135deg, var(--pink), var(--pink-strong));
  --radius: 8px;
  --font-serif: "Cormorant Garamond", "Playfair Display", "Bodoni 72", Georgia, serif;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 155, 224, 0.2), transparent 34rem),
    linear-gradient(180deg, #fff, var(--paper));
  color: var(--ink);
  font-family: var(--font-sans);
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

a {
  color: inherit;
}

.serif {
  font-family: var(--font-serif);
}

.brand-logo {
  width: min(230px, 56vw);
  height: auto;
}

.shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.page-grid {
  display: grid;
  gap: 18px;
}

.surface {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 18, 18, 0.09);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.panel {
  padding: 18px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--pink-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.05rem, 9vw, 4.75rem);
  font-weight: 500;
  line-height: 0.96;
}

.section-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 6vw, 2.45rem);
  font-weight: 500;
  line-height: 1;
}

.copy {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.lucide {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button .lucide {
  width: 17px;
  height: 17px;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(18, 18, 18, 0.16);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.button-primary {
  background: var(--gradient);
  color: var(--ink);
}

.button-ghost {
  background: rgba(18, 18, 18, 0.06);
  color: var(--ink);
}

.button-danger {
  background: #211419;
  color: #fff;
}

.button-small {
  min-height: 38px;
  padding: 0 13px;
  font-size: 0.86rem;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 0 13px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field textarea {
  min-height: 92px;
  padding-top: 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--pink-strong);
  box-shadow: 0 0 0 4px rgba(255, 125, 175, 0.16);
}

.field-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.field-check input {
  width: 20px;
  height: 20px;
  accent-color: var(--pink-strong);
}

.form-grid {
  display: grid;
  gap: 13px;
}

.form-grid.two {
  grid-template-columns: 1fr;
}

.notice {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 155, 224, 0.16);
  border: 1px solid rgba(255, 125, 175, 0.25);
  color: var(--ink);
  line-height: 1.45;
}

.notice.is-visible {
  display: block;
}

.notice.error {
  background: rgba(130, 25, 55, 0.08);
  border-color: rgba(130, 25, 55, 0.2);
}

.empty {
  padding: 20px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.07);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.badge.good {
  background: rgba(255, 155, 224, 0.28);
}

.badge.bad {
  background: rgba(18, 18, 18, 0.1);
  color: rgba(18, 18, 18, 0.72);
}

.status-confirmed {
  background: rgba(255, 155, 224, 0.24);
}

.status-cancelled,
.status-no_show {
  background: rgba(18, 18, 18, 0.11);
}

.status-completed {
  background: rgba(255, 125, 175, 0.26);
}

.stack {
  display: grid;
  gap: 12px;
}

.row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.price {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.loading {
  opacity: 0.62;
  pointer-events: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 740px) {
  .panel {
    padding: 24px;
  }

  .form-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
