:root{
    /* light blue + gold + navy palette */
    --bg:           #eef4fb;        /* page bg, soft ice blue */
    --bg-deep:      #dde9f6;        /* alt section */
    --paper:        #ffffff;
    --ink:          #0b2545;        /* deep navy ink */
    --ink-2:        #34507a;        /* secondary ink */
    --muted:        #6b7d97;
    --line:         #cfd9e8;
    --navy:         #0b2545;
    --navy-2:       #102e57;
    --navy-3:       #16386b;
    --sky:          #6ea7df;
    --sky-2:        #b5d2ee;
    --sky-tint:     #e8f1fa;
    --gold:         #c9a14a;
    --gold-2:       #b48835;
    --gold-soft:    #e7d3a0;

    --radius-s: 10px;
    --radius-m: 18px;
    --radius-l: 28px;

    --shadow-sm: 0 1px 2px rgba(11,37,69,.06), 0 2px 8px rgba(11,37,69,.04);
    --shadow-md: 0 6px 18px rgba(11,37,69,.08), 0 2px 6px rgba(11,37,69,.05);
    --shadow-lg: 0 22px 50px -22px rgba(11,37,69,.25), 0 10px 24px rgba(11,37,69,.08);

    --container: 1240px;
  }

  *{box-sizing:border-box}
  html,body{margin:0; padding:0}
  body{
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-size: 16px;
    line-height: 1.6;
  }
  img{max-width:100%; display:block}
  a{color: inherit; text-decoration: none}
  button{font-family:inherit; cursor:pointer; border:0; background:none}

  .container{ max-width: var(--container); margin: 0 auto; padding: 0 28px}

  /* Display type */
  .display, h1, h2, h3{
    font-family: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.005em;
    color: var(--navy);
    line-height: 1.08;
    text-wrap: balance;
  }
  h1{ font-size: clamp(40px, 5.4vw, 76px); margin: 0 }
  h2{ font-size: clamp(32px, 3.6vw, 52px); margin: 0 0 12px}
  h3{ font-size: 22px; margin: 0 0 8px}

  .eyebrow{
    font: 500 12px/1 'Inter', sans-serif;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-2);
    display: inline-flex; align-items: center; gap: 10px;
  }
  .eyebrow::before, .eyebrow.dual::after{
    content:""; width: 28px; height: 1px; background: var(--gold);
    display:inline-block;
  }
  .eyebrow.center{ justify-content: center }

  .lead{
    font-size: 18px;
    color: var(--ink-2);
    max-width: 60ch;
  }

  /* ====== Header ====== */
  .topbar{
    background: var(--navy);
    color: #d8e3f1;
    font-size: 13px;
  }
  .topbar .row{
    display:flex; align-items:center; justify-content:space-between; padding: 8px 0;
  }
  .topbar a{ color: #d8e3f1; opacity: .9 }
  .topbar a:hover{ color: var(--gold-soft); opacity: 1 }
  .topbar .left{ display:flex; gap: 22px; align-items:center}
  .topbar .left span{display:inline-flex; align-items:center; gap:8px}
  .topbar .right{ display:flex; gap: 14px; align-items:center}
  .topbar svg{ width: 14px; height: 14px; fill: var(--gold)}

  header.site{
    position: sticky; top: 0; z-index: 50;
    background: rgba(238,244,251,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  header.site .row{
    display:flex; align-items:center; justify-content:space-between;
    padding: 14px 0;
  }
  .brand{
    display:flex; align-items:center; gap: 14px;
  }
  .brand-mark{
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--navy);
    display:grid; place-items:center;
    color: var(--gold);
    border: 1px solid var(--gold-soft);
    box-shadow: 0 4px 14px rgba(11,37,69,.25);
  }
  .brand-mark .dk{
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -.02em;
    line-height: 1;
  }
  .brand-text .name{
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 22px; color: var(--navy); line-height: 1;
  }
  .brand-text .sub{
    font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase;
    color: var(--gold-2); margin-top: 4px;
  }
  nav.primary{
    display:flex; gap: 22px; align-items:center;
  }
  nav.primary a{
    font-size: 14px; font-weight: 500; color: var(--ink-2);
    padding: 6px 0; position: relative;
  }
  nav.primary a:hover{ color: var(--navy)}
  nav.primary a.active{ color: var(--navy)}
  nav.primary a.active::after{
    content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px;
    background: var(--gold); border-radius: 2px;
  }
  .nav-toggle{
    display:none; width:42px; height:42px; border-radius:10px;
    place-items:center; color: var(--navy);
    background:#fff; border:1px solid var(--line);
  }

  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap: 10px;
    padding: 12px 22px; border-radius: 999px;
    font-size: 14px; font-weight: 600; letter-spacing: .01em;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    cursor: pointer;
  }
  .btn-primary{
    background: var(--navy); color: #fff;
    box-shadow: 0 6px 20px -8px rgba(11,37,69,.45);
  }
  .btn-primary:hover{ background: var(--navy-2); transform: translateY(-1px) }
  .btn-gold{
    background: linear-gradient(180deg, #d6b25c 0%, #b6892f 100%);
    color: #1a1206;
    box-shadow: 0 6px 18px -8px rgba(180,136,53,.65);
  }
  .btn-gold:hover{ transform: translateY(-1px)}
  .btn-ghost{
    background: transparent; color: var(--navy);
    border: 1px solid var(--line);
  }
  .btn-ghost:hover{ background: #fff; border-color: var(--navy)}

  /* ===== Nav Home emphasis ===== */
  nav.primary a.nav-home{
    font-size: 16px; font-weight: 700; color: var(--navy);
    padding: 8px 20px; border-radius: 999px;
    background: var(--sky-tint); border: 1px solid var(--sky-2);
    display:inline-flex; align-items:center; gap: 7px;
  }
  nav.primary a.nav-home svg{ width: 16px; height: 16px; fill: var(--gold-2)}
  nav.primary a.nav-home::after{ display:none}
  nav.primary a.nav-home:hover{ background:#fff; border-color: var(--gold)}
  nav.primary a.nav-home.active{ background: var(--navy); color:#fff; border-color: var(--navy)}
  nav.primary a.nav-home.active svg{ fill: var(--gold)}

  /* ===== Brand logo image ===== */
  .brand-mark.logo-mark{
    background: #fff; overflow:hidden; padding:0;
    width: 60px; height: 60px;
    border:1px solid var(--gold-soft);
  }
  .brand-mark.logo-mark img{ width:100%; height:100%; object-fit:cover; border-radius:50%; display:block}

  /* ===== Cosmic theming ===== */
  .stars-bg{ position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:0}
  .stars-bg::before, .stars-bg::after{
    content:""; position:absolute; inset:-60%;
    background-image:
      radial-gradient(1.6px 1.6px at 20% 30%, rgba(255,255,255,.9), transparent),
      radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,.7), transparent),
      radial-gradient(1.7px 1.7px at 80% 20%, rgba(231,211,160,.95), transparent),
      radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,.6), transparent),
      radial-gradient(1px 1px at 90% 60%, rgba(255,255,255,.7), transparent),
      radial-gradient(1.6px 1.6px at 15% 65%, rgba(181,210,238,.85), transparent),
      radial-gradient(1px 1px at 50% 15%, rgba(255,255,255,.6), transparent),
      radial-gradient(1.4px 1.4px at 33% 50%, rgba(231,211,160,.7), transparent);
    background-repeat: repeat; background-size: 320px 320px;
    animation: drift 140s linear infinite;
  }
  .stars-bg::after{ background-size: 500px 500px; opacity:.55; animation-duration: 240s}
  @keyframes drift{ from{ transform: translate(0,0)} to{ transform: translate(-160px,-160px)}}
  @media (prefers-reduced-motion: reduce){ .stars-bg::before, .stars-bg::after{ animation:none}}
  .audience > .container, .c-info > *, footer.site > .container, .panindia > *{ position:relative; z-index:1}
  /* faint constellation glyphs on light cosmic sections */
  .cosmic-soft{ position:relative}
  .cosmic-soft .glyphs{ position:absolute; inset:0; pointer-events:none; z-index:0; opacity:.5}
  .cosmic-soft .glyphs svg{ position:absolute; fill:none; stroke: var(--gold-soft); stroke-width:1}
  .cosmic-soft > .container{ position:relative; z-index:1}

  /* ===== Logo portrait (full, uncropped) ===== */
  .logo-portrait{
    background:
      radial-gradient(120% 90% at 50% 35%, #1a4178 0%, #0b2545 70%);
    display:grid; place-items:center;
    border: 1px solid rgba(201,161,74,.3);
    overflow:hidden;
  }
  .logo-portrait .stars-bg{ z-index:0}
  .logo-portrait img{
    position:relative; z-index:1;
    width: 80%; height:auto; object-fit: contain;
    border-radius: 14px;
    margin-bottom: 28px;
    box-shadow: 0 16px 40px -16px rgba(0,0,0,.6);
  }
  .logo-portrait .cap{
    position:absolute; left:0; right:0; bottom:0; z-index:2;
    padding: 14px 16px; text-align:center;
    font: 500 11px/1 'Inter', sans-serif; letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold-soft);
    background: linear-gradient(180deg, transparent, rgba(8,30,58,.85));
  }

  /* ===== Ancient Wisdom band ===== */
  .wisdom{
    padding: 84px 0;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%);
  }
  .wisdom .pillars{
    display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 44px;
  }
  .wisdom .pillar{
    background:#fff; border:1px solid var(--line); border-radius:18px;
    padding: 30px 26px; text-align:center;
  }
  .wisdom .pillar .ic{
    width: 58px; height:58px; border-radius:50%; margin: 0 auto 16px;
    background: var(--navy); display:grid; place-items:center; color: var(--gold);
    border:1px solid rgba(201,161,74,.35);
  }
  .wisdom .pillar .ic svg{ width:26px; height:26px; fill:var(--gold)}
  .wisdom .pillar h3{ font-size: 23px}
  .wisdom .pillar p{ font-size: 14px; color: var(--ink-2); margin:0}

  /* ===== Why Vaastu (cosmic) ===== */
  .whyv{ padding: 100px 0; background: var(--navy); color:#e6eef9; position:relative; overflow:hidden}
  .whyv .sec-head h2{ color:#fff}
  .whyv .sec-head .lead{ color:#b9c8de}
  .whyv .eyebrow{ color: var(--gold)}
  .whyv .eyebrow::before, .whyv .eyebrow.dual::after{ background: var(--gold)}
  .whyv .ornament .line{ background: rgba(201,161,74,.5)}
  .vas-def{
    max-width: 760px; margin: 6px auto 56px; text-align:center;
    font-family:'Cormorant Garamond',serif; font-size: 25px; line-height:1.4; color:#dfe9f6; font-style:italic;
  }
  .vas-def b{ color: var(--gold); font-style:normal; font-weight:700}
  .subhead{ text-align:center; margin: 0 0 28px}
  .subhead .k{ font: 600 12px/1 'Inter', sans-serif; letter-spacing:.2em; text-transform:uppercase; color:var(--gold)}
  .subhead h3{ color:#fff; font-size: 32px; margin-top:10px}
  .elements{ display:grid; grid-template-columns: repeat(5,1fr); gap:16px; margin-bottom: 76px}
  .elem{
    background: rgba(255,255,255,.04); border:1px solid rgba(201,161,74,.25);
    border-radius:16px; padding: 26px 18px; text-align:center; transition: transform .2s, background .2s;
  }
  .elem:hover{ transform: translateY(-3px); background: rgba(255,255,255,.07)}
  .elem .gly{ width:48px;height:48px;border-radius:50%;margin:0 auto 14px;display:grid;place-items:center;
    background: rgba(201,161,74,.12); border:1px solid rgba(201,161,74,.35)}
  .elem .gly svg{ width:23px;height:23px;fill:var(--gold)}
  .elem .san{ font-family:'Cormorant Garamond',serif;font-size:23px;color:#fff;font-weight:700;line-height:1}
  .elem .en{ font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--gold);margin:4px 0 12px}
  .elem .zone{ display:inline-block;font-size:11px;padding:4px 11px;border-radius:999px;
    background:rgba(110,167,223,.16);color:#d4e4f5;margin-bottom:12px;letter-spacing:.04em}
  .elem p{ font-size:12.5px;color:#b9c8de;margin:0;line-height:1.5}
  .mandala-row{ display:grid; grid-template-columns: 1fr 1fr; gap:52px; align-items:center; margin-bottom: 76px}
  .mandala{
    aspect-ratio:1/1; max-width:440px; margin:0 auto; width:100%;
    display:grid; grid-template-columns:repeat(3,1fr); grid-template-rows:repeat(3,1fr);
    gap:7px; padding:7px;
    background: rgba(255,255,255,.03); border:1px solid rgba(201,161,74,.3); border-radius:18px;
  }
  .mcell{ border-radius:11px; display:flex; flex-direction:column; align-items:center; justify-content:center;
    text-align:center; padding:6px; background: rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.06)}
  .mcell .dir{ font:700 11px/1 'Inter', sans-serif; letter-spacing:.1em; color:#fff}
  .mcell .el{ font-size:10px; color:var(--gold-soft); margin-top:5px; letter-spacing:.03em}
  .mcell.center{ background: radial-gradient(circle, rgba(201,161,74,.3), rgba(201,161,74,.05)); border-color: rgba(201,161,74,.5)}
  .mcell.ne{ background: rgba(110,167,223,.2)}
  .mcell.se{ background: rgba(201,120,66,.2)}
  .mcell.sw{ background: rgba(168,138,82,.22)}
  .mcell.nw{ background: rgba(150,180,210,.14)}
  .mandala-text h3{ color:#fff; font-size:30px}
  .mandala-text > p{ color:#b9c8de; font-size:15.5px}
  .mandala-text .pts{ list-style:none;padding:0;margin:20px 0 0;display:flex;flex-direction:column;gap:14px}
  .mandala-text .pts li{ display:flex;gap:13px;align-items:flex-start;font-size:14px;color:#d8e3f1;line-height:1.5}
  .mandala-text .pts b{ color:#fff}
  .mandala-text .pts .dot{ width:8px;height:8px;border-radius:50%;background:var(--gold);margin-top:7px;flex:0 0 8px}
  .benefits{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px}
  .benefit{ background: rgba(255,255,255,.04); border:1px solid rgba(201,161,74,.25); border-radius:18px; padding:30px 26px}
  .benefit .ic{ width:54px;height:54px;border-radius:12px;background:var(--gold);display:grid;place-items:center;margin-bottom:18px}
  .benefit .ic svg{ width:26px;height:26px;fill:var(--navy)}
  .benefit h3{ color:#fff;font-size:24px}
  .benefit p{ color:#b9c8de;font-size:14px;margin:6px 0 16px}
  .benefit .applied{ font-size:12.5px;color:#9fb3cf;border-top:1px solid rgba(255,255,255,.08);padding-top:14px}
  .benefit .applied a{ color:var(--gold);font-weight:600}
  .benefit .applied a:hover{ text-decoration: underline}
  .whyv-cta{ text-align:center; margin-top:64px; padding-top:44px; border-top:1px solid rgba(255,255,255,.08)}
  .whyv-cta p{ color:#dfe9f6; font-family:'Cormorant Garamond',serif; font-size:27px; font-style:italic; max-width:700px; margin:0 auto 24px; line-height:1.35}

  /* ===== Location section ===== */
  .location{ padding: 100px 0; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%)}
  .map-tabs{ display:flex; gap: 10px; justify-content:center; margin: 26px 0 22px; flex-wrap:wrap}
  .map-tab{
    padding: 10px 20px; border-radius:999px; font-size:13.5px; font-weight:600;
    border:1px solid var(--line); background:#fff; color: var(--ink-2);
    display:inline-flex; align-items:center; gap:8px; transition: all .18s;
  }
  .map-tab svg{ width:15px; height:15px; fill: currentColor}
  .map-tab.active{ background: var(--navy); color:#fff; border-color: var(--navy)}
  .map-tab.active svg{ fill: var(--gold)}
  .loc-grid{ display:grid; grid-template-columns: 1.55fr 1fr; gap: 22px; align-items:stretch}
  .loc-map{
    position:relative; border-radius: 20px; overflow:hidden;
    border:1px solid var(--line); box-shadow: var(--shadow-md); min-height: 480px;
  }
  .loc-map iframe{ width:100%; height:100%; min-height:480px; border:0; display:block}
  .loc-map .map-pin-tag{
    position:absolute; left:16px; top:16px; z-index:2;
    background:#fff; border:1px solid var(--line); border-radius:12px;
    padding:10px 14px; display:flex; align-items:center; gap:10px;
    box-shadow: var(--shadow-md);
  }
  .loc-map .map-pin-tag svg{ width:18px; height:18px; fill: var(--gold-2)}
  .loc-map .map-pin-tag b{ font-size:13px; color:var(--navy)}
  .loc-map .map-pin-tag span{ font-size:11px; color:var(--muted)}
  .loc-side{ display:flex; flex-direction:column; gap: 18px}
  .loc-card{
    background:#fff; border:1px solid var(--line); border-radius:18px; padding: 26px;
  }
  .loc-card .hd{ display:flex; align-items:center; gap:12px; margin-bottom:14px}
  .loc-card .hd .i{
    width:42px;height:42px;border-radius:11px;background:var(--sky-tint);
    display:grid;place-items:center;flex:0 0 42px;
  }
  .loc-card .hd .i svg{ width:20px;height:20px;fill:var(--navy)}
  .loc-card .hd b{ font-size:16px;color:var(--navy);font-family:'Cormorant Garamond',serif;font-weight:700}
  .loc-card .meta{ font-size:14px; color:var(--ink-2); line-height:1.7}
  .loc-card .meta strong{ color:var(--navy)}
  .loc-card .btn{ margin-top:16px; width:100%}
  .loc-card.panindia{
    background: var(--navy); color:#dfe9f6; position:relative; overflow:hidden;
    border-color: rgba(201,161,74,.3); flex:1;
  }
  .loc-card.panindia .hd b{ color:#fff}
  .loc-card.panindia .hd .i{ background: rgba(255,255,255,.07); border:1px solid rgba(201,161,74,.3)}
  .loc-card.panindia .hd .i svg{ fill: var(--gold)}
  .loc-card.panindia .meta{ color:#b9c8de}
  .pan-pulse{
    display:inline-flex; align-items:center; gap:8px; margin-top:14px;
    font-size:12px; color: var(--gold-soft); font-weight:600;
    letter-spacing:.06em;
  }
  .pan-chips{ display:flex; flex-wrap:wrap; gap:8px; margin-top:16px}
  .pan-chips span{
    font-size:12px; padding:6px 12px; border-radius:999px;
    background: rgba(255,255,255,.06); border:1px solid rgba(201,161,74,.25);
    color:#e6eef9;
  }

  /* ===== Home return bar ===== */
  .home-return{
    padding: 46px 0; text-align:center;
    background: var(--bg-deep);
    border-top: 1px solid var(--line);
  }
  .home-return .btn{ font-size: 16px; padding: 14px 32px}
  .home-return .hint{ display:block; margin-top:12px; font-size:12.5px; color:var(--muted)}

  /* ====== Hero ====== */
  .hero{
    position: relative;
    padding: 70px 0 90px;
    overflow: hidden;
    background:
      radial-gradient(1100px 600px at 85% -10%, #cfe1f3 0%, transparent 60%),
      radial-gradient(800px 400px at -5% 30%, #dde9f6 0%, transparent 60%),
      linear-gradient(180deg, var(--bg) 0%, #f3f7fc 100%);
  }
  .hero .grid{
    display:grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items:center;
  }
  .hero h1 .gold{
    color: var(--gold-2);
    font-style: italic;
    font-weight: 500;
  }
  .hero .lead{ margin: 22px 0 32px; font-size: 19px}
  .hero .cta-row{ display:flex; gap: 12px; flex-wrap:wrap }
  .hero-stats{
    margin-top: 40px;
    display:flex; gap: 36px; flex-wrap:wrap;
    border-top: 1px solid var(--line);
    padding-top: 28px;
  }
  .hero-stats .stat .n{
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px; font-weight: 600; color: var(--navy);
    line-height: 1;
  }
  .hero-stats .stat .n .plus{ color: var(--gold-2)}
  .hero-stats .stat .l{ font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 6px}

  /* Hero visual */
  .hero-visual{
    position: relative;
    width: 100%;
    aspect-ratio: 1/1.05;
    max-width: 540px;
    margin-left: auto;
    justify-self: end;
  }
  .hero-card{
    position: absolute; inset: 0;
    border-radius: 22px;
    background: var(--navy);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201,161,74,.25);
  }
  .hero-card .compass{
    position:absolute; inset: 0;
    background:
      radial-gradient(circle at 50% 50%, rgba(201,161,74,.18) 0%, transparent 55%);
  }
  .hero-card img.logo{
    position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
    width: 86%; z-index: 1;
  }
  .hero-photo{
    position:absolute; inset: 18px; z-index: 1; display:block;
    width:auto; height:auto; color: #cfd9e8;
  }
  .about-photo{
    position:absolute; inset:0; z-index:0; display:block;
    width:auto; height:auto; color: rgba(11,37,69,.6);
  }
  .portrait .badge{ z-index: 2}
  /* corner ornament */
  .hero-card::before, .hero-card::after{
    content:""; position:absolute; width: 60px; height: 60px;
    border: 1px solid var(--gold-soft); opacity: .55;
  }
  .hero-card::before{ top: 14px; left: 14px; border-right:0; border-bottom:0}
  .hero-card::after{ bottom: 14px; right: 14px; border-left:0; border-top:0}

  .hero-floating{
    position: absolute; left: -30px; bottom: 38px;
    background: #fff; border-radius: 16px;
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    display:flex; align-items:center; gap: 12px;
    border: 1px solid var(--line);
  }
  .hero-floating .av{
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gold); display:grid; place-items:center;
    font-family: 'Cormorant Garamond', serif; color: var(--navy);
    font-weight: 700; font-size: 18px;
  }
  .hero-floating .meta .t{ font-weight: 600; font-size: 13px; color: var(--navy)}
  .hero-floating .meta .s{ font-size: 11px; color: var(--muted)}
  .hero-floating .stars{ color: var(--gold); font-size: 12px; letter-spacing: 2px}

  .hero-orbit{
    position:absolute; right:-40px; top: 24px;
    background:#fff; border-radius: 14px;
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    display:flex; align-items:center; gap:10px;
    border:1px solid var(--line);
  }
  .pulse{
    width:10px; height:10px; border-radius:50%;
    background: #2ea860;
    box-shadow: 0 0 0 0 rgba(46,168,96,.4);
    animation: pulse 1.8s infinite;
  }
  @keyframes pulse{
    0%{ box-shadow: 0 0 0 0 rgba(46,168,96,.4)}
    70%{ box-shadow: 0 0 0 10px rgba(46,168,96,0)}
    100%{ box-shadow: 0 0 0 0 rgba(46,168,96,0)}
  }
  .hero-orbit .t{ font-size: 12px; color: var(--ink-2)}
  .hero-orbit .t b{ color: var(--navy)}

  /* ====== Trust strip ====== */
  .trust{
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .trust .row{
    display:grid; grid-template-columns: repeat(5, 1fr);
    align-items:center; padding: 22px 0; gap: 24px;
  }
  .trust .cell{
    text-align: center;
    color: var(--ink-2); font-size: 13px;
    border-right: 1px solid var(--line);
    padding: 8px 8px;
  }
  .trust .cell:last-child{ border-right: 0}
  .trust .cell .ico{
    display:inline-grid; place-items:center; width: 36px; height: 36px;
    border-radius: 50%; background: var(--sky-tint); color: var(--navy);
    margin-bottom: 8px;
  }
  .trust .cell .ico svg{ width: 18px; height: 18px; fill: var(--navy)}
  .trust .cell b{ display:block; font-weight: 600; color: var(--navy); font-size: 14px}

  /* ====== About ====== */
  .about{ padding: 100px 0; background: var(--bg)}
  .about .grid{
    display:grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center;
  }
  .portrait{
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background:
      repeating-linear-gradient(135deg, #c8d6e8 0 22px, #d6e1ee 22px 44px);
    border: 1px solid var(--line);
  }
  .portrait .ph{
    position:absolute; inset: 0;
    display:flex; align-items: center; justify-content:center;
    font: 500 12px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
    color: rgba(11,37,69,.55);
    letter-spacing: .12em;
    text-align: center;
  }
  .portrait .badge{
    position:absolute; left: 16px; bottom: 16px;
    background: var(--navy); color: var(--gold);
    padding: 14px 18px; border-radius: 12px;
    border:1px solid rgba(201,161,74,.35);
  }
  .portrait .badge .y{
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 700; line-height: 1; color: var(--gold);
  }
  .portrait .badge .l{
    color: #cfd9e8; font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
    margin-top: 6px;
  }
  .quote-pin{
    position:absolute; right:-22px; top: 30px;
    background:#fff; border-radius: 12px; padding: 12px 16px;
    box-shadow: var(--shadow-md); border:1px solid var(--line);
    max-width: 220px; font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 18px; color: var(--navy);
  }
  .quote-pin::before{
    content: "\201C"; position:absolute; left: 10px; top: -8px;
    font-size: 44px; color: var(--gold); font-family: Georgia, serif; line-height: 1;
  }

  .creds{
    display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 26px;
  }
  .cred{
    display:flex; gap: 12px; align-items:flex-start;
    padding: 14px 16px; border-radius: 12px;
    background: #fff; border: 1px solid var(--line);
  }
  .cred .i{
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--sky-tint); display:grid; place-items:center;
    color: var(--navy); flex: 0 0 36px;
  }
  .cred .i svg{ width:18px; height:18px; fill: var(--navy)}
  .cred b{ display:block; color: var(--navy); font-size: 14px}
  .cred span{ color: var(--muted); font-size: 12.5px}

  /* ====== Services ====== */
  .services{
    padding: 100px 0;
    background:
      linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%);
    position: relative;
  }
  .sec-head{ text-align: center; max-width: 720px; margin: 0 auto 56px}
  .sec-head .lead{ margin: 14px auto 0 }

  .svc-grid{
    display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  }
  .svc{
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px 26px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    position: relative;
    overflow: hidden;
  }
  .svc::before{
    content:""; position:absolute; right:-40px; top:-40px;
    width:120px; height:120px; border-radius:50%;
    background: radial-gradient(circle, var(--sky-tint) 0%, transparent 70%);
  }
  .svc:hover{
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--sky-2);
  }
  .svc .i{
    width: 52px; height: 52px; border-radius: 12px;
    background: var(--navy); display:grid; place-items:center;
    color: var(--gold);
    position: relative; z-index: 1;
    margin-bottom: 18px;
  }
  .svc .i svg{ width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.7}
  .svc h3{ font-size: 24px; font-weight: 600; color: var(--navy)}
  .svc p{ font-size: 14px; color: var(--ink-2); margin: 6px 0 18px}
  .svc .link{
    font-size: 13px; font-weight: 600; color: var(--gold-2);
    display:inline-flex; align-items:center; gap: 6px;
  }
  .svc .link svg{ width:14px; height:14px; fill: var(--gold-2)}
  .svc:hover .link svg{ transform: translateX(2px); transition: transform .2s}

  /* ====== Audience / who-for ====== */
  .audience{
    padding: 90px 0;
    background: var(--navy);
    color: #e6eef9;
    position: relative;
    overflow: hidden;
  }
  .audience::before{
    content:""; position:absolute; inset: -1px;
    background:
      radial-gradient(700px 360px at 90% 10%, rgba(201,161,74,.10) 0%, transparent 60%),
      radial-gradient(600px 320px at 5% 80%, rgba(110,167,223,.10) 0%, transparent 60%);
    pointer-events: none;
  }
  .audience .sec-head h2{ color: #fff }
  .audience .sec-head .lead{ color: #b9c8de}
  .audience .eyebrow{ color: var(--gold)}
  .audience .eyebrow::before{ background: var(--gold)}
  .aud-grid{
    display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    position: relative;
  }
  .aud{
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,161,74,.25);
    border-radius: 18px;
    padding: 30px 26px;
    transition: background .2s, transform .2s;
  }
  .aud:hover{ background: rgba(255,255,255,.07); transform: translateY(-3px)}
  .aud .num{
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px; color: var(--gold); line-height: 1;
    font-weight: 600;
    margin-bottom: 14px;
    display:flex; align-items:baseline; gap: 8px;
  }
  .aud .num small{ font-size: 14px; color: #b9c8de; font-family: 'Inter', sans-serif}
  .aud h3{ color: #fff; font-size: 26px; margin: 4px 0 8px}
  .aud p{ color: #b9c8de; font-size: 14px; margin: 0}
  .aud ul{ list-style:none; padding: 0; margin: 16px 0 0; display:flex; flex-direction: column; gap: 6px}
  .aud li{ font-size: 13px; color: #d8e3f1; display:flex; gap: 8px; align-items:center}
  .aud li::before{
    content:""; width: 5px; height: 5px; background: var(--gold);
    border-radius: 50%; display:inline-block;
  }

  /* ====== Process ====== */
  .process{ padding: 100px 0; background: var(--bg)}
  .steps{
    display:grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
    position: relative;
  }
  .steps::before{
    content:""; position:absolute; left: 6%; right: 6%; top: 30px;
    height: 1px; background: linear-gradient(90deg, transparent, var(--gold-soft), var(--gold-soft), transparent);
  }
  .step{
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 22px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .step .dot{
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--paper);
    border: 1px solid var(--gold-soft);
    margin: 0 auto 16px;
    display:grid; place-items:center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; color: var(--gold-2); font-weight: 600;
  }
  .step h3{ font-size: 20px}
  .step p{ font-size: 13.5px; color: var(--ink-2); margin: 0}

  /* ====== Areas / cities ====== */
  .cities{
    padding: 80px 0;
    background:
      linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  }
  .cities .row{
    display:flex; flex-wrap:wrap; gap: 10px; justify-content:center;
    margin-top: 28px;
  }
  .city{
    padding: 10px 18px;
    background: #fff; border: 1px solid var(--line);
    border-radius: 999px; font-size: 13.5px; color: var(--ink-2);
    display:inline-flex; align-items:center; gap: 8px;
  }
  .city .d{
    width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  }

  /* ====== Testimonials ====== */
  .testimonials{ padding: 100px 0; background: var(--bg-deep)}
  .t-grid{
    display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  }
  .tcard{
    background: #fff; border: 1px solid var(--line);
    border-radius: 18px; padding: 28px;
    display:flex; flex-direction:column; gap: 14px;
  }
  .tcard .stars{ color: var(--gold); letter-spacing: 3px}
  .tcard blockquote{
    margin: 0; font-family: 'Cormorant Garamond', serif;
    font-size: 22px; line-height: 1.35; color: var(--navy);
    font-weight: 500;
  }
  .tcard .who{
    display:flex; gap: 12px; align-items: center;
    border-top: 1px solid var(--line); padding-top: 16px; margin-top: 6px;
  }
  .tcard .av{
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--navy); color: var(--gold);
    display:grid; place-items:center;
    font-family: 'Cormorant Garamond', serif; font-weight: 700;
  }
  .tcard .n{ font-weight: 600; color: var(--navy); font-size: 14px}
  .tcard .r{ color: var(--muted); font-size: 12px}

  /* ====== FAQ ====== */
  .faq{ padding: 100px 0; background: var(--bg)}
  .faq-list{
    max-width: 860px; margin: 0 auto;
    display:flex; flex-direction:column; gap: 12px;
  }
  details.q{
    background: #fff; border: 1px solid var(--line);
    border-radius: 14px; overflow: hidden;
    transition: border-color .2s;
  }
  details.q[open]{ border-color: var(--sky-2)}
  details.q > summary{
    list-style: none; cursor: pointer;
    padding: 20px 24px;
    display:flex; justify-content:space-between; align-items:center;
    font-weight: 600; color: var(--navy); font-size: 16px;
  }
  details.q > summary::-webkit-details-marker{ display:none}
  details.q .a{ padding: 0 24px 22px; color: var(--ink-2); font-size: 14.5px; max-width: 70ch}
  details.q .chev{
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--sky-tint); display:grid; place-items:center;
    transition: transform .2s, background .2s;
  }
  details.q .chev svg{ width: 12px; height: 12px; stroke: var(--navy); stroke-width: 2; fill: none}
  details.q[open] .chev{ background: var(--gold); transform: rotate(180deg)}
  details.q[open] .chev svg{ stroke: var(--navy)}

  /* ====== Contact ====== */
  .contact{
    padding: 100px 0 60px;
    background:
      linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  }
  .contact .grid{
    display:grid; grid-template-columns: .9fr 1.1fr; gap: 40px;
    align-items: stretch;
  }
  .c-info{
    background: var(--navy); color: #e6eef9;
    border-radius: 22px; padding: 36px;
    position: relative; overflow: hidden;
    border: 1px solid rgba(201,161,74,.25);
  }
  .c-info h2{ color: #fff}
  .c-info .lead{ color: #b9c8de; margin-bottom: 28px}
  .c-info .eyebrow{ color: var(--gold)}
  .c-info .eyebrow::before{ background: var(--gold)}
  .c-list{ display:flex; flex-direction:column; gap: 18px; margin-top: 24px}
  .c-item{
    display:flex; gap: 14px; align-items:flex-start;
  }
  .c-item .i{
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,.06); display:grid; place-items:center;
    border: 1px solid rgba(201,161,74,.3); flex: 0 0 40px;
  }
  .c-item .i svg{ width:18px; height:18px; fill: var(--gold)}
  .c-item b{ color: #fff; font-weight: 600; font-size: 13.5px; display:block; margin-bottom: 2px}
  .c-item span{ color: #cfd9e8; font-size: 14px}
  .c-info .deco{
    position:absolute; right: -60px; bottom: -60px;
    width: 220px; height: 220px; border-radius: 50%;
    border: 1px solid rgba(201,161,74,.25);
  }
  .c-info .deco2{
    position:absolute; right: -30px; bottom: -30px;
    width: 160px; height: 160px; border-radius: 50%;
    border: 1px solid rgba(201,161,74,.18);
  }
  .c-social{
    display:flex; gap: 10px; margin-top: 28px;
  }
  .c-social a{
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.07); display:grid; place-items:center;
    border: 1px solid rgba(201,161,74,.25);
    transition: background .2s;
  }
  .c-social a:hover{ background: rgba(201,161,74,.18)}
  .c-social svg{ width: 16px; height: 16px; fill: var(--gold-soft)}

  .c-form{
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px; padding: 36px;
  }
  .c-form h3{ font-size: 28px; margin-bottom: 6px}
  .c-form .lead{ font-size: 14px; margin-bottom: 22px}
  .field{ display:flex; flex-direction:column; gap: 6px; margin-bottom: 14px}
  .field label{ font-size: 12.5px; color: var(--ink-2); font-weight: 500}
  .field input, .field select, .field textarea{
    font-family: inherit; font-size: 14.5px;
    padding: 12px 14px; border-radius: 10px;
    border: 1px solid var(--line);
    background: #fff; color: var(--navy);
    outline: none; transition: border-color .15s, box-shadow .15s;
  }
  .field input:focus, .field select:focus, .field textarea:focus{
    border-color: var(--sky); box-shadow: 0 0 0 4px rgba(110,167,223,.18);
  }
  .field.grid2{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px}
  .field.grid2 > div{ display:flex; flex-direction:column; gap: 6px}
  .c-form .btn-gold{ width: 100%; padding: 14px}
  .c-form .note{ font-size: 11.5px; color: var(--muted); margin-top: 10px}

  /* ====== Footer ====== */
  footer.site{
    background: #081e3a;
    color: #b9c8de;
    padding: 60px 0 26px;
    border-top: 1px solid rgba(201,161,74,.18);
  }
  footer.site .grid{
    display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  footer.site h4{
    color: #fff; font-family: 'Inter', sans-serif;
    font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
    margin: 0 0 18px;
  }
  footer.site ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap: 10px}
  footer.site ul a{ font-size: 14px; color: #b9c8de}
  footer.site ul a:hover{ color: var(--gold-soft)}
  footer.site .about{
    background: transparent; padding: 0; font-size: 14px; color: #b9c8de;
  }
  footer.site .brand-mark{ border-color: rgba(201,161,74,.4)}
  footer.site .brand-text .name{ color: #fff}
  footer.site .bottom{
    padding-top: 22px; display:flex; justify-content:space-between; align-items:center;
    flex-wrap: wrap; gap: 12px;
  }
  footer.site .bottom small{ color: #8095b1; font-size: 12px}
  footer.site .bottom .legal a{ font-size: 12px; margin-left: 18px; color: #b9c8de}

  /* Section dividers (subtle astro accent) */
  .ornament{
    display:flex; align-items:center; justify-content:center; gap: 16px;
    color: var(--gold); margin: 8px 0 18px;
  }
  .ornament .line{ height: 1px; width: 60px; background: var(--gold-soft)}
  .ornament svg{ width: 18px; height: 18px; fill: var(--gold)}

  /* Floating CTA */
  .whatsapp-fab{
    position: fixed; right: 24px; bottom: 24px; z-index: 60;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; color:#fff;
    display:grid; place-items:center;
    box-shadow: 0 10px 30px -8px rgba(37,211,102,.6);
    transition: transform .2s;
  }
  .whatsapp-fab:hover{ transform: scale(1.06)}
  .whatsapp-fab svg{ width: 28px; height: 28px; fill: #fff}

  @media (max-width: 980px){
    nav.primary{
      position: absolute; top: 100%; right: 0; left: 0;
      flex-direction: column; align-items: stretch; gap: 4px;
      background: rgba(238,244,251,.98); backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line); padding: 14px 28px 20px;
      box-shadow: var(--shadow-md);
      display: none;
    }
    nav.primary.open{ display:flex}
    nav.primary a{ padding: 12px 6px; border-bottom: 1px solid var(--line); font-size: 16px}
    nav.primary a:last-child{ border-bottom: 0}
    nav.primary a.nav-home{ font-size: 17px; text-align:center; justify-content:center; margin-bottom: 6px}
    .nav-toggle{ display:inline-grid}
    .hero .grid, .about .grid, .contact .grid, .loc-grid{ grid-template-columns: 1fr; gap: 36px}
    .svc-grid, .aud-grid, .t-grid, .steps, .wisdom .pillars{ grid-template-columns: 1fr 1fr}
    .elements{ grid-template-columns: 1fr 1fr 1fr}
    .mandala-row{ grid-template-columns: 1fr; gap: 36px}
    .benefits{ grid-template-columns: 1fr}
    .trust .row{ grid-template-columns: 1fr 1fr 1fr}
    footer.site .grid{ grid-template-columns: 1fr 1fr}
  }
  @media (max-width: 620px){
    .svc-grid, .aud-grid, .t-grid, .steps, .trust .row, footer.site .grid, .wisdom .pillars{ grid-template-columns: 1fr}
    .elements{ grid-template-columns: 1fr 1fr}
    .field.grid2{ grid-template-columns: 1fr}
    .hero{ padding: 40px 0 60px}
    .hero-floating, .hero-orbit{ display:none}
  }

/* ===================== INNER PAGES ===================== */
/* Services dropdown */
.has-drop{ position:relative }
.has-drop > a{ display:inline-flex; align-items:center; gap:5px }
.has-drop > a::after{ content:""; width:6px; height:6px; border-right:2px solid currentColor; border-bottom:2px solid currentColor; transform:rotate(45deg); margin-left:2px; opacity:.6; position:static; background:none; border-radius:0 }
.dropdown{
  position:absolute; top:100%; left:50%; transform:translateX(-50%) translateY(10px);
  background:#fff; border:1px solid var(--line); border-radius:14px; box-shadow:var(--shadow-lg);
  padding:8px; min-width:248px; opacity:0; visibility:hidden; transition:.18s ease; z-index:60;
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown{ opacity:1; visibility:visible; transform:translateX(-50%) translateY(4px) }
.dropdown a{ display:block; padding:10px 14px; border-radius:9px; font-size:14px; color:var(--ink-2); font-weight:500 }
.dropdown a:hover{ background:var(--sky-tint); color:var(--navy) }
.dropdown a::after{ display:none }
.dropdown a.head{ color:var(--gold-2); font-weight:600 }

/* Inner page hero (cosmic band) */
.page-hero{ position:relative; overflow:hidden; background:var(--navy); color:#e6eef9; padding:66px 0 60px }
.page-hero .container{ position:relative; z-index:1 }
.breadcrumb{ font-size:13px; color:#9fb3cf; margin-bottom:16px; display:flex; gap:9px; align-items:center; flex-wrap:wrap }
.breadcrumb a{ color:#cfe0f3 } .breadcrumb a:hover{ color:var(--gold-soft) }
.breadcrumb .sep{ opacity:.5 }
.page-hero .eyebrow{ color:var(--gold) } .page-hero .eyebrow::before{ background:var(--gold) }
.page-hero h1{ color:#fff; font-size:clamp(36px,4.4vw,60px); margin:8px 0 0 }
.page-hero p{ color:#b9c8de; max-width:64ch; margin-top:16px; font-size:17px }

/* Content sections */
.section{ padding:84px 0 }
.section.alt{ background:linear-gradient(180deg,var(--bg-deep) 0%,var(--bg) 100%) }
.split{ display:grid; grid-template-columns:1.45fr .85fr; gap:48px; align-items:start }
.prose{ max-width:760px }
.prose > p{ font-size:16px; color:var(--ink-2); margin:0 0 18px; line-height:1.7 }
.prose h2{ margin:34px 0 12px }
.prose h2:first-child{ margin-top:0 }
.prose h3{ margin:26px 0 10px; color:var(--navy); font-size:24px }
.prose ul{ padding-left:0; list-style:none; display:flex; flex-direction:column; gap:11px; margin:0 0 20px }
.prose ul li{ display:flex; gap:12px; font-size:15px; color:var(--ink-2); line-height:1.55 }
.prose ul li::before{ content:""; width:7px; height:7px; border-radius:50%; background:var(--gold); margin-top:8px; flex:0 0 7px }
.prose strong{ color:var(--navy) }

/* Sticky info/CTA card */
.aside-card{ background:#fff; border:1px solid var(--line); border-radius:18px; padding:28px; position:sticky; top:96px; box-shadow:var(--shadow-sm) }
.aside-card h3{ font-size:22px }
.aside-card .meta{ font-size:14px; color:var(--ink-2); line-height:1.8; margin:10px 0 18px }
.aside-card .meta b{ color:var(--navy) }
.aside-card .btn{ width:100% }
.aside-card .divline{ height:1px; background:var(--line); margin:18px 0 }
.aside-card .incl{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px }
.aside-card .incl li{ display:flex; gap:10px; font-size:13.5px; color:var(--ink-2); align-items:flex-start }
.aside-card .incl li svg{ width:16px; height:16px; fill:var(--gold-2); flex:0 0 16px; margin-top:2px }

/* CTA band */
.cta-band{ background:var(--navy); color:#e6eef9; position:relative; overflow:hidden; padding:72px 0; text-align:center }
.cta-band .container{ position:relative; z-index:1 }
.cta-band h2{ color:#fff }
.cta-band p{ color:#b9c8de; max-width:60ch; margin:12px auto 26px; font-size:16px }

/* Feature cards row (reuse for service inclusions) */
.feat-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px }
.feat{ background:#fff; border:1px solid var(--line); border-radius:16px; padding:26px 24px }
.feat .i{ width:50px; height:50px; border-radius:12px; background:var(--navy); display:grid; place-items:center; margin-bottom:16px }
.feat .i svg{ width:24px; height:24px; stroke:var(--gold); fill:none; stroke-width:1.7 }
.feat h3{ font-size:21px } .feat p{ font-size:14px; color:var(--ink-2); margin:0 }

/* Gallery */
.gallery-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px }
.gallery-grid image-slot{ width:auto; height:280px; display:block; color:rgba(11,37,69,.55) }
.gallery-grid .tall{ grid-row:span 2; height:auto }

@media (max-width:980px){
  .split{ grid-template-columns:1fr; gap:32px }
  .aside-card{ position:static }
  .feat-grid{ grid-template-columns:1fr 1fr }
  .gallery-grid{ grid-template-columns:1fr 1fr }
  .has-drop > a::after{ display:none }
  .dropdown{ position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:0; padding:4px 0 4px 14px; min-width:0; background:transparent }
  .dropdown a{ padding:8px 6px; border-bottom:1px solid var(--line) }
}
@media (max-width:620px){
  .feat-grid, .gallery-grid{ grid-template-columns:1fr }
  .gallery-grid image-slot{ height:240px }
}

/* ============================================================
   RESPONSIVE HARDENING  (applies site-wide)
   ============================================================ */
html{ overflow-x: clip }
body{ overflow-x: clip; max-width: 100% }
*{ min-width: 0 }
img, iframe, image-slot, video{ max-width: 100% }
.container{ width: 100% }

/* Tablet / small-laptop */
@media (max-width: 1024px){
  .hero-stats{ gap: 28px 34px }
}

/* Hide long email in the dark top-bar before it can overflow */
@media (max-width: 880px){
  .topbar .left span:nth-child(2){ display:none }
}

/* Phone-portrait / large-phone */
@media (max-width: 760px){
  .container{ padding: 0 18px }
  /* booking lives inside the menu + topbar, so free up the header row */
  header.site .btn-gold{ display:none }
  .topbar{ font-size: 12px }
  .topbar .left{ gap: 14px }
  .topbar .right{ gap: 12px }
  .page-hero{ padding: 48px 0 44px }
  .section{ padding: 60px 0 }
  .cta-band{ padding: 56px 0 }
}

/* Small phones */
@media (max-width: 600px){
  h1{ font-size: clamp(32px, 8.5vw, 46px) }
  .page-hero h1{ font-size: clamp(28px, 8vw, 40px) }
  h2{ font-size: clamp(28px, 6.5vw, 40px) }
  .lead, .hero .lead, .page-hero p{ font-size: 16px }
  .hero-stats{ gap: 20px 28px; margin-top: 30px; padding-top: 22px }
  .hero-stats .stat .n{ font-size: 27px }
  .hero .cta-row{ flex-direction: column; align-items: stretch }
  .hero .cta-row .btn{ width: 100%; justify-content: center }
  .home-return .btn{ width: 100%; justify-content: center }
  /* Location: stack the map tabs and shorten the map */
  .map-tabs{ flex-direction: column }
  .map-tab{ width: 100%; justify-content: center }
  .loc-map, .loc-map iframe{ min-height: 340px }
  .loc-map .map-pin-tag{ left: 10px; top: 10px; padding: 8px 11px }
  /* Forms never overflow */
  .c-form, .c-info, .aside-card{ padding: 24px }
  .split{ gap: 26px }
  /* Tighten section vertical rhythm */
  .about, .services, .audience, .process, .testimonials, .faq, .contact, .location, .whyv, .wisdom{ padding-top: 60px; padding-bottom: 60px }
  /* Brand text a touch smaller so header never wraps */
  .brand-text .name{ font-size: 19px }
  .brand-text .sub{ font-size: 9.5px; letter-spacing: .2em }
  .brand-mark.logo-mark{ width: 50px; height: 50px }
}

/* Very small phones */
@media (max-width: 400px){
  .container{ padding: 0 14px }
  .topbar .left span:first-child{ font-size: 11.5px }
  .topbar .right{ gap: 10px }
  .whatsapp-fab{ right: 16px; bottom: 16px; width: 50px; height: 50px }
  .elements{ grid-template-columns: 1fr }
}
