:root {
  color-scheme: dark;
  --bg: #0a0a0a;
  --bg-panel: #111111;
  --bg-panel-soft: #171717;
  --bg-panel-muted: #1d1d1d;
  --line: rgba(212, 175, 79, 0.15);
  --line-strong: rgba(212, 175, 79, 0.34);
  --text: #f6f1e4;
  --text-muted: #c8bda0;
  --text-soft: #8c836d;
  --accent: #d4af4f;
  --accent-strong: #f1d27c;
  --accent-ink: #211a0a;
  --success: #85d7a7;
  --danger: #ef9e88;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --max-width: 1280px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Jost Custom";
  src: url("/assets/fonts/Jost-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top center, rgba(212, 175, 79, 0.08), transparent 18%),
    linear-gradient(180deg, #080808 0%, #0d0d0d 54%, #050505 100%);
  color: var(--text);
}

body {
  min-width: 320px;
}

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

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.hidden {
  display: none !important;
}

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

.page-shell {
  width: min(100%, calc(var(--max-width) + 48px));
  margin: 0 auto;
  padding: 22px 24px 54px;
}

.showcase-shell {
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(10, 10, 10, 0.995));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 26px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-footer-note {
  padding: 16px 26px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.site-footer-note p {
  margin: 0;
  color: rgba(200, 189, 160, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.brand-home {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-lockup-inline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-crown {
  width: 28px;
  height: auto;
  display: block;
  object-fit: contain;
}

.brand-wordmark {
  color: var(--accent-strong);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.72rem;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.site-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: transparent;
  transition: background 160ms ease;
}

.site-nav-link:hover {
  color: var(--text);
}

.site-nav-link.active {
  color: var(--accent-strong);
}

.site-nav-link.active::after {
  background: var(--accent);
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(280px, 0.92fr);
  gap: 26px;
  padding: 26px;
  align-items: stretch;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

[data-hero-reveal] {
  will-change: transform, opacity, filter;
}

[data-manage-reveal] {
  will-change: transform, opacity, filter;
}

.hero-panel.hero-intro-prepare [data-hero-reveal] {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(7px);
}

.hero-panel.hero-intro-ready [data-hero-reveal] {
  animation: heroRevealIn 880ms cubic-bezier(0.18, 0.88, 0.22, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

.manage-shell-simple.manage-intro-prepare [data-manage-reveal],
.manage-shell-simple.manage-intro-prepare + .site-footer-note[data-manage-reveal] {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(7px);
}

.manage-shell-simple.manage-intro-ready [data-manage-reveal],
.manage-shell-simple.manage-intro-ready + .site-footer-note[data-manage-reveal] {
  animation: heroRevealIn 880ms cubic-bezier(0.18, 0.88, 0.22, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

@keyframes heroRevealIn {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-panel-copy {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 18px 0;
}

.booking-layout {
  display: block;
}

.hero-copy-block {
  display: grid;
  gap: 10px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title,
.section-head h2,
.summary-head h2,
.confirmation-card h2,
.info-card h2,
.manage-card h2,
.manage-card h3 {
  margin: 0;
  letter-spacing: 0;
}

.hero-title {
  font-family: "Jost Custom", "Avenir Next Condensed", "Avenir Next", "Gill Sans", "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 0.94;
  max-width: 12ch;
  text-transform: uppercase;
}

.hero-title-line {
  display: block;
}

.hero-title-line + .hero-title-line {
  margin-top: 0.18em;
}

.hero-title-line--top {
  font-size: 0.82em;
}

.hero-title-accent {
  color: var(--accent-strong);
}

.hero-title-line--clock {
  display: inline-flex;
  align-items: flex-end;
  gap: 0;
  white-space: nowrap;
}

.hero-title-space {
  width: 0.26em;
  flex: 0 0 auto;
}

.hero-title-clock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.9em;
  height: 0.9em;
  color: var(--accent-strong);
  margin-left: -0.01em;
  transform: translateY(-0.035em);
}

.hero-title-clock svg {
  width: 100%;
  height: 100%;
}

.hero-copy,
.manage-copy,
.confirmation-copy,
.confirmation-note,
.section-head p,
.calendar-help,
.trust-copy {
  color: var(--text-muted);
  line-height: 1.5;
}

.hero-copy {
  margin: 0;
  max-width: 28ch;
}

.hero-copy-script {
  font-family: "Jost Custom", "Avenir Next Condensed", "Avenir Next", "Gill Sans", "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(1.08rem, 1.65vw, 1.34rem);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  max-width: 26ch;
}

.hero-feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-feature {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
  min-height: 72px;
}

.hero-feature-icon {
  width: 52px;
  height: 52px;
  color: var(--accent-strong);
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.hero-feature-icon svg {
  width: 28px;
  height: 28px;
}

.hero-cta {
  width: 100%;
  text-decoration: none;
}

.hero-contact {
  display: grid;
  gap: 6px;
}

.hero-contact p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.hero-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-social-link {
  position: relative;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--accent-strong);
  text-decoration: none;
  transition:
    transform 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.hero-social-link::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  border: 1px solid rgba(212, 178, 90, 0.18);
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.015), transparent 68%);
  opacity: 0.95;
  transition:
    border-color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.hero-social-link:hover,
.hero-social-link:focus-visible {
  transform: translateY(-1px) scale(1.02);
  color: var(--accent);
}

.hero-social-link:hover::before,
.hero-social-link:focus-visible::before {
  border-color: rgba(212, 178, 90, 0.34);
  opacity: 1;
  transform: scale(1.03);
}

.hero-social-link svg {
  display: block;
  width: 19px;
  height: 19px;
}

.hero-social-link--instagram svg {
  transform: translateY(0.2px);
}

.hero-social-link--whatsapp svg {
  width: 20px;
  height: 20px;
  transform: none;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-lg);
  background: #101010;
  overflow: hidden;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  filter: saturate(0.92) brightness(0.88);
  transition:
    opacity 1400ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 6200ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 1800ms ease;
  will-change: opacity, transform, filter;
}

.hero-carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1) brightness(1);
}

.hero-carousel-indicators {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.2;
  transform: translateY(4px);
  transition: opacity 280ms ease, transform 280ms ease;
}

.hero-visual:hover .hero-carousel-indicators,
.hero-visual:focus-within .hero-carousel-indicators {
  opacity: 0.95;
  transform: translateY(0);
}

.hero-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(246, 241, 228, 0.18);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition:
    width 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
  opacity: 0.52;
}

.hero-carousel-dot:hover {
  opacity: 1;
  transform: scale(1.04);
}

.hero-carousel-dot.active {
  width: 22px;
  background: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(212, 175, 79, 0.28);
  opacity: 0.94;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.68) 0%, rgba(5, 5, 5, 0.46) 18%, rgba(5, 5, 5, 0.2) 42%, rgba(5, 5, 5, 0.06) 68%, rgba(5, 5, 5, 0) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.26));
  pointer-events: none;
}

.booking-main {
  padding: 24px 26px 26px;
  display: grid;
  align-content: start;
  gap: 16px;
}

.wizard-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 4px 4px 0;
}

.wizard-progress::before {
  content: "";
  position: absolute;
  left: 58px;
  right: 58px;
  top: 19px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.wizard-pill {
  border: 0;
  background: transparent;
  color: var(--text-soft);
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 0 4px;
  text-align: center;
  transition: color 160ms ease;
}

.wizard-pill:hover:not(:disabled) {
  color: var(--text);
}

.wizard-pill:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.wizard-pill-index {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #121212;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.wizard-pill-copy {
  font-size: 0.8rem;
  font-weight: 700;
}

.wizard-pill.current {
  color: var(--text);
}

.wizard-pill.current .wizard-pill-index {
  border-color: var(--accent);
  background: rgba(212, 175, 79, 0.14);
  color: var(--accent-strong);
}

.wizard-pill.completed .wizard-pill-index {
  border-color: rgba(133, 215, 167, 0.36);
  background: rgba(133, 215, 167, 0.12);
  color: var(--success);
}

.wizard-card,
.manage-card,
.info-card,
.summary-panel,
.confirmation-card,
.hero-band {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.98), rgba(16, 16, 16, 0.995));
  box-shadow: var(--shadow);
}

.wizard-card {
  padding: 22px 22px 20px;
}

.wizard-step-label {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-band {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.step-band.is-entering {
  animation: stepPanelIntro 420ms cubic-bezier(0.18, 0.88, 0.22, 1) both;
}

@keyframes stepPanelIntro {
  from {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.step-band:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.section-head {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: 1.72rem;
}

.section-head p {
  margin: 0;
  font-size: 0.96rem;
}

.choice-grid {
  display: grid;
  gap: 12px;
}

#services-grid {
  grid-template-columns: 1fr;
}

.service-group + .service-group {
  margin-top: 22px;
}

.service-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.service-group-title {
  margin: 0;
  font-size: 0.92rem;
  color: var(--accent-strong);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice-grid.service-group-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
  grid-auto-rows: min-content;
}

.barber-grid {
  grid-template-columns: 1fr;
}

.slots-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-card,
.recover-result-card {
  width: 100%;
  padding: 10px 10px 9px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.014));
  color: inherit;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.service-group-grid .choice-card {
  height: auto;
  align-self: start;
}

.choice-card:hover,
.recover-result-card:hover {
  border-color: rgba(212, 175, 79, 0.22);
  background: rgba(212, 175, 79, 0.06);
  transform: translateY(-1px);
}

.choice-card.selected {
  border-color: var(--accent);
  background: rgba(212, 175, 79, 0.08);
  box-shadow: 0 0 0 1px rgba(212, 175, 79, 0.18) inset;
}

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

.service-card {
  display: grid;
  gap: 6px;
  min-height: 0;
  align-content: start;
}

.service-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.service-icon-tile {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 79, 0.16);
  background: rgba(212, 175, 79, 0.05);
  color: var(--accent-strong);
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.service-icon-tile svg {
  width: 11px;
  height: 11px;
}

.service-text {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.service-name,
.slot-time,
.barber-name,
.recover-result-title {
  display: block;
  font-weight: 800;
}

.service-name {
  font-size: 0.84rem;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.service-meta,
.slot-meta,
.barber-meta,
.recover-result-meta {
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.2;
}

.service-meta {
  margin: 0;
}

.service-price-stack {
  grid-column: 1 / -1;
  margin-left: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 3px 7px;
}

.service-price-compare {
  color: var(--text-soft);
  font-size: 0.66rem;
  text-decoration: line-through;
}

.service-price {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-saving {
  color: var(--success);
  font-size: 0.64rem;
  font-weight: 800;
}

.service-group-packages .choice-card {
  border-color: rgba(212, 175, 79, 0.14);
  background:
    linear-gradient(180deg, rgba(212, 175, 79, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    inset 0 0 0 1px rgba(212, 175, 79, 0.05);
}

.service-group-packages .choice-card:hover {
  border-color: rgba(212, 175, 79, 0.28);
  background:
    linear-gradient(180deg, rgba(212, 175, 79, 0.08), rgba(255, 255, 255, 0.03));
}

.service-group-packages .choice-card.selected {
  border-color: var(--accent);
  background:
    linear-gradient(180deg, rgba(212, 175, 79, 0.12), rgba(212, 175, 79, 0.06));
}

.service-group-packages .service-price {
  color: #f4d985;
}

.barber-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.barber-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(212, 175, 79, 0.18), rgba(212, 175, 79, 0.06));
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--accent-strong);
  font-weight: 800;
}

.barber-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.calendar-picker-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.015);
  padding: 18px;
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.calendar-toolbar-copy strong {
  display: block;
  font-size: 1rem;
  text-align: center;
}

.calendar-nav {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  display: inline-grid;
  place-items: center;
  font-size: 1rem;
  transition: border-color 160ms ease, background 160ms ease;
}

.calendar-nav:hover:not(:disabled) {
  border-color: rgba(212, 175, 79, 0.2);
  background: rgba(212, 175, 79, 0.06);
}

.calendar-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-weekdays {
  margin-top: 18px;
}

.calendar-weekdays span {
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}

.calendar-grid {
  margin-top: 10px;
}

.calendar-day,
.calendar-day-placeholder {
  min-height: 64px;
  border-radius: var(--radius-md);
}

.calendar-day {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.calendar-day-number {
  font-size: 0.96rem;
  line-height: 1;
}

.calendar-day-pill {
  min-height: 16px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 0.56rem;
  letter-spacing: 0.04em;
  line-height: 16px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-soft);
}

.calendar-day:hover:not(:disabled) {
  border-color: rgba(212, 175, 79, 0.2);
  background: rgba(212, 175, 79, 0.05);
  transform: translateY(-1px);
}

.calendar-day.selected {
  border-color: var(--accent);
  background: rgba(212, 175, 79, 0.12);
  color: var(--accent-strong);
}

.calendar-day.today {
  border-color: rgba(133, 215, 167, 0.3);
}

.calendar-day.status-available {
  border-color: rgba(133, 215, 167, 0.22);
  background: rgba(133, 215, 167, 0.06);
}

.calendar-day.status-available .calendar-day-pill {
  background: rgba(133, 215, 167, 0.14);
  color: var(--success);
}

.calendar-day.status-limited {
  border-color: rgba(212, 175, 79, 0.24);
  background: rgba(212, 175, 79, 0.07);
}

.calendar-day.status-limited .calendar-day-pill {
  background: rgba(212, 175, 79, 0.16);
  color: var(--accent-strong);
}

.calendar-day.status-full {
  border-color: rgba(239, 158, 136, 0.18);
  background: rgba(239, 158, 136, 0.05);
}

.calendar-day.status-full .calendar-day-pill {
  background: rgba(239, 158, 136, 0.14);
  color: var(--danger);
}

.calendar-day:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  transform: none;
}

.calendar-day-placeholder {
  background: transparent;
}

.calendar-help {
  margin: 12px 0 0;
  font-size: 0.9rem;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 12px;
}

.calendar-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.calendar-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.calendar-legend-item.available .calendar-legend-dot {
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(133, 215, 167, 0.12);
}

.calendar-legend-item.limited .calendar-legend-dot {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(212, 175, 79, 0.12);
}

.calendar-legend-item.full .calendar-legend-dot {
  background: var(--danger);
  box-shadow: 0 0 0 4px rgba(239, 158, 136, 0.10);
}

.status-row {
  min-height: 20px;
  margin: 0 0 14px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.status-row.compact {
  margin-top: 6px;
}

.status-row.success {
  color: var(--success);
}

.status-row.error {
  color: var(--danger);
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.slot-time {
  font-size: 1.35rem;
  line-height: 1.05;
}

.slot-meta {
  margin-top: 8px;
}

.slots-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.slots-actions:empty {
  display: none;
}

.wizard-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}

.wizard-nav-button {
  min-width: 0;
}

.confirm-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.72fr);
  gap: 18px;
  align-items: start;
}

.summary-panel {
  padding: 18px;
}

.summary-head {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.summary-head h2 {
  font-size: 1.14rem;
}

.summary-list,
.summary-stack {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.summary-list div,
.summary-stack div {
  display: grid;
  gap: 5px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.summary-list div:last-child,
.summary-stack div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.summary-list dt,
.summary-stack dt {
  color: var(--text-soft);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-list dd,
.summary-stack dd {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
}

.trust-copy {
  margin: 16px 0 0;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.booking-form {
  display: grid;
  gap: 14px;
}

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

.field span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: rgba(212, 175, 79, 0.05);
}

.field textarea {
  resize: vertical;
  min-height: 116px;
}

.primary-action,
.secondary-action {
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  font-weight: 800;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
  padding: 0 16px;
  transition: transform 160ms ease, filter 160ms ease, opacity 160ms ease, border-color 160ms ease, background 160ms ease;
}

.primary-action.icon-action,
.secondary-action.icon-action {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.button-inline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.button-inline-icon svg {
  width: 100%;
  height: 100%;
}

.button-inline-label {
  display: inline-block;
  white-space: nowrap;
}

.primary-action {
  position: relative;
  border: 0;
  background: linear-gradient(180deg, #d5b359 0%, #bf973d 100%);
  color: var(--accent-ink);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 22px rgba(191, 151, 61, 0.14);
}

.primary-action::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 16%, rgba(255, 255, 255, 0.16) 42%, transparent 70%);
  transform: translateX(-135%);
  transition: transform 620ms cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}

.primary-action:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.004);
  filter: brightness(1.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 34px rgba(191, 151, 61, 0.18);
}

.primary-action:hover:not(:disabled)::before {
  transform: translateX(135%);
}

.primary-action:active:not(:disabled) {
  transform: translateY(0) scale(0.998);
}

.primary-action:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  display: inline-grid;
  place-items: center;
  text-decoration: none;
}

.secondary-action:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 79, 0.24);
  background: rgba(212, 175, 79, 0.06);
}

.secondary-action:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.secondary-action:disabled:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.info-band {
  margin-top: 26px;
}

.info-card {
  padding: 22px;
}

.info-list {
  margin-top: 18px;
}

.hero-band {
  margin-top: 18px;
  padding: 24px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.brand-lockup {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.hero-note {
  min-width: 220px;
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.note-title {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-weight: 800;
}

.note-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.note-badge {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 800;
}

.confirmation-dialog {
  width: min(520px, calc(100vw - 32px));
  border: 0;
  padding: 0;
  background: transparent;
}

.confirmation-dialog::backdrop {
  background: rgba(0, 0, 0, 0.68);
}

.confirmation-card {
  padding: 28px;
  display: grid;
  gap: 14px;
  text-align: center;
}

.confirmation-badge {
  width: 82px;
  height: 82px;
  margin: 0 auto 2px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--success);
  background: radial-gradient(circle at top, rgba(133, 215, 167, 0.2), rgba(133, 215, 167, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 36px rgba(133, 215, 167, 0.1);
}

.confirmation-badge svg {
  width: 38px;
  height: 38px;
}

.confirmation-badge.danger {
  color: var(--danger);
  background: radial-gradient(circle at top, rgba(239, 158, 136, 0.2), rgba(239, 158, 136, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 36px rgba(239, 158, 136, 0.1);
}

.confirmation-copy {
  margin: 0;
}

.confirmation-summary {
  display: grid;
  gap: 12px;
  margin: 2px 0 4px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.025);
  text-align: left;
}

.confirmation-summary div {
  display: grid;
  gap: 4px;
}

.confirmation-summary-label {
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.confirmation-summary strong {
  font-size: 1rem;
  font-weight: 800;
}

.confirmation-note {
  margin: 0;
}

.confirmation-actions {
  display: grid;
  gap: 12px;
}

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

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

.manage-shell {
  display: grid;
  gap: 18px;
  padding: 24px 26px 26px;
}

.manage-shell-simple {
  min-height: calc(100vh - 180px);
  align-content: start;
  justify-items: center;
  padding-block: 34px 40px;
}

.manage-entry-card {
  width: min(560px, 100%);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.98), rgba(16, 16, 16, 0.995));
  box-shadow: var(--shadow);
}

.manage-entry-copy {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.manage-entry-title {
  margin: 0;
  font-family: "Jost Custom", "Avenir Next Condensed", "Avenir Next", "Gill Sans", "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 0.98;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.24em;
}

.manage-entry-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  color: var(--accent-strong);
  transform: translateY(0.02em);
}

.manage-entry-title-icon svg {
  width: 100%;
  height: 100%;
}

.manage-entry-form {
  gap: 12px;
}

.manage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 24px;
  align-items: start;
}

.manage-card {
  padding: 22px;
}

.manage-hero-panel {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.manage-hero-title {
  max-width: 11ch;
}

.manage-hero-copy .hero-copy {
  max-width: 34ch;
}

.manage-hero-visual {
  min-height: 420px;
}

.cancel-confirmation-card {
  border-color: rgba(239, 158, 136, 0.1);
}

.manage-copy {
  font-family: "Jost Custom", "Avenir Next Condensed", "Avenir Next", "Gill Sans", "Trebuchet MS", "Segoe UI", sans-serif;
  margin: 8px 0 0;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.appointment-dialog-card,
.edit-dialog-card {
  width: min(640px, calc(100vw - 32px));
}

.appointment-summary {
  margin-top: 4px;
}

.appointment-actions {
  margin-top: 4px;
}

.edit-dialog-grid {
  display: grid;
  gap: 16px;
}

.edit-section {
  padding: 18px;
}

.edit-section select,
.edit-section input,
.edit-section textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

.edit-section select:focus,
.edit-section input:focus,
.edit-section textarea:focus {
  border-color: var(--accent);
  background: rgba(212, 175, 79, 0.05);
}

.manage-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.danger-action {
  border-color: rgba(239, 158, 136, 0.34);
  color: #ffd4ca;
}

.danger-action:hover {
  border-color: var(--danger);
  background: rgba(239, 158, 136, 0.1);
}

.recover-result-actions {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

@media (max-width: 1120px) {
  .choice-grid.service-group-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .confirm-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .page-shell {
    padding-inline: 16px;
    padding-top: 16px;
  }

  .showcase-shell {
    border-radius: 18px;
  }

  .hero-inner,
  .manage-grid {
    grid-template-columns: 1fr;
  }

  .manage-entry-card {
    width: min(620px, 100%);
  }

  .hero-panel {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.72fr);
    gap: 18px;
    align-items: stretch;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero-visual {
    min-height: 340px;
    background-position: center;
  }

  .manage-shell {
    padding: 22px 24px 24px;
  }

  .hero-carousel-indicators {
    right: 16px;
    bottom: 14px;
    gap: 7px;
  }

  .hero-note {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding-inline: 12px;
    padding-bottom: 28px;
  }

  .site-header {
    padding: 14px 16px 12px;
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(14px);
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.97), rgba(17, 17, 17, 0.82));
  }

  .brand-crown {
    width: 24px;
  }

  .brand-wordmark {
    font-size: 1.34rem;
    letter-spacing: 0.06em;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

  .site-nav-link {
    font-size: 0.84rem;
  }

  .hero-panel {
    grid-template-columns: minmax(0, 1fr) minmax(126px, 40vw);
    gap: 14px;
    padding: 16px;
    align-items: stretch;
  }

  .booking-main {
    padding: 18px 16px;
  }

  .manage-shell {
    padding: 18px 16px 22px;
  }

  .manage-shell-simple {
    min-height: auto;
    padding-top: 20px;
  }

  .manage-entry-card {
    padding: 22px 18px;
  }

  .hero-panel-copy {
    padding: 0;
  }

  .hero-title {
    font-size: 2.1rem;
    max-width: 11.2ch;
  }

  .hero-copy,
  .manage-copy,
  .confirmation-copy,
  .confirmation-note,
  .section-head p,
  .calendar-help,
  .trust-copy,
  .hero-contact p {
    font-size: 0.88rem;
  }

  .hero-feature-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-social-link {
    width: 36px;
    height: 36px;
  }

  .hero-social-link svg {
    width: 18px;
    height: 18px;
  }

  .hero-feature {
    justify-items: center;
    min-height: 64px;
    text-align: center;
  }

  .hero-carousel-indicators {
    right: 12px;
    bottom: 12px;
    gap: 6px;
  }

  .hero-carousel-dot {
    width: 7px;
    height: 7px;
  }

  .hero-carousel-dot.active {
    width: 18px;
  }

  .wizard-progress {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 2px;
    scrollbar-width: none;
    position: sticky;
    top: 76px;
    z-index: 20;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.82));
  }

  .wizard-progress::-webkit-scrollbar {
    display: none;
  }

  .wizard-progress::before {
    display: none;
  }

  .wizard-pill {
    min-width: 58px;
    flex: 0 0 auto;
    gap: 6px;
  }

  .wizard-pill-index {
    width: 24px;
    height: 24px;
    font-size: 0.76rem;
  }

  .wizard-pill-copy {
    font-size: 0.72rem;
  }

  .wizard-card,
  .manage-card,
  .info-card {
    border-radius: 14px;
    padding: 16px;
  }

  .section-head h2 {
    font-size: 1.4rem;
  }

  .slots-grid {
    grid-template-columns: 1fr;
  }

  .choice-grid.service-group-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 6px;
  }

  .calendar-day,
  .calendar-day-placeholder {
    min-height: 48px;
  }

  .wizard-actions {
    grid-template-columns: 1fr;
  }

  .wizard-nav-button:first-child {
    order: 2;
  }

  .hero-band {
    padding: 18px 16px;
  }

  .hero-visual {
    min-height: 100%;
    background-position: center;
  }

  .brand-lockup {
    grid-template-columns: 1fr;
  }
}
