@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Raleway:wght@200;300;400;500;600;700&display=swap');

:root {
  --dark: #0a0a0a;
  --dark-2: #141414;
  --dark-3: #1e1e1e;
  --dark-4: #2a2a2a;
  --gold: #c9a96e;
  --gold-hover: #b8924e;
  --gold-light: #e8d5b0;
  --cream: #f8f3ee;
  --text-light: #e0e0e0;
  --text-muted: #888;
  --white: #fff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Raleway', Arial, sans-serif;
  --transition: all 0.35s ease;
  --shadow: 0 8px 40px rgba(0,0,0,0.4);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--text-light); font-family: var(--font-sans); font-weight: 300; line-height: 1.8; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

h1,h2,h3,h4,h5 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
.gold { color: var(--gold); }

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

.section-header { text-align: center; margin-bottom: 60px; }
.section-subtitle { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.section-title { color: var(--white); margin-bottom: 1.5rem; }
.section-divider { width: 60px; height: 1px; background: var(--gold); margin: 0 auto 1.5rem; }
.section-text { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; font-weight: 300; }

.btn { display: inline-block; padding: 14px 40px; font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: var(--transition); border: none; outline: none; }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 22px 0; transition: var(--transition); }
.nav.scrolled { background: rgba(10,10,10,0.97); padding: 14px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 168px; width: auto; display: block; transition: height 0.35s ease; }
.nav.scrolled .nav-logo-img { height: 132px; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-book { background: transparent; border: 1px solid var(--gold) !important; color: var(--gold) !important; padding: 10px 24px; font-size: 0.68rem !important; }
.nav-book:hover { background: var(--gold) !important; color: var(--dark) !important; }
.nav-book::after { display: none !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; width: 25px; height: 1px; background: var(--white); transition: var(--transition); }

/* PAGE HEADER */
.page-header { padding: 160px 0 80px; background: var(--dark-2); text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, transparent 60%); }
.page-header-subtitle { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.page-header-title { color: var(--white); font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 1.5rem; }
.page-header-divider { width: 60px; height: 1px; background: var(--gold); margin: 0 auto; }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center top; background-repeat: no-repeat; transform: scale(1.05); transition: transform 10s ease; }
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.65) 50%, rgba(10,10,10,0.3) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-title { color: var(--white); margin-bottom: 1.5rem; font-weight: 300; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle { font-size: 1rem; color: var(--text-light); margin-bottom: 2.5rem; font-weight: 300; max-width: 480px; opacity: 0.85; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--gold); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; z-index: 2; }
.hero-scroll::after { content: ''; width: 1px; height: 40px; background: var(--gold); opacity: 0.6; animation: scroll-line 1.5s ease-in-out infinite; }
@keyframes scroll-line { 0%,100%{opacity:.5;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* WELCOME STRIP */
.welcome-strip { background: var(--dark-2); padding: 70px 0; border-top: 1px solid rgba(201,169,110,0.12); border-bottom: 1px solid rgba(201,169,110,0.12); }
.welcome-strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.welcome-item { padding: 1.5rem 2rem; text-align: center; }
.welcome-item i { font-size: 1.5rem; color: var(--gold); margin-bottom: 1rem; }
.welcome-item h4 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.05rem; }
.welcome-item p { color: var(--text-muted); font-size: 0.85rem; font-weight: 300; }

/* TREATMENTS GRID */
.treatments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(201,169,110,0.08); }
.treatment-card { position: relative; overflow: hidden; cursor: pointer; }
.treatment-card-img { width: 100%; height: 460px; object-fit: cover; transition: transform 0.7s ease; }
.treatment-card:hover .treatment-card-img { transform: scale(1.07); }
.treatment-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.4) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; }
.treatment-card-cat { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.treatment-card-title { font-family: var(--font-serif); font-size: 1.7rem; color: var(--white); margin-bottom: 0.5rem; }
.treatment-card-desc { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 1rem; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.4s ease; opacity: 0; }
.treatment-card:hover .treatment-card-desc { max-height: 80px; opacity: 1; }
.treatment-card-link { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; }
.treatment-card-link::after { content: '→'; transition: transform 0.3s; }
.treatment-card:hover .treatment-card-link::after { transform: translateX(5px); }

/* WHY US */
.why-us { background: var(--dark-2); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-item { text-align: center; padding: 2.5rem 1.5rem; border: 1px solid rgba(201,169,110,0.1); transition: var(--transition); }
.why-item:hover { border-color: rgba(201,169,110,0.35); transform: translateY(-6px); }
.why-icon { width: 60px; height: 60px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.3rem; color: var(--gold); }
.why-item h4 { color: var(--white); margin-bottom: 0.75rem; font-size: 1rem; }
.why-item p { color: var(--text-muted); font-size: 0.82rem; font-weight: 300; line-height: 1.7; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-label { position: absolute; bottom: 12px; left: 12px; background: rgba(10,10,10,0.82); color: var(--gold); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; padding: 5px 12px; }

/* TESTIMONIALS */
.testimonials { background: var(--dark-2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: var(--dark-3); padding: 2.5rem; border-left: 2px solid var(--gold); }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 3px; }
.testimonial-text { color: var(--text-light); font-family: var(--font-serif); font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; color: var(--dark); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testimonial-name { font-weight: 500; color: var(--white); font-size: 0.88rem; }
.testimonial-meta { color: var(--text-muted); font-size: 0.75rem; }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--dark-3), var(--dark-2)); padding: 110px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at center, rgba(201,169,110,0.06) 0%, transparent 60%); pointer-events: none; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.footer { background: #070707; padding: 80px 0 30px; border-top: 1px solid rgba(201,169,110,0.12); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 60px; }
.footer-brand-name { font-family: var(--font-serif); font-size: 1.5rem; color: var(--white); line-height: 1; }
.footer-brand-sub { font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; margin-top: 3px; display: block; }
.footer-about { color: var(--text-muted); font-size: 0.85rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(201,169,110,0.25); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.85rem; transition: var(--transition); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; font-family: var(--font-sans); }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact li { display: flex; gap: 0.75rem; margin-bottom: 1rem; color: var(--text-muted); font-size: 0.85rem; align-items: flex-start; }
.footer-contact-icon { color: var(--gold); flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copyright { color: var(--text-muted); font-size: 0.78rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--text-muted); font-size: 0.78rem; }
.footer-legal a:hover { color: var(--gold); }

/* PRICES PAGE */
.price-intro { text-align: center; padding: 60px 0 80px; }
.price-intro-text { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 0.95rem; line-height: 1.8; }
.price-category { margin-bottom: 70px; }
.price-category-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; }
.price-category-header::after { content: ''; flex: 1; height: 1px; background: rgba(201,169,110,0.2); }
.price-category-title { font-family: var(--font-serif); font-size: 1.9rem; color: var(--gold); white-space: nowrap; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table tr { border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.2s; }
.price-table tr:hover { background: rgba(201,169,110,0.04); }
.price-table td { padding: 1.2rem 1rem; font-size: 0.9rem; }
.price-table td:first-child { color: var(--white); font-weight: 400; }
.price-table td:nth-child(2) { color: var(--text-muted); font-size: 0.8rem; }
.price-table td:last-child { text-align: right; color: var(--gold); font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; }
.price-note { background: rgba(201,169,110,0.04); border: 1px solid rgba(201,169,110,0.18); padding: 1.5rem 2rem; margin-top: 2rem; text-align: center; }
.price-note p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.25rem; }
.price-note strong { color: var(--gold); }
.price-package { background: var(--dark-2); padding: 80px 0; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.package-card { border: 1px solid rgba(201,169,110,0.18); padding: 2.5rem; text-align: center; transition: var(--transition); position: relative; overflow: hidden; }
.package-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.package-card.featured { border-color: var(--gold); background: rgba(201,169,110,0.04); }
.package-badge { position: absolute; top: 16px; right: 16px; background: var(--gold); color: var(--dark); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px; }
.package-name { font-family: var(--font-serif); font-size: 1.5rem; color: var(--white); margin-bottom: 0.5rem; }
.package-price { font-family: var(--font-serif); font-size: 2.8rem; color: var(--gold); line-height: 1; margin: 1rem 0 0.5rem; }
.package-save { color: var(--text-muted); font-size: 0.78rem; margin-bottom: 1.5rem; }
.package-items { list-style: none; margin-bottom: 2rem; text-align: left; }
.package-items li { padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); color: var(--text-light); font-size: 0.85rem; display: flex; align-items: center; gap: 0.75rem; }
.package-items li::before { content: '✓'; color: var(--gold); font-size: 0.75rem; }

/* TREATMENTS DETAIL PAGE */
.treatments-detail { padding: 80px 0; }
.treatment-full { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 100px; padding-bottom: 100px; border-bottom: 1px solid rgba(201,169,110,0.08); }
.treatment-full:last-child { border-bottom: none; margin-bottom: 0; }
.treatment-full.reverse { direction: rtl; }
.treatment-full.reverse > * { direction: ltr; }
.treatment-full-img { width: 100%; height: 520px; object-fit: cover; }
.treatment-full-cat { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.treatment-full-title { color: var(--white); margin-bottom: 1rem; }
.treatment-full-divider { width: 40px; height: 1px; background: var(--gold); margin-bottom: 1.5rem; }
.treatment-full-desc { color: var(--text-muted); line-height: 1.9; margin-bottom: 1.5rem; font-size: 0.93rem; }
.treatment-benefits { margin-bottom: 2rem; }
.treatment-benefit { display: flex; gap: 1rem; align-items: center; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.treatment-benefit i { color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }
.treatment-benefit span { color: var(--text-light); font-size: 0.85rem; }
.treatment-actions { display: flex; gap: 1rem; }

/* BOOKING PAGE */
.booking-section { padding: 60px 0 100px; }
.booking-container { display: grid; grid-template-columns: 360px 1fr; gap: 4rem; align-items: start; }
.booking-info { position: sticky; top: 100px; }
.booking-info h3 { color: var(--white); margin-bottom: 0.5rem; }
.booking-info-line { width: 40px; height: 1px; background: var(--gold); margin: 1rem 0 1.5rem; }
.booking-info p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; margin-bottom: 2rem; }
.booking-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.booking-detail i { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.booking-detail h5 { color: var(--white); font-size: 0.85rem; font-weight: 500; margin-bottom: 0.2rem; font-family: var(--font-sans); }
.booking-detail p { color: var(--text-muted); font-size: 0.8rem; margin: 0; }

.booking-form-wrapper { background: var(--dark-2); padding: 3rem; }
.step-indicators { display: flex; margin-bottom: 2.5rem; position: relative; }
.step-indicator { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; }
.step-connector { position: absolute; top: 15px; left: 50%; width: 100%; height: 1px; background: rgba(201,169,110,0.2); z-index: 0; }
.step-indicator:last-child .step-connector { display: none; }
.step-num { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(201,169,110,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; color: var(--text-muted); z-index: 1; background: var(--dark-2); transition: var(--transition); }
.step-indicator.active .step-num { border-color: var(--gold); color: var(--gold); }
.step-indicator.done .step-num { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.step-label { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); text-align: center; }
.step-indicator.active .step-label { color: var(--gold); }

.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.form-step-title { font-family: var(--font-serif); color: var(--white); font-size: 1.6rem; margin-bottom: 0.4rem; }
.form-step-sub { color: var(--text-muted); font-size: 0.83rem; margin-bottom: 1.75rem; }

.treatment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.treatment-option { border: 1px solid rgba(201,169,110,0.15); padding: 1.25rem; cursor: pointer; transition: var(--transition); }
.treatment-option:hover { border-color: rgba(201,169,110,0.4); }
.treatment-option.selected { border-color: var(--gold); background: rgba(201,169,110,0.05); }
.treatment-option input[type="radio"] { display: none; }
.treatment-option-name { font-weight: 500; color: var(--white); font-size: 0.88rem; margin-bottom: 0.2rem; }
.treatment-option-desc { color: var(--text-muted); font-size: 0.75rem; }
.treatment-option-price { color: var(--gold); font-family: var(--font-serif); font-size: 1.05rem; margin-top: 0.5rem; }

.calendar-wrapper { border: 1px solid rgba(201,169,110,0.15); overflow: hidden; }
.calendar-nav { background: var(--dark-3); display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; }
.calendar-nav-btn { background: none; border: 1px solid rgba(201,169,110,0.3); color: var(--gold); width: 32px; height: 32px; cursor: pointer; transition: var(--transition); font-size: 0.9rem; }
.calendar-nav-btn:hover { background: var(--gold); color: var(--dark); }
.calendar-month-year { font-family: var(--font-serif); font-size: 1.15rem; color: var(--white); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-day-name { text-align: center; padding: 0.65rem 0; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); background: var(--dark-3); border-bottom: 1px solid rgba(201,169,110,0.08); }
.cal-day { text-align: center; padding: 0.7rem 0; font-size: 0.85rem; cursor: pointer; transition: var(--transition); color: var(--text-light); }
.cal-day:hover:not(.disabled):not(.empty) { background: rgba(201,169,110,0.1); }
.cal-day.selected { background: var(--gold); color: var(--dark); font-weight: 600; }
.cal-day.today { color: var(--gold); font-weight: 600; }
.cal-day.disabled { color: rgba(255,255,255,0.18); cursor: not-allowed; }
.cal-day.empty { cursor: default; }

.time-section { margin-top: 1.5rem; display: none; }
.time-section-title { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.time-slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.time-slot { border: 1px solid rgba(201,169,110,0.18); padding: 0.7rem 0; text-align: center; cursor: pointer; font-size: 0.8rem; color: var(--text-light); transition: var(--transition); }
.time-slot:hover:not(.unavailable) { border-color: rgba(201,169,110,0.5); color: var(--gold); }
.time-slot.selected { background: var(--gold); border-color: var(--gold); color: var(--dark); font-weight: 600; }
.time-slot.unavailable { opacity: 0.25; cursor: not-allowed; text-decoration: line-through; }

.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea { width: 100%; background: var(--dark-3); border: 1px solid rgba(255,255,255,0.07); color: var(--text-light); padding: 13px 16px; font-family: var(--font-sans); font-size: 0.88rem; font-weight: 300; outline: none; transition: var(--transition); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(201,169,110,0.5); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select option { background: var(--dark-3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-nav { display: flex; justify-content: space-between; margin-top: 2rem; gap: 1rem; }

.booking-summary { background: var(--dark-3); padding: 1.5rem; margin-bottom: 1.5rem; border-left: 2px solid var(--gold); }
.booking-summary h5 { color: var(--gold); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-sans); }
.summary-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.6rem; gap: 1rem; }
.summary-row span:first-child { color: var(--text-muted); font-size: 0.8rem; }
.summary-row span:last-child { color: var(--white); font-size: 0.8rem; font-weight: 500; text-align: right; }
.summary-divider { height: 1px; background: rgba(255,255,255,0.05); margin: 0.75rem 0; }

.deposit-note { background: rgba(201,169,110,0.04); border: 1px solid rgba(201,169,110,0.15); padding: 1rem 1.25rem; margin-bottom: 1.5rem; }
.deposit-note p { color: var(--text-muted); font-size: 0.8rem; line-height: 1.6; }
.deposit-note strong { color: var(--gold); }

.booking-success { text-align: center; padding: 2rem; }
.success-icon { width: 80px; height: 80px; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--gold); margin: 0 auto 2rem; }
.booking-success h3 { color: var(--white); margin-bottom: 1rem; }
.booking-success p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 0.5rem; }

/* ABOUT PAGE */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; padding: 100px 0; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 580px; object-fit: cover; object-position: top; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: var(--dark); padding: 1.5rem; text-align: center; width: 130px; }
.about-badge-num { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 600; line-height: 1; }
.about-badge-text { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.about-text-block .about-cat { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.about-text-block h2 { color: var(--white); margin-bottom: 1rem; }
.about-text-block .divider { width: 40px; height: 1px; background: var(--gold); margin-bottom: 1.5rem; }
.about-text-block p { color: var(--text-muted); line-height: 1.9; margin-bottom: 1rem; font-size: 0.93rem; }
.about-credentials { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.credential { display: flex; align-items: center; gap: 0.75rem; }
.credential i { color: var(--gold); }
.credential span { color: var(--text-light); font-size: 0.85rem; }

.values-section { background: var(--dark-2); padding: 100px 0; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card { padding: 2.5rem; border: 1px solid rgba(201,169,110,0.1); transition: var(--transition); }
.value-card:hover { border-color: rgba(201,169,110,0.3); transform: translateY(-5px); }
.value-num { font-family: var(--font-serif); font-size: 3rem; color: rgba(201,169,110,0.12); line-height: 1; margin-bottom: 1rem; }
.value-title { font-family: var(--font-serif); color: var(--gold); font-size: 1.35rem; margin-bottom: 0.75rem; }
.value-text { color: var(--text-muted); font-size: 0.85rem; line-height: 1.8; }

/* CONTACT PAGE */
.contact-section { padding: 80px 0 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; }
.contact-info h3 { color: var(--white); margin-bottom: 0.5rem; }
.contact-divider { width: 40px; height: 1px; background: var(--gold); margin: 1rem 0 1.5rem; }
.contact-info > p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1.25rem; margin-bottom: 1.5rem; }
.contact-item-icon { width: 44px; height: 44px; border: 1px solid rgba(201,169,110,0.28); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-item h5 { color: var(--white); font-size: 0.85rem; font-weight: 500; margin-bottom: 0.25rem; font-family: var(--font-sans); }
.contact-item p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
.contact-hours { background: var(--dark-2); padding: 1.5rem; margin-top: 2rem; }
.contact-hours h5 { color: var(--gold); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-sans); }
.hours-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.hours-row span:first-child { color: var(--text-muted); font-size: 0.85rem; }
.hours-row span:last-child { color: var(--white); font-size: 0.85rem; }
.contact-form-wrapper { background: var(--dark-2); padding: 3rem; }
.contact-form-title { font-family: var(--font-serif); font-size: 1.9rem; color: var(--white); margin-bottom: 0.4rem; }
.contact-form-sub { color: var(--text-muted); font-size: 0.83rem; margin-bottom: 2rem; }
.contact-success { background: rgba(201,169,110,0.06); border: 1px solid rgba(201,169,110,0.3); padding: 1.25rem 1.5rem; margin-top: 1.5rem; display: none; }
.contact-success p { color: var(--gold); font-size: 0.88rem; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-container { grid-template-columns: 1fr; }
  .booking-info { position: static; }
  .treatment-full { grid-template-columns: 1fr; gap: 3rem; }
  .treatment-full.reverse { direction: ltr; }
  .about-intro { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--dark-2); flex-direction: column; justify-content: center; gap: 2rem; padding: 2rem; transition: right 0.4s ease; z-index: 999; box-shadow: -10px 0 40px rgba(0,0,0,0.5); }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 0.9rem; }
}
@media (max-width: 768px) {
  .treatments-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .welcome-strip-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .treatment-options { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrapper { padding: 1.5rem; }
  .contact-form-wrapper { padding: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-badge { display: none; }
  .treatment-full-img { height: 350px; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .step-label { display: none; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
