@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700;900&display=swap");

:root {
  --bg: #bfe3e8;
  --panel: #efefef;
  --panel-soft: #f7f7f2;
  --ink: #111111;
  --muted: #333333;
  --accent: #ff00e6;
  --accent-2: #ff4af1;
  --yellow: #f8e600;
  --border: #111111;
  --shadow: 4px 4px 0 #111111;
  --body-font: "Helvetica Neue", Arial, sans-serif;
  --display-font: "Space Grotesk", "Arial Black", sans-serif;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1080px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--body-font);
  line-height: 1.55;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.12em;
}

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

h1,
h2,
h3,
h4,
.brand,
.eyebrow,
.button,
button,
.service-card__pill,
.topbar__note,
.status-badge {
  font-family: var(--display-font);
}

:focus-visible {
  outline: 4px solid var(--accent);
  outline-offset: 4px;
}

.shell {
  width: min(92vw, var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  border-bottom: 3px solid var(--border);
}

.topbar__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.brand {
  text-decoration: none;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  padding: 10px 14px;
  border: 3px solid var(--border);
  background: var(--panel-soft);
  box-shadow: var(--shadow);
}

.topbar__note {
  font-weight: 700;
  padding: 10px 14px;
  border: 3px solid var(--border);
  background: var(--panel-soft);
  border-radius: 999px;
}

.hero,
.section {
  padding: 28px 0;
}

.hero__panel,
.timeline,
.service-card,
.booking-card,
.faq__item,
.status-card {
  background: var(--panel);
  border: 3px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero__panel {
  background: linear-gradient(180deg, #fff1a8 0%, #efefef 100%);
  padding: 28px;
}

.section--intro {
  padding-top: 6px;
}

.section--flow {
  padding-top: 4px;
}

.eyebrow {
  display: inline-block;
  border: 3px solid var(--border);
  background: #ffffff;
  color: var(--ink);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero__grid,
.booking,
.services {
  display: grid;
  gap: 24px;
}

.hero__grid {
  grid-template-columns: 1.3fr 0.9fr;
  align-items: start;
  padding-top: 18px;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 18px;
  line-height: 1.02;
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  max-width: 10ch;
}

.hero p,
.page-hero p,
.section-copy,
.status-copy {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.68;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button,
button {
  display: inline-block;
  border: 3px solid var(--border);
  border-radius: 14px;
  padding: 11px 18px;
  text-decoration: none;
  font-weight: 900;
  font-size: 1rem;
  transition: background 0.18s ease, transform 0.18s ease;
  cursor: pointer;
}

.button:hover,
button:hover {
  transform: translate(-1px, -1px);
}

.button--primary,
button[type="submit"] {
  background: var(--accent);
  color: #111111;
  box-shadow: var(--shadow);
}

.button--primary:hover,
button[type="submit"]:hover {
  background: var(--accent-2);
}

.button--ghost {
  background: #ffffff;
  color: var(--ink);
}

.button--ghost:hover {
  background: #ffe5fb;
}

.hero__stats {
  display: grid;
  gap: 18px;
}

.stat-card,
.mini-card {
  background: #ffffff;
  border: 3px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.stat-card strong,
.mini-card__price,
.service-card__price {
  display: block;
  font-family: var(--display-font);
  font-weight: 900;
  line-height: 1;
}

.stat-card strong {
  font-size: 3rem;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.mini-card h2 {
  margin: 10px 0 8px;
  font-size: 1.8rem;
  line-height: 1.05;
}

.mini-card__title {
  font-size: 1.6rem;
  margin: 0.5rem 0 0.4rem;
}

.mini-card__price,
.service-card__price {
  font-size: 2.2rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 18px;
}

.section h2 {
  display: inline-block;
  margin: 0 0 12px;
  line-height: 1.05;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  background: var(--yellow);
  border: 3px solid var(--border);
  border-radius: 12px;
  padding: 8px 12px;
}

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

.services--overview .service-card .button {
  text-align: center;
}

.service-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.service-card.selected {
  background: #ffffff;
}

.service-card.is-recommended {
  background: linear-gradient(180deg, #fffef8 0%, #ffffff 100%);
}

.service-card__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  flex-wrap: wrap;
}

.service-card h3 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 0.95;
  max-width: 9ch;
}

.service-card__pill {
  display: inline-block;
  border: 3px solid var(--border);
  background: var(--yellow);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 700;
}

.service-card__tag {
  display: inline-block;
  margin-top: 10px;
  border: 3px solid var(--border);
  background: var(--accent-2);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--display-font);
}

.service-card__top > div:first-child {
  flex: 1 1 240px;
  min-width: 0;
}

.service-card__price {
  flex: 0 0 auto;
  font-size: clamp(2.1rem, 3vw, 3rem);
  white-space: nowrap;
  text-align: right;
}

.service-card .section-copy {
  margin: 0;
  max-width: 28ch;
}

.service-card ul {
  margin-top: 0;
  margin-bottom: 0;
}

.service-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.service-card ul,
.faq ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.content-grid {
  display: grid;
  gap: 24px;
}

.content-card,
.cta-card {
  padding: 24px;
  background: var(--panel-soft);
  border: 3px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.content-card {
  max-width: 860px;
}

.content-card--bio {
  max-width: 860px;
}

.checklist {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.checklist li::marker {
  color: var(--accent);
}

.checklist--soft {
  margin-bottom: 16px;
}

.cta-card {
  background: linear-gradient(180deg, #fff1a8 0%, #efefef 100%);
}

.cta-card h2 {
  margin-top: 0;
  max-width: 14ch;
}

.booking {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.wizard-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.wizard-shell--page .wizard-main {
  display: grid;
}

.wizard-main,
.wizard-side {
  min-width: 0;
}

.wizard-side {
  position: sticky;
  top: 102px;
}

.flow-block {
  padding: 24px 0;
}

.flow-block:first-child {
  padding-top: 0;
}

.flow-block:last-child {
  padding-bottom: 0;
}

.wizard-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.wizard-step {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--border);
  border-radius: 50%;
  background: #ffffff;
  padding: 0;
  box-shadow: none;
  font-size: 1.05rem;
}

.wizard-step.is-active {
  background: var(--yellow);
  box-shadow: none;
}

.wizard-step.is-done {
  background: #d7d7d2;
  color: var(--muted);
}

.wizard-panel {
  display: grid;
  gap: 14px;
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.date-pills,
.time-grid,
.payment-grid {
  display: grid;
  gap: 12px;
}

.date-pills {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.time-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.date-pill,
.time-pill {
  border: 3px solid var(--border);
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: background 0.18s ease, transform 0.18s ease;
}

.date-pill:hover,
.time-pill:hover {
  background: #ffe5fb;
  transform: translate(-1px, -1px);
}

.date-pill.is-active,
.time-pill.is-active {
  background: var(--accent);
}

.date-pill.is-active {
  padding: 10px 14px;
  transform: scale(0.96);
}

.date-pill strong,
.time-pill strong,
.date-pill span,
.time-pill span {
  display: block;
}

.date-pill span,
.time-pill span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.time-grid-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 4px 0 2px;
}

.time-grid-head span {
  display: block;
  height: 3px;
  background: var(--border);
  border-radius: 999px;
}

.time-grid-head strong {
  font-family: var(--display-font);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.time-pill.is-unavailable {
  background: #ece8e0;
  color: #666666;
  cursor: not-allowed;
  opacity: 0.78;
}

.time-pill.is-unavailable:hover {
  background: #ece8e0;
  transform: none;
}

.auth-card,
.summary-card,
.payment-card {
  border: 3px solid var(--border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  padding: 18px;
}

.auth-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.auth-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 3px solid var(--border);
}

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

.summary-meta {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  font-weight: 700;
}

.booking-card {
  padding: 22px;
}

.booking-card .help {
  max-width: 46ch;
}

.booking-card h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

.summary-card strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.1;
  margin-bottom: 8px;
}

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

.field label {
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  font: inherit;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 3px solid var(--border);
  background: #ffffff;
  color: var(--ink);
}

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

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

.help,
.form-note,
.status-meta {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.flash {
  min-height: 1.5rem;
  font-weight: 700;
}

.flash[data-tone="error"] {
  color: #9d0f74;
}

.flash[data-tone="success"] {
  color: #0b6d77;
}

.faq {
  display: grid;
  gap: 18px;
}

.faq__item {
  padding: 22px;
  background: var(--panel-soft);
}

.faq__item h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.footer {
  padding: 10px 0 36px;
  font-weight: 700;
}

.status-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px 0;
}

.status-card {
  width: min(92vw, 760px);
  padding: 28px;
}

.status-badge {
  display: inline-block;
  border: 3px solid var(--border);
  background: var(--yellow);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.84rem;
  font-weight: 700;
}

.status-badge[data-tone="success"] {
  background: #8bf0cb;
}

.status-badge[data-tone="error"] {
  background: #ffa7d8;
}

@media (max-width: 900px) {
  .hero__grid,
  .booking,
  .services,
  .wizard-shell,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .wizard-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .topbar__inner,
  .hero__actions {
    flex-direction: column;
    align-items: start;
  }

  .hero__panel,
  .timeline,
  .service-card,
  .content-card,
  .cta-card,
  .booking-card,
  .faq__item,
  .status-card {
    padding: 18px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 11ch;
  }

  .service-card__top {
    flex-direction: column;
  }

  .service-card__price {
    text-align: left;
  }
}
