/* ===== TOKENS ===== */
:root{
  --red: #d81e2c;
  --red-dark: #a3141d;
  --red-light: #ff5a62;
  --gold: #f2a93b;
  --dark: #1a0d0e;
  --dark-2: #241416;
  --bg: #ffffff;
  --bg-2: #f7f5f4;
  --bg-3: #f4f4f5;
  --border: #e9e5e4;
  --text: #201b1b;
  --text-dim: #6b6260;
  --whatsapp: #25d366;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(20,10,10,.08);
  --container: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Poppins', system-ui, -apple-system, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ margin:0 0 .5em; line-height:1.2; }
p{ margin:0 0 1em; }
ul{ margin:0; padding:0; list-style:none; }

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 26px;
  border-radius:50px;
  font-weight:600;
  font-size:15px;
  border:none;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{
  background:linear-gradient(135deg, var(--red), var(--red-dark));
  color:#fff;
  box-shadow:0 8px 24px rgba(216,30,44,.3);
}
.btn-whatsapp{
  background:var(--whatsapp);
  color:#fff;
  box-shadow:0 8px 24px rgba(37,211,102,.3);
}
.btn-call{
  background:#fff;
  color:var(--text);
  border:1px solid var(--border);
  padding:10px 18px;
  font-size:14px;
}
.btn-outline{
  background:transparent; color:var(--red); border:1.5px solid var(--red);
}
.btn-block{ width:100%; }

/* ===== HEADER ===== */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 20px;
  gap:16px;
}
.brand{ display:flex; align-items:center; }
.brand-logo{ height:88px; width:auto; display:block; }
.brand-city{ font-size:11px; letter-spacing:2px; color:var(--text-dim); text-transform:uppercase; }
.brand-name{
  font-size:24px; font-weight:900; letter-spacing:.2px;
  background:linear-gradient(135deg, var(--red), var(--red-dark));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.brand-sub{ font-size:10px; color:var(--text-dim); letter-spacing:1px; }

.main-nav{ display:flex; gap:20px; }
.main-nav a{
  font-size:14px; font-weight:500; color:var(--text-dim);
  transition:color .2s; white-space:nowrap;
}
.main-nav a:hover, .main-nav a.active{ color:var(--red); }

.header-actions{ display:flex; align-items:center; gap:14px; }
.header-call svg{ color:var(--red); }

.hamburger{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:36px; height:36px; background:none; border:none; cursor:pointer;
}
.hamburger span{ display:block; width:22px; height:2px; background:var(--text); border-radius:2px; }

/* ===== HERO ===== */
.hero{
  position:relative;
  min-height:600px;
  display:flex; align-items:center;
  overflow:hidden;
}
.hero-bg-wrap{ position:absolute; inset:0; overflow:hidden; }
.hero-bg-img{
  width:100%; height:100%; object-fit:cover;
  filter:brightness(.8) saturate(1.05);
  transform:scale(1.05);
}
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(15,15,16,.7) 5%, rgba(15,15,16,.52) 45%, rgba(15,15,16,.14) 100%);
}
.hero-inner{ position:relative; z-index:2; padding:70px 20px; }
.hero-text{ max-width:640px; }
.eyebrow{
  display:inline-block; color:#ff5a62; font-weight:600;
  font-style:italic; margin-bottom:14px; font-size:17px;
}
.hero-text h1{
  color:#fff;
  font-size:clamp(30px, 5.2vw, 50px);
  font-weight:900;
  letter-spacing:.3px;
  text-shadow:0 2px 16px rgba(0,0,0,.55);
}
.hero-text h1 span{ color:var(--red-light); }
.hero-desc{ color:#f0f0f0; font-size:16.5px; max-width:540px; text-shadow:0 1px 8px rgba(0,0,0,.5); }
.eyebrow{ text-shadow:0 1px 8px rgba(0,0,0,.5); }

.hero-badges{
  display:flex; align-items:center; gap:24px;
  margin:22px 0 28px;
  flex-wrap:wrap;
}
.hero-feature-list li{
  display:flex; align-items:center; gap:10px;
  font-weight:600; font-size:14.5px; margin-bottom:8px; color:#fff;
}
.hero-feature-list .ico{
  display:inline-flex; align-items:center; justify-content:center;
  width:26px; height:26px; border-radius:50%;
  background:#fff; color:var(--red); font-size:13px; flex-shrink:0;
}

.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; }

