/* ═══════════════════════════════════════════
   ELO TANTRA — Global Stylesheet
   ═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

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

:root {
  --gold: #c9a96e;
  --gold-dim: rgba(201,169,110,0.12);
  --gold-border: rgba(201,169,110,0.3);
  --bg:      #0d0b08;
  --bg2:     #131009;
  --bg3:     #1a1510;
  --surface: #1e1810;
  --text:       #f0e8dc;
  --text-muted: rgba(240,232,220,0.55);
  --text-dim:   rgba(240,232,220,0.28);
  --border:       rgba(201,169,110,0.12);
  --border-hover: rgba(201,169,110,0.30);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--sans); font-weight: 300; line-height: 1.7; overflow-x: hidden; }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: rgba(13,11,8,0.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 11px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: rgba(13,11,8,0.97); border: 1px solid var(--border);
  min-width: 220px; padding: 8px 0; z-index: 300;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 10px 20px; font-size: 12px; letter-spacing: 0.1em; color: var(--text-muted); text-decoration: none; transition: all 0.2s; white-space: nowrap; }
.nav-dropdown-menu a:hover { color: var(--gold); background: var(--gold-dim); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bg); background: var(--gold); border: none; padding: 10px 22px; border-radius: 1px; cursor: pointer; text-decoration: none; transition: opacity 0.2s; white-space: nowrap; }
.nav-cta:hover { opacity: 0.85; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1px; background: var(--text-muted); transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--bg); z-index: 190; overflow-y: auto; padding: 32px 24px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; font-size: 18px; font-family: var(--serif); color: var(--text-muted); text-decoration: none; padding: 14px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:hover { color: var(--gold); }

/* ── PAGE HERO (background image) ── */
.page-hero {
  min-height: 90vh;
  position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 140px 24px 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.32);
  transition: transform 8s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1.04); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,11,8,0.2) 0%, rgba(13,11,8,0.05) 40%, rgba(13,11,8,0.75) 100%);
}
.page-hero > *:not(.page-hero-bg):not(.page-hero-overlay) { position: relative; z-index: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.eyebrow::before, .eyebrow::after { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); opacity: 0.5; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(48px, 7vw, 88px); font-weight: 300; line-height: 1.06; color: var(--text); margin-bottom: 24px; text-shadow: 0 2px 40px rgba(0,0,0,0.6); }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero .lead { font-size: 16px; font-weight: 300; color: rgba(240,232,220,0.8); max-width: 520px; line-height: 1.85; margin-bottom: 40px; text-shadow: 0 1px 20px rgba(0,0,0,0.5); }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ── BUTTONS ── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--bg); font-family: var(--sans); font-size: 12px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; padding: 14px 32px; border-radius: 1px; text-decoration: none; border: none; cursor: pointer; transition: opacity 0.2s; }
.btn-primary:hover { opacity: 0.85; }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--gold-border); color: var(--text-muted); font-family: var(--sans); font-size: 12px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; padding: 14px 32px; border-radius: 1px; text-decoration: none; background: none; cursor: pointer; transition: all 0.2s; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-wa { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; font-family: var(--sans); font-size: 13px; font-weight: 400; letter-spacing: 0.08em; padding: 14px 28px; border-radius: 1px; text-decoration: none; border: none; cursor: pointer; transition: opacity 0.2s; }
.btn-wa:hover { opacity: 0.9; }
.btn-wa svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
section { padding: 100px 0; }
.section-label { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); opacity: 0.6; }
.section-title { font-family: var(--serif); font-size: clamp(32px, 4vw, 54px); font-weight: 300; line-height: 1.1; color: var(--text); margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { font-size: 15px; font-weight: 300; color: var(--text-muted); max-width: 520px; line-height: 1.85; margin-bottom: 56px; }
.divider { width: 100%; height: 1px; background: var(--border); }
.bg2 { background: var(--bg2); }
.bg3 { background: var(--bg3); }

/* ── SERVICE GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.service-card { background: var(--bg2); display: flex; flex-direction: column; text-decoration: none; overflow: hidden; position: relative; transition: background 0.3s; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.service-card:hover { background: var(--surface); }
.service-card:hover::before { transform: scaleX(1); }
.sc-img { height: 200px; overflow: hidden; }
.sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: brightness(0.75); }
.service-card:hover .sc-img img { transform: scale(1.05); filter: brightness(0.9); }
.sc-body { padding: 28px 28px 24px; flex: 1; display: flex; flex-direction: column; }
.sc-tag { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.sc-body h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--text); line-height: 1.2; margin-bottom: 12px; }
.sc-body h3 em { font-style: italic; color: var(--gold); }
.sc-body p { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.8; flex: 1; margin-bottom: 20px; }
.sc-link { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 6px; }
.sc-link::after { content: '→'; transition: transform 0.2s; }
.service-card:hover .sc-link::after { transform: translateX(4px); }

/* ── ABOUT / SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-img { position: relative; }
.split-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; filter: brightness(0.85); }
.split-img::before { content: ''; position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px; border: 1px solid var(--border); z-index: -1; }
.split-text .section-sub { margin-bottom: 24px; }
.body-text { font-size: 15px; font-weight: 300; color: var(--text-muted); line-height: 1.9; }
.body-text p { margin-bottom: 18px; }
.body-text strong { color: var(--text); font-weight: 400; }
.quote-block { border-left: 2px solid var(--gold); padding: 20px 24px; background: var(--gold-dim); margin: 28px 0; }
.quote-block p { font-family: var(--serif); font-size: 20px; font-style: italic; color: var(--text); line-height: 1.6; font-weight: 300; }

/* ── PILLARS / GRID STATS ── */
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--border); }
.pillar { padding: 36px 28px; border-right: 1px solid var(--border); }
.pillar:last-child { border-right: none; }
.pillar-num { font-family: var(--serif); font-size: 44px; font-weight: 300; color: var(--border); line-height: 1; margin-bottom: 16px; }
.pillar h4 { font-family: var(--serif); font-size: 19px; font-weight: 400; color: var(--text); margin-bottom: 10px; }
.pillar p { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.8; }

