:root {
  --deep-teal:   #093847;
  --teal:        #155f72;
  --teal-mid:    #1e7d96;
  --teal-pale:   #cde8f0;
  --lotus:       #d81b60;
  --lotus-light: #f06292;
  --lotus-pale:  #fce4ec;
  --gold:        #b8860b;
  --gold-light:  #d4a52a;
  --cream:       #fdfaf6;
  --white:       #ffffff;
  --ink:         #18272e;
  --ink-mid:     #3a5560;
  --ink-light:   #6a8892;
  --border:      rgba(11,61,74,.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--ink); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 6%;
  background: rgba(253,250,246,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(11,61,74,.1); }
.nav-brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-brand svg { width: 42px; height: 42px; }
.nav-name { font-family: 'Dancing Script', cursive; font-size: 2.2rem; color: var(--lotus); letter-spacing: .02em; padding-top: 5px; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a { font-size: .78rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mid); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--lotus); }
.nav-cta { background: var(--lotus); color: var(--white) !important; padding: .55rem 1.4rem; border-radius: .2rem; }
.nav-cta:hover { background: var(--deep-teal) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 22px; height: 1.5px; background: var(--deep-teal); border-radius: 2px; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: var(--deep-teal);
  text-align: center; padding: 9rem 6% 5rem;
}
.hero-lotus-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-lotus-bg svg { position: absolute; opacity: .045; }
.hero-shimmer { position: absolute; inset: 0; background: radial-gradient(ellipse 65% 55% at 50% 40%, rgba(21,95,114,.4), transparent); pointer-events: none; }
.hero-accent { position: absolute; inset: 0; background: radial-gradient(ellipse 35% 35% at 82% 78%, rgba(216,27,96,.13), transparent); pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 860px; }
.hero-eyebrow { display: inline-block; font-size: .7rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.5rem; animation: fade-up .8s ease both; }
.hero-lotus-mark { margin-bottom: 1.2rem; animation: fade-up .9s .08s ease both; }
.hero-lotus-mark svg { width: 80px; height: 80px; display: inline-block; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 6.5vw, 5rem); color: var(--white); line-height: 1.1; font-weight: 700; margin-bottom: .8rem; animation: fade-up .9s .14s ease both; }
.hero-title em { color: var(--lotus-light); font-style: italic; font-weight: 400; }
.hero-rule { width: 80px; height: 1px; background: linear-gradient(to right, transparent, var(--gold-light), transparent); margin: 1.5rem auto; animation: fade-up .8s .3s ease both; }
.hero-sub { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.1rem, 2.3vw, 1.45rem); color: rgba(255,255,255,.8); font-style: italic; line-height: 1.6; max-width: 720px; margin: 0 auto 1rem; animation: fade-up .9s .28s ease both; }
.hero-sub strong { color: var(--gold-light); font-weight: 600; font-style: normal; font-family: 'Jost', sans-serif; letter-spacing: 0.05em; }
.hero-stats { display: flex; gap: 3.5rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; margin-bottom: 3rem; animation: fade-up .9s .44s ease both; }
.stat { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: var(--gold-light); display: block; }
.stat-label { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: .2rem; display: block; }
.stat-divider { width: 1px; background: rgba(255,255,255,.12); align-self: stretch; }
.hero-btns { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; animation: fade-up .9s .6s ease both; }
.btn-primary { background: var(--lotus); color: var(--white); padding: .9rem 2.4rem; border-radius: .2rem; font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; transition: background .2s, transform .2s, box-shadow .2s; box-shadow: 0 6px 22px rgba(216,27,96,.35); }
.btn-primary:hover { background: #b0144d; transform: translateY(-2px); }
.btn-ghost { border: 1px solid rgba(255,255,255,.28); color: rgba(255,255,255,.82); padding: .9rem 2.4rem; border-radius: .2rem; font-size: .82rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; transition: background .2s, border-color .2s, transform .2s; }
.btn-ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.55); transform: translateY(-2px); }

@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.scroll-indicator { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.28); animation: sb 2.5s ease-in-out infinite; }
.scroll-indicator::before { content: ''; width: 1px; height: 42px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,.28)); display: block; }
@keyframes sb { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(7px)} }

