/* ═══════════════════════════════════════════
   NEHA GALORIA — MAIN STYLESHEET
   Built by Ripe Studios | ripestudios.co.ke
   ═══════════════════════════════════════════ */

/* ── CSS VARIABLES ─────────────────────── */
:root {
  --black:       #0f0e0c;
  --black-2:     #1a1916;
  --black-3:     #242220;
  --gold:        #d4a574;
  --gold-light:  #e8c9a0;
  --gold-pale:   #f5e6d3;
  --cream:       #f0e8dc;
  --cream-bg:    #f5f0ea;
  --white:       #faf8f5;
  --text-dim:    #8a7e72;
  --border:      rgba(212,165,116,0.2);
  --border-light:rgba(212,165,116,0.12);

  --font-display: 'Cormorant Garamond', serif;
  --font-sc:      'Cormorant SC', serif;
  --font-body:    'EB Garamond', serif;

  --nav-h:        68px;
  --section-pad:  120px;
}

/* ── RESET ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Elementor full width */
.elementor-section-wrap,
.e-con-inner,
.elementor-container { max-width: 100% !important; }

/* ── SKIP LINK ──────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--gold); color: var(--black);
  padding: 0.5rem 1rem; font-size: 0.875rem;
  z-index: 10000; border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── TYPOGRAPHY HELPERS ─────────────────── */
.eyebrow {
  font-family: var(--font-sc);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  color: var(--cream);
}
.section-title em { font-style: italic; color: var(--gold-light); }
.rule { width: 2.5rem; height: 1px; background: var(--gold); margin-top: 1.25rem; }

/* ── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-sc);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-gold { background: var(--gold-pale); color: var(--black); }
.btn-gold:hover { background: var(--gold); color: var(--black); }
.btn-outline { background: transparent; color: var(--cream); border: 1px solid rgba(240,232,220,0.35); }
.btn-outline:hover { border-color: var(--cream); background: rgba(240,232,220,0.06); }

/* ── NAVIGATION ─────────────────────────── */
nav, .neha-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: var(--black);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.3s;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 42px; width: auto; display: block; transition: opacity 0.2s; }
.nav-logo:hover .nav-logo-img { opacity: 0.85; }

.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--font-sc);
  font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-dim); transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }

.nav-book {
  font-family: var(--font-sc); font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--black);
  background: var(--gold-pale); padding: 0.7rem 1.5rem;
  transition: background 0.2s; white-space: nowrap;
}
.nav-book:hover { background: var(--gold); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 1px; background: var(--cream); transition: all 0.3s; }

/* ── MOBILE MENU ────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--black); z-index: 998;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--cream); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold-light); }

/* ── SECTION WRAPPER ────────────────────── */
.neha-section { padding: var(--section-pad) 4rem; }
.neha-section.light { background: var(--cream-bg); color: var(--black); }
.neha-section.dark  { background: var(--black-2); }

/* ── HERO ───────────────────────────────── */
.neha-hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex; align-items: center;
  padding-left: 4rem;
  background: var(--black);
  position: relative; overflow: hidden;
}
.neha-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 75% 50%, rgba(212,165,116,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: var(--font-sc); font-size: 0.65rem;
  letter-spacing: 0.3em; color: var(--text-dim); margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1.05; color: var(--gold-pale); margin-bottom: 1.5rem;
}
.hero-title .italic { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1rem; line-height: 1.7; color: var(--text-dim);
  max-width: 380px; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── ABOUT ──────────────────────────────── */
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.about-body { font-size: 1.05rem; line-height: 1.8; color: rgba(240,232,220,0.75); margin-top: 1.5rem; }
.about-body p + p { margin-top: 1.25rem; }
.about-body strong { color: var(--cream); font-weight: 500; }
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
}
.stat { background: var(--black); padding: 2.5rem 2rem; }
.stat-num {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; color: var(--gold-light); line-height: 1; margin-bottom: 0.5rem;
}
.stat-label { font-family: var(--font-sc); font-size: 0.55rem; letter-spacing: 0.2em; color: var(--text-dim); }

/* ── LOCATIONS ──────────────────────────── */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.location-card { border: 1px solid var(--border); padding: 2.5rem; transition: border-color 0.3s; }
.location-card:hover { border-color: var(--gold); }
.location-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--cream); margin-bottom: 0.5rem; }
.location-address { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 1.25rem; }
.location-days { font-family: var(--font-sc); font-size: 0.55rem; letter-spacing: 0.18em; color: var(--text-dim); margin-bottom: 0.25rem; }
.location-hours { font-size: 0.95rem; color: var(--cream); }

