/* ============================================================
   Blue Wings Cloud Kitchens — site styles
   Aesthetic: navy ink on warm cream, saffron accent, editorial
   ============================================================ */

:root {
  /* palette */
  --navy-900: #101b33;
  --navy-800: #16233f;
  --navy:     #25385c;   /* brand */
  --navy-600: #334870;
  --navy-line: rgba(37, 56, 92, 0.14);
  --ink:      #1d2436;
  --muted:    #5c6478;
  --cream:    #f6f1e7;   /* paper */
  --cream-2:  #efe7d8;
  --paper:    #fffdf8;
  --amber:    #e79a3c;   /* accent */
  --amber-2:  #d97b32;   /* deep accent */
  --amber-soft: #f6e4c8;
  --white:    #ffffff;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(16,27,51,.06), 0 4px 14px rgba(16,27,51,.05);
  --shadow-md: 0 10px 30px rgba(16,27,51,.10);
  --shadow-lg: 0 30px 70px rgba(16,27,51,.18);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ------------ reset-ish ------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 550; line-height: 1.04; letter-spacing: -0.015em; }
p { margin: 0; }
:focus-visible { outline: 2.5px solid var(--amber-2); outline-offset: 3px; border-radius: 4px; }

.wrap { width: min(100% - var(--gutter) * 2, var(--maxw)); margin-inline: auto; }
.eyebrow {
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; color: var(--amber-2);
  display: inline-flex; align-items: center; gap: .6em;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--amber); display: inline-block; }

/* ------------ buttons ------------ */
.btn {
  --bg: var(--navy); --fg: #fff;
  display: inline-flex; align-items: center; gap: .55em;
  background: var(--bg); color: var(--fg);
  padding: .82em 1.4em; border-radius: 999px;
  font-weight: 600; font-size: .96rem; letter-spacing: .005em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn svg { width: 1.15em; height: 1.15em; }
.btn--amber { --bg: var(--amber); --fg: var(--navy-900); }
.btn--amber:hover { background: var(--amber-2); color: #fff; }
.btn--ghost { --bg: transparent; --fg: var(--navy); border-color: var(--navy-line); box-shadow: none; }
.btn--ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--lg { padding: 1em 1.7em; font-size: 1.02rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(1.4) blur(10px);
  background: rgba(246,241,231,.82);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.scrolled { border-color: var(--navy-line); box-shadow: 0 6px 24px rgba(16,27,51,.06); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav__logo { display: flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 1.28rem; letter-spacing: -.02em; }
.nav__logo img { height: 40px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav__links a { font-size: .95rem; font-weight: 500; color: var(--ink); position: relative; padding: .2em 0; }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0; background:var(--amber); transition: width .3s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: .8rem; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display:block; width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; margin: 5px 0; transition: .3s var(--ease); }

@media (max-width: 900px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: block; }
  .nav.open .nav__toggle span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
  .nav.open .nav__toggle span:nth-child(2){ opacity: 0; }
  .nav.open .nav__toggle span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }
  .nav__mobile {
    position: fixed; inset: 74px 0 auto 0; background: var(--cream);
    border-bottom: 1px solid var(--navy-line); box-shadow: var(--shadow-md);
    transform: translateY(-120%); transition: transform .4s var(--ease);
    padding: 1.4rem var(--gutter) 2rem;
  }
  .nav.open .nav__mobile { transform: translateY(0); }
}
.nav__mobile { display: none; }
@media (max-width: 900px){ .nav__mobile { display: block; } }
.nav__mobile ul { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .3rem; }
.nav__mobile a { display: block; padding: .7rem 0; font-size: 1.15rem; font-family: var(--font-display); border-bottom: 1px solid var(--navy-line); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5.5rem); overflow: hidden; }
.hero::before {
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(120% 90% at 88% -10%, rgba(231,154,60,.16), transparent 42%),
    radial-gradient(90% 70% at -8% 8%, rgba(37,56,92,.06), transparent 45%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__kicker { margin-bottom: 1.4rem; }
.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 4.7rem);
  font-optical-sizing: auto; font-weight: 500;
  color: var(--navy-900); letter-spacing: -.028em;
}
.hero h1 em { font-style: italic; color: var(--amber-2); font-weight: 500; }
.hero__lead { margin-top: 1.5rem; font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 33ch; }
.hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__trust { margin-top: 2.4rem; display: flex; align-items: center; gap: 1rem; color: var(--muted); font-size: .9rem; }
.hero__trust b { color: var(--navy); font-weight: 700; }
.hero__trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }

.hero__media { position: relative; }
.hero__media img { width: 100%; height: clamp(340px, 46vw, 560px); object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero__media::after { content:""; position:absolute; inset:0; border-radius: var(--radius-lg); box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); pointer-events:none; }
.hero__badge {
  position: absolute; left: -22px; bottom: 30px;
  background: var(--navy-900); color: #fff; border-radius: 16px;
  padding: 1rem 1.25rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .9rem; max-width: 260px;
}
.hero__badge .num { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; color: var(--amber); font-weight: 600; }
.hero__badge .lbl { font-size: .82rem; line-height: 1.35; color: #cdd4e4; }
.hero__badge .lbl b { color: #fff; display:block; font-size: .95rem; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__media img { height: clamp(280px, 60vw, 400px); }
  .hero__badge { left: 12px; bottom: 12px; }
  .hero__lead { max-width: none; }
}

/* ============================================================
   STATS band
   ============================================================ */
.stats { background: var(--navy-900); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__item { padding: clamp(1.8rem,3vw,2.6rem) clamp(1rem,2vw,1.6rem); border-right: 1px solid rgba(255,255,255,.10); }
.stats__item:last-child { border-right: 0; }
.stats__num { font-family: var(--font-display); font-size: clamp(2.2rem, 3.6vw, 3rem); font-weight: 600; color: var(--amber); line-height: 1; }
.stats__lbl { margin-top: .5rem; color: #b9c1d6; font-size: .92rem; letter-spacing: .01em; }
@media (max-width: 720px){ .stats__grid { grid-template-columns: 1fr 1fr; } .stats__item:nth-child(2){border-right:0;} .stats__item:nth-child(1),.stats__item:nth-child(2){border-bottom:1px solid rgba(255,255,255,.10);} }

/* ============================================================
   Section scaffolding
   ============================================================ */
section { position: relative; }
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section__head { max-width: 620px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); color: var(--navy-900); margin-top: 1rem; font-weight: 500; }
.section__head p { margin-top: 1.1rem; color: var(--muted); font-size: 1.08rem; }

/* ------------ Offerings ------------ */
.offer { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.offer__card {
  background: var(--paper); border: 1px solid var(--navy-line); border-radius: var(--radius-lg);
  padding: 2rem 1.8rem 1.9rem; position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.offer__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.offer__card::before { content:""; position:absolute; inset:0 0 auto 0; height:4px; background: linear-gradient(90deg,var(--amber),var(--amber-2)); transform: scaleX(0); transform-origin:left; transition: transform .5s var(--ease); }
.offer__card:hover::before { transform: scaleX(1); }
.offer__icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: var(--amber-soft); color: var(--amber-2); margin-bottom: 1.3rem; }
.offer__icon svg { width: 26px; height: 26px; }
.offer__card h3 { font-size: 1.5rem; color: var(--navy-900); }
.offer__card p { margin-top: .7rem; color: var(--muted); font-size: 1rem; }
.offer__card ul { margin: 1.1rem 0 0; padding: 0; list-style: none; display: grid; gap: .5rem; }
.offer__card li { font-size: .93rem; color: var(--ink); display: flex; gap: .55em; align-items: flex-start; }
.offer__card li::before { content:""; margin-top:.55em; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex: none; }
@media (max-width: 860px){ .offer { grid-template-columns: 1fr; } }

/* ------------ Amenities / Why ------------ */
.why { background: var(--cream-2); }
.amen { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--navy-line); border: 1px solid var(--navy-line); border-radius: var(--radius-lg); overflow: hidden; }
.amen__item { background: var(--cream); padding: 1.5rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; transition: background .3s; }
.amen__item:hover { background: var(--paper); }
.amen__item svg { width: 24px; height: 24px; color: var(--navy); flex: none; margin-top: 2px; }
.amen__item b { display: block; color: var(--navy-900); font-size: 1.02rem; font-weight: 650; }
.amen__item span { color: var(--muted); font-size: .9rem; }
@media (max-width: 860px){ .amen { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .amen { grid-template-columns: 1fr; } }

/* ------------ Gallery ------------ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure::after { content: attr(data-cap); position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem .9rem .7rem; font-size: .8rem; color: #fff; background: linear-gradient(transparent, rgba(16,23,51,.82)); opacity: 0; transform: translateY(6px); transition: .35s var(--ease); font-weight: 500; letter-spacing: .02em; }
.gallery figure:hover::after { opacity: 1; transform: translateY(0); }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }
@media (max-width: 860px){ .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; } .gallery .wide{ grid-column: span 2; } }

/* ------------ Coverage ------------ */
.coverage { background: var(--navy-900); color: #fff; overflow: hidden; }
.coverage .section__head h2 { color: #fff; }
.coverage .section__head p { color: #b9c1d6; }
.units, .coverage__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.unit { background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 1.9rem; }
.unit--feature { background: linear-gradient(180deg, rgba(231,154,60,.12), rgba(255,255,255,.02)); border-color: rgba(231,154,60,.28); }
.unit__tag { display: inline-flex; align-items:center; gap:.5em; font-size:.78rem; letter-spacing:.15em; text-transform: uppercase; font-weight:700; color: var(--amber); }
.unit h3 { font-size: 1.5rem; margin-top: .7rem; color: #fff; }
.unit p { color: #b9c1d6; margin-top: .5rem; font-size: .95rem; }
.unit__points { list-style: none; margin: 1.3rem 0 0; padding: 0; display: grid; gap: .6rem; }
.unit__points li { color: #e7ebf5; font-size: .95rem; display: flex; gap: .6em; align-items: flex-start; }
.unit__points li::before { content:""; margin-top:.5em; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex: none; }
.chips { margin-top: 1.3rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { font-size: .85rem; padding: .45em .9em; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: #e7ebf5; }
@media (max-width: 780px){ .units, .coverage__grid { grid-template-columns: 1fr; } }

/* ------------ FAQ ------------ */
.faq__list { max-width: 780px; margin-inline: auto; display: grid; gap: .8rem; }
.faq__item { background: var(--paper); border: 1px solid var(--navy-line); border-radius: var(--radius); overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq__item[open] { border-color: rgba(231,154,60,.5); box-shadow: var(--shadow-sm); }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.15rem 1.3rem; font-family: var(--font-display); font-size: 1.14rem; color: var(--navy-900); font-weight: 500; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--font-body); font-size: 1.5rem; color: var(--amber-2); flex: none; transition: transform .3s var(--ease); line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 1.3rem 1.25rem; }
.faq__a p { color: var(--muted); font-size: 1rem; }

/* ------------ Brands marquee ------------ */
.brands { text-align: center; }
.brands__label { color: var(--muted); font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; margin-bottom: 2.2rem; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 1rem; width: max-content; animation: scroll 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }
.brand-tile {
  display: grid; place-items: center; min-width: 210px; height: 92px;
  background: var(--paper); border: 1px solid var(--navy-line); border-radius: 14px;
  padding: 0 1.6rem; box-shadow: var(--shadow-sm);
}
.brand-tile span { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; color: var(--navy); letter-spacing: -.01em; text-align:center; line-height: 1.05; }
.brand-tile small { display:block; font-family: var(--font-body); font-weight: 600; font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--amber-2); margin-top: .3em; }

/* ------------ Process ------------ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: step; }
.step { position: relative; padding-top: 2.6rem; }
.step::before { counter-increment: step; content: "0" counter(step); position: absolute; top: 0; left: 0; font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--amber); line-height: 1; opacity: .9; }
.step::after { content:""; position: absolute; top: 1.15rem; left: 3.6rem; right: -.6rem; height: 2px; background: repeating-linear-gradient(90deg, var(--navy-line) 0 6px, transparent 6px 12px); }
.step:last-child::after { display: none; }
.step h3 { font-size: 1.22rem; color: var(--navy-900); }
.step p { margin-top: .5rem; color: var(--muted); font-size: .95rem; }
@media (max-width: 860px){ .steps { grid-template-columns: 1fr 1fr; } .step::after{ display:none; } }
@media (max-width: 480px){ .steps { grid-template-columns: 1fr; } }

/* ------------ CTA / Contact ------------ */
.cta { position: relative; overflow: hidden; }
.cta__box {
  background: var(--navy-900); color: #fff; border-radius: clamp(18px, 3vw, 30px);
  padding: clamp(2.4rem, 5vw, 4.2rem); position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.cta__box::before { content:""; position:absolute; right:-10%; top:-40%; width: 480px; height: 480px; border-radius:50%; background: radial-gradient(circle, rgba(231,154,60,.28), transparent 66%); }
.cta__box h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); color: #fff; position: relative; font-weight: 500; }
.cta__box p { margin-top: 1rem; color: #c3cadd; position: relative; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; position: relative; }
.cta__card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-lg); padding: 1.8rem; position: relative; }
.contact-row { display: flex; align-items: center; gap: .95rem; padding: .95rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-row:last-child { border-bottom: 0; }
.contact-row .ic { width: 42px; height: 42px; border-radius: 11px; background: rgba(231,154,60,.15); display: grid; place-items: center; flex: none; color: var(--amber); }
.contact-row .ic svg { width: 20px; height: 20px; }
.contact-row small { display: block; color: #9aa3ba; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-row a, .contact-row span { color: #fff; font-weight: 600; font-size: 1.02rem; }
.contact-row a:hover { color: var(--amber); }
@media (max-width: 820px){ .cta__box { grid-template-columns: 1fr; } }

/* ------------ Footer ------------ */
.footer { background: var(--navy-900); color: #aeb7cd; padding: clamp(2.5rem,5vw,3.5rem) 0 2rem; border-top: 1px solid rgba(255,255,255,.08); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand img { height: 44px; margin-bottom: 1rem; }
.footer__brand p { max-width: 34ch; font-size: .92rem; }
.footer h4 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; font-weight: 700; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer a:hover { color: var(--amber); }
.footer__bar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1.6rem; font-size: .85rem; flex-wrap: wrap; }
@media (max-width: 720px){ .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }

/* ------------ WhatsApp widget ------------ */
.wa-widget { position: fixed; right: 20px; bottom: 20px; z-index: 60; }
.wa-float { position: relative; border: 0; cursor: pointer; width: 60px; height: 60px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.45); transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 33px; height: 33px; color: #fff; }
.wa-float::after { content:""; position:absolute; inset:0; border-radius:50%; box-shadow:0 0 0 0 rgba(37,211,102,.5); animation: wa-pulse 2.4s var(--ease) infinite; }
@keyframes wa-pulse { 70%{ box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow:0 0 0 0 rgba(37,211,102,0);} }
.wa-float__badge { position:absolute; top:-4px; right:-4px; min-width:20px; height:20px; padding:0 5px; border-radius:10px; background: var(--amber-2); color:#fff; font-size:.72rem; font-weight:700; display:grid; place-items:center; font-family: var(--font-body); box-shadow:0 2px 6px rgba(0,0,0,.2); }

.wa-panel {
  position: absolute; right: 0; bottom: 76px; width: min(340px, calc(100vw - 40px));
  background: var(--paper); border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--navy-line);
  transform: translateY(14px) scale(.96); opacity: 0; transform-origin: bottom right;
  transition: transform .28s var(--ease), opacity .28s var(--ease);
  pointer-events: none;
}
.wa-widget.wa-open .wa-panel { transform: none; opacity: 1; pointer-events: auto; }
.wa-panel__head { display: flex; align-items: center; gap: .75rem; background: #075e54; color: #fff; padding: .95rem 1rem; }
.wa-panel__avatar { position: relative; flex: none; }
.wa-panel__avatar img { width: 42px; height: 42px; border-radius: 50%; background:#fff; padding:3px; object-fit: contain; }
.wa-panel__status { position:absolute; right:0; bottom:2px; width:11px; height:11px; border-radius:50%; background:#25d366; border:2px solid #075e54; }
.wa-panel__head b { display:block; font-family: var(--font-body); font-size: .98rem; }
.wa-panel__head small { color: rgba(255,255,255,.75); font-size: .76rem; }
.wa-panel__close { margin-left:auto; background:none; border:0; color:#fff; font-size:1.5rem; line-height:1; cursor:pointer; opacity:.8; padding:2px 4px; }
.wa-panel__close:hover { opacity:1; }
.wa-panel__body { padding: 1.4rem 1rem 1rem; background:
   linear-gradient(rgba(246,241,231,.9), rgba(246,241,231,.9)),
   radial-gradient(circle at 20% 30%, rgba(37,56,92,.05) 0 2px, transparent 2px) 0 0 / 22px 22px; }
.wa-bubble { background:#fff; border-radius: 3px 14px 14px 14px; padding:.8rem .95rem; font-size:.92rem; color:var(--ink); box-shadow: 0 1px 2px rgba(0,0,0,.08); max-width: 90%; }
.wa-panel__quick { display:grid; gap:.5rem; padding: .4rem 1rem 1rem; }
.wa-panel__quick button { text-align:left; background:var(--cream); border:1px solid var(--navy-line); border-radius:11px; padding:.7rem .85rem; font:inherit; font-size:.9rem; font-weight:600; color:var(--navy); cursor:pointer; transition: background .2s, border-color .2s, transform .2s; }
.wa-panel__quick button:hover { background:#fff; border-color:var(--amber); transform: translateX(2px); }
.wa-panel__cta { display:block; text-align:center; background:#25d366; color:#fff; font-weight:700; padding:.95rem; font-size:.98rem; transition: background .2s; }
.wa-panel__cta:hover { background:#1eb955; }
@media (max-width: 480px){ .wa-widget { right: 14px; bottom: 14px; } }

/* ============================================================
   MOBILE REFINEMENTS — more breathing room, tidier grids
   ============================================================ */
@media (max-width: 620px) {
  .section__head p { font-size: 1rem; }

  /* hero: calmer, roomier */
  .hero { padding: 2rem 0 3rem; }
  .hero__grid { gap: 2rem; }
  .hero h1 { font-size: clamp(2.4rem, 11.5vw, 3.1rem); }
  .hero__lead { font-size: 1.05rem; }
  .hero__actions { gap: .7rem; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }
  .hero__trust { flex-wrap: wrap; gap: .5rem .9rem; margin-top: 1.8rem; }
  .hero__badge { padding: .8rem 1rem; gap: .75rem; max-width: 225px; }
  .hero__badge .num { font-size: 2.1rem; }

  /* stats */
  .stats__item { padding: 1.6rem 1rem; }

  /* offer + amenities: a little more air */
  .offer { gap: 1rem; }
  .offer__card { padding: 1.7rem 1.5rem; }
  .amen__item { padding: 1.3rem 1.25rem; }

  /* gallery: uniform, uncluttered 2-up (reset uneven spans) */
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 128px; gap: .7rem; }
  .gallery .wide { grid-column: span 2; }
  .gallery .tall { grid-row: span 2; }
  .gallery figure::after { font-size: .72rem; }

  /* brands strip: smaller tiles */
  .brand-tile { min-width: 168px; height: 78px; padding: 0 1.2rem; }
  .brand-tile span { font-size: 1.08rem; }

  /* coverage + cta */
  .unit { padding: 1.5rem 1.4rem; }
  .cta__box { padding: 1.9rem 1.5rem; }
  .cta__actions .btn { flex: 1 1 auto; justify-content: center; }

  /* faq */
  .faq__item summary { font-size: 1.05rem; padding: 1rem 1.1rem; }
  .faq__a { padding: 0 1.1rem 1.1rem; }
}

/* very small phones: single-column gallery reads cleanest */
@media (max-width: 430px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 210px; gap: .7rem; }
  .gallery .wide, .gallery .tall { grid-column: auto; grid-row: auto; }
}

/* ------------ reveal animation ------------ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .08s; }
.reveal[data-d="2"]{ transition-delay: .16s; }
.reveal[data-d="3"]{ transition-delay: .24s; }
.reveal[data-d="4"]{ transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}
