:root {
  --bg: #f7f2eb;
  --surface: #fffaf4;
  --ink: #312821;
  --muted: #6e5f53;
  --line: #e6d7c7;
  --brand: #b85c38;
  --brand-dark: #8f3f20;
  --accent: #d49a6a;
  --shadow: 0 16px 40px rgba(76, 40, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, #f7f2eb 0%, #f3ece3 100%);
  color: var(--ink);
  line-height: 1.5;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  font-family: "DM Serif Display", serif;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.bg-glow {
  position: fixed;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  filter: blur(50px);
  z-index: -1;
  opacity: 0.4;
}

.bg-glow-left {
  background: #eecfaf;
  left: -12rem;
  top: -8rem;
}

.bg-glow-right {
  background: #d88f71;
  right: -14rem;
  bottom: -10rem;
}

.site-header {
  padding: 1rem 0;
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  z-index: 10;
}

.header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand-banner {
  display: block;
  max-width: min(780px, 70vw);
  line-height: 0;
}

.brand-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1.4fr 1fr;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-top: 0.5rem;
}

.lead {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 58ch;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  background: #f0dfcd;
  border: 1px solid #e4c8ab;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-card,
.service-group,
.booking-form,
.summary,
.policies {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.4rem;
}

.hero-card h2 {
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}

.hero-card ul {
  display: grid;
  gap: 0.7rem;
}

.hero-card li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
}

.hero-card li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 0.8rem;
  padding: 0.7rem 1rem;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  transition: transform 160ms ease, opacity 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-outline {
  color: var(--brand-dark);
  border: 1px solid var(--brand-dark);
  background: transparent;
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
}

.btn.full {
  width: 100%;
  margin-top: 1rem;
}

.booking {
  padding: 1rem 0 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.section-head.compact h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.service-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.services-loading {
  grid-column: 1 / -1;
  color: var(--muted);
  background: #fff8ee;
  border: 1px dashed #d7bfa4;
  border-radius: 0.8rem;
  padding: 0.9rem;
}

.service-group {
  padding: 1rem;
}

.service-group h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.45rem;
  border-radius: 0.65rem;
  cursor: pointer;
}

.service-item:hover {
  background: #f5ece1;
}

.service-item input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--brand);
}

.service-item span {
  color: var(--ink);
}

.service-item strong {
  color: var(--brand-dark);
}

.booking-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
}

.booking-form,
.summary {
  padding: 1.2rem;
}

.staff-picker {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.7rem;
}

.staff-empty {
  color: var(--muted);
  font-size: 0.94rem;
  background: #fbf4eb;
  border: 1px dashed #dcc4aa;
  border-radius: 0.75rem;
  padding: 0.8rem;
}

.staff-group {
  border: 1px solid #e8d8c7;
  border-radius: 0.8rem;
  overflow: hidden;
  background: #fffdf9;
}

.staff-service-name {
  padding: 0.7rem 0.9rem;
  background: #f7eee4;
  border-bottom: 1px solid #e8d8c7;
  font-weight: 700;
}

.staff-option {
  margin: 0;
}

.staff-option + .staff-option {
  border-top: 1px solid #efe2d4;
}

.staff-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.staff-option-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.7rem 0.9rem;
  cursor: pointer;
}

.staff-option-row:hover {
  background: #fdf4ea;
}

.staff-avatar {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: #ebe6df;
  color: #9f9aa9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.staff-name {
  color: var(--ink);
  font-weight: 600;
}

.staff-check {
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid #ccc0b3;
  border-radius: 50%;
}

.staff-option input:checked + .staff-option-row {
  background: #f6ecdf;
}

.staff-option input:checked + .staff-option-row .staff-check {
  border-color: var(--brand-dark);
  background: radial-gradient(circle at center, var(--brand-dark) 0 40%, transparent 42%);
}

.form-step-head {
  margin-top: 1rem;
}

.form-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

input,
textarea {
  border: 1px solid #dfcebb;
  background: #fff;
  border-radius: 0.65rem;
  padding: 0.65rem 0.75rem;
  font: inherit;
}

textarea {
  resize: vertical;
  min-height: 6rem;
}

label:has(textarea) {
  grid-column: 1 / -1;
}

.availability-box {
  grid-column: 1 / -1;
  border: 1px solid #dfcebb;
  background: #fff8ef;
  border-radius: 0.7rem;
  padding: 0.8rem;
}

.availability-title {
  font-weight: 800;
  color: var(--ink);
}

.availability-help {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.availability-slots {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 0.45rem;
}

.slot-btn {
  border: 1px solid #d6b89a;
  border-radius: 0.55rem;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  padding: 0.45rem 0.4rem;
  cursor: pointer;
}

.slot-btn:hover {
  background: #fdf1e3;
}

.slot-btn.active {
  background: #d98f5f;
  border-color: #b85c38;
  color: #fff;
}

.slot-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

input[readonly] {
  background: #f6f0e8;
}

input:focus,
textarea:focus {
  outline: 2px solid #f2c79b;
  border-color: #cc8a54;
}

.form-feedback {
  margin-top: 0.75rem;
  min-height: 1.2em;
  color: var(--brand-dark);
  font-weight: 700;
}

.selected-services {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.5rem;
}

.selected-services li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.totals {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px dashed #d5b89b;
  display: grid;
  gap: 0.45rem;
}

.totals p {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.totals span {
  color: var(--muted);
}

.totals strong {
  font-size: 1.08rem;
}

.note {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.policies {
  margin-bottom: 2.5rem;
  padding: 1.2rem;
}

.policies h2 {
  font-size: 1.75rem;
  margin-bottom: 0.6rem;
}

.policies ul {
  display: grid;
  gap: 0.5rem;
}

.policies li {
  color: var(--muted);
  position: relative;
  padding-left: 1.2rem;
}

.policies li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1rem 0 1.5rem;
  color: var(--muted);
}

.footer-content {
  display: grid;
  gap: 0.8rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brand-dark);
  border: 1px solid #d4b89b;
  background: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
}

.contact-chip.whatsapp {
  color: #0f5f42;
  border-color: #8fc9b0;
  background: #edf8f2;
}

.contact-chip:hover {
  opacity: 0.9;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  animation: rise 600ms ease forwards;
}

.reveal-delay {
  animation-delay: 180ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .service-grid,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: -1;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .header-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .brand-banner {
    max-width: 100%;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .btn,
  .btn-outline,
  .btn-ghost {
    width: 100%;
  }

  .contact-links {
    flex-direction: column;
  }

  .contact-chip {
    justify-content: center;
  }
}