/* ── SHARED SECTIONS ── */
section { padding: 7rem 6%; }
.section-eyebrow { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--lotus); margin-bottom: .7rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 4.5vw, 3rem); color: var(--deep-teal); line-height: 1.12; }
.section-title em { font-style: italic; color: var(--lotus); font-weight: 400; }
.gold-rule { width: 52px; height: 2px; background: linear-gradient(to right, var(--lotus), var(--gold)); border-radius: 1px; margin: 1.1rem 0; }
.gold-rule.c { margin: 1.1rem auto; }
.section-body { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--ink-mid); line-height: 1.75; max-width: 580px; }

/* ── ABOUT ── */
#about { background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; }
.about-card { background: var(--deep-teal); border-radius: .2rem 3.5rem .2rem .2rem; padding: 3rem 2.8rem 5.5rem; position: relative; overflow: hidden; }
.about-card-lotus { position: absolute; bottom: -50px; right: -50px; width: 200px; opacity: .07; pointer-events: none; }
.about-quote { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-style: italic; font-weight: 400; color: rgba(255,255,255,.88); line-height: 1.68; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.about-quote::before { content: '\201C'; font-size: 4.5rem; color: var(--lotus-light); line-height: 0; vertical-align: -.35em; margin-right: .08em; font-family: 'Playfair Display', serif; }
.about-author { display: block; font-size: .76rem; letter-spacing: .1em; color: var(--gold-light); text-transform: uppercase; position: relative; z-index: 1; }
.about-badge { position: absolute; bottom: -1.8rem; left: -1.8rem; background: var(--lotus); color: var(--white); border-radius: .2rem; padding: 1.3rem 2rem; box-shadow: 0 8px 28px rgba(216,27,96,.28); text-align: center; z-index: 2; }
.about-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge span { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; opacity: .82; }
.about-features { margin-top: 2.5rem; display: flex; flex-direction: column; gap: .85rem; }
.about-feature { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 1.3rem; border-radius: .2rem; background: var(--cream); border: 1px solid var(--border); transition: border-color .2s, transform .2s; }
.about-feature:hover { border-color: var(--lotus-light); transform: translateX(5px); }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lotus); flex-shrink: 0; margin-top: .45rem; }
.about-feature strong { display: block; font-size: .9rem; color: var(--deep-teal); margin-bottom: .2rem; font-weight: 600; }
.about-feature span { font-size: .82rem; color: var(--ink-light); line-height: 1.55; }

/* ── SERVICES ── */
#services { background: var(--cream); }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.4rem; }
.service-card { background: var(--white); border-radius: .2rem; padding: 2.4rem; position: relative; overflow: hidden; border: 1px solid var(--border); transition: transform .3s, box-shadow .3s; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, var(--lotus), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(11,61,74,.1); }
.service-card:hover::after { transform: scaleX(1); }
.service-lotus-icon { width: 45px; margin-bottom: 1.3rem; opacity: .8; }
.service-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--deep-teal); margin-bottom: .6rem; }
.service-desc { font-size: .84rem; color: var(--ink-light); line-height: 1.72; }

