/* ===================================================================
   AYORA WELLNESS SPA — Design Tokens (Light Cherry Blossom Theme)
   Palette: White #FFFFFF · Blush Pink #FFEEF3 · Cherry Blossom #E2688C
            Cherry Deep #B84568 · Cherry Soft #F6C9DA · Pine Text #1E3B32
            Charcoal Ink #22201C · Warm Gold accent (sparing) #C48F2B
   Display: Fraunces · Body: Work Sans
   Signature: falling cherry-blossom petals + concentric ripple motif
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,450;0,9..144,600;1,9..144,450&family=Work+Sans:wght@300;400;500;600;700&display=swap');

:root{
  --pine: #1E3B32;
  --pine-deep: #142822;
  --ivory: #FFFFFF;
  --ivory-dim: #FFF8FA;
  --blush: #FFEDF3;
  --blush-deep: #FCE0EA;
  --gold: #C48F2B;
  --gold-soft: #DFAF56;
  --clay: #E8C9B4;
  --ink: #2B2320;
  --sage: #8A9E88;
  --white: #FFFFFF;
  --cherry: #E2688C;
  --cherry-soft: #F6C9DA;
  --cherry-pale: #FFF1F6;
  --cherry-deep: #B84568;

  --display: 'Fraunces', serif;
  --body: 'Work Sans', sans-serif;

  --radius: 6px;
  --max: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height:1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
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(--display);
  font-weight: 600;
  margin: 0 0 .5em;
  line-height: 1.12;
  color: var(--pine-deep);
  letter-spacing: -0.01em;
}
p{ margin:0 0 1em; }
.container{ max-width: var(--max); margin:0 auto; padding: 0 24px; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--body); font-weight:600; font-size: .74rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--cherry-deep);
  margin-bottom: 14px;
}
.eyebrow::before{ content:''; width:22px; height:1px; background: var(--cherry); display:inline-block; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px 26px; border-radius: var(--radius);
  font-family: var(--body); font-weight:600; font-size: .95rem;
  border: 1px solid transparent; cursor:pointer; transition: all .2s ease;
  white-space: nowrap;
}
.btn-gold{ background: var(--cherry); color: var(--white); }
.btn-gold:hover{ background: var(--cherry-deep); transform: translateY(-1px); }
.btn-cherry{ background: var(--white); color: var(--cherry-deep); border-color: var(--cherry); }
.btn-cherry:hover{ background: var(--cherry); color: var(--white); transform: translateY(-1px); }
.btn-outline{ background: transparent; border-color: rgba(30,59,50,.35); color: var(--pine-deep); }
.btn-outline:hover{ background: rgba(226,104,140,.1); border-color: var(--cherry); }
.btn-line{ background: transparent; border-color: var(--pine); color: var(--pine-deep); }
.btn-line:hover{ background: var(--pine); color: var(--white); }
.btn-block{ width:100%; }

/* ---------- Header ---------- */
.site-header{
  position: sticky; top:0; z-index: 500;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(226,104,140,.16);
}
.header-bar{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
}
.logo{ display:flex; align-items:center; gap:10px; }
.logo-mark{ width:38px; height:38px; }
.logo-text{ font-family: var(--display); font-size:1.32rem; font-weight:600; color: var(--pine-deep); }
.logo-text span{ color: var(--cherry-deep); }
.main-nav{ display:flex; align-items:center; gap:30px; }
.main-nav a{
  font-size:.92rem; font-weight:500; color: var(--ink); position:relative; padding: 4px 0;
}
.main-nav a.active, .main-nav a:hover{ color: var(--cherry-deep); }
.main-nav a.active::after{
  content:''; position:absolute; left:0; right:0; bottom:-3px; height:2px; background: var(--cherry);
}
.header-cta{ display:flex; align-items:center; gap:12px; }
.header-phone{
  display:flex; align-items:center; gap:8px; font-weight:600; font-size:.92rem; color: var(--pine-deep);
}
.nav-toggle{ display:none; background:none; border:none; cursor:pointer; padding:6px; }
.nav-toggle span{ display:block; width:24px; height:2px; background: var(--pine-deep); margin:5px 0; }

