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

:root {
  --transition: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --fast: 0.2s ease;
}

.light {
  --bg:             #FAF8F5;
  --bg-2:           #F2EFE9;
  --bg-card:        #FFFFFF;
  --text-primary:   #1A1612;
  --text-secondary: #4A4540;
  --text-tertiary:  #7A7470;
  --accent:         #B8967A;
  --accent-hover:   #9E7D63;
  --gold:           #C9A96E;
  --gold-light:     #F5EDD8;
  --border:         rgba(26,22,18,0.12);
  --border-strong:  rgba(26,22,18,0.22);
  --hero-overlay:   rgba(20,16,12,0.28);
  --nav-bg:         rgba(250,248,245,0.92);
  --drawer-bg:      #FAF8F5;
}

.dark {
  --bg:             #0F0D0B;
  --bg-2:           #1A1712;
  --bg-card:        #221E18;
  --text-primary:   #F5F0E8;
  --text-secondary: #A89880;
  --text-tertiary:  #6B6055;
  --accent:         #C9A96E;
  --accent-hover:   #E0BA7A;
  --gold:           #C9A96E;
  --gold-light:     #2A2218;
  --border:         rgba(245,240,232,0.07);
  --border-strong:  rgba(245,240,232,0.13);
  --hero-overlay:   rgba(10,8,6,0.55);
  --nav-bg:         rgba(15,13,11,0.94);
  --drawer-bg:      #1A1712;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--fast);
}

.nav-logo span { font-style: italic; color: var(--accent); }

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

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--fast);
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: var(--bg-2);
  border: 0.5px solid var(--border-strong);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  padding: 2px;
  transition: background var(--transition);
  flex-shrink: 0;
}

.theme-knob {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform var(--transition), background var(--transition);
}

.dark .theme-knob { transform: translateX(20px); }

.nav-book {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  border: none;
  padding: 10px 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--fast);
}

.nav-book:hover { background: var(--accent-hover); }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding-top: 72px;
  background: var(--bg-2);
  border-bottom: 0.5px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color var(--fast);
}

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb-sep {
  color: var(--text-tertiary);
  font-size: 11px;
}

.page-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.page-title em { font-style: italic; color: var(--accent); }

.page-subtitle {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  max-width: 560px;
}

/* ── PAGE BANNER ── */
.page-banner {
  position: relative;
  height: 45vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 72px;
}

.page-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,13,11,0.80) 0%,
    rgba(15,13,11,0.45) 50%,
    rgba(15,13,11,0.20) 100%
  );
}

.page-banner-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.page-banner .breadcrumb a,
.page-banner .breadcrumb span,
.page-banner .breadcrumb-sep {
  color: rgba(245,240,232,0.6);
}

.page-banner .breadcrumb a:hover { color: var(--gold); }

.page-banner .page-eyebrow { color: var(--gold); }

.page-banner .page-title {
  color: #F5F0E8;
}

.page-banner .page-title em { color: var(--gold); }

.page-banner .page-subtitle {
  color: rgba(245,240,232,0.7);
}

/* ── SECTION ── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--accent); }

.section-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  max-width: 520px;
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0F0D0B;
  background: var(--gold);
  border: none;
  padding: 15px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity var(--fast);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover { opacity: 0.88; }

.btn-outline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: transparent;
  border: 0.5px solid var(--border-strong);
  padding: 14px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color var(--fast), color var(--fast);
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-ghost {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.85);
  background: transparent;
  border: 0.5px solid rgba(245,240,232,0.35);
  padding: 14px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color var(--fast), color var(--fast);
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover { border-color: rgba(245,240,232,0.7); color: #F5F0E8; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--bg-card);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 1.25rem 2rem;
  transition: background var(--transition), border-color var(--transition);
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item { display: flex; align-items: center; gap: 0.6rem; }

.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.trust-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ── SERVICE CARDS ── */
.service-item {
  padding: 1.5rem 0;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  transition: padding-left var(--fast);
}

.service-item:first-child { border-top: 0.5px solid var(--border); }
.service-item:hover { padding-left: 0.5rem; }

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 4px;
  transition: color var(--fast);
}

.service-item:hover .service-name { color: var(--accent); }

.service-desc {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-meta { text-align: right; flex-shrink: 0; }

.service-price {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 3px;
}

.service-duration {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

/* ── SIDEBAR CARD ── */
.sidebar-card {
  background: var(--bg-2);
  border: 0.5px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  transition: background var(--transition), border-color var(--transition);
}

.sidebar-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.sidebar-card-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

/* ── REVIEW CARDS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: background var(--transition), border-color var(--transition);
}

.review-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.review-author {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ── FAQ ── */
.faq-grid {
  margin-top: 3rem;
  border-top: 0.5px solid var(--border);
}

.faq-item { border-bottom: 0.5px solid var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  gap: 2rem;
}

.faq-question span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  transition: color var(--fast);
}

.faq-question:hover span:first-child { color: var(--accent); }

.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

/* ── CTA BAND ── */
.cta-section { background: #1A1612; }

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.cta-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: #F5F0E8;
}

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

.cta-sub {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(245,240,232,0.6);
  margin-top: 1rem;
  line-height: 1.9;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-2);
  border-top: 0.5px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.footer-logo span { font-style: italic; color: var(--accent); }

.footer-tagline {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--text-secondary);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--fast);
}

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

.footer-copy {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  width: 100%;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--border);
  margin-top: 1rem;
  text-align: center;
}

/* ── BOOKING DRAWER ── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,8,6,0.6);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.drawer-overlay.open { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed;
  right: 0; top: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--drawer-bg);
  border-left: 0.5px solid var(--border);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), background var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.drawer.open { transform: translateX(0); }

.drawer-header {
  padding: 2rem;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.drawer-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.drawer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.drawer-close {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-tertiary);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  padding: 4px;
  transition: color var(--fast);
  flex-shrink: 0;
  margin-top: 4px;
}

.drawer-close:hover { color: var(--text-primary); }

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

.drawer-body p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.drawer-services {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.drawer-service-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border: 0.5px solid var(--border);
  border-radius: 2px;
  background: var(--bg-card);
  cursor: pointer;
  transition: border-color var(--fast), background var(--fast);
  text-align: left;
  width: 100%;
}

.drawer-service-btn:hover,
.drawer-service-btn.selected {
  border-color: var(--accent);
  background: var(--gold-light);
}

.dsb-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-primary);
}

.dsb-price {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.drawer-footer {
  padding: 1.5rem 2rem;
  border-top: 0.5px solid var(--border);
}

.drawer-cta {
  width: 100%;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0F0D0B;
  background: var(--gold);
  border: none;
  padding: 16px;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity var(--fast);
}

.drawer-cta:hover { opacity: 0.88; }

.drawer-note {
  text-align: center;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-top: 0.75rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .cta-inner { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
 
