:root {
  --bg-dark: #0a0a0a;
  --bg-section: #0f0f0f;
  --bg-card: #161616;
  --bg-accent: #1a1a1a;
  --gold: #c9a96e;
  --gold-light: #dfc08a;
  --gold-dim: rgba(201, 169, 110, 0.15);
  --text-primary: #f5f0e8;
  --text-secondary: #a09888;
  --text-muted: #6b6156;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at 30% 20%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
              var(--bg-dark);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 120px,
    rgba(201, 169, 110, 0.02) 120px,
    rgba(201, 169, 110, 0.02) 121px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

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

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== SERVICES ===== */
.services {
  padding: 8rem 0;
  background: var(--bg-section);
}

.services h2, .hair h2, .wellness h2, .closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 4rem;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.08);
  padding: 2.5rem 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  border-color: rgba(201, 169, 110, 0.25);
  transform: translateY(-4px);
}

.service-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-dim);
  color: rgba(201, 169, 110, 0.2);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== HAIR ===== */
.hair {
  padding: 8rem 0;
  background: var(--bg-dark);
}

.hair-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hair-text .section-intro {
  margin-bottom: 2.5rem;
}

.hair-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hair-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

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

.hair-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-block {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, rgba(201, 169, 110, 0.08), rgba(201, 169, 110, 0.02));
  border: 1px solid rgba(201, 169, 110, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.visual-block::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 169, 110, 0.06);
}

.visual-inner {
  text-align: center;
}

.visual-text {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.3;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ===== WELLNESS ===== */
.wellness {
  padding: 8rem 0;
  background: var(--bg-section);
}

.wellness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.wellness-item {
  padding: 3rem 2.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.08);
  transition: border-color 0.3s ease;
}

.wellness-item:hover {
  border-color: rgba(201, 169, 110, 0.2);
}

.wellness-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.wellness-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.wellness-item p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  padding: 10rem 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 60%),
              var(--bg-dark);
  text-align: center;
}

.closing-content {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  margin-bottom: 2rem;
}

.closing p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.closing-location {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3rem;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.footer-location {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hair-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hair-visual {
    order: -1;
  }

  .visual-block {
    max-width: 280px;
    aspect-ratio: 1;
  }

  .wellness-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .section-container {
    padding: 0 1.5rem;
  }

  .services, .hair, .wellness {
    padding: 5rem 0;
  }

  .closing {
    padding: 6rem 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .service-card, .wellness-item {
    padding: 2rem 1.5rem;
  }
}

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: transparent;
  transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(201, 169, 110, 0.1);
  padding: 0.85rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

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

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.nav-cta {
  color: var(--gold) !important;
  border: 1px solid rgba(201, 169, 110, 0.4) !important;
  padding: 0.5rem 1.25rem !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
}

.nav-cta:hover {
  background: rgba(201, 169, 110, 0.1) !important;
  border-color: var(--gold) !important;
  color: var(--gold-light) !important;
}

/* Hamburger toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Push hero below fixed nav */
.hero {
  padding-top: 5rem;
}

/* ===== SERVICE META (price + duration) ===== */
.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.service-price {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.service-duration {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.services-cta {
  margin-top: 4rem;
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.4);
  padding: 0.875rem 2.5rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.btn-outline:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: var(--gold);
}

.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg-dark);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.875rem 2.5rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 8rem 0;
  background: var(--bg-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.08);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(201, 169, 110, 0.2);
}

.contact-icon {
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-primary);
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-link {
  display: block;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

a.contact-link:hover {
  color: var(--gold-light);
}

.contact-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.contact-booking {
  margin-top: 3rem;
  text-align: center;
}

.booking-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ===== SERVICES HERO ===== */
.services-hero {
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 5rem;
  background: radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
              var(--bg-dark);
}

.services-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

/* ===== SERVICES MENU TABLE ===== */
.menu-section {
  padding: 7rem 0;
  background: var(--bg-section);
}

.menu-section--alt {
  background: var(--bg-dark);
}

.menu-category-header {
  margin-bottom: 4rem;
}

.menu-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  transition: background 0.25s ease;
}

.menu-item:hover {
  background: rgba(201, 169, 110, 0.02);
}

.menu-item-main h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.menu-item-main p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
}

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(201, 169, 110, 0.12);
  padding: 0.2rem 0.6rem;
}

.menu-item-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  min-width: 130px;
}

.menu-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  white-space: nowrap;
}

.price-unit {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.menu-duration {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.btn-book {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.35);
  padding: 0.45rem 1.1rem;
  margin-top: 0.5rem;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-book:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--gold);
}

/* ===== MENU PRICING NOTE ===== */
.menu-note-section {
  padding: 6rem 0;
  background: var(--bg-section);
}

.menu-note {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(201, 169, 110, 0.12);
  padding: 3.5rem;
  background: rgba(201, 169, 110, 0.02);
}

.menu-note-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.menu-note p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ===== RESPONSIVE: MOBILE ADDITIONS ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(10, 10, 10, 0.97);
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    padding: 1rem 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.875rem 2rem;
    letter-spacing: 0.1em;
  }

  .nav-cta {
    border: none !important;
    border-top: 1px solid rgba(201, 169, 110, 0.1) !important;
    padding: 0.875rem 2rem !important;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .menu-item-details {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .menu-note {
    padding: 2rem 1.5rem;
  }

  .services-hero {
    padding: 7rem 0 3.5rem;
  }
}