*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{background:var(--canvas);color:var(--text-primary);font-family:var(--font-body)}
a{color:var(--gold-deep)}
a:hover{color:var(--burgundy)}
img{max-width:100%;display:block}
.container{max-width:var(--container-max);margin:0 auto;padding:0 var(--page-padding-desktop)}
@media (max-width:900px){.container{padding:0 var(--page-padding-tablet)}}
@media (max-width:600px){.container{padding:0 var(--page-padding-mobile)}}
section{padding:var(--space-section) 0}
@media (max-width:900px){section{padding:var(--space-section-sm) 0}}
.eyebrow{font-size:var(--label-size);font-weight:700;letter-spacing:var(--label-ls);text-transform:uppercase;color:var(--gold-deep)}
.section-head{max-width:680px;margin-bottom:var(--space-xl)}
.section-head h2{font-family:var(--font-display);font-size:var(--h1-size);font-weight:500;color:var(--ink);margin-top:10px;line-height:1.15}
.section-head p{font-size:var(--body-lg-size);color:var(--slate);margin-top:16px;line-height:1.65}
.center{text-align:center;margin-left:auto;margin-right:auto}

/* top bar */
.topbar{position:sticky;top:0;z-index:40;background:var(--surface);border-bottom:1px solid var(--hairline)}
.desktop-only{display:block}
.mobile-only{display:none}
@media (max-width:900px){.desktop-only{display:none}.mobile-only{display:block}}
#nav-mobile-wrap{padding:12px var(--page-padding-mobile);background:var(--surface)}