/* ── BENEFITS GRID ── */
.benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 48px; }
.benefit-item { background: var(--bg2); padding: 36px 32px; transition: background 0.2s; }
.benefit-item:hover { background: var(--surface); }
.benefit-icon { font-size: 26px; margin-bottom: 14px; }
.benefit-item h4 { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--text); margin-bottom: 8px; }
.benefit-item p { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.8; }

/* ── STEPS ── */
.step-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); margin-top: 48px; }
.step { display: grid; grid-template-columns: 80px 1fr; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num { display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--border); font-family: var(--serif); font-size: 30px; font-weight: 300; color: var(--border-hover); }
.step-content { padding: 28px 32px; }
.step-content h4 { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--text); margin-bottom: 6px; }
.step-content p { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.8; }

/* ── FAQ ── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; cursor: pointer; text-align: left; gap: 16px; }
.faq-q span { font-family: var(--serif); font-size: 19px; font-weight: 400; color: var(--text); }
.faq-icon { font-style: normal; font-size: 20px; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 20px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.9; max-width: 680px; }

/* ── WA FORM ── */
.wa-form { background: var(--surface); border: 1px solid var(--border); padding: 48px; max-width: 600px; }
.wa-form h3 { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--text); margin-bottom: 8px; }
.wa-form h3 em { font-style: italic; color: var(--gold); }
.wa-form p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--bg2); border: 1px solid var(--border);
  color: var(--text); font-family: var(--sans); font-size: 14px; font-weight: 300;
  padding: 12px 16px; outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--bg2); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── CTA SECTION ── */
.cta-section { text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(201,169,110,0.06) 0%, transparent 70%); pointer-events: none; }
.cta-line { width: 1px; height: 56px; background: linear-gradient(to bottom, var(--border), transparent); margin: 0 auto 40px; }

/* ── GALLERY STRIP ── */
.gallery-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; }
.gallery-strip img { width: 100%; aspect-ratio: 1; object-fit: cover; filter: brightness(0.7) saturate(0.8); transition: all 0.3s; }
.gallery-strip img:hover { filter: brightness(0.9) saturate(1); }

/* ── STATS BAR ── */
.stats-bar { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-inner { display: flex; }
.stat { flex: 1; padding: 28px 32px; border-right: 1px solid var(--border); display: flex; flex-direction: column; gap: 5px; }
.stat:last-child { border-right: none; }
.stat-value { font-family: var(--serif); font-size: 32px; font-weight: 300; color: var(--gold); }
.stat-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 20px; }
.breadcrumb a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }

/* ── THERAPY CARD (large) ── */
.therapy-cards { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.therapy-card { background: var(--bg); display: grid; grid-template-columns: 260px 1fr; transition: background 0.2s; }
.therapy-card:hover { background: var(--bg2); }
.tc-left { padding: 36px 32px; border-right: 1px solid var(--border); display: flex; flex-direction: column; justify-content: center; }
.tc-num { font-family: var(--serif); font-size: 44px; font-weight: 300; color: var(--border); line-height: 1; margin-bottom: 12px; }
.tc-tag { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.tc-title { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--text); line-height: 1.1; }
.tc-title em { font-style: italic; color: var(--gold); }
.tc-body { padding: 36px 36px; }
.tc-body p { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.9; margin-bottom: 14px; }
.tc-body strong { color: var(--text); font-weight: 400; }
.tc-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tc-pill { font-size: 11px; letter-spacing: 0.08em; color: var(--gold); border: 1px solid var(--border); padding: 4px 12px; border-radius: 20px; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 64px 0 36px; background: var(--bg); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: block; margin-bottom: 16px; }
.footer-logo img { height: 48px; }
.footer-desc { font-size: 13px; font-weight: 300; color: var(--text-dim); line-height: 1.8; max-width: 260px; }
.footer-col h5 { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; font-weight: 300; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; font-weight: 300; color: var(--text-dim); }

/* ── FLOAT WA BUTTON ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.35); text-decoration: none; transition: transform 0.2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.anim { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.anim-1 { animation-delay: 0.15s; }
.anim-2 { animation-delay: 0.30s; }
.anim-3 { animation-delay: 0.45s; }
.anim-4 { animation-delay: 0.60s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 20px; }
  section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(2) { border-right: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .therapy-card { grid-template-columns: 1fr; }
  .tc-left { border-right: none; border-bottom: 1px solid var(--border); }
  .gallery-strip { grid-template-columns: repeat(2,1fr); }
  .stats-inner { flex-wrap: wrap; }
  .stat { min-width: 50%; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .wa-form { padding: 28px 20px; }
}
</style>
