/* ─── Variables ──────────────────────────────────────────────────────────── */
:root {
  --gold:        #C49A6C;
  --gold-dark:   #A07850;
  --gold-light:  #F0E6D9;
  --blush:       #D4A5A5;
  --hero-bg:     #1A100A;
  --bg:          #FAFAF8;
  --surface:     #FFFFFF;
  --text:        #2A2A2A;
  --muted:       #8A8A8A;
  --border:      #E8E4DF;
  --success:     #7A9E7E;
  --error:       #C47A7A;
  --h-font:      'Cormorant Garamond', Georgia, serif;
  --b-font:      'Jost', sans-serif;
  --radius:      10px;
  --shadow:      0 4px 24px rgba(0,0,0,.08);
  --trans:       all .3s ease;
}

/* ─── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--b-font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--b-font); }

/* ─── Utilities ──────────────────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.hidden { display: none !important; }

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: var(--trans);
}

.nav.scrolled {
  background: rgba(26, 16, 10, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,154,108,.2);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1140px; margin: 0 auto; padding: 20px 24px;
}

.logo {
  font-family: var(--h-font);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex; align-items: center; gap: 36px;
}

.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--trans);
}

.nav-links a:hover { color: var(--gold); }

.nav-links .nav-cta {
  padding: 9px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 4px;
  letter-spacing: 1.5px;
}

.nav-links .nav-cta:hover {
  background: var(--gold);
  color: #fff;
}

/* ─── Language switcher ──────────────────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-btn {
  background: none;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 11px;
  letter-spacing: 1px;
  cursor: pointer;
  color: rgba(255,255,255,.45);
  font-family: var(--b-font);
  transition: var(--trans);
}

.lang-btn:hover {
  color: var(--gold);
  border-color: rgba(196,154,108,.4);
}

.lang-btn.active {
  color: var(--gold);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}

.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: rgba(255,255,255,.8);
  transition: var(--trans);
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  font-size: 13px;
  font-family: var(--b-font);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 5px;
  border: none;
  transition: var(--trans);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,154,108,.35);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.3);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.btn:disabled {
  opacity: .4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--hero-bg);
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(196,154,108,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(212,165,165,.08) 0%, transparent 50%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
}

.hero-inner { max-width: 720px; }

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--h-font);
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
}

.hero-scroll-hint span {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(196,154,108,.6));
  animation: scrollHint 2s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { opacity: .3; transform: scaleY(.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── Sections ───────────────────────────────────────────────────────────── */
.section { padding: 100px 0; }

.section-alt { background: #F5F0EB; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--h-font);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

.section-sub {
  color: var(--muted);
  margin-top: 12px;
  font-size: 15px;
}

/* ─── Services Grid ──────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex; gap: 24px;
  transition: var(--trans);
}

.service-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.service-num {
  font-family: var(--h-font);
  font-size: 40px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 4px;
}

.service-body h3 {
  font-family: var(--h-font);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}

.service-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-duration {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  background: var(--gold-light);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ─── Master Section ─────────────────────────────────────────────────────── */
.master-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
}

.master-portrait {
  display: flex; justify-content: center;
}

.master-photo {
  width: 320px;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.master-info h2 {
  font-family: var(--h-font);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  margin-bottom: 20px;
}

.master-bio {
  font-size: 16px;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 28px;
}

.master-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
}

.badge {
  font-size: 12px;
  letter-spacing: .5px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--muted);
}

/* ─── Booking Wizard ─────────────────────────────────────────────────────── */
.wizard {
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow);
}

/* Progress */
.wizard-progress {
  display: flex; align-items: center;
  margin-bottom: 48px;
}

.prog-step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex: 0 0 auto;
}

.prog-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--muted);
  transition: var(--trans);
  background: var(--surface);
}

.prog-label {
  font-size: 11px;
  letter-spacing: .5px;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
  transition: var(--trans);
}

.prog-step.active .prog-dot {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

.prog-step.active .prog-label { color: var(--gold); }

.prog-step.done .prog-dot {
  border-color: var(--success);
  background: var(--success);
  color: #fff;
}

.prog-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 8px;
  margin-bottom: 24px;
  transition: var(--trans);
}

.prog-line.done { background: var(--success); }

/* Steps */
.wizard-step { display: none; }
.wizard-step.active { display: block; }

