:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Josefin Sans', 'Segoe UI', sans-serif;
  --bg-cream: #F7F5F0;
  --bg-warm: #EDE8DF;
  --bg-dark: #1A1A1A;
  --text-dark: #1A1A1A;
  --text-light: #F7F5F0;
  --text-muted: #6E6A63;
  --accent-gold: #B8954F;
  --accent-gold-light: #D4B87A;
  --accent-green: #4A5D4A;
  --accent-brown: #3E2723;
  --radius: 2px;
  --shadow-soft: 0 10px 40px rgba(26,26,26,0.08);
  --shadow-medium: 0 14px 50px rgba(26,26,26,0.14);
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(247,245,240,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.navbar.scrolled .logo { color: var(--text-dark); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: rgba(247,245,240,0.9);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--text-dark); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--accent-gold); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-light);
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--text-dark); }

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.3), rgba(26,26,26,0.6));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  padding: 0 24px;
  max-width: 800px;
  animation: fadeUp 1s ease both;
}
.hero-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  margin-bottom: 20px;
  opacity: 0.85;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 36px;
  line-height: 1.5;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border-radius: var(--radius);
  min-height: 48px;
  touch-action: manipulation;
}
.btn-primary {
  background: var(--accent-gold);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}
.btn-secondary {
  background: var(--text-dark);
  color: var(--text-light);
}
.btn-secondary:hover {
  background: var(--accent-brown);
}
.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid rgba(26,26,26,0.2);
}
.btn-ghost:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
.btn-lg {
  padding: 18px 40px;
  font-size: 0.9rem;
  min-height: 56px;
}
.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-hint span {
  display: block;
  width: 24px; height: 40px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  position: relative;
}
.scroll-hint span::after {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDown 2s infinite;
}

/* Sections */
.section { padding: 100px 0; }
.section-light { background: var(--bg-cream); }
.section-cream { background: var(--bg-warm); }
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.7rem;
  color: var(--accent-gold);
  margin-bottom: 14px;
  font-weight: 600;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
}

/* Two columns */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.text-col p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.7;
}
.text-col strong { color: var(--text-dark); font-weight: 600; }
.image-col {
  position: relative;
}
.image-col img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.image-col .img-offset {
  position: absolute;
  bottom: -40px; left: -40px;
  width: 55%;
  border: 4px solid var(--bg-cream);
}
.features { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.feature {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.95rem; color: var(--text-dark); font-weight: 500;
}
.feature-num {
  font-family: var(--font-display);
  font-size: 1.3rem; color: var(--accent-gold); font-weight: 600;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}
.service-card.selected {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(184,149,79,0.15), var(--shadow-medium);
}
.service-img { height: 220px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-body { padding: 24px; }
.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.service-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.service-meta {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid #eee; padding-top: 14px;
}
.price { font-weight: 600; color: var(--accent-gold); font-size: 1.05rem; }
.duration { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.team-card {
  display: flex;
  gap: 24px;
  align-items: center;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.team-photo {
  width: 140px; height: 140px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--bg-warm);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.role {
  color: var(--accent-gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 10px;
}
.bio { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

/* Booking */
.section-booking { background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-cream) 100%); }
.booking-widget {
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow-medium);
  max-width: 720px;
  margin: 0 auto;
  padding: 40px;
}
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex: 1;
  position: relative;
}
.step-dot span {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid #ddd;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  background: #fff;
  transition: var(--transition);
}
.step-dot.active span {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
  color: #fff;
}
.step-dot.done span {
  border-color: var(--accent-green);
  background: var(--accent-green);
  color: #fff;
}
.step-line {
  flex: 1;
  height: 2px;
  background: #eee;
  margin: 0 6px;
  margin-bottom: 20px;
}

.booking-panels { min-height: 360px; }
.panel { display: none; animation: fadeIn 0.4s ease; }
.panel.active { display: block; }
.panel-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 24px;
  text-align: center;
}

/* Booking services list */
.booking-services {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--bg-cream);
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  width: 100%;
  font-family: var(--font-body);
  min-height: 64px;
}
.booking-service:hover {
  border-color: var(--accent-gold-light);
  background: #fff;
}
.booking-service.selected {
  border-color: var(--accent-gold);
  background: #fff;
  box-shadow: 0 4px 20px rgba(184,149,79,0.12);
}
.bs-name { font-weight: 600; font-size: 1.05rem; color: var(--text-dark); }
.bs-detail { font-size: 0.85rem; color: var(--text-muted); }

