/* ===========================================================
   Khushi Mehndi Arts — Stylesheet
   Theme: Indian Mehndi Atelier — traditional, earthy, handcrafted
   =========================================================== */

/* ---------- Design tokens ---------- */
:root{
  /* Palette */
  --green-deep:      #2E4436;   /* Deep mehndi green — primary */
  --green-deep-dark:#22332A;
  --green-deep-light:#3F5C4A;
  --terracotta:      #B85C38;   /* Secondary */
  --terracotta-dark: #9A4A2C;
  --gold:            #B08A52;   /* Antique gold — subtle accent only */
  --gold-soft:       #D9C6A0;
  --ivory:           #F5EFE1;   /* Warm ivory / cream background */
  --ivory-deep:      #ECE3CE;
  --charcoal:        #2B2420;   /* Deep charcoal / dark brown text */
  --charcoal-soft:   #55483F;
  --thread-line:     rgba(43,36,32,0.14);

  /* Type */
  --font-head: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;

  /* Layout */
  --max-w: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius-soft: 3px;

  --shadow-card: 0 10px 30px -18px rgba(34, 51, 42, 0.45);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body{
  margin:0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{
  font-family: var(--font-head);
  color: var(--green-deep-dark);
  margin: 0 0 0.5em;
  font-weight: 600;
  line-height: 1.15;
}
p{ margin: 0 0 1em; max-width: 62ch; }
:focus-visible{
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.container{
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section{ padding: clamp(3.5rem, 7vw, 6.5rem) 0; position:relative; }
.section-alt{ background: var(--ivory-deep); }
.section-dark{ background: var(--green-deep-dark); color: var(--ivory); }
.section-dark h2, .section-dark h3{ color: var(--ivory); }

.eyebrow{
  display:inline-block;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--terracotta);
  margin-bottom: 0.6rem;
}

.section-head{ max-width: 640px; margin-bottom: 2.75rem; }
.section-head h2{ font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.section-head p{ color: var(--charcoal-soft); font-size: 1.05rem; }
.section-head.centered{ margin-left:auto; margin-right:auto; text-align:center; }

/* thin thread divider used between blocks instead of hard borders */
.thread-divider{
  width: 100%;
  height: 14px;
  margin: 0 auto;
  overflow:hidden;
}
.thread-divider svg{ width:100%; height:100%; display:block; }

/* corner ornament used sparingly on framed images */
.ornament-corner{
  position:absolute;
  width: 46px; height:46px;
  opacity:0.7;
  pointer-events:none;
}
.ornament-corner.tl{ top:-10px; left:-10px; }
.ornament-corner.br{ bottom:-10px; right:-10px; transform: rotate(180deg); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:0.55em;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-soft);
  font-weight:600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{
  background: var(--terracotta);
  color: var(--ivory);
}
.btn-primary:hover{ background: var(--terracotta-dark); }
.btn-outline{
  background: transparent;
  border-color: var(--green-deep);
  color: var(--green-deep);
}
.btn-outline2{
  border-color: var(--gold-soft);
  color: var(--ivory);
}

.btn-outline:hover{ background: var(--green-deep); color: var(--ivory); }
.section-dark .btn-outline{ border-color: var(--gold-soft); color: var(--ivory); }
.section-dark .btn-outline:hover{ background: var(--gold-soft); color: var(--green-deep-dark); }
.btn-small{ padding: 0.55em 1.1em; font-size: 0.85rem; }
.btn svg{ width:1.05em; height:1.05em; flex-shrink:0; }

/* ---------- Header ---------- */
.site-header{
  position: sticky; top:0; z-index: 60;
  background: rgba(245, 239, 225, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--thread-line);
  transition: padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled{
  box-shadow: 0 6px 24px -18px rgba(34,51,42,0.5);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 1.15rem 0;
  transition: padding 0.3s var(--ease);
}
.site-header.is-scrolled .header-inner{ padding: 0.65rem 0; }

.brand{ display:flex; align-items:center; gap:0.7rem; }
.brand-mark{ width: 34px; height:34px; flex-shrink:0; color: var(--terracotta); }
.brand-text{ font-family: var(--font-head); font-size: 1.4rem; color: var(--green-deep-dark); letter-spacing: 0.2px; }
.brand-text span{ display:block; font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.14em; color: var(--charcoal-soft); font-weight: 500; }

.main-nav{ display:flex; align-items:center; gap: 2.1rem; }
.main-nav a{
  font-size: 0.95rem; color: var(--charcoal); position:relative; padding: 0.2rem 0;
}
.main-nav a::after{
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:1.5px; background: var(--terracotta);
  transition: right 0.3s var(--ease);
}
.main-nav a:hover::after{ right:0; }

.header-cta{ display:flex; align-items:center; gap: 0.9rem; }
.hamburger{
  display:none; background:none; border:none; width:40px; height:40px; position:relative;
}
.hamburger span{
  position:absolute; left:8px; right:8px; height:2px; background: var(--charcoal); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger span:nth-child(1){ top:13px; }
.hamburger span:nth-child(2){ top:19px; }
.hamburger span:nth-child(3){ top:25px; }
.hamburger.is-open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity:0; }
.hamburger.is-open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

.mobile-panel{
  display:none;
  position: fixed; inset: 0; top: var(--header-h, 64px);
  background: var(--ivory);
  transform: translateY(-8px);
  opacity:0;
  visibility:hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  z-index: 55;
  overflow-y:auto;
}
.mobile-panel.is-open{ opacity:1; transform:translateY(0); visibility:visible; }
.mobile-panel .container{ padding-top: 2rem; padding-bottom: 2rem; }
.mobile-panel a{
  display:block; font-family: var(--font-head); font-size: 1.6rem; padding: 0.65rem 0; border-bottom: 1px solid var(--thread-line);
}
.mobile-panel .header-cta{ margin-top: 1.5rem; }

@media (max-width: 900px){
  .main-nav{ display:none; }
  .header-cta .btn-outline{ display:none; }
  .hamburger{ display:block; }
  .mobile-panel{ display:block; }
  .btn-small{display: none;}
  .mobile-panel a {
    padding: 6px 16px;
  }
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  background: var(--green-deep-dark);
  color: var(--ivory);
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image: radial-gradient(circle at 15% 20%, rgba(176,138,82,0.14), transparent 45%),
                     radial-gradient(circle at 85% 80%, rgba(184,92,56,0.16), transparent 50%);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items:center;
  gap: clamp(2rem, 5vw, 4rem);
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
  position:relative;
}
.hero-copy{ position:relative; z-index:2; }
.hero-locate{
  display:inline-flex; align-items:center; gap:0.5em;
  font-size:0.85rem; letter-spacing:0.03em; color: var(--gold-soft);
  margin-bottom: 1.4rem;
}
.hero-locate svg{ width:1em; height:1em; }
.hero h1{
  color: var(--ivory);
  font-size: clamp(2.4rem, 5.4vw, 3.9rem);
  max-width: 13ch;
  margin-bottom: 0.55em;
}
.hero-sub{
  color: var(--ivory-deep);
  font-size: 1.15rem;
  max-width: 42ch;
  margin-bottom: 2rem;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap: 1rem; }

.hero-visual{ position:relative; z-index:1; }
.hero-frame{
  position:relative;
  border: 1px solid rgba(217,198,160,0.4);
  padding: 14px;
}
.hero-frame img{ width:100%; height: auto; aspect-ratio: 7/8; object-fit:cover; }
.hero-frame .ornament-corner{ color: var(--gold-soft); }

/* ---------- About ---------- */
.about-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items:center;
}
.about-media{ position:relative; }
.about-media img{ width:100%; aspect-ratio: 4/5; object-fit:cover; border: 1px solid var(--thread-line); }
.about-media .ornament-corner{ color: var(--terracotta); }
.about-copy .section-head{ margin-bottom: 1.4rem; }
.about-points{ display:grid; gap: 0.9rem; margin-top: 1.6rem; }
.about-points li{ display:flex; gap:0.75rem; align-items:flex-start; font-size: 0.98rem; color: var(--charcoal-soft); }
.about-points svg{ width:1.2em; height:1.2em; flex-shrink:0; color: var(--terracotta); margin-top:0.2em; }

@media (max-width: 860px){
  .hero-grid, .about-grid{ grid-template-columns: 1fr; }
  .hero-visual{ order:-1; max-width: 420px; }
}

/* ---------- Services (editorial rows, not identical cards) ---------- */
.service-list{ border-top: 1px solid var(--thread-line); }
.service-row{
  display:grid;
  grid-template-columns: 90px 1fr auto;
  gap: 1.5rem;
  align-items:center;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--thread-line);
  transition: background-color 0.25s var(--ease);
}
.service-row:hover{ background: rgba(184,92,56,0.05); }
.service-icon{ width:52px; height:52px; color: var(--green-deep); flex-shrink:0; }
.service-text h3{ font-size: 1.35rem; margin-bottom: 0.25rem; color: var(--green-deep-dark); }
.service-text p{ margin:0; color: var(--charcoal-soft); font-size: 0.98rem; }
.service-link{
  font-size: 0.9rem; font-weight:600; color: var(--terracotta);
  display:inline-flex; align-items:center; gap:0.4em; white-space:nowrap;
}
.service-link svg{ width:1em; height:1em; transition: transform 0.25s var(--ease); }
.service-row:hover .service-link svg{ transform: translateX(3px); }

@media (max-width: 640px){
  .service-row{ grid-template-columns: 56px 1fr; }
  .service-link{ grid-column: 2; margin-top:0.4rem; }
  .service-icon{ width:40px; height:40px; }
}

/* ---------- Bridal collection (asymmetric heights) ---------- */
.bridal-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items:start;
}
.bridal-card{
  background: var(--ivory);
  border: 1px solid var(--thread-line);
  padding: 2.2rem 1.8rem;
  position:relative;
}
.bridal-card.mid{ transform: translateY(-1.2rem); }
.bridal-tag{
  display:inline-block;
  font-family: var(--font-head); font-style:italic;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.15rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.bridal-card h3{ font-size: 1.6rem; margin-bottom: 0.6rem; }
.bridal-card p{ color: var(--charcoal-soft); font-size: 0.95rem; }
.bridal-meta{ margin: 1.2rem 0; display:grid; gap: 0.5rem; }
.bridal-meta div{ display:flex; justify-content:space-between; font-size: 0.88rem; border-bottom: 1px dashed var(--thread-line); padding-bottom: 0.4rem; }
.bridal-meta span:first-child{ color: var(--charcoal-soft); }
.bridal-meta span:last-child{ font-weight:600; color: var(--green-deep-dark); }
.bridal-card .btn{ width:100%; justify-content:center; margin-top:0.6rem; }

@media (max-width: 860px){
  .bridal-grid{ grid-template-columns: 1fr; }
  .bridal-card.mid{ transform:none; }
}

/* ---------- Gallery ---------- */
.gallery-filters{ display:flex; flex-wrap:wrap; gap: 0.6rem; margin-bottom: 2.2rem; }
.filter-tab{
  padding: 0.5em 1.15em;
  border: 1px solid var(--green-deep);
  color: var(--green-deep);
  background: transparent;
  font-size: 0.88rem;
  border-radius: 999px;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.filter-tab.is-active, .filter-tab:hover{ background: var(--green-deep); color: var(--ivory); }

.gallery-masonry{
  columns: 4 220px;
  column-gap: 1.1rem;
}
.gallery-item{
  break-inside: avoid;
  margin-bottom: 1.1rem;
  position:relative;
  overflow:hidden;
  cursor: zoom-in;
  border: 1px solid var(--thread-line);
}
.gallery-item img{ width:100%; display:block; transition: transform 0.5s var(--ease); }
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-item figcaption{
  position:absolute; left:0; right:0; bottom:0;
  padding: 0.9rem 1rem 0.7rem;
  font-size: 0.82rem; color: var(--ivory);
  background: linear-gradient(to top, rgba(34,51,42,0.82), transparent);
  opacity:0; transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery-item:hover figcaption{ opacity:1; transform:translateY(0); }
.gallery-item[hidden]{ display:none; }

@media (max-width: 700px){ .gallery-masonry{ columns: 2 160px; } }

/* Lightbox */
.lightbox{
  position: fixed; inset:0; z-index: 200;
  background: rgba(34, 40, 33, 0.94);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition: opacity 0.3s var(--ease), visibility 0.3s;
  padding: 1.5rem;
}
.lightbox.is-open{ opacity:1; visibility:visible; }
.lightbox-inner{ position:relative; max-width: 900px; width:100%; text-align:center; }
.lightbox-inner img{ max-height: 78vh; margin: 0 auto; border: 4px solid var(--ivory); }
.lightbox-caption{ color: var(--ivory-deep); margin-top:1rem; font-size:0.9rem; }
.lightbox-btn{
  position:absolute; top:50%; transform: translateY(-50%);
  background: rgba(245,239,225,0.14); border:none; color: var(--ivory);
  width:46px; height:46px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  transition: background-color 0.25s var(--ease);
}
.lightbox-btn:hover{ background: rgba(245,239,225,0.28); }
.lightbox-prev{ left: -4px; }
.lightbox-next{ right: -4px; }
.lightbox-close{
  position:absolute; top: -46px; right: -4px;
  background:none; border:none; color: var(--ivory);
  width:36px; height:36px;
}
@media (max-width: 700px){
  .lightbox-prev{ left:4px; } .lightbox-next{ right:4px; }
  .lightbox-btn{ width:38px; height:38px; background: rgba(34,40,33,0.5); }
}

/* ---------- Why choose (alternating rows) ---------- */
.why-list{ display:grid; gap: 0; }
.why-row{
  display:grid; grid-template-columns: 64px 1fr;
  gap: 1.3rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(245,239,225,0.16);
}
.why-row:last-child{ border-bottom:none; }
.why-row svg{ width:40px; height:40px; color: var(--gold-soft); }
.why-row h3{ font-size: 1.25rem; margin-bottom: 0.25rem; }
.why-row p{ margin:0; color: var(--ivory-deep); font-size: 0.95rem; }
.why-grid-wrap{ display:grid; grid-template-columns: 1fr 1fr; gap: 0 3rem; }
@media (max-width: 760px){ .why-grid-wrap{ grid-template-columns:1fr; } }

/* ---------- Testimonials ---------- */
.testimonial-strip{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top:1px solid var(--thread-line); border-bottom:1px solid var(--thread-line); }
.testimonial-card{ padding: 2rem 1.8rem; border-left: 1px solid var(--thread-line); }
.testimonial-card:first-child{ border-left:none; }
.testimonial-stars{ color: var(--gold); font-size: 0.95rem; letter-spacing: 0.15em; margin-bottom: 0.9rem; }
.testimonial-card blockquote{ margin:0 0 1rem; font-family: var(--font-head); font-size: 1.2rem; color: var(--green-deep-dark); font-style: italic; }
.testimonial-name{ font-size: 0.88rem; color: var(--charcoal-soft); }
@media (max-width: 760px){
  .testimonial-strip{ grid-template-columns: 1fr; }
  .testimonial-card{ border-left:none; border-top:1px solid var(--thread-line); }
  .testimonial-card:first-child{ border-top:none; }
}

/* ---------- Booking steps (numbered — genuine sequence) ---------- */
.steps-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; }
.step-item{ position:relative; padding-top: 0.4rem; }
.step-num{
  font-family: var(--font-head); font-size: 2.6rem; color: var(--gold); line-height:1;
  margin-bottom: 0.7rem; display:block;
}
.step-item h3{ font-size: 1.15rem; margin-bottom:0.35rem; }
.step-item p{ font-size: 0.92rem; color: var(--charcoal-soft); margin:0; }
@media (max-width: 860px){ .steps-grid{ grid-template-columns: 1fr 1fr; row-gap: 2.2rem; } }
@media (max-width: 520px){ .steps-grid{ grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list{ border-top: 1px solid var(--thread-line); max-width: 780px; }
.faq-item{ border-bottom: 1px solid var(--thread-line); }
.faq-q{
  width:100%; text-align:left; background:none; border:none;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding: 1.3rem 0; font-family: var(--font-head); font-size: 1.15rem; color: var(--green-deep-dark);
}
.faq-q .plus{ position:relative; width:18px; height:18px; flex-shrink:0; }
.faq-q .plus::before, .faq-q .plus::after{
  content:""; position:absolute; background: var(--terracotta); transition: transform 0.3s var(--ease);
}
.faq-q .plus::before{ left:0; top:8px; width:18px; height:2px; }
.faq-q .plus::after{ left:8px; top:0; width:2px; height:18px; }
.faq-item.is-open .plus::after{ transform: rotate(90deg); opacity:0; }
.faq-a{
  max-height:0; overflow:hidden; transition: max-height 0.35s var(--ease);
}
.faq-a p{ padding-bottom: 1.3rem; color: var(--charcoal-soft); margin:0; max-width: 68ch; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items:start; }
.contact-card{ background: var(--ivory); border:1px solid var(--thread-line); padding: 2.2rem; }
.contact-card h3{ font-size: 1.4rem; margin-bottom:1rem; }
.contact-row{ display:flex; gap:0.9rem; align-items:flex-start; margin-bottom: 1.2rem; }
.contact-row svg{ width:1.3em; height:1.3em; color: var(--terracotta); flex-shrink:0; margin-top:0.15em; }
.contact-row a, .contact-row span{ font-size: 0.98rem; }
.contact-actions{ display:flex; gap:1rem; flex-wrap:wrap; margin-top: 1.4rem; }
.map-wrap{ border: 1px solid var(--thread-line); overflow:hidden; min-height: 320px; background: var(--ivory-deep); }
.map-wrap iframe{ width:100%; height:100%; min-height:320px; border:0; display:block; }
@media (max-width: 860px){ .contact-grid{ grid-template-columns:1fr; } }

/* ---------- Final CTA ---------- */
.final-cta{
  background: var(--green-deep-dark);
  color: var(--ivory);
  text-align:center;
  position:relative;
  overflow:hidden;
}
.final-cta::before{
  content:"";
  position:absolute; inset:0;
  background-image: radial-gradient(circle at 50% 120%, rgba(184,92,56,0.25), transparent 60%);
}
.final-cta .container{ position:relative; z-index:1; }
.final-cta h2{ color:var(--ivory); font-size: clamp(2rem, 4vw, 2.8rem); max-width: 18ch; margin:0 auto 0.6rem; }
.final-cta p{ color: var(--ivory-deep); max-width: 46ch; margin: 0 auto 2rem; }
.final-cta .hero-actions{ justify-content:center; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--charcoal); color: var(--ivory-deep); padding: 3.5rem 0 1.6rem; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand .brand-text{ color: var(--ivory); }
.footer-brand .brand-text span{ color: var(--gold-soft); }
.footer-tagline{ font-family: var(--font-head); font-style:italic; color: var(--gold-soft); margin: 0.8rem 0 0.6rem; }
.footer-desc{ font-size: 0.9rem; color: var(--ivory-deep); opacity:0.85; }
.footer-heading{ font-size: 0.82rem; letter-spacing: 0.05em; color: var(--ivory); margin-bottom:1rem; font-weight:600; }
.footer-col a, .footer-col span{ display:block; font-size: 0.92rem; color: var(--ivory-deep); opacity:0.85; margin-bottom:0.65rem; }
.footer-col a:hover{ opacity:1; color: var(--gold-soft); }
.footer-social{ display:flex; gap:0.7rem; margin-top:0.6rem; }
.footer-social a{ width:36px; height:36px; border:1px solid rgba(245,239,225,0.25); border-radius:50%; display:flex; align-items:center; justify-content:center; }
.footer-social svg{ width:1.1em; height:1.1em; }
.footer-bottom{ border-top:1px solid rgba(245,239,225,0.15); padding-top: 1.4rem; text-align:center; font-size: 0.82rem; opacity:0.7; }
@media (max-width: 760px){ .footer-grid{ grid-template-columns: 1fr; } }

/* ---------- Floating WhatsApp + mobile action bar ---------- */
.floating-whatsapp{
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 70;
  width: 56px; height:56px; border-radius:50%;
  background: var(--green-deep); color: var(--ivory);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease);
}
.floating-whatsapp:hover{ transform: scale(1.07); }
.floating-whatsapp svg{ width:28px; height:28px; }

.mobile-action-bar{
  display:none;
  position: fixed; left:0; right:0; bottom:0; z-index: 65;
  background: var(--ivory);
  border-top: 1px solid var(--thread-line);
  box-shadow: 0 -8px 24px -18px rgba(34,51,42,0.55);
}
.mobile-action-bar .bar-inner{ display:flex; }
.mobile-action-bar a{
  flex:1; text-align:center; padding: 0.9rem 0; font-weight:600; font-size:0.92rem;
  display:flex; align-items:center; justify-content:center; gap:0.5em;
}
.mobile-action-bar a svg{ width:1.1em; height:1.1em; }
.mobile-action-bar .bar-whatsapp{ background: var(--green-deep); color: var(--ivory); }
.mobile-action-bar .bar-call{ background: var(--terracotta); color: var(--ivory); }

@media (max-width: 760px){
  .mobile-action-bar{ display:block; }
  .floating-whatsapp{ bottom: 4.6rem; }
  body{ padding-bottom: 3.4rem; }
}

/* ---------- Scroll reveal ---------- */
.reveal{ opacity:0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible{ opacity:1; transform:none; }

/* ---------- Back to top ---------- */
.back-to-top{
  position: fixed; right: 1.4rem; bottom: 5.6rem; z-index: 69;
  width:42px; height:42px; border-radius:50%;
  background: var(--ivory); border: 1px solid var(--thread-line); color: var(--green-deep-dark);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform: translateY(10px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  box-shadow: var(--shadow-card);
}
.back-to-top.is-visible{ opacity:1; visibility:visible; transform:none; }
@media (max-width: 760px){ .back-to-top{ bottom: 8.8rem; } }
