/* ==========================================================================
   SREEGURU ARULVEL SIDDAMARMA AYURVEDA ASHRAMA — Design System
   Palette:  deep banana-leaf green + temple brass gold + parchment cream
   Type:     Cormorant Garamond (display) / Poppins (body+UI) / Cinzel (eyebrow)
   Signature: wheel + lotus emblem (astrology wheel fused with a lotus rim)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Poppins:wght@300;400;500;600;700&family=Cinzel:wght@500;600&display=swap');

:root{
  /* color tokens */
  --green-deep:   #1F3D2B;
  --green-mid:    #2C4F35;
  --green-soft:   #3E6B49;
  --gold:         #C08A28;
  --gold-light:   #E7C272;
  --gold-pale:    #F4E3B8;
  --cream:        #FBF3E2;
  --cream-deep:   #F1E4C4;
  --ink:          #211F18;
  --ink-soft:     #4B473C;
  --vermilion:    #A4402A;
  --white:        #FFFFFF;
  --line:         rgba(31,61,43,0.14);

  /* type */
  --f-display: 'Cormorant Garamond', serif;
  --f-body: 'Poppins', sans-serif;
  --f-eyebrow: 'Cinzel', serif;

  /* layout */
  --container: 1180px;
  --radius: 14px;
  --shadow-soft: 0 14px 34px rgba(31,61,43,0.12);
  --shadow-deep: 0 24px 50px rgba(20,32,22,0.28);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family: var(--f-display);
  color: var(--green-deep);
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: .2px;
}
p{ margin: 0 0 1em; }
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
:focus-visible{
  outline: 2.5px solid var(--vermilion);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- eyebrow / labels ---------- */
.eyebrow{
  font-family: var(--f-eyebrow);
  font-size: .72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-weight: 600;
}
.eyebrow .rule{ width: 28px; height: 1px; background: var(--gold); display:inline-block; }
.eyebrow.on-dark{ color: var(--gold-light); }

/* ---------- emblem (signature motif) ---------- */
.emblem{ color: currentColor; }
.emblem svg{ display:block; }
.emblem-line{ fill:none; stroke:currentColor; stroke-width:1.4; }
.emblem-petal{ fill:currentColor; opacity:.9; }
.emblem-dot{ fill:currentColor; }
.emblem-spoke{ stroke:currentColor; stroke-width:1.1; }

.watermark-emblem{
  position:absolute;
  width: 620px; height:620px;
  color: var(--gold);
  opacity:.07;
  pointer-events:none;
  animation: spin-slow 140s linear infinite;
}
@keyframes spin-slow{ to{ transform: rotate(360deg); } }

/* hero logo background watermark */
.hero-logo-bg{
  position: absolute;
  right: -120px;
  top: -100px;
  width: 800px;
  height: 800px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
  animation: spin-slow 200s linear infinite;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family: var(--f-body);
  font-weight:600;
  font-size:.92rem;
  letter-spacing:.3px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor:pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-gold{
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--green-deep);
  box-shadow: var(--shadow-soft);
}
.btn-gold:hover{ transform: translateY(-2px); box-shadow: var(--shadow-deep); }
.btn-outline{
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-outline:hover{ background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-outline-dark{
  background: transparent;
  border-color: var(--green-deep);
  color: var(--green-deep);
}
.btn-outline-dark:hover{ background: var(--green-deep); color: var(--cream); transform: translateY(-2px); }
.btn-sm{ padding: 10px 20px; font-size: .82rem; }
.btn-block{ width:100%; }

/* ============================== HEADER ============================== */
.topbar{
  background: var(--green-deep);
  color: var(--gold-pale);
  font-size: .78rem;
}
.topbar-inner{
  display:flex; justify-content:space-between; align-items:center;
  padding: 8px 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-contact{ display:flex; gap: 22px; }
.topbar-contact a{ display:inline-flex; align-items:center; gap:6px; opacity:.92; transition: color .2s; }
.topbar-contact a:hover{ color: var(--gold-light); }
.topbar-social{ display:flex; gap: 14px; }
.topbar-social a{ opacity:.85; }
.topbar-social a:hover{ opacity:1; color: var(--gold-light); }

.main-nav{
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky; top:0; z-index: 100;
  box-shadow: 0 2px 18px rgba(31,61,43,0.06);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 24px;
  gap: 18px;
}
.brand{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.brand .emblem{ width:42px; height:42px; color: var(--gold); flex-shrink:0; }
.brand-name{ display:block; font-family: var(--f-display); font-size:1.18rem; font-weight:700; color: var(--green-deep); line-height:1.1; }
.brand-sub{ display:block; font-size:.62rem; letter-spacing:1.6px; text-transform:uppercase; color: var(--ink-soft); font-family: var(--f-eyebrow); }

.nav-links{ display:flex; gap:30px; align-items:center; }
.nav-links a{
  font-size:.9rem; font-weight:500; color: var(--ink-soft);
  position:relative; padding: 4px 0;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active{ color: var(--green-deep); }
.nav-links a.active::after, .nav-links a:hover::after{
  content:''; position:absolute; left:0; bottom:-3px; width:100%; height:2px; background: var(--gold);
}
.nav-cta{ flex-shrink:0; }
.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:38px; height:34px; background:none; border:none; cursor:pointer; padding:0;
}
.nav-toggle span{ height:2px; background: var(--green-deep); border-radius:2px; }

@media (max-width: 980px){
  .topbar-contact a span.full{ display:none; }
  .nav-links{
    position:fixed; top:0; right:0; height:100vh; width: min(78vw,320px);
    background: var(--green-deep); flex-direction:column; align-items:flex-start;
    padding: 100px 30px 30px; gap:22px; transform: translateX(100%);
    transition: transform .35s ease; z-index: 99;
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-links a{ color: var(--cream); font-size:1.05rem; }
  .nav-links a.active, .nav-links a:hover{ color: var(--gold-light); }
  .nav-cta{ display:none; }
  .nav-links .nav-cta-mobile{ display:inline-flex; margin-top: 10px; }
  .nav-toggle{ display:flex; }
}

/* overlay behind mobile nav */
.nav-overlay{
  position:fixed; inset:0; background:rgba(20,30,20,.45);
  opacity:0; pointer-events:none; transition:opacity .3s; z-index:98;
}
.nav-overlay.show{ opacity:1; pointer-events:auto; }

/* ============================== HERO ============================== */
.hero{
  position:relative;
  background: radial-gradient(120% 140% at 80% -10%, var(--green-mid), var(--green-deep) 60%);
  color: var(--cream);
  overflow:hidden;
  padding: 90px 0 110px;
}
.hero::before{
  content:'';
  position:absolute; inset:0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.025) 0 2px, transparent 2px 60px);
}
.hero-grid{
  position:relative; z-index:2;
  display:grid; grid-template-columns: 1.15fr .85fr; gap:50px; align-items:center;
}
.hero h1{ color: var(--cream); font-size: clamp(2.3rem, 4.2vw, 3.6rem); line-height:1.1; margin-bottom:.45em; }
.hero h1 em{ font-style: italic; color: var(--gold-light); }
.hero p.lead{ font-size: 1.08rem; color: rgba(251,243,226,.86); max-width: 540px; margin-bottom: 2em;}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }
.hero-art{
  position:relative; aspect-ratio: 1/1; display:flex; align-items:center; justify-content:center;
}
.hero-art .watermark-emblem{ width:100%; height:100%; opacity:.16; position:relative; }
.hero-stats{
  display:flex; gap:0; margin-top: 56px; border-top:1px solid rgba(251,243,226,.18); padding-top: 28px;
  flex-wrap:wrap; gap: 36px;
}
.hero-stat{ }
.hero-stat strong{ display:block; font-family:var(--f-display); font-size:1.5rem; color: var(--gold-light); }
.hero-stat span{ font-size:.78rem; color: rgba(251,243,226,.75); }

/* trust badges row under hero (separate band) */
.badge-row{
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.badge-row .container{
  display:flex; justify-content:space-between; gap: 18px; padding: 26px 24px; flex-wrap:wrap;
}
.badge-item{ display:flex; align-items:center; gap:10px; flex: 1 1 180px; min-width:170px; }
.badge-item svg{ width:30px; height:30px; color: var(--gold); flex-shrink:0; }
.badge-item span{ font-size:.84rem; font-weight:500; color: var(--green-deep); }

/* ============================== SECTIONS ============================== */
section{ padding: 86px 0; }
.section-head{ max-width: 680px; margin: 0 auto 50px; text-align:center; }
.section-head.left{ margin: 0 0 46px; text-align:left; }
.section-head h2{ font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p{ color: var(--ink-soft); font-size:1.02rem; }
.section-alt{ background: var(--cream-deep); }
.section-dark{ background: var(--green-deep); color: var(--cream); }
.section-dark h2, .section-dark h3{ color: var(--cream); }
.section-dark .section-head p{ color: rgba(251,243,226,.8); }

/* divider with emblem */
.divider{ display:flex; align-items:center; justify-content:center; gap:16px; margin: 0 auto 40px; color: var(--gold); }
.divider .line{ height:1px; width: 70px; background: linear-gradient(90deg, transparent, currentColor); }
.divider .line.r{ background: linear-gradient(90deg, currentColor, transparent); }
.divider .emblem{ width: 26px; height:26px; }

/* service cards grid */
.grid{ display:grid; gap: 28px; }
.grid-2{ grid-template-columns: repeat(2,1fr); }
.grid-3{ grid-template-columns: repeat(3,1fr); }
.grid-4{ grid-template-columns: repeat(4,1fr); }
.grid-5{ grid-template-columns: repeat(5,1fr); }

.card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: transparent; }
.card .icon-wrap{
  width:56px; height:56px; border-radius: 50%;
  background: var(--cream-deep); color: var(--green-deep);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.card .icon-wrap svg{ width:28px; height:28px; }
.card h3{ font-size:1.28rem; margin-bottom:.4em; }
.card p{ color: var(--ink-soft); font-size:.94rem; margin-bottom: 0; }
.card .card-link{
  margin-top:16px; display:inline-flex; align-items:center; gap:6px;
  font-size:.85rem; font-weight:600; color: var(--vermilion);
}

/* big split service card (home) */
.split-card{
  position:relative; border-radius: var(--radius); overflow:hidden;
  background: var(--green-deep); color: var(--cream);
  padding: 44px 36px; min-height: 280px;
  display:flex; flex-direction:column; justify-content:flex-end;
}
.split-card.gold{ background: linear-gradient(135deg, #8a6213, var(--gold)); color: var(--green-deep); }
.split-card .watermark-emblem{ width:260px; height:260px; right:-50px; top:-50px; opacity:.14; }
.split-card h3{ font-size:1.6rem; color:inherit; position:relative; z-index:2; }
.split-card p{ position:relative; z-index:2; opacity:.88; max-width: 380px; }
.split-card .btn{ position:relative; z-index:2; align-self:flex-start; margin-top:10px; }

/* why-choose icon list */
.feature-row{ display:flex; flex-direction:column; gap:26px; }
.feature-item{ display:flex; gap:18px; align-items:flex-start; }
.feature-item .icon-wrap{ width:48px; height:48px; border-radius:50%; background: var(--green-deep); color: var(--gold-light); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.feature-item .icon-wrap svg{ width:24px; height:24px; }
.feature-item h4{ margin:0 0 4px; font-size:1.08rem; color: var(--green-deep); }
.feature-item p{ margin:0; font-size:.92rem; color: var(--ink-soft); }

/* image + text split block */
.split{
  display:grid; grid-template-columns: 1fr 1fr; gap:60px; align-items:center;
}
.split.reverse .split-media{ order:2; }
.split-media{ position:relative; }
.split-media img, .photo-frame{ border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.photo-frame{
  width:100%; aspect-ratio: 3/4; background: linear-gradient(160deg, var(--cream-deep), var(--gold-pale));
  border: 1px solid var(--line);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px;
  color: var(--green-deep); text-align:center; padding: 30px;
}
.photo-frame svg{ width:64px; height:64px; color: var(--gold); }
.photo-frame span{ font-size:.82rem; color: var(--ink-soft); max-width:220px; }
.split-media .ring{
  position:absolute; border: 1.5px solid var(--gold); border-radius: var(--radius);
  inset: 18px -18px -18px 18px; z-index:-1;
}

/* stat strip */
.stat-strip{ display:flex; justify-content:space-around; flex-wrap:wrap; gap:30px; text-align:center; }
.stat-strip .stat strong{ display:block; font-family:var(--f-display); font-size:2.1rem; color: var(--gold); }
.stat-strip .stat span{ font-size:.84rem; color: var(--ink-soft); }

/* testimonial */
.quote-card{
  background: var(--white); border-radius: var(--radius); padding: 30px 28px;
  border: 1px solid var(--line);
}
.quote-card p.quote{ font-family: var(--f-display); font-style: italic; font-size:1.12rem; color: var(--green-deep); }
.quote-by{ display:flex; align-items:center; gap:12px; margin-top:14px; }
.quote-avatar{ width:42px; height:42px; border-radius:50%; background: var(--cream-deep); display:flex; align-items:center; justify-content:center; color: var(--green-deep); font-family:var(--f-display); font-weight:700; }
.quote-by strong{ display:block; font-size:.92rem; color: var(--green-deep); }
.quote-by span{ font-size:.78rem; color: var(--ink-soft); }

/* CTA banner */
.cta-banner{
  background: var(--green-deep); color: var(--cream);
  border-radius: var(--radius); padding: 54px 50px;
  display:flex; justify-content:space-between; align-items:center; gap: 30px; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.cta-banner .watermark-emblem{ width:300px; height:300px; right:-60px; bottom:-90px; opacity:.12; }
.cta-banner h2{ color: var(--cream); margin:0; font-size: clamp(1.5rem,2.6vw,2.1rem); max-width: 560px; position:relative; z-index:2; }
.cta-banner .actions{ display:flex; gap:14px; position:relative; z-index:2; flex-wrap:wrap; }

/* page header (sub-pages) */
.page-header{
  background: var(--green-deep); color: var(--cream);
  padding: 64px 0 56px; position:relative; overflow:hidden;
}
.page-header .watermark-emblem{ width:420px; height:420px; right:-90px; top:-110px; opacity:.1; }
.page-header h1{ color: var(--cream); font-size: clamp(2rem,3.6vw,2.9rem); margin-bottom:.3em; position:relative; z-index:2; }
.breadcrumb{ font-size:.84rem; color: rgba(251,243,226,.75); position:relative; z-index:2; }
.breadcrumb a{ color: var(--gold-light); }
.page-header p{ position:relative; z-index:2; color: rgba(251,243,226,.85); max-width:560px; }

/* table-style treatment list / accordion */
.acc-item{ border-bottom: 1px solid var(--line); }
.acc-head{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding: 20px 4px; cursor:pointer; user-select:none;
}
.acc-head h4{ margin:0; font-size:1.05rem; color: var(--green-deep); }
.acc-head .plus{ font-size:1.3rem; color: var(--gold); flex-shrink:0; transition: transform .25s; }
.acc-item.open .plus{ transform: rotate(45deg); }
.acc-body{ max-height:0; overflow:hidden; transition: max-height .35s ease; }
.acc-body-inner{ padding: 0 4px 22px; color: var(--ink-soft); font-size:.94rem; }

/* astrology services radial layout */
.radial-wrap{ position:relative; display:flex; justify-content:center; padding: 30px 0; }
.radial-center{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:120px; height:120px; border-radius:50%; background: var(--green-deep); color: var(--gold-light);
  display:flex; align-items:center; justify-content:center; text-align:center; font-family:var(--f-display);
  font-size:.92rem; padding:10px; z-index:3; box-shadow: var(--shadow-deep);
}

/* gallery grid */
.gallery-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:18px; }
.gallery-tile{
  aspect-ratio: 1/1; border-radius: 10px; border: 1.5px dashed var(--gold);
  background: var(--cream-deep); display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:8px; color: var(--ink-soft); font-size:.78rem; text-align:center; padding:12px;
}
.gallery-tile svg{ width:30px; height:30px; color: var(--gold); }
.gallery-photo{
  position:relative; aspect-ratio: 1/1; border-radius:10px; overflow:hidden;
  border:1px solid var(--line); box-shadow: var(--shadow-soft);
}
.gallery-photo img{ width:100%; height:100%; object-fit:cover; display:block; transition: transform .4s ease; }
.gallery-photo:hover img{ transform: scale(1.06); }
.gallery-photo .cap{
  position:absolute; left:0; right:0; bottom:0; padding:10px 12px;
  background: linear-gradient(0deg, rgba(20,32,22,.85), transparent);
  color:#fff; font-size:.78rem; font-weight:500;
}

/* blog/health-tip cards */
.tip-card{ background:var(--white); border-radius: var(--radius); overflow:hidden; border:1px solid var(--line); transition: transform .3s, box-shadow .3s; }
.tip-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.tip-card .tip-media{ height:160px; background: linear-gradient(135deg, var(--green-mid), var(--green-deep)); display:flex; align-items:center; justify-content:center; color: var(--gold-light); }
.tip-card .tip-media svg{ width:46px; height:46px; }
.tip-card .tip-body{ padding: 22px 22px 26px; }
.tip-meta{ font-size:.74rem; letter-spacing:1px; text-transform:uppercase; color: var(--gold); font-family:var(--f-eyebrow); margin-bottom:8px; }
.tip-card h4{ margin:0 0 8px; font-size:1.1rem; color: var(--green-deep); }
.tip-card p{ font-size:.9rem; color: var(--ink-soft); margin-bottom:14px; }

/* form */
.form-card{ background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-soft); border:1px solid var(--line); }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
.field{ margin-bottom: 18px; }
.field label{ display:block; font-size:.82rem; font-weight:600; color: var(--green-deep); margin-bottom:7px; }
.field input, .field select, .field textarea{
  width:100%; padding: 13px 15px; border-radius: 9px; border: 1.4px solid var(--line);
  font-family: var(--f-body); font-size:.92rem; background: var(--cream); color: var(--ink);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--gold); outline:none; }
.field textarea{ resize:vertical; min-height:100px; }
.form-note{ font-size:.78rem; color: var(--ink-soft); margin-top:14px; }
.form-success{
  display:none; background: var(--cream-deep); border:1.5px solid var(--gold); border-radius:10px;
  padding:16px 18px; font-size:.9rem; color: var(--green-deep); margin-top:16px; align-items:center; gap:10px;
}
.form-success.show{ display:flex; }

/* contact info list */
.info-list{ display:flex; flex-direction:column; gap:22px; }
.info-item{ display:flex; gap:16px; align-items:flex-start; }
.info-item .icon-wrap{ width:46px; height:46px; border-radius:12px; background: var(--green-deep); color: var(--gold-light); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.info-item .icon-wrap svg{ width:22px; height:22px; }
.info-item h4{ margin:0 0 3px; font-size:.98rem; color: var(--green-deep); }
.info-item p{ margin:0; font-size:.88rem; color: var(--ink-soft); }
.map-frame{ border-radius: var(--radius); overflow:hidden; border:1px solid var(--line); height:280px; }
.map-frame iframe{ width:100%; height:100%; border:0; }

/* ============================== FOOTER ============================== */
.site-footer{ background: var(--green-deep); color: rgba(251,243,226,.82); padding-top: 70px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom:1px solid rgba(251,243,226,.14); }
.footer-brand .brand-name, .footer-brand .brand-sub{ color: var(--cream); }
.footer-brand p{ margin-top:14px; font-size:.88rem; color: rgba(251,243,226,.72); max-width:280px; }
.footer-social{ display:flex; gap:12px; margin-top:18px; }
.footer-social a{ width:36px; height:36px; border-radius:50%; border:1px solid rgba(251,243,226,.3); display:flex; align-items:center; justify-content:center; transition: background .2s, border-color .2s; }
.footer-social a:hover{ background: var(--gold); border-color: var(--gold); color: var(--green-deep); }
.footer-social svg{ width:16px; height:16px; }
.site-footer h5{ color: var(--gold-light); font-family: var(--f-eyebrow); font-size:.82rem; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:18px; }
.footer-links li{ margin-bottom:11px; font-size:.9rem; }
.footer-links a:hover{ color: var(--gold-light); }
.footer-contact li{ display:flex; gap:10px; margin-bottom:14px; font-size:.88rem; align-items:flex-start; }
.footer-contact svg{ width:17px; height:17px; color:var(--gold); flex-shrink:0; margin-top:2px; }
.footer-bottom{ display:flex; justify-content:space-between; padding: 22px 0; font-size:.78rem; color: rgba(251,243,226,.6); flex-wrap:wrap; gap:10px; }

/* WhatsApp floating button */
.whatsapp-float{
  position:fixed; bottom:24px; right:24px; z-index: 200;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
  animation: pulse-wa 2.6s infinite;
}
.whatsapp-float svg{ width:30px; height:30px; }
@keyframes pulse-wa{ 0%,100%{ box-shadow:0 10px 26px rgba(0,0,0,.28); } 50%{ box-shadow:0 10px 26px rgba(0,0,0,.28), 0 0 0 9px rgba(37,211,102,.18); } }

/* reveal-on-scroll — progressive enhancement only.
   By default (no JS, or JS fails) .reveal content is fully visible.
   Only when the early inline script successfully tags <html class="js-anim">
   does content start hidden and animate in via main.js. This guarantees
   content is never permanently invisible if a script errors or an API
   (e.g. IntersectionObserver) misbehaves in an unusual browser/webview. */
.reveal{ opacity:1; transform:none; }
html.js-anim .reveal{ opacity:0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
html.js-anim .reveal.in{ opacity:1; transform:none; }

/* utility */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.gold-text{ color: var(--gold); }

/* ============================== RESPONSIVE ============================== */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-art{ display:none; }
  .grid-4, .grid-5{ grid-template-columns: repeat(2,1fr); }
  .grid-3{ grid-template-columns: repeat(2,1fr); }
  .split{ grid-template-columns: 1fr; gap:34px; }
  .split.reverse .split-media{ order:0; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .form-row{ grid-template-columns: 1fr; }
}
@media (max-width: 620px){
  .grid-2, .grid-3, .grid-4, .grid-5{ grid-template-columns: 1fr; }
  .topbar-contact{ gap:14px; }
  section{ padding:60px 0; }
  .cta-banner{ padding:38px 26px; text-align:center; justify-content:center; }
  .cta-banner .actions{ justify-content:center; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .page-header{ padding: 48px 0 42px; }
}