/* ===== TRUST STRIP ===== */
.trust-strip{
  background:var(--bg-2);
  border-bottom:1px solid var(--border);
  padding:22px 0;
}
.trust-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
.trust-item{ display:flex; align-items:center; gap:12px; }
.trust-ico{ display:inline-flex; align-items:center; justify-content:center; color:var(--red); flex-shrink:0; }
.trust-item strong{ display:block; font-size:14.5px; }
.trust-item small{ color:var(--text-dim); font-size:12.5px; }

/* ===== SECTIONS ===== */
.section{ padding:76px 0; }
.section.alt{ background:var(--bg-2); }
.section-head{ text-align:center; max-width:640px; margin:0 auto 46px; }
.section-head.light h2{ color:#fff; }
.section-tag{
  display:inline-block; color:var(--red); font-weight:700;
  font-size:13px; letter-spacing:2px; text-transform:uppercase; margin-bottom:10px;
}
.section-head h2{ font-size:clamp(26px, 4vw, 36px); font-weight:800; }
.section-head h2 span{ color:var(--red); }
.section-head p{ color:var(--text-dim); margin:0; }

/* ===== SERVICE CARDS ===== */
.card-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.service-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  border-color:var(--red);
  box-shadow:var(--shadow);
}
.service-img{ aspect-ratio:16/10; overflow:hidden; background:var(--bg-2); }
.service-img img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.service-card:hover .service-img img{ transform:scale(1.08); }
.service-card h3{ font-size:18px; padding:18px 20px 0; }
.service-card p{ padding:8px 20px 20px; color:var(--text-dim); font-size:14px; }
.service-card .card-link{ display:block; padding:0 20px 20px; font-weight:700; color:var(--red); font-size:13.5px; }
.service-card.wide{ grid-column:span 3; }
.service-card.wide .service-img{ aspect-ratio:auto; height:220px; }

