/* ============================================================
   Cremação Paz — folha de estilo compartilhada
   Estética: serena, digna, clean acolhedora
   ============================================================ */

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

:root {
  /* paleta */
  --ivory:      #F6F2EB;
  --cream:      #FBF9F4;
  --paper:      #FFFFFF;
  --charcoal:   #2A2824;
  --ink:        #1C1B18;
  --taupe:      #6E665A;
  --taupe-soft: #938A7B;
  --sage:       #7E8C74;
  --sage-deep:  #4C5847;
  --sage-mist:  #E7EBE1;
  --gold:       #B49664;
  --gold-soft:  #CBB287;
  --line:       rgba(42, 40, 36, 0.12);
  --line-soft:  rgba(42, 40, 36, 0.07);

  /* tipografia */
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;

  /* medidas */
  --wrap: 1180px;
  --radius: 4px;
  --shadow-soft: 0 24px 60px -30px rgba(42, 40, 36, 0.35);
  --shadow-card: 0 20px 44px -28px rgba(42, 40, 36, 0.4);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
  letter-spacing: 0.005em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.serif { font-family: var(--serif); }

/* ---------- utilitários ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--sage-deep);
  color: var(--cream);
  box-shadow: 0 14px 30px -14px rgba(76, 88, 71, 0.7);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -16px rgba(76, 88, 71, 0.75); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--sage); color: var(--sage-deep); transform: translateY(-3px); }
.btn-wa { background: #4A7A57; color: #fff; box-shadow: 0 14px 30px -14px rgba(74,122,87,.65); }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -16px rgba(74,122,87,.7); }

/* ---------- topbar ---------- */
.topbar {
  background: var(--sage-deep);
  color: var(--sage-mist);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 40px;
  padding-top: 8px; padding-bottom: 8px;
}
.topbar a { display: inline-flex; align-items: center; gap: 7px; transition: color .25s; }
.topbar a:hover { color: #fff; }
.topbar .tb-left { display: inline-flex; align-items: center; gap: 9px; opacity: .92; }
.topbar .tb-right { display: inline-flex; align-items: center; gap: 22px; }
.topbar svg { width: 15px; height: 15px; opacity: .85; }
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 0 rgba(203,178,135,.7);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(203,178,135,.6); }
  70% { box-shadow: 0 0 0 9px rgba(203,178,135,0); }
  100% { box-shadow: 0 0 0 0 rgba(203,178,135,0); }
}

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 242, 235, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(251, 249, 244, 0.94);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 10px 30px -24px rgba(42,40,36,.5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 6px 16px -8px rgba(76, 88, 71, 0.65);
}
.brand-mark svg { width: 44px; height: 44px; display: block; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name b { font-family: var(--serif); font-size: 1.32rem; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
.brand-name span { font-size: 0.64rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--taupe-soft); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 9px 16px;
  border-radius: 999px;
  position: relative;
  transition: color .25s, background .25s;
}
.nav-links a:hover { color: var(--sage-deep); background: rgba(126,140,116,.1); }
.nav-links a.active { color: var(--sage-deep); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 2px;
  height: 2px; border-radius: 2px; background: var(--gold);
}
.nav-cta { display: inline-flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* mobile drawer */
@media (max-width: 940px) {
  /* backdrop-filter cria containing block p/ position:fixed —
     removê-lo no mobile faz o drawer ancorar na viewport, não no header */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(246, 242, 235, 0.97); }
  .site-header.scrolled { background: var(--cream); }
  .nav-links, .nav-cta .btn-text { display: none; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 6px; padding: 100px 26px 40px;
    background: var(--cream);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,.4);
    transform: translateX(100%); transition: transform .4s var(--ease);
    z-index: 90;
  }
  .nav-links.open { transform: translateX(0); display: flex; }
  .nav-links a { font-size: 1.15rem; padding: 14px 18px; font-family: var(--serif); }
  .nav-links a.active::after { display: none; }
  body.nav-open { overflow: hidden; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(28,27,24,.4); opacity: 0; pointer-events: none; transition: opacity .4s; z-index: 80; }
  .nav-scrim.open { opacity: 1; pointer-events: auto; }
}

/* ---------- hero ---------- */
.hero { position: relative; padding: 88px 0 96px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.15rem);
  font-weight: 300;
  margin: 22px 0 24px;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--sage-deep); }
