:root {
  --bg: #faf6f0;
  --bg-alt: #f0ebe2;
  --fg: #1c1c1c;
  --fg-muted: #6b6b6b;
  --accent: #2d5a3f;
  --accent-light: #3d7a55;
  --gold: #d4920f;
  --white: #ffffff;
  --border: #e0d9cf;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

/* Navbar */
.navbar {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.nav-tagline {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 80px 48px 64px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 440px;
  margin-bottom: 32px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  height: 280px;
}
.clock-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 6px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.clock-ring::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.clock-face {
  text-align: center;
}
.clock-hour {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.clock-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.home-icon {
  opacity: 0.85;
}

/* Sections */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* Services */
.services {
  background: var(--white);
  padding: 72px 48px;
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.service-card {
  padding: 28px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.service-card:hover {
  border-color: var(--accent);
}
.service-icon {
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}
.service-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Why */
.why {
  padding: 80px 48px;
  background: var(--bg-alt);
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-headline {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}
.why-body {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 36px;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}
.why-point strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 2px;
}
.why-point p {
  font-size: 14px;
  color: var(--fg-muted);
}
.stat-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* How */
.how {
  padding: 72px 48px;
  background: var(--accent);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.how .section-label {
  color: var(--gold);
}
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
}
.step {
  max-width: 220px;
  text-align: center;
}
.step-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  margin-bottom: 12px;
}
.step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}
.step p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.step-connector {
  display: flex;
  align-items: center;
  padding: 0 16px;
  margin-top: -40px;
}

/* Closing */
.closing {
  padding: 80px 48px;
  background: var(--bg);
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-clock {
  margin-bottom: 36px;
}
.closing-clock-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 5px solid var(--accent);
}
.closing-clock-inner {
  text-align: center;
}
.closing-clock-hrs {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.closing-clock-sub {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.closing-text h2 {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--accent);
  margin-bottom: 16px;
}
.closing-text p {
  font-size: 18px;
  color: var(--fg-muted);
}

/* Footer */
.footer {
  background: var(--accent);
  padding: 32px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.footer-meta p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* Booking page */
.bk-header {
  padding: 60px 48px 40px;
  background: var(--bg);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.bk-header-inner { max-width: 640px; margin: 0 auto; }
.bk-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.bk-subtitle {
  font-size: 17px;
  color: var(--fg-muted);
}

.bk-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.bk-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Step indicator */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 8px;
}
.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  cursor: default;
}
.step-dot.active {
  border-color: var(--accent);
  background: var(--accent);
}
.step-dot.active .step-num-label { color: var(--white); }
.step-num-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  font-family: 'DM Sans', sans-serif;
}
.step-line {
  width: 80px;
  height: 2px;
  background: var(--border);
}
.step-labels {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}
.step-labels span {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  width: 96px;
  text-align: center;
}

/* Form steps */
.form-step {
  display: none;
  flex-direction: column;
  gap: 28px;
}
.form-step.active { display: flex; }

.step-heading {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--accent);
}

/* Service cards */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.svc-card { cursor: pointer; }
.svc-card input[type="radio"] { display: none; }
.svc-card-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.svc-card:hover .svc-card-inner,
.svc-card.selected .svc-card-inner {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(45,90,63,0.08);
}
.svc-icon {
  color: var(--accent);
  opacity: 0.8;
}
.svc-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}
.svc-text p {
  font-size: 14px;
  color: var(--fg-muted);
}
.svc-check {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg);
  transition: all 0.2s;
}
.svc-card.selected .svc-check {
  background: var(--accent);
  border-color: var(--accent);
}
.svc-card.selected .svc-check::after {
  content: '';
  display: block;
  width: 6px;
  height: 10px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(1px, -1px);
  margin: 2px auto;
}

/* Calendar */
.cal-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.cal-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cal-month-label {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}
.cal-nav-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  transition: border-color 0.2s;
}
.cal-nav-btn:hover { border-color: var(--accent); color: var(--accent); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-dow {
  font-size: 11px;
  font-weight: 700;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-align: center;
  padding: 4px 0;
  text-transform: uppercase;
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  border-radius: 8px;
  border: none;
  background: none;
  cursor: pointer;
  transition: background 0.15s;
}
.cal-cell:not(.empty):not(.disabled):not(.cal-dow):hover { background: var(--bg-alt); }
.cal-cell.disabled,
.cal-cell.weekend { color: var(--border); cursor: default; }
.cal-cell.selected {
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
}
.cal-cell.empty { cursor: default; }

/* Time slots */
.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.time-hint {
  grid-column: 1/-1;
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
  padding: 20px 0;
}
.time-slot { cursor: pointer; }
.time-slot input[type="radio"] { display: none; }
.time-slot span {
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--fg);
  transition: all 0.15s;
}
.time-slot:hover span { border-color: var(--accent); color: var(--accent); }
.time-slot input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Form fields */
.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.optional { font-weight: 400; color: var(--fg-muted); }
.field-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--fg);
  transition: border-color 0.2s;
  outline: none;
}
.field-input:focus { border-color: var(--accent); }
.field-textarea { resize: vertical; min-height: 88px; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  width: fit-content;
}
.btn-primary:hover { background: var(--accent-light); }
.btn-primary:disabled { background: var(--fg-muted); cursor: not-allowed; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: none;
  color: var(--fg-muted);
  font-size: 15px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

/* Success & error states */
.bk-success {
  max-width: 580px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.bk-success-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.bk-success-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}
.bk-success-inner p { font-size: 16px; color: var(--fg-muted); max-width: 400px; }

.bk-error-banner {
  max-width: 760px;
  margin: 0 auto;
  padding: 16px 24px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  margin-top: 24px;
}
.bk-error-banner p { color: #dc2626; font-size: 14px; font-weight: 500; }

/* Responsive */
@media (max-width: 768px) {
  .navbar, .hero, .services, .why, .how, .closing, .footer, .bk-header {
    padding-left: 24px;
    padding-right: 24px;
  }
  .service-grid { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: repeat(3, 1fr); }
  .step-labels span { font-size: 11px; }
  .step-line { width: 40px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { display: none; }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .steps {
    flex-direction: column;
    gap: 32px;
  }
  .step-connector { display: none; }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}