:root {
  --pink: #e8b4b8;
  --pink-light: #f2d0d3;
  --pink-dark: #c4878c;
  --charcoal: #2d2d2d;
  --charcoal-light: #4a4a4a;
  --gold: #c9a96e;
  --gold-light: #dfc99a;
  --white: #fefefe;
  --cream: #faf6f3;
  --text: #2d2d2d;
  --text-light: #7a7a7a;
  --bg: #fefefe;
  --bg-alt: #faf6f3;
  --card: rgba(255,255,255,0.9);
  --border: rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --radius: 16px;
  --transition: 0.4s cubic-bezier(0.4,0,0.2,1);
}

body.dark {
  --charcoal: #e8e8e8;
  --charcoal-light: #c0c0c0;
  --text: #e8e8e8;
  --text-light: #999;
  --bg: #1a1a1a;
  --bg-alt: #222;
  --card: rgba(40,40,40,0.9);
  --border: rgba(255,255,255,0.08);
  --shadow: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
  --cream: #1e1e1e;
  --white: #1a1a1a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; overflow-x: hidden; transition: background var(--transition), color var(--transition); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 20px 0; transition: var(--transition); }
.nav.scrolled { background: var(--bg); backdrop-filter: blur(12px); box-shadow: var(--shadow); padding: 12px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--charcoal); }
.nav-brand span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--text-light); transition: var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-cta { padding: 10px 28px; background: var(--gold); color: #fff; border-radius: 50px; font-size: 0.85rem; font-weight: 600; transition: var(--transition); }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--cream); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.1; color: var(--charcoal); margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--pink-dark); }
.hero-desc { font-size: 1.05rem; color: var(--text-light); margin-bottom: 32px; max-width: 440px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { padding: 14px 36px; background: var(--gold); color: #fff; border-radius: 50px; font-size: 0.9rem; font-weight: 600; transition: var(--transition); border: none; cursor: pointer; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,169,110,0.3); }
.btn-outline { padding: 14px 36px; background: transparent; color: var(--charcoal); border: 2px solid var(--border); border-radius: 50px; font-size: 0.9rem; font-weight: 600; transition: var(--transition); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-img { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; bottom: 24px; left: 24px; background: var(--card); backdrop-filter: blur(10px); padding: 12px 20px; border-radius: 12px; box-shadow: var(--shadow); }
.hero-badge .num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--gold); }
.hero-badge .label { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }

/* SECTIONS */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; color: var(--charcoal); margin-bottom: 16px; }
.section-desc { font-size: 1rem; color: var(--text-light); max-width: 560px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; transition: var(--transition); cursor: pointer; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-icon { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--pink-light), var(--pink)); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px; color: var(--charcoal); }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 8px; color: var(--charcoal); }
.service-card p { font-size: 0.88rem; color: var(--text-light); }

/* PRICE LIST */
.price-list { max-width: 700px; margin: 48px auto 0; }
.price-category { margin-bottom: 32px; }
.price-category-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--charcoal); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); display: inline-block; }
.price-item { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); cursor: pointer; transition: var(--transition); }
.price-item:hover { padding-left: 8px; }
.price-item-name { font-weight: 500; color: var(--charcoal); }
.price-item-price { font-weight: 700; color: var(--gold); font-size: 1.05rem; white-space: nowrap; }
.price-item-desc { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.price-item.open .price-item-desc { max-height: 100px; padding-top: 8px; }
.price-dots { flex: 1; border-bottom: 1px dotted var(--border); margin: 0 12px; min-width: 20px; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.team-card { text-align: center; }
.team-img { width: 180px; height: 180px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; border: 4px solid var(--pink-light); transition: var(--transition); }
.team-img:hover { border-color: var(--gold); transform: scale(1.05); }
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--charcoal); margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.team-bio { font-size: 0.88rem; color: var(--text-light); max-width: 280px; margin: 0 auto; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 48px; }
.gallery-item { aspect-ratio: 1; overflow: hidden; border-radius: 8px; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.3), transparent); opacity: 0; transition: var(--transition); }
.gallery-item:hover::after { opacity: 1; }

/* HOURS */
.hours-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; max-width: 500px; margin: 48px auto 0; box-shadow: var(--shadow); }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--charcoal); font-weight: 500; }
.hours-time { color: var(--gold); font-weight: 600; }

/* CONTACT / CTA */
.cta-section { background: linear-gradient(135deg, var(--charcoal) 0%, #3d3d3d 100%); color: #fff; text-align: center; padding: 100px 24px; }
body.dark .cta-section { background: linear-gradient(135deg, #2a2a2a 0%, #333 100%); }
.cta-section .section-title { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 32px; }

/* FOOTER */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.6); padding: 48px 0; text-align: center; font-size: 0.85rem; }
body.dark .footer { background: #111; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; margin-bottom: 8px; }

/* TOGGLE */
.theme-toggle { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: var(--card); backdrop-filter: blur(10px); border: 1px solid var(--border); cursor: pointer; z-index: 200; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: var(--transition); box-shadow: var(--shadow); color: var(--text); }
.theme-toggle:hover { transform: scale(1.1); border-color: var(--gold); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-btns { justify-content: center; }
  .hero-img { max-width: 400px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
}
