/* ============================================================
   Yoga with Priya - style.css
   Palette (from logo): deep purple #4a3175 · teal #2a7f8f
            cream #faf6ef · lilac #f2ecf5 · rose #c25e7f
   Type:    Cormorant Garamond (display) · Jost (body)
   NOTE: var names kept from v1 - pine=purple, sage=teal, clay=rose
   ============================================================ */

:root {
  --pine: #4a3175;
  --pine-soft: #5d4190;
  --sage: #2a7f8f;
  --cream: #faf6ef;
  --sand: #f2ecf5;
  --clay: #c25e7f;
  --clay-soft: #ef9fae;
  --ink: #332e3e;
  --muted: #6b6478;
  --white: #ffffff;
  --wa: #25d366;
  --radius: 18px;
  --shadow: 0 10px 40px rgba(74, 49, 117, 0.10);
  --shadow-lg: 0 18px 60px rgba(74, 49, 117, 0.16);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

html, body { overflow-x: clip; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; }

.container { width: min(1140px, 92%); margin-inline: auto; }
.container.narrow { width: min(820px, 92%); }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); color: var(--pine); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); font-weight: 600; }
h1 em, h2 em { font-style: italic; color: var(--clay); }

.section-title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 600; margin-bottom: 0.6em; }
.section-sub { max-width: 620px; margin: -0.4rem auto 2.6rem; color: var(--muted); }

.eyebrow {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--clay); margin-bottom: 0.9rem;
}
.center { text-align: center; }

.lead { font-size: 1.13rem; color: var(--muted); max-width: 540px; margin: 1.2rem 0 1.8rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.7rem; border-radius: 999px;
  font-family: var(--font-body); font-size: 0.98rem; font-weight: 500;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--pine); color: var(--cream); box-shadow: 0 6px 20px rgba(74,49,117,0.28); }
.btn-primary:hover { background: var(--pine-soft); box-shadow: 0 10px 26px rgba(74,49,117,0.33); }

.btn-outline { background: transparent; color: var(--pine); border-color: var(--pine); }
.btn-outline:hover { background: var(--pine); color: var(--cream); }

.btn-whatsapp { background: var(--wa); color: #fff; box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.btn-whatsapp:hover { background: #1fb857; }

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.9rem; }

.text-link {
  color: var(--clay); font-weight: 500; text-decoration: none;
  border-bottom: 1px solid transparent; transition: border-color 0.2s;
}
.text-link:hover { border-color: var(--clay); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 49, 117, 0.08);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(30,58,47,0.08); }

.header-inner { display: flex; align-items: center; gap: 1.5rem; padding: 0.45rem 0; }

.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo { height: 72px; width: auto; }
.brand-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--pine); }
.brand-sub { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; color: var(--clay); }

.site-nav { display: flex; gap: 1.6rem; margin-left: auto; }
.site-nav a {
  text-decoration: none; color: var(--ink); font-size: 0.95rem; font-weight: 400;
  position: relative; padding: 0.2rem 0;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--clay); transition: width 0.25s ease;
}
.site-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.phone-link { text-decoration: none; color: var(--pine); font-weight: 500; font-size: 0.92rem; white-space: nowrap; }
.phone-link:hover { color: var(--clay); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--pine); margin: 5px 0; transition: 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 4.5rem 0 5rem; }

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; }
.blob-1 { width: 480px; height: 480px; background: var(--sand); top: -140px; right: -100px; }
.blob-2 { width: 380px; height: 380px; background: rgba(194, 94, 127, 0.16); bottom: -120px; left: -80px; }
.blob-3 { width: 260px; height: 260px; background: rgba(42, 127, 143, 0.15); top: 30%; left: 42%; }

.hero-inner {
  position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem; align-items: center;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.6rem; }

.trust-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-bottom: 1.4rem; }
.trust-chips li { font-size: 0.92rem; color: var(--muted); }

.hero-call { font-size: 0.98rem; color: var(--muted); }
.hero-call a { color: var(--pine); font-weight: 500; text-decoration: none; }
.hero-call a:hover { color: var(--clay); }

.hero-photo-frame {
  width: min(380px, 100%); margin-inline: auto;
  border-radius: 190px 190px var(--radius) var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  position: relative;
}
.hero-photo-frame::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; border: 1px solid rgba(194,94,127,0.4);
  pointer-events: none;
}
.hero-photo-frame img { width: 100%; height: 480px; object-fit: cover; object-position: center 30%; }