/* ── SERVICES ───────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border); margin-top: 3rem;
}
.service-col { background: var(--black); padding: 2.5rem; }
.service-num { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--text-dim); margin-bottom: 1.25rem; }
.service-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; color: var(--cream); margin-bottom: 1.5rem; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.service-list li { font-size: 0.92rem; color: var(--text-dim); display: flex; align-items: baseline; gap: 0.6rem; }
.service-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-size: 0.8rem; }

/* ── PRICES ─────────────────────────────── */
.neha-section.light .section-title { color: var(--black); }
.neha-section.light .section-title em { color: #c08050; }
.neha-section.light .eyebrow { color: #a08060; }
.neha-section.light .rule { background: #c08050; }
.prices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 3.5rem; align-items: start; }
.price-col-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--black); padding-bottom: 1rem; border-bottom: 1px solid rgba(15,14,12,0.15); margin-bottom: 0.75rem; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 0.7rem 0; border-bottom: 1px solid rgba(15,14,12,0.08); font-size: 0.92rem; gap: 1rem; }
.price-row:last-child { border-bottom: none; }
.price-amount { font-family: var(--font-display); font-size: 1rem; color: #b06040; white-space: nowrap; flex-shrink: 0; }
.price-note { font-size: 0.8rem; color: #a08060; line-height: 1.5; margin-top: 1.25rem; font-style: italic; }

/* ── BOOKING ────────────────────────────── */
.booking-card { max-width: 600px; margin: 3rem auto 0; border: 1px solid var(--border); padding: 3rem 2.5rem; text-align: left; }
.booking-card-logo { display: flex; align-items: center; gap: 0.75rem; justify-content: center; margin-bottom: 1.25rem; }
.booksy-icon { width: 36px; height: 36px; background: #2a2a2a; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-family: var(--font-sc); font-size: 1rem; color: var(--cream); }
.booking-platform-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); }
.booking-desc { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 2rem; text-align: center; }
.booking-contact { margin-top: 1.25rem; font-size: 0.85rem; color: var(--text-dim); text-align: center; }
.booking-contact a { color: var(--gold-light); transition: color 0.2s; }
.booking-contact a:hover { color: var(--gold); }

/* ── TESTIMONIALS ───────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { border: 1px solid var(--border-light); padding: 2.25rem; transition: border-color 0.3s; }
.testimonial-card:hover { border-color: var(--border); }
.testimonial-quote { font-size: 2rem; font-family: var(--font-display); color: var(--gold); opacity: 0.4; line-height: 1; margin-bottom: 0.75rem; }
.testimonial-text { font-size: 0.9rem; line-height: 1.7; color: rgba(240,232,220,0.65); font-style: italic; margin-bottom: 1.25rem; }
.testimonial-name { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--gold-light); }

/* ── INSTAGRAM / SOCIAL ─────────────────── */
.ig-buttons { display: flex; align-items: center; gap: 1.5rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }
.ig-btn { display: inline-flex; align-items: center; gap: 0.6rem; }
.ig-handle-inline { font-family: var(--font-display); font-size: 1rem; color: var(--text-dim); letter-spacing: 0.05em; transition: color 0.2s; }
.ig-handle-inline:hover { color: var(--gold-light); }
.ig-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; max-width: 700px; margin: 2rem auto 0; }
.ig-placeholder { aspect-ratio: 1; background: var(--black-3); border: 1px solid var(--border-light); }

/* ── CONTACT FORM ───────────────────────── */
.contact-form-wrap { max-width: 640px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-sc); font-size: 0.55rem; letter-spacing: 0.18em; color: var(--text-dim); }
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent; border: 1px solid var(--border);
  color: var(--cream); font-family: var(--font-body); font-size: 0.92rem;
  padding: 0.85rem 1rem; outline: none; transition: border-color 0.2s;
  width: 100%; appearance: none; -webkit-appearance: none;
}
.form-field select option { background: var(--black-2); color: var(--cream); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-dim); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 1.5rem; }
.form-status { margin-top: 1rem; font-size: 0.875rem; padding: 0.75rem 1rem; display: none; }
.form-status.success { display: block; background: rgba(212,165,116,0.12); border: 1px solid var(--border); color: var(--gold-light); }
.form-status.error { display: block; background: rgba(180,80,80,0.1); border: 1px solid rgba(180,80,80,0.3); color: #e07070; }

/* ── CONTACT CTA ────────────────────────── */
.contact-title { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.4rem, 5vw, 4rem); color: var(--cream); }
.contact-title em { font-style: italic; color: var(--gold-light); }
.contact-rule { width: 2.5rem; height: 1px; background: var(--gold); margin: 1.25rem auto 2rem; }
.contact-sub { font-size: 0.95rem; color: var(--text-dim); margin-bottom: 3rem; }
.contact-cols { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; margin-bottom: 3rem; }
.contact-col-label { font-family: var(--font-sc); font-size: 0.55rem; letter-spacing: 0.2em; color: var(--text-dim); margin-bottom: 0.5rem; }
.contact-col-value { font-family: var(--font-display); font-size: 1rem; color: var(--cream); }
.contact-col-value a:hover { color: var(--gold-light); }
.contact-social { display: flex; gap: 2rem; justify-content: center; margin-top: 2.5rem; }
.contact-social a { font-family: var(--font-sc); font-size: 0.55rem; letter-spacing: 0.18em; color: var(--text-dim); transition: color 0.2s; }
.contact-social a:hover { color: var(--cream); }

/* ── FOOTER ─────────────────────────────── */
.neha-footer {
  background: var(--black); border-top: 1px solid var(--border-light);
  padding: 2rem 4rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-copy, .footer-reg, .footer-credit { font-size: 0.78rem; color: var(--text-dim); }
.footer-credit a { color: var(--gold-light); transition: color 0.2s; }
.footer-credit a:hover { color: var(--gold); }

/* ── SCROLL REVEAL ──────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .prices-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 70px; }
  .neha-section, .neha-hero { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .neha-footer { padding: 1.5rem; flex-direction: column; text-align: center; }
  .nav-links, .nav-book { display: none; }
  .nav-hamburger { display: flex; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .locations-grid, .services-grid, .prices-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .contact-cols { gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: 1; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .ig-grid .ig-placeholder:nth-child(n+4) { display: none; }
}
