:root {
  --bg: #0f0f1a;
  --surface: #161625;
  --surface2: #1e1e30;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --text: #f0ede8;
  --text-muted: #9a9590;
  --text-dim: #5a5650;
  --border: #2a2a40;
  --success: #4ade80;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Source Sans 3', 'Helvetica Neue', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.site-nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.25rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
  letter-spacing: 0.01em;
}
.nav-cta:hover { opacity: 0.85; }
.nav-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* HERO */
.hero {
  padding: 5rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}
.hero-visual {
  display: flex;
  align-items: flex-start;
}
.hero-stat-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
}
.stat-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  flex: 1;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.75rem;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}
.stat-note {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* SECTIONS */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* SERVICES */
.services {
  padding: 4rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services-heading {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 3rem;
  max-width: 500px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: var(--surface);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.service-card:hover {
  background: var(--surface2);
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.service-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.service-price {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  letter-spacing: 0.02em;
}

/* HOW */
.how {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.how-heading {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  letter-spacing: -0.03em;
  margin-bottom: 3.5rem;
  max-width: 480px;
}
.step-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step:first-child { border-top: 1px solid var(--border); }
.step-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.5rem;
  color: var(--text-dim);
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}
.step-content h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.step-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* PRICING */
.pricing {
  padding: 4rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 0.35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.pricing-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.pricing-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.pricing-item:nth-child(n+4) { border-bottom: none; }
.pricing-item:last-child { border-bottom: none; }
.pricing-check {
  width: 28px;
  height: 28px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.pricing-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 7rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.closing-quote {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 3rem;
  max-width: 760px;
  font-style: normal;
}
.closing-cta {
  border-left: 3px solid var(--accent);
  padding-left: 2rem;
}
.closing-tagline {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.closing-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
.footer-logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-meta {
  text-align: right;
}
.footer-meta p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .hero-visual {
    justify-content: flex-end;
  }
  .book-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero { padding: 3rem 1.25rem 3rem; }
  .services { padding: 3rem 1.25rem; }
  .how { padding: 3rem 1.25rem; }
  .pricing { padding: 3rem 1.25rem; }
  .closing { padding: 4rem 1.25rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
  .step { gap: 1.25rem; }
  .step-num { font-size: 1.75rem; min-width: 40px; }
}

/* BOOKING PAGE */
.book-page {
  min-height: calc(100vh - 70px);
  padding: 3rem 1.25rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.book-header {
  margin-bottom: 3rem;
}
.book-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.book-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.book-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.book-form-area {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.book-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-section {
  margin-bottom: 2rem;
}
.form-section:last-child { margin-bottom: 0; }
.form-section-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--text);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-row:last-child { margin-bottom: 0; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group:last-child { margin-bottom: 0; }
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-input,
.form-select,
.form-textarea {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-dim);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239a9590' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-select option {
  background: var(--surface);
  color: var(--text);
}

/* Service cards in booking form */
.service-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 0.75rem;
  user-select: none;
}
.service-option:hover { border-color: var(--text-dim); }
.service-option.selected {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.service-option:last-child { margin-bottom: 0; }
.service-option-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.service-option-check {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.service-option.selected .service-option-check {
  border-color: var(--accent);
  background: var(--accent);
}
.service-option-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.service-option-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.2rem 0.65rem;
  border-radius: 99px;
}

/* Hidden radio inputs */
.service-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;
  letter-spacing: -0.01em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 1.5rem;
}
.submit-btn:hover { opacity: 0.85; }

/* Sidebar cards */
.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}
.sidebar-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 1.5rem;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
  margin-top: 0.5rem;
}
.whatsapp-btn:hover { opacity: 0.85; }
.whatsapp-btn svg { flex-shrink: 0; }
.sms-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 1.5rem;
  background: var(--surface2);
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: background 0.2s;
  margin-top: 0.75rem;
}
.sms-btn:hover { background: var(--border); }
.sidebar-detail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.sidebar-detail svg { color: var(--accent); flex-shrink: 0; }
.sidebar-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.sidebar-price-row:last-child { border-bottom: none; }
.sidebar-price-row span:first-child { color: var(--text-muted); }
.sidebar-price-row span:last-child { font-weight: 600; color: var(--text); }
.sidebar-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.confirmation-box {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.confirmation-box.show {
  display: block;
}
.confirmation-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent);
}
.confirmation-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.confirmation-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.confirmation-ref {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: monospace;
  letter-spacing: 0.05em;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .book-page { padding: 2rem 1.25rem 4rem; }
  .book-form-area { padding: 1.5rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .nav-right { gap: 0.75rem; }
  .nav-badge { display: none; }
}