/* Staff select */
.booking-staff {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.staff-select {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  background: var(--bg-cream);
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  width: 100%;
  font-family: var(--font-body);
  min-height: 80px;
}
.staff-select:hover { border-color: var(--accent-gold-light); background: #fff; }
.staff-select.selected { border-color: var(--accent-gold); background: #fff; }
.staff-select img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.staff-noimg {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
.staff-s-info { display: flex; flex-direction: column; }
.staff-s-info strong { font-size: 1.05rem; color: var(--text-dark); }
.staff-s-info span { font-size: 0.85rem; color: var(--text-muted); }

/* Calendar */
.booking-calendar { margin-bottom: 24px; }
.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.cal-header span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}
.cal-nav {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  touch-action: manipulation;
}
.cal-nav:hover { border-color: var(--accent-gold); color: var(--accent-gold); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.cal-day-label {
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 8px 0;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  border: 1.5px solid transparent;
  background: var(--bg-cream);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  min-height: 44px;
  touch-action: manipulation;
}
.cal-day:hover:not(.disabled) { border-color: var(--accent-gold-light); }
.cal-day.selected { background: var(--accent-gold); color: #fff; border-color: var(--accent-gold); }
.cal-day.disabled { color: #ccc; background: #f9f9f9; cursor: not-allowed; }
.cal-day.today { font-weight: 700; color: var(--accent-green); }

.slots-area { margin-top: 10px; }
.slots-hint { text-align: center; color: var(--text-muted); font-size: 0.95rem; }
.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.slot-btn {
  padding: 14px;
  border: 1.5px solid #e5e5e5;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  min-height: 48px;
  touch-action: manipulation;
}
.slot-btn:hover { border-color: var(--accent-gold); }
.slot-btn.selected { background: var(--accent-gold); color: #fff; border-color: var(--accent-gold); }

/* Booking form */
.booking-form { display: flex; flex-direction: column; gap: 18px; }
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--text-muted);
}
.field input, .field textarea {
  padding: 14px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: #fff;
  transition: var(--transition);
  min-height: 48px;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(184,149,79,0.1);
}

/* Summary */
.summary-card {
  background: var(--bg-cream);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.sum-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-size: 0.95rem;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
}
.sum-row:last-child { border-bottom: none; }
.sum-row span { color: var(--text-muted); }
.sum-row strong { color: var(--text-dark); font-weight: 600; text-align: right; max-width: 60%; }
.privacy-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; }

/* Booking nav */
.booking-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  gap: 16px;
}
.booking-nav .btn { flex: 1; }

/* Contact */
.contact-list {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-list li strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
}
.contact-list li a { color: var(--text-dark); text-decoration: none; font-size: 1.05rem; }
.contact-list li a:hover { text-decoration: underline; }
.contact-list li span { font-size: 1.05rem; color: var(--text-muted); }
.placeholder-text {
  font-style: italic;
  color: #aaa;
}
.map-col {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 400px;
}
.map-col iframe { display: block; width: 100%; height: 100%; min-height: 400px; }

/* Footer */
.footer {
  background: var(--text-dark);
  color: rgba(247,245,240,0.7);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex; flex-direction: column;
}
.footer-brand strong {
  font-family: var(--font-display);
  color: var(--text-light);
  font-size: 1.2rem;
}
.footer-brand span { font-size: 0.8rem; }
.footer-legal { font-size: 0.8rem; }
.footer-legal .sep { margin: 0 8px; }

/* FAB */
.fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  background: var(--accent-gold);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
  display: flex; align-items: center; gap: 10px;
  min-height: 56px;
  touch-action: manipulation;
}
.fab:hover {
  background: var(--accent-gold-light);
  transform: translateY(-3px) scale(1.02);
}
.fab.hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scrollDown {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* Responsive */
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .image-col .img-offset { position: static; width: 100%; margin-top: 16px; border: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { max-width: 100%; }
  .booking-widget { padding: 24px; }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%; height: 100vh;
    background: var(--bg-cream);
    flex-direction: column;
    padding: 100px 40px;
    gap: 24px;
    transition: right 0.35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--text-dark); font-size: 1rem; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; text-align: center; }
  .section { padding: 70px 0; }
  .booking-progress small { display: none; }
  .step-line { margin-bottom: 0; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .map-col { min-height: 300px; }
  .map-col iframe { min-height: 300px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .fab { bottom: 16px; right: 16px; padding: 14px 22px; font-size: 0.85rem; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 2.2rem; }
  .booking-widget { padding: 18px; }
  .btn-lg { padding: 16px 24px; font-size: 0.85rem; }
}