/* ===== PROCESS / TRUST QUOTE (dark accent block) ===== */
.process{ background:var(--dark); }
.process-grid{ display:grid; grid-template-columns:2.2fr 1fr; gap:20px; align-items:stretch; }
.process-photos{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.process-photos img{ width:100%; height:100%; object-fit:cover; border-radius:10px; aspect-ratio:3/4; }
.process-photos .icon-tile{
  width:100%; height:100%; aspect-ratio:3/4;
  background:linear-gradient(160deg, var(--dark-2), var(--dark));
  border:1px solid rgba(255,255,255,.1); color:var(--red-light);
  flex-direction:column; gap:8px;
}
.process-photos .icon-tile .icon{ display:flex; }
.process-photos .icon-tile .label{ font-size:12px; font-weight:600; color:#d9d9d9; }
.process-quote{
  background:linear-gradient(160deg, var(--dark-2), var(--dark));
  border:1px solid rgba(255,255,255,.1); border-radius:10px;
  padding:26px; text-align:center;
  display:flex; flex-direction:column; justify-content:center; gap:2px;
}
.process-quote p{ margin:0; color:#d9d9d9; font-weight:600; font-size:14px; }
.process-quote h3{
  margin:2px 0 10px; font-size:28px; font-weight:900;
  color:var(--red-light);
}

/* ===== WHY US ===== */
.why-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
.why-card{
  background:#fff; border:1px solid var(--border);
  border-radius:var(--radius); padding:28px 22px; text-align:center;
  transition:border-color .25s, transform .25s, box-shadow .25s;
}
.why-card:hover{ border-color:var(--red); transform:translateY(-4px); box-shadow:var(--shadow); }
.why-ico{ display:flex; align-items:center; justify-content:center; color:var(--red); margin:0 auto 12px; }
.why-card h4{ font-size:16px; }
.why-card p{ color:var(--text-dim); font-size:13.5px; margin:0; }

/* ===== ICON TILES (placeholder visuals until real photos are added) ===== */
.icon-tile{
  width:100%; height:180px; border-radius:10px; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; font-size:52px;
  background:linear-gradient(135deg, var(--bg-2), #fff); color:var(--red);
}
.service-img.icon-tile-wrap{
  display:flex; align-items:center; justify-content:center; font-size:64px;
  background:linear-gradient(135deg, var(--bg-2), #fff); color:var(--red);
}

/* ===== VIDEO ===== */
.video-wrap{
  max-width:900px; margin:0 auto; border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--border); background:#000; box-shadow:var(--shadow);
}
.video-wrap video{ width:100%; display:block; aspect-ratio:16/9; object-fit:cover; }

/* ===== GALLERY ===== */
.gallery-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:14px;
}
.gallery-grid img{
  width:100%; height:180px; object-fit:cover; border-radius:10px;
  border:1px solid var(--border);
  transition:transform .3s ease, filter .3s ease;
}
.gallery-grid img:hover{ transform:scale(1.03); }

/* ===== CTA BANNER ===== */
.cta-banner{
  background:linear-gradient(135deg, var(--red), var(--red-dark));
  padding:56px 0;
  text-align:center;
}
.cta-banner h2{
  color:#fff; font-size:clamp(22px,3.4vw,32px); font-weight:800;
  max-width:820px; margin:0 auto 26px;
}
.cta-banner .brandmark{ font-weight:900; }
.cta-banner .btn-primary{ background:#fff; color:var(--red); box-shadow:0 8px 24px rgba(0,0,0,.2); }

/* ===== CONTACT ===== */
.contact-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:start;
}
.contact-info p{ color:var(--text-dim); }
.contact-methods{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:24px; }
.contact-method{
  display:flex; align-items:center; gap:12px;
  background:#fff; border:1px solid var(--border);
  border-radius:12px; padding:16px;
  transition:border-color .2s, transform .2s;
}
a.contact-method:hover{ border-color:var(--red); transform:translateY(-3px); }
.contact-method .ico{ display:inline-flex; align-items:center; justify-content:center; color:var(--red); flex-shrink:0; }
.contact-method strong{ display:block; font-size:14.5px; }
.contact-method small{ color:var(--text-dim); font-size:12px; }

/* ===== FOOTER ===== */
.site-footer{ background:var(--dark); border-top:1px solid rgba(255,255,255,.08); padding:44px 0 26px; color:#e7dcdb; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:30px; margin-bottom:30px; }
.footer-col h4{ color:var(--red-light); font-size:14.5px; margin-bottom:14px; }
.footer-col ul{ display:flex; flex-direction:column; gap:9px; }
.footer-col a{ color:#c4c4c4; font-size:13.5px; transition:color .2s; }
.footer-col a:hover{ color:#fff; }
.footer-col p{ color:#c4c4c4; font-size:13.5px; }
.footer-brand{ display:flex; flex-direction:column; gap:10px; margin-bottom:12px; }
.footer-brand .brand-name{
  font-size:22px; font-weight:900;
  background:linear-gradient(135deg, #ffffff, #ff5a62);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08); padding-top:20px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px;
}
.site-footer .footer-bottom p{ margin:0; color:#9a9a9a; font-size:12.5px; }

/* ===== MOBILE BOTTOM BAR ===== */
.mobile-bar{
  display:none;
  position:fixed; bottom:0; left:0; right:0; z-index:200;
  background:#fff; border-top:1px solid var(--border);
  box-shadow:0 -6px 20px rgba(0,0,0,.08);
  padding:10px 14px; gap:10px;
  padding-bottom:calc(10px + env(safe-area-inset-bottom));
}
.mobile-bar-btn{
  flex:1; display:flex; align-items:center; justify-content:center; gap:8px;
  padding:13px; border-radius:50px; font-weight:600; font-size:14.5px;
}
.mobile-bar-btn.call{ background:var(--red); color:#fff; }
.mobile-bar-btn.whatsapp{ background:var(--whatsapp); color:#fff; }

/* ===== BREADCRUMB ===== */
.breadcrumb{ padding:16px 0 0; }
.breadcrumb ol{ display:flex; flex-wrap:wrap; gap:6px; font-size:12.5px; color:var(--text-dim); }
.breadcrumb li:not(:last-child)::after{ content:'/'; margin-left:6px; color:var(--border); }
.breadcrumb a{ color:var(--text-dim); }
.breadcrumb a:hover{ color:var(--red); }
.breadcrumb li:last-child{ color:var(--text); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero{
  background:linear-gradient(160deg, var(--dark-2), var(--dark));
  padding:36px 0 44px;
}
.page-hero h1{ color:#fff; font-size:clamp(26px,4vw,38px); font-weight:900; margin-bottom:8px; }
.page-hero p{ color:#d6d6d6; max-width:680px; margin:0; }

/* ===== BADGES / K3 ===== */
.badge-row{ display:flex; flex-wrap:wrap; gap:10px; margin:18px 0; }
.pill-badge{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.35);
  color:#fff; font-weight:700; font-size:13px;
  padding:8px 16px; border-radius:50px;
}
.pill-badge.on-light{
  background:#fff; border:1px solid rgba(216,30,44,.35); color:var(--red-dark); box-shadow:0 2px 8px rgba(20,10,10,.05);
}
.k3-box{
  display:flex; align-items:center; gap:18px;
  background:#fff; border:1px solid var(--border);
  border-left:4px solid var(--red); border-radius:var(--radius); box-shadow:var(--shadow);
  padding:22px 26px; margin:24px 0;
}
.k3-box .k3-ico{ display:flex; align-items:center; justify-content:center; color:var(--red); flex-shrink:0; }
.k3-box h3{ margin:0 0 4px; font-size:17px; }
.k3-box p{ margin:0; color:var(--text-dim); font-size:14px; }

/* ===== DISTRICT / SERVICE LINK GRID ===== */
.link-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:14px;
}
.link-card{
  background:#fff; border:1px solid var(--border);
  border-radius:12px; padding:16px 18px;
  font-weight:600; font-size:14.5px;
  display:flex; align-items:center; justify-content:space-between; gap:8px;
  transition:border-color .2s, transform .2s, color .2s, box-shadow .2s;
}
.link-card:hover{ border-color:var(--red); transform:translateY(-3px); color:var(--red); box-shadow:var(--shadow); }
.link-card .arrow{ color:var(--red); flex-shrink:0; }

/* ===== FAQ ===== */
.faq-list{ max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item{
  background:#fff; border:1px solid var(--border);
  border-radius:12px; overflow:hidden;
}
.faq-item summary{
  cursor:pointer; list-style:none; padding:18px 22px;
  font-weight:600; font-size:15.5px; display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:'+'; font-size:22px; color:var(--red); flex-shrink:0; transition:transform .2s;
}
.faq-item[open] summary::after{ transform:rotate(45deg); }
.faq-item .faq-answer{ padding:0 22px 20px; color:var(--text-dim); font-size:14.5px; margin:0; }

/* ===== REVIEWS ===== */
.review-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.review-card{
  background:#fff; border:1px solid var(--border);
  border-radius:var(--radius); padding:24px;
}
.review-stars{ color:var(--gold); font-size:15px; letter-spacing:2px; margin-bottom:10px; }
.review-card p{ color:var(--text-dim); font-size:14.5px; font-style:italic; }
.review-name{ font-weight:700; font-size:14px; color:var(--text); margin-top:14px; }
.review-loc{ font-size:12.5px; color:var(--text-dim); }
.review-note{ text-align:center; font-size:12px; color:var(--text-dim); margin-top:22px; }

/* ===== ARTICLE / DISTRICT CONTENT ===== */
.article-block{ max-width:820px; margin:0 auto; }
.article-block h2{ font-size:24px; margin-top:36px; }
.article-block p{ color:var(--text-dim); font-size:15.5px; }
.article-block ul{ color:var(--text-dim); font-size:15.5px; padding-left:0; margin:0 0 20px; }
.article-block ul li{ position:relative; padding-left:26px; margin-bottom:10px; }
.article-block ul li::before{
  content:'✓'; position:absolute; left:0; color:var(--red); font-weight:700;
}

/* ===== SERVICE FEATURE PHOTO ===== */
.feature-photo{ border-radius:var(--radius); overflow:hidden; border:1px solid var(--border); max-width:820px; margin:0 auto; }
.feature-photo img{ width:100%; height:100%; object-fit:cover; max-height:460px; }

/* ===== DISTRICT PHOTO PAIR ===== */
.photo-pair{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin:28px 0; }
.photo-pair img{
  width:100%; height:220px; object-fit:cover; border-radius:var(--radius);
  border:1px solid var(--border);
}
@media (max-width:600px){
  .photo-pair{ grid-template-columns:1fr; }
  .photo-pair img{ height:200px; }
}

/* ===== MINI FAQ / REVIEW NOTE ===== */
.mini-review-note{ text-align:center; font-size:12px; color:var(--text-dim); margin-top:18px; }

/* ===== NAP / MAP ===== */
.nap-map{ border-radius:var(--radius); overflow:hidden; border:1px solid var(--border); }
.nap-map iframe{ width:100%; height:340px; border:0; display:block; }

/* ===== CTA STRIP (inline whatsapp) ===== */
.inline-cta{
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  background:#fff; border:1px solid var(--border); border-left:4px solid var(--red);
  border-radius:var(--radius); padding:26px 30px; margin:34px 0; box-shadow:var(--shadow);
}
.inline-cta h3{ margin:0 0 4px; font-size:18px; }
.inline-cta p{ margin:0; color:var(--text-dim); font-size:13.5px; }

/* ===== LEGAL PAGES ===== */
.legal-updated{ color:var(--text-dim); font-size:13px; margin-bottom:28px; }

/* ===== FOOTER LEGAL ROW ===== */
.footer-legal{ display:flex; gap:16px; flex-wrap:wrap; }
.footer-legal a{ color:#9a9a9a; font-size:12.5px; }
.footer-legal a:hover{ color:#fff; }

/* ===== COOKIE CONSENT BAR ===== */
.cookie-bar{
  display:none;
  position:fixed; left:16px; right:16px; bottom:16px; z-index:300;
  background:var(--dark); color:#e6e6e6; border-radius:12px;
  padding:16px 20px; align-items:center; gap:16px; flex-wrap:wrap;
  box-shadow:0 10px 30px rgba(0,0,0,.3);
}
.cookie-bar.show{ display:flex; }
.cookie-bar p{ margin:0; font-size:13px; flex:1; min-width:220px; color:#e6e6e6; }
.cookie-bar a{ color:var(--red-light); text-decoration:underline; }
.cookie-actions{ display:flex; gap:10px; flex-shrink:0; }
.cookie-actions button{
  border:none; border-radius:50px; padding:10px 18px; font-weight:600; font-size:13px; cursor:pointer;
  font-family:inherit;
}
.cookie-accept{ background:var(--red); color:#fff; }
.cookie-reject{ background:transparent; color:#e6e6e6; border:1px solid rgba(255,255,255,.3) !important; }

@media (max-width: 980px){
  .cookie-bar{ bottom:calc(76px + env(safe-area-inset-bottom)); left:12px; right:12px; padding:14px 16px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  .main-nav{
    position:fixed; top:64px; left:0; right:0; bottom:0;
    background:#fff; flex-direction:column; gap:0;
    padding:10px 20px; transform:translateX(100%);
    transition:transform .3s ease; overflow-y:auto;
  }
  .main-nav.open{ transform:translateX(0); }
  .main-nav a{
    padding:16px 0; border-bottom:1px solid var(--border); font-size:17px;
  }
  .hamburger{ display:flex; }
  .header-call span{ display:none; }

  .trust-grid{ grid-template-columns:repeat(2,1fr); }
  .card-grid{ grid-template-columns:repeat(2,1fr); }
  .service-card.wide{ grid-column:span 2; }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-grid{ grid-template-columns:repeat(3,1fr); }
  .process-grid{ grid-template-columns:1fr; }
  .process-photos img{ aspect-ratio:1/1; }
  .contact-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .link-grid{ grid-template-columns:repeat(3,1fr); }
  .review-grid{ grid-template-columns:1fr 1fr; }

  body{ padding-bottom:70px; }
  .mobile-bar{ display:flex; }
}

@media (max-width: 600px){
  .brand-logo{ height:68px; }
  .hero{ min-height:auto; }
  .hero-inner{ padding:56px 20px 46px; }
  .hero-badges{ flex-direction:column; align-items:flex-start; gap:16px; }
  .hero-cta .btn{ flex:1; }

  .trust-grid{ grid-template-columns:1fr; }
  .card-grid{ grid-template-columns:1fr; }
  .service-card.wide{ grid-column:span 1; }
  .why-grid{ grid-template-columns:1fr; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .contact-methods{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:22px; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .link-grid{ grid-template-columns:repeat(2,1fr); }
  .review-grid{ grid-template-columns:1fr; }
  .k3-box{ flex-direction:column; text-align:center; }
  .inline-cta{ flex-direction:column; text-align:center; }
  .nap-map iframe{ height:260px; }
}