.hero-photo-caption {
  text-align: center; margin-top: 0.9rem; font-size: 0.85rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section-alt { background: var(--sand); }

/* ---------- Cards (benefits) ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white); border-radius: var(--radius); padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-icon { font-size: 1.9rem; margin-bottom: 0.7rem; }
.card h3 { font-size: 1.3rem; margin-bottom: 0.45rem; }
.card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Program cards ---------- */
.program-card {
  background: var(--white); border-radius: var(--radius); padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  border-top: 4px solid var(--sage);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.program-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-top-color: var(--clay); }
.program-card h3 { font-size: 1.35rem; margin-bottom: 0.8rem; }
.program-card ul { list-style: none; margin-bottom: 1.2rem; flex: 1; }
.program-card li { padding-left: 1.3rem; position: relative; color: var(--muted); font-size: 0.95rem; margin-bottom: 0.4rem; }
.program-card li::before { content: "✦"; position: absolute; left: 0; color: var(--clay); font-size: 0.7rem; top: 0.28em; }

/* ---------- About ---------- */
.about-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3.5rem; align-items: center; }

.about-frame {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid var(--white); transform: rotate(-2deg);
  transition: transform 0.35s ease;
}
.about-frame:hover { transform: rotate(0deg) scale(1.02); }
.about-frame img { width: 100%; height: 460px; object-fit: cover; }

.about-copy p { color: var(--muted); margin-bottom: 1rem; max-width: 560px; }
.about-points { list-style: none; margin: 1.4rem 0 1.8rem; }
.about-points li { padding-left: 1.6rem; position: relative; margin-bottom: 0.55rem; color: var(--ink); }
.about-points li::before { content: "✔"; position: absolute; left: 0; color: var(--sage); font-weight: 600; }
.about-points strong { font-weight: 500; color: var(--pine); }

/* ---------- Gallery ---------- */
.section-gallery { padding-bottom: 5.5rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2.4rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.gallery-item img {
  width: 100%; height: 340px; object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1rem 0.8rem; color: #fff; font-size: 0.85rem; letter-spacing: 0.06em;
  background: linear-gradient(transparent, rgba(36, 26, 50, 0.75));
}

/* ---------- Service areas ---------- */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-bottom: 1.8rem; }
.area-card {
  background: var(--white); border-radius: var(--radius); padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow);
}
.area-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.area-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.area-chips li {
  background: var(--sand); color: var(--pine); font-size: 0.9rem;
  padding: 0.35rem 0.95rem; border-radius: 999px;
}
.online-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: linear-gradient(120deg, var(--pine) 0%, var(--pine-soft) 100%);
  color: var(--cream); border-radius: var(--radius);
  padding: 1.9rem 2.2rem; margin-bottom: 1.8rem; box-shadow: var(--shadow-lg);
}
.online-banner h3 { color: var(--cream); font-size: 1.55rem; margin-bottom: 0.35rem; }
.online-banner p { opacity: 0.85; font-size: 0.97rem; max-width: 600px; }
.btn-light { background: var(--cream); color: var(--pine); flex-shrink: 0; }
.btn-light:hover { background: var(--white); }

.areas-note { color: var(--muted); font-size: 0.95rem; }
.areas-note a { color: var(--clay); font-weight: 500; text-decoration: none; }
.areas-note a:hover { text-decoration: underline; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 2.4rem; }
.step { text-align: center; padding: 1.2rem 0.8rem; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--pine); color: var(--cream);
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  margin-bottom: 0.9rem; box-shadow: 0 6px 18px rgba(74,49,117,0.28);
}
.step h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Pricing ---------- */
.pricing-grid { align-items: stretch; }
.price-card {
  background: var(--white); border-radius: var(--radius); padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow); text-align: center; position: relative;
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.price-card.featured { border: 2px solid var(--clay); transform: scale(1.03); }
.price-card.featured:hover { transform: scale(1.03) translateY(-5px); }

.badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--clay); color: #fff; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 999px; white-space: nowrap;
}

.price-card h3 { font-size: 1.5rem; }
.price-sessions { font-size: 1.15rem; color: var(--clay); font-weight: 500; margin: 0.3rem 0 1.2rem; }
.price-sessions span { color: var(--muted); font-size: 0.9rem; font-weight: 300; }
.price-card ul { list-style: none; margin-bottom: 1.6rem; flex: 1; }
.price-card li { padding: 0.35rem 0; color: var(--muted); font-size: 0.95rem; border-bottom: 1px dashed rgba(74,49,117,0.1); }
.price-card li:last-child { border-bottom: 0; }

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--white); border-radius: var(--radius); padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.stars { color: #d9a62e; letter-spacing: 0.2em; margin-bottom: 0.8rem; }
.quote-card blockquote { color: var(--ink); font-size: 0.98rem; flex: 1; }
.quote-card figcaption { margin-top: 1rem; color: var(--muted); font-size: 0.9rem; font-weight: 500; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 2.2rem; }
.faq-item {
  background: var(--white); border-radius: 14px; margin-bottom: 0.8rem;
  box-shadow: var(--shadow); overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.1rem 3rem 1.1rem 1.4rem;
  font-weight: 500; color: var(--pine); position: relative; font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 1.3rem; top: 50%;
  transform: translateY(-50%); font-size: 1.5rem; font-weight: 300; color: var(--clay);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 1.4rem 1.2rem; color: var(--muted); font-size: 0.97rem; }

/* ---------- Booking ---------- */
.section-book {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
}
.book-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 2rem; align-items: start; }