.step-title {
  font-family: var(--h-font);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 32px;
}

/* Service picker */
.service-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.service-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: left;
  transition: var(--trans);
}

.service-option:hover {
  border-color: var(--gold);
  background: var(--gold-light);
}

.service-option.selected {
  border-color: var(--gold);
  background: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(196,154,108,.15);
}

.sopt-num {
  font-family: var(--h-font);
  font-size: 20px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
}

.service-option.selected .sopt-num,
.service-option:hover .sopt-num { color: var(--gold); }

.sopt-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.sopt-dur {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .5px;
  white-space: nowrap;
}

/* Master chip */
.master-choice { margin-bottom: 28px; }

.master-chip {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--trans);
}

.master-chip.selected {
  border-color: var(--gold);
  background: var(--gold-light);
}

.master-chip-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--blush));
  color: #fff;
  font-family: var(--h-font);
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
}

.master-chip-name {
  font-weight: 500;
  font-size: 15px;
}

.master-chip-role {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .5px;
}

.master-chip-check {
  margin-left: 8px;
  color: var(--gold);
  font-size: 16px;
}

/* Date / Time */
.date-time-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--b-font);
  color: var(--text);
  background: var(--surface);
  transition: var(--trans);
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,108,.12);
}

.form-hint {
  font-size: 12px;
  color: var(--muted);
}

.req { color: var(--gold); }

/* Slots */
.slots-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  min-height: 100px;
  align-content: flex-start;
}

.slots-placeholder {
  color: var(--muted);
  font-size: 13px;
  width: 100%;
  text-align: center;
  padding: 16px 0;
}

.slot-btn {
  padding: 8px 14px;
  font-size: 13px;
  font-family: var(--b-font);
  border: 1.5px solid var(--border);
  border-radius: 5px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: var(--trans);
}

.slot-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.slot-btn.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.slots-loading {
  color: var(--muted);
  font-size: 13px;
  width: 100%;
  text-align: center;
  padding: 16px 0;
}

/* Form fields */
.form-fields {
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 32px;
}

.form-error {
  color: var(--error);
  font-size: 13px;
  margin-bottom: 16px;
  min-height: 20px;
}

/* Summary */
.summary-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.summary-row:last-child { border-bottom: none; }

.summary-label { color: var(--muted); font-size: 13px; }

.summary-value { font-weight: 500; color: var(--text); }

.confirm-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
  text-align: center;
}

.btn-confirm { min-width: 200px; }

/* Spinner */
.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Step actions */
.step-actions {
  display: flex; justify-content: flex-end; gap: 12px;
  padding-top: 8px;
}

/* Success */
.success-wrap {
  text-align: center;
  padding: 24px 0;
}

.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  font-size: 32px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}

.success-wrap h3 {
  font-family: var(--h-font);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 12px;
}

.success-wrap p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto;
}

.success-details {
  margin-top: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Location ───────────────────────────────────────────────────────────── */
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.location-block { margin-bottom: 32px; }

.location-block h4 {
  font-family: var(--h-font);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.location-block p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.hours-table { display: flex; flex-direction: column; gap: 6px; }

.hours-row {
  display: flex; justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}

.hours-row span:last-child { font-weight: 500; color: var(--text); }

.map-wrapper {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--hero-bg);
  padding: 64px 0 32px;
}

.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 32px;
}

.footer-logo {
  font-family: var(--h-font);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  font-style: italic;
}

.footer-links {
  display: flex; gap: 28px;
}

.footer-links a {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: var(--trans);
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .master-layout { grid-template-columns: 1fr; gap: 40px; }
  .master-photo { width: 100%; max-width: 340px; height: 300px; }
  .location-layout { grid-template-columns: 1fr; }
  .map-wrapper { height: 280px; }
  .wizard { padding: 32px 24px; }
  .service-picker { grid-template-columns: 1fr; }
  .date-time-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 16, 10, .98);
    align-items: center; justify-content: center; gap: 32px;
    z-index: 99;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 18px; }
  .nav-toggle { display: flex; z-index: 101; }

  .hero-title { font-size: 44px; }
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 40px; }

  .wizard { padding: 24px 16px; }
  .wizard-progress { gap: 0; }
  .prog-label { font-size: 9px; }
  .step-actions { flex-direction: column-reverse; }
  .step-actions .btn { width: 100%; }

  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}