.hero-lead { font-size: 1.16rem; color: var(--taupe); max-width: 30em; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-visual { position: relative; }
.hero-visual .frame {
  border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}
.hero-visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 8px; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.hero-badge {
  position: absolute; left: -26px; bottom: 40px;
  background: var(--paper);
  border-radius: 6px;
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 14px;
  max-width: 250px;
}
.hero-badge .ico { width: 40px; height: 40px; border-radius: 50%; background: var(--sage-mist); display: grid; place-items: center; color: var(--sage-deep); flex-shrink: 0; }
.hero-badge .ico svg { width: 20px; height: 20px; }
.hero-badge b { font-family: var(--serif); font-size: 1.05rem; display: block; color: var(--ink); }
.hero-badge span { font-size: 0.8rem; color: var(--taupe); }

.hero-bg-orb {
  position: absolute; z-index: 0; border-radius: 50%;
  filter: blur(60px); opacity: .5;
}
.hero-bg-orb.a { width: 460px; height: 460px; background: radial-gradient(circle, rgba(203,178,135,.4), transparent 70%); top: -120px; right: -80px; }
.hero-bg-orb.b { width: 380px; height: 380px; background: radial-gradient(circle, rgba(126,140,116,.35), transparent 70%); bottom: -140px; left: -100px; }

/* trust strip */
.trust {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--cream);
}
.trust .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px 40px; padding-top: 26px; padding-bottom: 26px; }
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item svg { width: 24px; height: 24px; color: var(--sage); flex-shrink: 0; }
.trust-item b { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); display: block; line-height: 1.15; }
.trust-item span { font-size: 0.82rem; color: var(--taupe); }