.book-form {
  background: var(--white); border-radius: var(--radius); padding: 2rem 1.8rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.book-form label { display: block; font-size: 0.88rem; font-weight: 500; color: var(--pine); margin-bottom: 1rem; }
.book-form .opt { color: var(--muted); font-weight: 300; }
.book-form input, .book-form select, .book-form textarea {
  width: 100%; margin-top: 0.35rem; padding: 0.75rem 0.9rem;
  border: 1.5px solid rgba(74,49,117,0.18); border-radius: 10px;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  background: var(--cream); transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.book-form input:focus, .book-form select:focus, .book-form textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(42,127,143,0.15);
}
.form-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 0.4rem; }
.form-note { margin-top: 0.8rem; font-size: 0.85rem; color: var(--clay); }

.contact-card {
  background: var(--pine); color: var(--cream); border-radius: var(--radius);
  padding: 2rem 1.7rem; box-shadow: var(--shadow-lg);
}
.contact-card h3 { color: var(--cream); font-size: 1.45rem; margin-bottom: 1.2rem; }
.contact-line {
  display: flex; align-items: center; gap: 0.9rem; text-decoration: none;
  color: var(--cream); padding: 0.8rem 0.9rem; border-radius: 12px;
  background: rgba(255,255,255,0.07); margin-bottom: 0.8rem;
  transition: background 0.2s ease;
}
.contact-line:hover { background: rgba(255,255,255,0.15); }
.contact-ic {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12); font-size: 1.1rem;
}
.contact-ic.wa { background: var(--wa); color: #fff; }
.contact-ic.yt { background: #ff0000; color: #fff; }
.contact-line small { display: block; opacity: 0.65; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; }
.contact-line strong { font-weight: 500; font-size: 1.02rem; }
.contact-hours { margin-top: 1.2rem; font-size: 0.88rem; opacity: 0.75; line-height: 1.7; }

/* ---------- Footer ---------- */
.site-footer { background: var(--pine); color: rgba(250,246,239,0.85); padding: 3.5rem 0 1.5rem; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-brand .brand-name { color: var(--cream); font-size: 1.5rem; }
.footer-brand .brand-sub { display: block; margin: 0.15rem 0 0.9rem; }
.footer-brand p { font-size: 0.92rem; opacity: 0.75; line-height: 1.8; }
.footer-nav { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-nav a, .footer-contact a {
  color: rgba(250,246,239,0.85); text-decoration: none; font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--clay-soft); }
.footer-contact { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-fine {
  text-align: center; font-size: 0.82rem; opacity: 0.55;
  border-top: 1px solid rgba(250,246,239,0.12); padding-top: 1.4rem;
  width: min(1140px, 92%); margin-inline: auto;
}
.footer-fine a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer-fine a:hover { color: var(--clay-soft); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-ctas, .trust-chips { justify-content: center; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .areas-grid { grid-template-columns: 1fr; }
  .online-banner { flex-direction: column; text-align: center; }
  .about-frame { max-width: 420px; margin-inline: auto; }
  .book-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  /* collapse nav to hamburger - full nav doesn't fit under ~1000px.
     NB: dropdown is absolute (not fixed) - the header's backdrop-filter
     would hijack a fixed child's containing block. */
  .header-actions { margin-left: auto; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    z-index: 98; height: 100vh;
    margin-left: 0; background: var(--cream);
    flex-direction: column; align-items: center; justify-content: flex-start;
    padding-top: 3rem; gap: 1.8rem; font-size: 1.25rem;
    transform: translateX(100%); transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(74, 49, 117, 0.12);
  }
  .site-nav.open { transform: translateX(0); }
  .nav-toggle { display: block; }
}

@media (max-width: 680px) {
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-5px); }
  .section { padding: 3.5rem 0; }
  .hero { padding: 2.5rem 0 3.5rem; }
  .hero-photo-frame img { height: 400px; }
  .gallery-item img { height: 240px; }

  .header-inner { gap: 1rem; }
  .phone-link span { display: none; }
  .phone-link { font-size: 1.1rem; }
  .brand-logo { height: 54px; }
}

@media (max-width: 400px) {
  .hero-ctas .btn { width: 100%; }
  .hero-photo-frame img { height: 360px; }
  .container { width: 90%; }
}