/* ---------- Hero ---------- */
.hero{
  position: relative; overflow:hidden;
  background: var(--blush);
  background-size: cover; background-position: center;
  color: var(--ink);
  padding: 40px 0 100px;
}
.hero::before {
  content: ''; 
  position: absolute; 
  inset: 0; 
  z-index: 1;
  background: linear-gradient(
    51deg, 
    rgb(255 255 255 / 90%) 0%,   /* Strong white overlay behind the text */
    rgb(255 255 255 / 75%) 30%,  /* Starts fading, background peeks through */
    rgb(255 255 255 / 45%) 60%,  /* Middle transition */
    rgb(255 255 255 / 10%) 85%,  /* Barely visible white */
    rgb(255 255 255 / 0%) 100%   /* Fully transparent on the right side */
  );
}
.hero::after{
  content:''; position:absolute; inset:0; z-index:1;
  background: linear-gradient(0deg, rgba(255,255,255,.55) 0%, transparent 40%);
}
.hero > .container{ position:relative; z-index:3; }
.hero-petals{ position:absolute; inset:0; z-index:2; overflow:hidden; pointer-events:none; perspective:700px; }
.hero-grid{
  position:relative; z-index:2;
  display:block;
}
.hero-copy{ max-width: 620px; }
.hero-badges{ display:flex; flex-wrap:wrap; gap:10px; margin: 22px 0 30px; }
.hero-badge{
  font-size:.78rem; padding:7px 14px; border:1px solid rgba(184,69,104,.3);
  border-radius: 30px; color: var(--cherry-deep); background: rgba(255,255,255,.55);
}
.hero h1{ color: var(--pine-deep); font-size: clamp(2.1rem, 4vw, 3.1rem); max-width: 12.5ch; }
.hero h1 em{ font-style: italic; color: var(--cherry-deep); }
.hero p.lead{ color: #4a4038; font-size: 1.08rem; max-width: 46ch; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-top:28px; }
.hero-art{ position:relative; }
.hero-photo-frame{
  position:relative; border-radius: 14px; overflow:hidden;
  box-shadow: 0 30px 70px rgba(184,69,104,.25);
  border: 1px solid rgba(255,255,255,.6);
}
.hero-photo-frame::before{
  content:''; position:absolute; inset:-18px; z-index:-1; border-radius: 20px;
  background: linear-gradient(135deg, var(--cherry-soft), transparent 60%);
  opacity: .5;
}
.hero-photo-frame img{ width:100%; height:100%; object-fit:cover; display:block; aspect-ratio: 4/5; }
.hero-photo-ring{
  position:absolute; top:-26px; right:-26px; width:120px; height:120px;
  border-radius:50%; border:1px solid var(--cherry-soft); opacity:.6; pointer-events:none;
}
.hero-photo-ring.r2{ top:auto; bottom:-30px; left:-30px; right:auto; width:90px; height:90px; opacity:.4; }
.hero-photo-badge{
  position:absolute; left:20px; bottom:20px; background: rgba(255,255,255,.85);
  backdrop-filter: blur(4px); color: var(--pine-deep); padding: 10px 16px; border-radius: 8px;
  font-size:.82rem; font-weight:600; border: 1px solid rgba(226,104,140,.25);
}
.hero-photo-badge span{ display:block; font-size:.7rem; font-weight:500; color: var(--cherry-deep); text-transform:uppercase; letter-spacing:.06em; margin-top:2px; }
.hero-stats{
  display:grid; grid-template-columns: repeat(4,1fr); gap: 0;
  border-top:1px solid rgba(184,69,104,.18); margin-top:56px; padding-top:28px;
}
.hero-stats div{ text-align:center; border-left:1px solid rgba(184,69,104,.18); }
.hero-stats div:first-child{ border-left:none; }
.hero-stats strong{ display:block; font-family:var(--display); font-size:1.8rem; color: var(--cherry-deep); }
.hero-stats span{ font-size:.78rem; color: #6b5f56; text-transform:uppercase; letter-spacing:.06em; }

/* ---------- Falling cherry blossom petals ---------- */
.petal-field{ position:fixed; inset:0; z-index:300; pointer-events:none; overflow:hidden; perspective:800px; }
.petal{
  position:absolute; top:-8%; border-radius: 0 60% 0 60%;
  background: linear-gradient(135deg, var(--cherry-soft), var(--cherry));
  box-shadow: 0 2px 6px rgba(184,69,104,.25);
  opacity:0; animation-name: petal-fall; animation-timing-function: linear; animation-iteration-count: infinite;
  transform-style: preserve-3d;
}
@keyframes petal-fall{
  0%{ transform: translateY(-8vh) translateX(0) rotateZ(0deg) rotateY(0deg); opacity:0; }
  8%{ opacity:.85; }
  50%{ transform: translateY(52vh) translateX(30px) rotateZ(160deg) rotateY(200deg); }
  92%{ opacity:.75; }
  100%{ transform: translateY(112vh) translateX(-24px) rotateZ(320deg) rotateY(380deg); opacity:0; }
}

/* ---------- Sections ---------- */
section{ padding: 88px 0; }
.section-dark{ background: var(--blush); color: var(--ink); }
.section-dark h2{ color: var(--pine-deep); }
.section-dim{ background: var(--ivory-dim); }
.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(1.7rem,3vw,2.4rem); }

.divider-ripple{ width:100%; height:46px; margin: 0 auto; opacity:.7; }

/* ---------- Areas strip ---------- */
.areas-strip{
  background: linear-gradient(90deg, var(--cherry-soft) 0%, var(--cherry) 100%);
  color: var(--pine-deep);
  padding: 16px 0;
}
.areas-strip .container{ display:flex; flex-wrap:wrap; align-items:center; gap: 10px 26px; justify-content:center; }
.areas-strip strong{ font-family: var(--display); font-weight:600; }
.areas-strip .tag{ font-size:.86rem; font-weight:600; }
.areas-strip .dot{ opacity:.5; }

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

.why-card{
  background: var(--white); border-radius: var(--radius); padding: 30px 26px;
  border: 1px solid rgba(226,104,140,.14); box-shadow: 0 4px 18px rgba(184,69,104,.05);
}
.why-card .icon{ width:40px; height:40px; margin-bottom:16px; }
.why-card h3{ font-size:1.12rem; margin-bottom:8px; }
.why-card p{ font-size:.93rem; color:#544f45; margin:0; }

.service-card{
  background: var(--white); border-radius: var(--radius); overflow:hidden;
  border:1px solid rgba(226,104,140,.14); box-shadow: 0 4px 18px rgba(184,69,104,.05); display:flex; flex-direction:column;
}
.service-card .thumb{ aspect-ratio: 4/3; background: var(--clay); }
.service-card .body{ padding: 22px 22px 24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.service-card h3{ font-size:1.16rem; }
.service-card p{ font-size:.92rem; color:#544f45; flex:1; margin:0; }
.service-card .actions{ display:flex; gap:10px; margin-top:6px; }
.service-card .actions .btn{ flex:1; padding:10px 14px; font-size:.85rem; }

.service-tag{
  display:inline-block; font-size:.68rem; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; background: linear-gradient(100deg, var(--cherry-deep), var(--cherry));
  color: var(--white);
  padding: 4px 10px; border-radius: 20px; margin-bottom: 10px; width:fit-content;
}

/* ---------- About ---------- */
.about-grid{ display:grid; grid-template-columns: .9fr 1.1fr; gap:60px; align-items:center; }
.about-art{ position:relative; }
.pillars{ display:grid; grid-template-columns: 1fr 1fr; gap:20px; margin-top:28px; }
.pillar{ border-left: 2px solid var(--cherry); padding-left:14px; }
.pillar h4{ font-size:1rem; margin-bottom:4px; }
.pillar p{ font-size:.88rem; color:#544f45; margin:0; }

.quote-block{
  border-radius: var(--radius); background: linear-gradient(120deg, var(--cherry-pale) 0%, var(--cherry-soft) 130%); color: var(--pine-deep);
  padding: 40px; margin-top: 40px; position:relative; border:1px solid rgba(226,104,140,.25);
}
.quote-block p{ font-family: var(--display); font-style:italic; font-size:1.3rem; margin:0; color: var(--pine-deep); }
.quote-block span{ display:block; margin-top:14px; font-size:.85rem; color: var(--cherry-deep); font-style:normal; }

/* ---------- Timeline (About) ---------- */
.timeline{ position:relative; padding-left: 28px; }
.timeline::before{ content:''; position:absolute; left:5px; top:6px; bottom:6px; width:1px; background: rgba(226,104,140,.25); }
.timeline-item{ position:relative; padding-bottom: 30px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:''; position:absolute; left:-28px; top:4px; width:11px; height:11px; border-radius:50%;
  background: var(--cherry); border:2px solid var(--white); box-shadow:0 0 0 1px var(--cherry);
}
.timeline-item h4{ font-size:1rem; margin-bottom:4px; }
.timeline-item p{ font-size:.9rem; color:#544f45; margin:0; }

/* ---------- Testimonials ---------- */
.testimonial-card{
  background: var(--white); border:1px solid rgba(226,104,140,.14); border-radius: var(--radius);
  padding: 26px; display:flex; flex-direction:column; gap:14px; box-shadow: 0 4px 18px rgba(184,69,104,.05);
}
.stars{ color: var(--cherry); font-size: .95rem; letter-spacing: 2px; }
.testimonial-card p{ font-size:.94rem; color:#3a362f; margin:0; }
.testimonial-card .who{ font-size:.85rem; font-weight:600; color: var(--pine-deep); }

/* ---------- FAQ ---------- */
.faq-list{ max-width: 800px; margin: 0 auto; }
.faq-item{ border-bottom: 1px solid rgba(226,104,140,.2); }
.faq-q{
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  padding: 20px 0; display:flex; justify-content:space-between; align-items:center; gap:20px;
  font-family: var(--body); font-weight:600; font-size: 1rem; color: var(--pine-deep);
}
.faq-q .plus{ font-family: var(--display); font-size:1.3rem; color: var(--cherry); transition: transform .25s ease; flex-shrink:0; }
.faq-item.open .faq-q .plus{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .3s ease; font-size:.93rem; color:#544f45; }
.faq-a-inner{ padding-bottom: 20px; max-width: 68ch; }
.faq-item.open .faq-a{ max-height: 400px; }

/* ---------- Gallery ---------- */
.gallery-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap:16px; }
.gallery-grid .g-item{ border-radius: var(--radius); overflow:hidden; aspect-ratio: 1/1; background: var(--clay); cursor:pointer; position:relative; box-shadow: 0 4px 18px rgba(184,69,104,.08); }
.gallery-grid .g-item.tall{ grid-row: span 2; aspect-ratio: 1/2.15; }
.gallery-grid .g-item svg, .gallery-grid .g-item img{ width:100%; height:100%; object-fit:cover; display:block; }
.gallery-grid .g-item .g-cap{
  position:absolute; left:0; right:0; bottom:0; padding:12px 14px;
  background: linear-gradient(0deg, rgba(80,30,45,.72), transparent);
  color: var(--white); font-size:.8rem; font-weight:600;
}
.lightbox{
  position: fixed; inset:0; background: rgba(80,30,45,.55); z-index: 900;
  display:none; align-items:center; justify-content:center; padding: 40px;
}
.lightbox.open{ display:flex; }
.lightbox-inner{ max-width: 720px; width:100%; background: var(--white); border-radius: var(--radius); overflow:hidden; }
.lightbox-inner .lb-img{ aspect-ratio: 4/3; background: var(--clay); overflow:hidden; }
.lightbox-inner .lb-img img, .lightbox-inner .lb-img svg{ width:100%; height:100%; object-fit:cover; display:block; }
.lightbox-inner .lb-cap{ padding: 18px 22px; font-weight:600; }
.lightbox-close{ position:absolute; top:24px; right:32px; color: var(--white); font-size:2rem; cursor:pointer; background:none; border:none; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-card{ background: var(--white); border:1px solid rgba(226,104,140,.14); border-radius: var(--radius); padding: 34px; box-shadow: 0 4px 18px rgba(184,69,104,.05); }
.info-row{ display:flex; gap:14px; padding: 16px 0; border-bottom:1px solid rgba(226,104,140,.14); }
.info-row:last-child{ border-bottom:none; }
.info-row .ic{ width:22px; height:22px; flex-shrink:0; margin-top:2px; }
.info-row h4{ font-size:.95rem; margin-bottom:2px; }
.info-row p{ margin:0; font-size:.9rem; color:#544f45; }
.map-embed{ border-radius: var(--radius); overflow:hidden; border:1px solid rgba(226,104,140,.14); height: 100%; min-height: 380px; }
.map-embed iframe{ width:100%; height:100%; min-height:380px; border:0; display:block; }

.form-field{ margin-bottom:18px; }
.form-field label{ display:block; font-size:.85rem; font-weight:600; margin-bottom:6px; color: var(--pine-deep); }
.form-field input, .form-field select, .form-field textarea{
  width:100%; padding: 12px 14px; border-radius: var(--radius); border: 1px solid rgba(226,104,140,.25);
  font-family: var(--body); font-size:.95rem; background: var(--white);
}
.form-field textarea{ resize: vertical; min-height: 100px; }

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(120deg, var(--cherry-pale) 0%, var(--cherry-soft) 140%); color: var(--pine-deep); border-radius: var(--radius);
  padding: 50px; display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
  border: 1px solid rgba(226,104,140,.25);
}
.cta-band h3{ color: var(--pine-deep); margin-bottom:6px; font-size:1.5rem; }
.cta-band p{ color: #6b5347; margin:0; }
.cta-actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--blush); color: #5c463d; padding: 64px 0 26px; border-top: 1px solid rgba(226,104,140,.2); }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; margin-bottom: 46px; }
.footer-col h4{ color: var(--pine-deep); font-size:.9rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:16px; font-family: var(--body); font-weight:600; }
.footer-col ul li{ margin-bottom:10px; font-size:.9rem; }
.footer-col ul li a:hover{ color: var(--cherry-deep); }
.footer-brand p{ font-size:.9rem; max-width: 30ch; margin-top:10px; color:#5c463d; }
.footer-social{ display:flex; gap:12px; margin-top:16px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%; border:1px solid rgba(226,104,140,.35);
  display:flex; align-items:center; justify-content:center; color: var(--cherry-deep);
}
.footer-social a:hover{ background: var(--cherry); border-color: var(--cherry); color: var(--white); }
.footer-bottom{
  border-top: 1px solid rgba(226,104,140,.2); padding-top: 22px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:.8rem; color: #8a7468;
}

/* ---------- Sticky mobile call bar ---------- */
.sticky-cta{
  position: fixed; bottom:0; left:0; right:0; z-index: 700;
  background: var(--white); border-top: 1px solid rgba(226,104,140,.25); display:none; padding: 12px 16px;
  gap:10px; box-shadow: 0 -6px 20px rgba(184,69,104,.12);
}
.sticky-cta a{ flex:1; }
.sticky-cta .btn{ width:100%; }

/* ---------- Popup modal ---------- */
.promo-overlay{
  position: fixed; inset:0; background: rgba(60,25,35,.55); z-index:1000;
  display:none; align-items:center; justify-content:center; padding: 20px;
}
.promo-overlay.open{ display:flex; }
.promo-modal{
  position:relative; max-width: 460px; width:100%; background: linear-gradient(160deg, var(--white) 0%, var(--cherry-pale) 100%);
  border-radius: 10px; overflow:hidden; color: var(--pine-deep);
  box-shadow: 0 30px 70px rgba(80,30,45,.35); border: 1px solid rgba(226,104,140,.25);
}
.promo-modal .promo-ribbon{
  background: linear-gradient(90deg, var(--cherry-deep), var(--cherry)); color: var(--white); text-align:center;
  font-weight:700; letter-spacing:.04em; padding: 10px; font-size:.85rem; text-transform:uppercase;
}
.promo-modal .promo-body{ padding: 34px 34px 30px; text-align:center; }
.promo-modal .promo-big{ font-family: var(--display); font-size: 3rem; background: linear-gradient(90deg, var(--cherry-deep), var(--cherry)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height:1; margin-bottom:6px; }
.promo-modal h3{ color: var(--pine-deep); font-size:1.3rem; margin-bottom:10px; }
.promo-modal p{ color: #5c463d; font-size:.92rem; }
.promo-modal .promo-actions{ display:flex; gap:10px; margin-top:22px; }
.promo-close{
  position:absolute; top:14px; right:16px; background:none; border:none; color: var(--pine-deep);
  font-size:1.4rem; cursor:pointer; opacity:.6; z-index: 2;
}
.promo-close:hover{ opacity:1; }
.promo-modal .promo-art{ position:absolute; inset:0; opacity:.2; pointer-events:none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .gallery-grid .g-item.tall{ grid-row: span 1; aspect-ratio:1/1; }
}
@media (max-width: 720px){
  .main-nav, .header-cta .btn{ display:none; }
  .nav-toggle{ display:block; }
  .header-phone span.txt{ display:none; }
  .grid-3, .grid-2{ grid-template-columns: 1fr; }
  .hero{ padding: 84px 0 70px; }
  .hero-stats{ grid-template-columns: 1fr 1fr; row-gap:20px; }
  .hero-stats div:nth-child(3){ border-left:none; }
  .footer-grid{ grid-template-columns: 1fr; gap:30px; }
  section{ padding: 54px 0; }
  .cta-band{ flex-direction:column; text-align:center; padding: 34px 24px; }
  .sticky-cta{ display:flex; }
  body{ padding-bottom: 68px; }
  .main-nav.open{
    display:flex; position:absolute; top:100%; left:0; right:0; background: var(--white);
    flex-direction:column; padding: 20px 24px; gap:16px; border-bottom:1px solid rgba(226,104,140,.18);
    box-shadow: 0 12px 24px rgba(184,69,104,.08);
  }
  .promo-modal{ max-width: 92vw; }
  .promo-modal .promo-big{ font-size: 2.4rem; }
  .why-card, .service-card .body, .contact-card, .testimonial-card{ padding: 22px 20px; }
  .gallery-grid{ gap:10px; }
}
@media (max-width: 480px){
  .hero-badges{ gap:8px; }
  .hero-badge{ font-size:.72rem; padding:6px 12px; }
  .hero-actions .btn{ flex:1 1 auto; text-align:center; }
  .cta-actions .btn{ width:100%; }
}