/* hero */
.hero{position:relative;background:var(--midnight);color:var(--inverse);overflow:hidden;padding:0}
.hero-stage{position:relative;height:min(78vh,760px);min-height:520px;display:flex;align-items:flex-end;overflow:hidden}
@media (max-width:600px){.hero-stage{height:auto;min-height:0;padding-bottom:8px}}
.hero-bg{position:absolute;inset:0;background:radial-gradient(ellipse at 50% 30%,#182c4c 0%,#0e1a2e 55%,#0a1120 100%)}
.hero-stars{position:absolute;inset:0;background-image:url('assets/star-field-bg.svg');background-size:cover;background-position:center;opacity:0.55}
.orbit-system{position:absolute;top:0;bottom:0;right:-8%;left:38%;display:flex;align-items:center;justify-content:center;opacity:0.75}
.hero-scrim{position:absolute;inset:0;background:linear-gradient(100deg,rgba(14,26,46,0.96) 0%,rgba(14,26,46,0.75) 32%,rgba(14,26,46,0.15) 62%,transparent 78%);z-index:1}
@media (max-width:900px){.orbit-system{left:10%;right:-20%;opacity:0.45}.hero-scrim{background:linear-gradient(180deg,rgba(14,26,46,0.55) 0%,rgba(14,26,46,0.92) 55%,rgba(14,26,46,0.98) 100%)}}
.orbit-ring{position:absolute;border:1px solid rgba(203,167,102,0.22);border-radius:50%}
.orbit-ring::after{content:'';position:absolute;width:10px;height:10px;border-radius:50%;background:var(--gold-soft);box-shadow:0 0 12px 3px rgba(203,167,102,0.7);top:50%;left:0;transform:translate(-50%,-50%)}
.orbit-ring.r1{width:340px;height:340px;animation:spin 34s linear infinite}
.orbit-ring.r2{width:520px;height:520px;animation:spin 54s linear infinite reverse}
.orbit-ring.r3{width:700px;height:700px;animation:spin 78s linear infinite}
.orbit-ring.r2::after{background:var(--copper);box-shadow:0 0 10px 3px rgba(165,97,63,0.6);width:14px;height:14px}
.orbit-ring.r3::after{background:#8fa7c9;box-shadow:0 0 8px 2px rgba(143,167,201,0.6);width:8px;height:8px}
.sun-core{position:absolute;width:120px;height:120px;border-radius:50%;background:radial-gradient(circle at 40% 35%,#ffe9b8,var(--gold) 45%,var(--gold-deep) 75%,transparent 100%);box-shadow:0 0 90px 30px rgba(180,138,63,0.45),0 0 200px 80px rgba(180,138,63,0.15);filter:blur(0.3px)}
@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
@media (prefers-reduced-motion:reduce){.orbit-ring{animation:none !important}}
@media (max-width:900px){.orbit-ring.r3{width:460px;height:460px}.orbit-ring.r2{width:340px;height:340px}.orbit-ring.r1{width:220px;height:220px}.sun-core{width:80px;height:80px}}
.hero-content{position:relative;z-index:2;width:100%;padding:64px 0 56px}
@media (max-width:600px){.hero-content{padding:52px 0 40px}}
.hero-content .container{max-width:900px}
.hero-content .container>*{max-width:560px}
@media (max-width:900px){.hero-content .container>*{max-width:100%}}
.hero h1{font-family:var(--font-display);font-size:var(--hero-size);font-weight:500;line-height:var(--hero-lh);margin:18px 0 22px;color:var(--inverse)}
@media (max-width:600px){.hero h1{font-size:clamp(2.1rem,9vw,2.8rem)}}
.hero-sub{font-size:var(--body-lg-size);line-height:1.7;color:#d9dde6;max-width:620px}
.hero-ctas{display:flex;flex-wrap:wrap;gap:14px;margin-top:32px}
@media (max-width:600px){.hero-ctas{flex-direction:column}.hero-ctas>*{width:100%}}
.hero-tel{margin-top:18px;font-size:14px;color:#cfd6e4}
.hero-tel a{color:var(--gold-soft);font-weight:600;text-decoration:none}

/* trust strip */
.trust-strip{background:var(--surface-warm);border-bottom:1px solid var(--hairline)}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px}
@media (max-width:900px){.trust-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:480px){.trust-grid{grid-template-columns:1fr;gap:22px}}
.trust-item{display:flex;flex-direction:column;gap:8px;align-items:center;text-align:center}
.trust-item img{width:26px;height:26px;opacity:0.75}
.trust-item strong{font-family:var(--font-display);font-size:18px;font-weight:600;color:var(--ink)}
.trust-item span{font-size:13px;color:var(--slate)}
.awards-row{display:flex;gap:22px;margin-top:44px;overflow-x:auto;padding-bottom:6px;-webkit-overflow-scrolling:touch;scroll-snap-type:x proximity}
.awards-row img{height:180px;width:auto;border-radius:var(--radius-md);flex-shrink:0;box-shadow:var(--shadow-card);scroll-snap-align:start}
@media (max-width:600px){.awards-row img{height:160px}}

/* intro / editorial */
.intro-grid{display:grid;grid-template-columns:1.1fr 0.9fr;gap:64px;align-items:center}
@media (max-width:900px){.intro-grid{grid-template-columns:1fr}}
.intro-copy p{font-size:var(--body-lg-size);color:var(--charcoal);line-height:1.75;margin-bottom:18px}
.intro-images{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.intro-images img{border-radius:var(--radius-md);height:220px;object-fit:cover}
.intro-images img:first-child{grid-column:1/3;height:280px}
@media (max-width:600px){.intro-images{grid-template-columns:1fr 1fr;gap:10px}.intro-images img{height:150px}.intro-images img:first-child{height:190px}}
.credential-strip{display:flex;gap:24px;margin-top:28px;flex-wrap:wrap}
.credential-strip div{font-family:var(--font-mono);font-size:13px;color:var(--slate)}
.credential-strip strong{display:block;font-family:var(--font-display);font-size:28px;color:var(--gold-deep);font-weight:600}

/* founder */
.founder{background:var(--midnight);color:var(--inverse);position:relative;overflow:hidden}
.founder-grid{display:grid;grid-template-columns:0.85fr 1.15fr;gap:64px;align-items:center;position:relative;z-index:1}
@media (max-width:900px){.founder-grid{grid-template-columns:1fr}}
.founder-photo{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-modal)}
.founder-photo img{width:100%;height:auto;object-fit:cover}
.founder h2{font-family:var(--font-display);font-size:var(--display-size);font-weight:500;margin:14px 0 6px}
.founder .role{color:var(--gold-soft);font-size:16px;font-weight:500;margin-bottom:22px}
.founder p{color:#d3d8e3;line-height:1.75;margin-bottom:16px;font-size:var(--body-size)}
.founder-list{display:grid;grid-template-columns:1fr 1fr;gap:10px 24px;margin:24px 0;list-style:none}
@media (max-width:480px){.founder-list{grid-template-columns:1fr}}
.founder-list li{font-size:14px;color:#c7cde0;padding-left:18px;position:relative}
.founder-list li::before{content:'';position:absolute;left:0;top:9px;width:6px;height:6px;background:var(--gold);border-radius:50%}

/* services */
.services-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:var(--grid-gap)}

/* feature sections (relationship/palmistry/vastu) */
.feature{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
@media (max-width:900px){.feature{grid-template-columns:1fr}}
.feature.reverse .feature-media{order:2}
@media (max-width:900px){.feature.reverse .feature-media{order:0}}
.feature-media img{border-radius:var(--radius-lg);width:100%;object-fit:cover;height:420px}
@media (max-width:600px){.feature-media img{height:280px}}
.feature-copy .eyebrow{display:block;margin-bottom:12px}
.feature-copy h2{font-family:var(--font-display);font-size:var(--h1-size);font-weight:500;color:var(--ink);margin-bottom:16px}
.feature-copy ul{margin:20px 0;list-style:none;display:flex;flex-direction:column;gap:10px}
.feature-copy ul li{font-size:15px;color:var(--charcoal);padding-left:22px;position:relative}
.feature-copy ul li::before{content:'';position:absolute;left:0;top:8px;width:6px;height:6px;border-radius:50%;background:var(--gold)}
.feature-copy p{color:var(--slate);line-height:1.7;margin-bottom:14px}
.section-dark{background:var(--midnight);color:var(--inverse)}
.section-dark .feature-copy h2{color:var(--inverse)}
.section-dark .feature-copy p{color:#c7cde0}
.section-dark .feature-copy ul li{color:#d3d8e3}

/* credentials gallery */
.cert-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:24px}
@media (max-width:600px){.cert-grid{grid-template-columns:1fr 1fr;gap:14px}}
.cert-card{background:var(--surface-card);border:1px solid var(--hairline);border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-subtle);transition:box-shadow var(--duration-standard) var(--ease-standard),border-color var(--duration-standard) var(--ease-standard);cursor:pointer}
.cert-card:hover{box-shadow:var(--shadow-floating);border-color:var(--border)}
.cert-card img{width:100%;height:260px;object-fit:cover;background:#fff}
@media (max-width:600px){.cert-card img{height:220px}}
.cert-card span{display:block;padding:14px 16px;font-size:13px;color:var(--slate)}
.lightbox{position:fixed;inset:0;background:rgba(10,17,32,0.85);display:none;align-items:center;justify-content:center;z-index:100;padding:40px}
.lightbox.open{display:flex}
.lightbox img{max-width:min(90vw,900px);max-height:85vh;border-radius:var(--radius-sm);object-fit:contain}
.lightbox-close{position:absolute;top:28px;right:32px;color:#fff;font-size:32px;cursor:pointer;line-height:1}

/* office gallery */
.office-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr;grid-template-rows:auto auto;gap:16px}
.office-grid img{border-radius:var(--radius-md);width:100%;height:100%;object-fit:cover}
.office-grid .g1{grid-row:1/3}
@media (max-width:900px){.office-grid{grid-template-columns:1fr 1fr}.office-grid .g1{grid-column:1/3;grid-row:auto}}
@media (max-width:600px){.office-grid{grid-template-columns:1fr 1fr;gap:10px}.office-grid img{height:130px}.office-grid .g1 img{height:200px}}
.office-caption{margin-top:18px;font-size:14px;color:var(--slate)}

/* process */
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px}
@media (max-width:900px){.process-grid{grid-template-columns:1fr 1fr}}
@media (max-width:480px){.process-grid{grid-template-columns:1fr}}
.process-step{display:flex;flex-direction:column;gap:14px}
.process-num{font-family:var(--font-display);font-size:40px;color:var(--gold-soft);font-weight:600}
.section-dark .process-step strong{color:var(--inverse)}
.process-step strong{font-size:17px;color:var(--ink)}
.process-step span{font-size:14px;color:var(--slate);line-height:1.6}
.section-dark .process-step span{color:#c7cde0}

/* why choose */
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
@media (max-width:900px){.why-grid{grid-template-columns:1fr 1fr}}
@media (max-width:480px){.why-grid{grid-template-columns:1fr}}
.why-item{background:var(--surface-card);border:1px solid var(--hairline);border-radius:var(--radius-md);padding:26px;display:flex;flex-direction:column;gap:10px}
.why-item strong{font-family:var(--font-display);font-size:18px;color:var(--ink)}
.why-item span{font-size:14px;color:var(--slate);line-height:1.6}

/* final CTA */
.final-cta{background:var(--midnight);color:var(--inverse);text-align:center;position:relative;overflow:hidden}
.final-cta::before{content:'';position:absolute;inset:0;background-image:url('assets/star-field-bg.svg');background-size:cover;opacity:0.3}
.final-cta .container{position:relative;z-index:1;max-width:720px}
.final-cta h2{font-family:var(--font-display);font-size:var(--display-size);font-weight:500;margin:16px 0 18px}
.final-cta p{color:#d3d8e3;font-size:var(--body-lg-size);line-height:1.7;margin-bottom:36px}
.final-ctas{display:flex;flex-wrap:wrap;gap:14px;justify-content:center}
@media (max-width:600px){.final-ctas{flex-direction:column}.final-ctas>*{width:100%}}

/* faq */
#faq-root{margin:0 auto}

/* contact */
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px}
@media (max-width:900px){.contact-grid{grid-template-columns:1fr}}
.contact-card{background:var(--surface-card);border:1px solid var(--hairline);border-radius:var(--radius-md);padding:28px;display:flex;flex-direction:column;gap:10px}
.contact-card img{width:24px;height:24px;margin-bottom:8px}
.contact-card strong{font-family:var(--font-display);font-size:18px;color:var(--ink)}
.contact-card a{font-size:15px;color:var(--gold-deep);text-decoration:none;font-weight:600}

/* footer */
footer{background:var(--midnight);color:#c7cde0;padding:64px 0 32px}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px}
@media (max-width:900px){.footer-grid{grid-template-columns:1fr 1fr}}
.footer-brand{font-family:var(--font-display);font-size:22px;color:var(--inverse);font-weight:600}
.footer-tag{font-size:9px;letter-spacing:0.3em;color:var(--gold-soft);margin-top:4px}
.footer-desc{margin-top:16px;font-size:14px;line-height:1.7;color:#a9b0c4;max-width:280px}
.footer-col strong{display:block;font-size:13px;letter-spacing:0.05em;text-transform:uppercase;color:var(--gold-soft);margin-bottom:16px}
.footer-col a{display:block;font-size:14px;color:#c7cde0;text-decoration:none;margin-bottom:10px}
.footer-col a:hover{color:var(--gold-soft)}
.footer-bottom{border-top:1px solid var(--border-dark);margin-top:48px;padding-top:24px;display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;font-size:13px;color:#8b93aa}

/* popup */
.popup-scrim{position:fixed;inset:0;background:rgba(10,17,32,0.6);display:none;align-items:center;justify-content:center;z-index:200;padding:20px}
.popup-scrim.open{display:flex}
.popup-card{background:var(--surface-elevated);border-radius:var(--radius-lg);padding:40px;max-width:460px;width:100%;box-shadow:var(--shadow-modal);position:relative;max-height:92vh;overflow-y:auto}
@media (max-width:600px){.popup-card{padding:28px 20px}}
.popup-close{position:absolute;top:20px;right:20px;cursor:pointer;opacity:0.6}
.popup-card h3{font-family:var(--font-display);font-size:26px;font-weight:600;color:var(--ink);margin-bottom:8px}
.popup-card p.sub{color:var(--slate);font-size:14px;margin-bottom:24px;line-height:1.6}
.popup-form{display:flex;flex-direction:column;gap:var(--form-field-gap)}
.popup-success{text-align:center;padding:20px 0}
.popup-success img{width:56px;height:56px;margin:0 auto 18px}
.popup-success h3{margin-bottom:10px}
.popup-success p{color:var(--slate);font-size:14px;line-height:1.6}
.wa-popup-card{max-width:400px;text-align:center}/* Bigger WhatsApp popup for smartphones */
@media (max-width: 600px) {
  .wa-popup-card {
    max-width: 96vw;
    width: 96vw;
    padding: 40px 28px;
    border-radius: 24px;
  }

  .wa-popup-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 22px;
  }

  .wa-popup-card h3 {
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
  }

  .wa-popup-card .sub {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
  }

  .popup-form {
    gap: 16px;
  }

  .popup-form input,
  .popup-form select,
  .popup-form textarea,
  .popup-form button {
    font-size: 17px;
    padding: 16px 18px;
    border-radius: 14px;
  }

  .popup-close {
    top: 18px;
    right: 18px;
    font-size: 30px;
  }
}
.wa-popup-icon{width:52px;height:52px;margin:0 auto 18px;padding:12px;background:var(--success);border-radius:50%;filter:invert(1) brightness(2)}
.wa-popup-card h3{text-align:center}
.wa-popup-card .sub{text-align:center}

/* sticky mobile cta */
.sticky-cta{position:fixed;bottom:0;left:0;right:0;z-index:60;display:none;gap:10px;padding:12px 16px;background:rgba(250,246,238,0.9);backdrop-filter:blur(12px);border-top:1px solid var(--hairline)}
@media (max-width:900px){.sticky-cta{display:flex}body{padding-bottom:76px}}
.sticky-cta a,.sticky-cta button{flex:1}
/* Force bigger WhatsApp popup on smartphones */
@media (max-width: 768px) {
  .popup-scrim {
    padding: 8px !important;
  }

  .popup-card,
  .wa-popup-card {
    width: 98vw !important;
    max-width: 98vw !important;
    padding: 42px 28px !important;
    border-radius: 24px !important;
    transform: scale(1.08) !important;
    transform-origin: center center !important;
  }

  .wa-popup-icon {
    width: 90px !important;
    height: 90px !important;
    margin-bottom: 20px !important;
  }

  .wa-popup-card h3,
  .popup-card h3 {
    font-size: 30px !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }

  .wa-popup-card .sub,
  .popup-card .sub {
    font-size: 18px !important;
    line-height: 1.6 !important;
    text-align: center !important;
  }

  .popup-form input,
  .popup-form select,
  .popup-form textarea,
  .popup-form button {
    font-size: 17px !important;
    padding: 16px 18px !important;
    border-radius: 14px !important;
  }

  .popup-close {
    font-size: 32px !important;
    top: 16px !important;
    right: 16px !important;
  }
}