/* ---------- section base ---------- */
.section { padding: 96px 0; }
.section.tint { background: var(--cream); }
.section.sage { background: var(--sage-deep); color: var(--sage-mist); }
.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin: 18px 0 16px;
}
.section-head p { color: var(--taupe); font-size: 1.08rem; }
.section.sage .section-head h2 { color: #fff; }
.section.sage .section-head p { color: var(--sage-mist); opacity: .85; }
.section.sage .eyebrow { color: var(--gold-soft); }

/* ---------- serviços grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 34px 30px 32px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--sage));
  transition: width .5s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.svc-card:hover::before { width: 100%; }
.svc-ico {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--sage-mist);
  display: grid; place-items: center; color: var(--sage-deep);
  margin-bottom: 22px;
  transition: background .4s, color .4s;
}
.svc-card:hover .svc-ico { background: var(--sage-deep); color: var(--gold-soft); }
.svc-ico svg { width: 27px; height: 27px; }
.svc-card h3 { font-size: 1.4rem; margin-bottom: 10px; font-weight: 500; }
.svc-card p { color: var(--taupe); font-size: 0.98rem; }
.svc-card .more { margin-top: 18px; font-size: 0.86rem; font-weight: 600; color: var(--sage-deep); letter-spacing: .02em; display: inline-flex; gap: 6px; align-items: center; }
.svc-card .more svg { width: 15px; height: 15px; transition: transform .3s; }
.svc-card:hover .more svg { transform: translateX(4px); }

/* ---------- split / sobre ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: 8px; box-shadow: var(--shadow-soft); width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.split-media .tag {
  position: absolute; right: -18px; top: -18px;
  background: var(--gold); color: #fff;
  font-family: var(--serif); font-size: 1.5rem;
  width: 96px; height: 96px; border-radius: 50%;
  display: grid; place-items: center; text-align: center; line-height: 1;
  box-shadow: var(--shadow-card);
  padding: 10px;
}
.split-media .tag span { display: block; font-family: var(--sans); font-size: 0.6rem; letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; font-weight: 600; }
.split h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 300; margin: 16px 0 20px; }
.split p { color: var(--taupe); margin-bottom: 16px; }
.feature-list { list-style: none; margin: 24px 0 30px; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--charcoal); }
.feature-list svg { width: 22px; height: 22px; color: var(--sage); flex-shrink: 0; margin-top: 2px; }
.feature-list b { font-weight: 600; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 20px; }
.step .n {
  font-family: var(--serif); font-size: 2.6rem; color: var(--gold);
  line-height: 1; opacity: .55; font-weight: 300;
}
.step h4 { font-size: 1.22rem; margin: 12px 0 8px; font-weight: 500; }
.section.sage .step h4 { color: #fff; }
.step p { font-size: 0.95rem; color: var(--taupe); }
.section.sage .step p { color: var(--sage-mist); opacity: .82; }
.step::after {
  content: ''; position: absolute; top: 34px; left: 60px; right: -12px; height: 1px;
  background: linear-gradient(90deg, rgba(180,150,100,.5), transparent);
}
.step:last-child::after { display: none; }

/* ---------- depoimentos ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: 8px; padding: 30px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.stars { display: flex; gap: 3px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; }
.quote p { font-family: var(--serif); font-style: italic; font-size: 1.12rem; color: var(--charcoal); line-height: 1.55; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--sage-mist); color: var(--sage-deep); display: grid; place-items: center; font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }
.quote .who b { font-size: 0.95rem; font-weight: 600; display: block; }
.quote .who span { font-size: 0.8rem; color: var(--taupe); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--sage-deep); color: #fff; border-radius: 0; }
.cta-band .wrap { padding-top: 76px; padding-bottom: 76px; position: relative; z-index: 2; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; margin-bottom: 16px; }
.cta-band p { color: var(--sage-mist); opacity: .9; max-width: 34em; margin: 0 auto 30px; font-size: 1.1rem; }
.cta-band .hero-actions { justify-content: center; }
.cta-band .orb { position: absolute; border-radius: 50%; filter: blur(70px); }
.cta-band .orb.a { width: 400px; height: 400px; background: rgba(180,150,100,.35); top: -160px; left: 10%; }
.cta-band .orb.b { width: 340px; height: 340px; background: rgba(255,255,255,.08); bottom: -160px; right: 8%; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #C9C3B6; padding: 70px 0 30px; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.1); }
.site-footer .brand-name b { color: #fff; }
.site-footer .brand-name span { color: var(--taupe-soft); }
.footer-about p { margin-top: 18px; color: #A59E90; max-width: 30em; }
.footer-col h5 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 18px; font-weight: 600; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a, .footer-col li { color: #B4AD9F; transition: color .25s; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-soft); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 24px; color: #8B8578; font-size: 0.85rem; }
.footer-bottom a { color: #A59E90; }

/* ---------- whatsapp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px -8px rgba(37,211,102,.6);
  transition: transform .3s var(--ease);
  animation: wa-in .5s .6s both;
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse-wa 2.6s infinite;
}
@keyframes pulse-wa { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5);} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }
@keyframes wa-in { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: scale(1); } }

/* ---------- page hero (interior) ---------- */
.page-hero { padding: 64px 0 56px; background: var(--cream); border-bottom: 1px solid var(--line-soft); position: relative; overflow: hidden; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .crumb { font-size: 0.82rem; color: var(--taupe-soft); margin-bottom: 16px; letter-spacing: .02em; }
.page-hero .crumb a:hover { color: var(--sage-deep); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 300; margin-bottom: 14px; }
.page-hero p { color: var(--taupe); font-size: 1.12rem; max-width: 40em; }
.page-hero .hero-bg-orb.a { top: -160px; right: -60px; opacity: .4; }

/* ---------- contato ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-cards { display: grid; gap: 18px; }
.contact-card {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: 8px; padding: 26px 26px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.contact-card .ico { width: 50px; height: 50px; border-radius: 12px; background: var(--sage-mist); color: var(--sage-deep); display: grid; place-items: center; flex-shrink: 0; }
.contact-card .ico svg { width: 24px; height: 24px; }
.contact-card h4 { font-size: 1.18rem; margin-bottom: 5px; font-weight: 500; }
.contact-card p, .contact-card a { color: var(--taupe); font-size: 0.98rem; }
.contact-card a.big { display: block; font-family: var(--serif); font-size: 1.35rem; color: var(--ink); margin-top: 3px; transition: color .25s; }
.contact-card a.big:hover { color: var(--sage-deep); }
.map-wrap { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-soft); min-height: 460px; height: 100%; border: 1px solid var(--line-soft); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; filter: grayscale(.2) contrast(1.02); }

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

/* ---------- responsivo ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .hero-badge { left: 12px; }
  .svc-grid, .quotes { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split.rev .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .topbar .tb-right { gap: 14px; }
  .topbar .tb-hide { display: none; }
  .svc-grid, .quotes, .steps, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 54px 0 70px; }
  .split-media .tag { width: 80px; height: 80px; font-size: 1.2rem; }
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}
