:root {
  --bg: #f6f3ee;
  --surface: #fffdf9;
  --surface-strong: #132238;
  --text: #1f2937;
  --muted: #5b6573;
  --line: #e7dfd3;
  --brand: #0e6b5c;
  --brand-strong: #0a574a;
  --accent: #d9a31a;
  --soft: #efe7db;
  --max-width: 1180px;
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 18px 50px rgba(19, 34, 56, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(14, 107, 92, 0.12), transparent 32%),
    linear-gradient(180deg, #fbf8f3 0%, var(--bg) 100%);
  color: var(--text);
}

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

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

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 248, 243, 0.88);
  border-bottom: 1px solid rgba(231, 223, 211, 0.7);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 1.2rem;
}

.brand__mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #f4ede0;
  padding: 8px;
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.btn--primary {
  color: white;
  background: linear-gradient(135deg, var(--brand) 0%, #1d8e79 100%);
}

.btn--secondary {
  background: white;
  border-color: var(--line);
}

.hero {
  padding: 54px 0 24px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.hero__content,
.hero__panel,
.section-card,
.timeline,
.cta {
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(231, 223, 211, 0.8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero__content {
  padding: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(14, 107, 92, 0.09);
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.95rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 60ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.stat {
  padding: 16px;
  border-radius: var(--radius-lg);
  background: #f7f0e6;
}

.stat strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero__panel {
  padding: 30px;
  color: white;
  background:
    linear-gradient(180deg, rgba(10, 30, 46, 0.92) 0%, rgba(14, 107, 92, 0.95) 100%),
    radial-gradient(circle at top right, rgba(217, 163, 26, 0.3), transparent 30%);
  overflow: hidden;
}

.hero__panel h3 {
  font-size: 1.6rem;
}

.hero__panel p {
  margin: 12px 0 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.pill-list,
.check-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.pill-list span,
.check-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
}

.section {
  padding: 28px 0;
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section__head p {
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.6;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

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

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

.section-card {
  padding: 24px;
}

.section-card h3 {
  font-size: 1.35rem;
}

.section-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.92rem;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.step {
  padding: 16px;
  border-radius: var(--radius-lg);
  background: #f7f0e6;
}

.step strong {
  display: block;
  margin-bottom: 6px;
}

.timeline {
  padding: 28px;
}

.timeline ol {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 14px;
}

.timeline li {
  padding-left: 6px;
  line-height: 1.6;
}

.cta {
  padding: 34px;
  margin: 28px 0 48px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.95), rgba(245, 238, 228, 0.95));
}

.cta p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 60ch;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.footer {
  padding: 0 0 42px;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-page {
  padding: 46px 0 56px;
}

.legal-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 249, 0.95);
  border: 1px solid rgba(231, 223, 211, 0.8);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  max-width: none;
}

.legal-card h2 {
  margin-top: 28px;
  font-size: 1.45rem;
}

.legal-card p,
.legal-card li {
  margin: 12px 0 0;
  line-height: 1.7;
  color: var(--muted);
}

.legal-card ul {
  padding-left: 20px;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 0;
}

.input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  font: inherit;
}

.split-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.92rem;
}

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

.salon-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 249, 0.95);
  border: 1px solid rgba(231, 223, 211, 0.8);
  box-shadow: var(--shadow);
}

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

.salon-card p {
  color: var(--muted);
  line-height: 1.6;
}

.salon-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.notice {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f7f0e6;
  color: var(--muted);
  line-height: 1.6;
}

.list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.status-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.status-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(231, 223, 211, 0.9);
  background: rgba(255, 253, 249, 0.95);
  box-shadow: var(--shadow);
}

.status-card--live {
  background: linear-gradient(180deg, rgba(14, 107, 92, 0.08), rgba(255, 253, 249, 0.95));
}

.status-card--next {
  background: linear-gradient(180deg, rgba(217, 163, 26, 0.08), rgba(255, 253, 249, 0.95));
}

.status-card h3 {
  font-size: 1.35rem;
}

.status-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.fit-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fit-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fbf8f3;
}

.fit-card h3 {
  font-size: 1.15rem;
}

.fit-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.list__item {
  padding: 14px 16px;
  border-radius: 18px;
  background: #f9f7f3;
}

.review {
  padding: 16px;
  border-radius: 18px;
  background: #f9f7f3;
}

.review strong {
  display: block;
  margin-bottom: 8px;
}

.small {
  color: var(--muted);
  font-size: 0.94rem;
}

.empty-state {
  padding: 28px;
  border-radius: 24px;
  border: 1px dashed var(--line);
  text-align: center;
  color: var(--muted);
  background: rgba(255, 253, 249, 0.72);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.booking-grid--summary {
  grid-template-columns: 1fr 0.8fr;
}

.booking-stage {
  display: grid;
  gap: 18px;
}

.booking-service-list,
.slot-list,
.form-grid,
.summary-list {
  display: grid;
  gap: 14px;
}

.booking-service {
  display: flex;
  width: 100%;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fbf8f3;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.booking-service:hover,
.slot-button:hover {
  transform: translateY(-1px);
}

.booking-service--selected {
  border-color: rgba(14, 107, 92, 0.5);
  background: rgba(14, 107, 92, 0.08);
}

.booking-service strong,
.slot-day__head strong {
  display: block;
  margin-bottom: 6px;
}

.booking-service span,
.slot-day__head span,
.field span {
  color: var(--muted);
}

.booking-service__meta {
  display: grid;
  gap: 8px;
  text-align: right;
  font-weight: 700;
  color: var(--brand-strong);
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.slot-day {
  padding: 18px;
  border-radius: 22px;
  background: #fbf8f3;
  border: 1px solid var(--line);
}

.slot-day__head {
  margin-bottom: 14px;
}

.slot-button {
  min-width: 92px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.slot-button--selected {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand) 0%, #1d8e79 100%);
}

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

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

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

.input--textarea {
  min-height: 148px;
  padding: 14px 16px;
  resize: vertical;
}

.summary-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f9f7f3;
}

.summary-row--stack {
  display: grid;
}

.summary-row span {
  color: var(--muted);
}

.summary-row strong {
  text-align: right;
}

.status-banner {
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.6;
}

.status-banner--info {
  background: rgba(14, 107, 92, 0.08);
  color: var(--brand-strong);
}

.status-banner--success {
  background: rgba(36, 145, 92, 0.12);
  color: #1e6b47;
}

.status-banner--error {
  background: rgba(180, 54, 54, 0.1);
  color: #8d2424;
}

@media (max-width: 980px) {
  .split-hero {
    grid-template-columns: 1fr;
  }

  .booking-grid,
  .booking-grid--summary,
  .form-grid--two,
  .status-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .hero__grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

  .topbar__inner {
    min-height: auto;
    padding: 14px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, var(--max-width));
  }

  .hero {
    padding-top: 32px;
  }

  .hero__content,
  .hero__panel,
  .section-card,
  .timeline,
  .cta,
  .legal-card {
    padding: 22px;
    border-radius: 24px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero__actions,
  .cta__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .booking-service {
    grid-template-columns: 1fr;
    display: grid;
  }

  .booking-service__meta,
  .summary-row strong {
    text-align: left;
  }

  .booking-actions {
    flex-direction: column;
  }
}