/* ── BOOK A SESSION ── */
#book { background: linear-gradient(155deg, var(--lotus-pale) 0%, var(--cream) 50%, var(--teal-pale) 100%); }
.book-wrapper { max-width: 800px; margin: 0 auto; background: var(--white); border-radius: .4rem; overflow: hidden; box-shadow: 0 28px 70px rgba(11,61,74,.1); }
.book-header { background: var(--deep-teal); padding: 3rem; text-align: center; position: relative; overflow: hidden; }
.book-header-lotus { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 300px; opacity: .04; pointer-events: none; }
.book-header h2 { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--white); position: relative; }
.book-header p { color: rgba(255,255,255,.52); margin-top: .5rem; font-size: .86rem; letter-spacing: .04em; position: relative; }
.book-form { padding: 3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; margin-bottom: 1.3rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: span 2; }
label { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--deep-teal); }
input, select, textarea { padding: .85rem 1rem; border-radius: .2rem; border: 1px solid rgba(11,61,74,.16); font-family: 'Jost', sans-serif; font-size: .9rem; color: var(--ink); background: var(--cream); transition: border-color .2s, box-shadow .2s; outline: none; -webkit-appearance: none; }
input:focus, select:focus, textarea:focus { border-color: var(--lotus); box-shadow: 0 0 0 3px rgba(216,27,96,.08); background: var(--white); }
textarea { resize: vertical; min-height: 100px; }
.budget-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .5rem; }
.budget-chip { padding: .48rem 1.1rem; border-radius: .2rem; border: 1px solid rgba(11,61,74,.16); background: var(--cream); color: var(--ink-mid); font-size: .78rem; cursor: pointer; transition: .2s; font-family: 'Jost', sans-serif; font-weight: 500; }
.budget-chip:hover, .budget-chip.active { background: var(--lotus); border-color: var(--lotus); color: var(--white); }
.form-submit { width: 100%; padding: 1.05rem; margin-top: 1.8rem; background: var(--lotus); color: var(--white); border: none; border-radius: .2rem; font-family: 'Jost', sans-serif; font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: background .2s, transform .2s; box-shadow: 0 6px 20px rgba(216,27,96,.25); }
.form-submit:hover { background: #b0144d; transform: translateY(-2px); }
.form-note { font-size: .74rem; color: var(--ink-light); text-align: center; margin-top: .8rem; }
.success-msg { display: none; background: #f0faf0; border: 1px solid #5cb85c; border-radius: .2rem; padding: 1.2rem; text-align: center; color: #2e6b2e; font-size: .88rem; margin-top: 1.2rem; font-weight: 500; }

/* ── CONTACT ── */
#contact { background: var(--white); }
.contact-grid { max-width: 800px; margin: 0 auto; text-align: center; }
.contact-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--deep-teal); line-height: 1.15; margin-bottom: .8rem; }
.contact-text p { font-size: .88rem; color: var(--ink-mid); line-height: 1.78; margin-bottom: 2.2rem; }
.contact-items { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.1rem; padding: 1.2rem 1.3rem; border-radius: .2rem; background: var(--cream); border: 1px solid var(--border); transition: border-color .2s, transform .2s; text-align: left; }
.contact-item:hover { border-color: var(--lotus-light); transform: translateX(4px); }
.c-icon { width: 42px; height: 42px; border-radius: .2rem; flex-shrink: 0; background: var(--deep-teal); display: flex; align-items: center; justify-content: center; }
.c-icon svg { width: 18px; height: 18px; }
.c-text strong { display: block; font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-light); margin-bottom: .25rem; font-weight: 600; }
.c-text a, .c-text span { color: var(--deep-teal); font-weight: 500; text-decoration: none; font-size: .9rem; line-height: 1.4; display: inline-block; }
.c-text a:hover { color: var(--lotus); }

/* ── FOOTER ── */
footer { background: var(--deep-teal); padding: 3.5rem 6% 2rem; }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.09); margin-bottom: 2rem; }
.footer-brand { max-width: 300px; }
.footer-logo { font-family: 'Dancing Script', cursive; font-size: 2.5rem; color: var(--lotus-light); margin-bottom: .5rem; line-height: 1; }
.footer-tagline { font-size: .76rem; color: rgba(255,255,255,.5); letter-spacing: .04em; line-height: 1.65; margin-top: 10px; }
.footer-col h4 { font-size: .68rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .82rem; color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--lotus-light); }
.footer-col p { font-size: .82rem; color: rgba(255,255,255,.65); margin-bottom: .5rem; line-height: 1.6; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .8rem; font-size: .7rem; color: rgba(255,255,255,.28); letter-spacing: .04em; }
.footer-dev { font-size: .7rem; color: rgba(255,255,255,.28); }
.footer-dev a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; letter-spacing: .04em; }
.footer-dev a:hover { color: var(--lotus-light); }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 300; width: 52px; height: 52px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 18px rgba(37,211,102,.4); transition: transform .2s, box-shadow .2s; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

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

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  #about { grid-template-columns: 1fr; gap: 4rem; }
  .about-visual { order: -1; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .footer-inner { flex-direction: column; }
}
@media (max-width: 680px) {
  section { padding: 5rem 5%; }
  .nav-links { display: none; flex-direction: column; gap: 1.2rem; position: absolute; top: 100%; left: 0; right: 0; background: rgba(253,250,246,.97); padding: 1.8rem 6%; box-shadow: 0 12px 30px rgba(0,0,0,.08); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-stats { gap: 2rem; }
  .book-form, .book-header { padding: 2rem 1.5rem; }
}
