/* ==========================================================================
   Universo Brincar, Hotel Infantil
   Folha de estilo do site institucional.
   Paleta quente e lúdica: coral, sol, folha, céu e uva sobre creme.
   ========================================================================== */

:root {
  --coral: #FF6B5B;
  --coral-esc: #E4523F;
  --sol: #FFC24A;
  --folha: #3FAE7D;
  --ceu: #4EA8DE;
  --uva: #7C6BE8;

  --tinta: #2C3A47;
  --corpo: #56636F;
  --suave: #8A96A2;
  --creme: #FFF9F2;
  --creme-2: #FFF1E2;
  --branco: #FFFFFF;
  --linha: #F2E6D8;

  --font-titulo: "Baloo 2", "Trebuchet MS", system-ui, sans-serif;
  --font-corpo: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --wrap: 1180px;
  --raio: 18px;
  --raio-lg: 28px;
  --sombra-sm: 0 2px 6px rgba(44, 58, 71, .06), 0 10px 24px rgba(44, 58, 71, .06);
  --sombra-md: 0 4px 12px rgba(44, 58, 71, .08), 0 22px 48px rgba(44, 58, 71, .1);
  --sombra-coral: 0 10px 26px rgba(255, 107, 91, .35);
  --ease: cubic-bezier(.22, .61, .36, 1);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--branco);
  color: var(--corpo);
  font-family: var(--font-corpo);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
a { color: var(--coral-esc); text-decoration: none; }
a:hover { color: var(--coral); }
h1, h2, h3 { color: var(--tinta); font-family: var(--font-titulo); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
strong { color: var(--tinta); font-weight: 700; }

:focus-visible { outline: 3px solid var(--ceu); outline-offset: 3px; border-radius: 6px; }

.sprite { display: none; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--tinta); color: #fff; padding: 10px 16px; border-radius: 10px; font-size: 14px;
}
.skip-link:focus { left: 12px; color: #fff; }

.anchor { display: block; height: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: 24px; }
.wrap.narrow { max-width: 820px; }

.eyebrow {
  font-family: var(--font-titulo);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 12px;
}

.ico {
  width: 22px; height: 22px; flex: 0 0 auto;
  fill: none; stroke: currentColor; stroke-width: 1.9;
  stroke-linecap: round; stroke-linejoin: round;
}

/* --------------------------------------------------------------- botões -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  border: 2px solid transparent; border-radius: 999px;
  font-family: var(--font-titulo); font-size: 16px; font-weight: 600; line-height: 1;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 11px 20px; font-size: 15px; }
.btn-lg { padding: 17px 32px; font-size: 17px; }
.btn-block { width: 100%; }

.btn-primary { background: var(--coral); color: #fff; box-shadow: var(--sombra-coral); }
.btn-primary:hover { background: var(--coral-esc); color: #fff; }

.btn-outline { background: var(--branco); color: var(--tinta); border-color: var(--linha); box-shadow: var(--sombra-sm); }
.btn-outline:hover { color: var(--coral-esc); border-color: var(--coral); }

/* ------------------------------------------------------------ cabeçalho -- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--linha);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 8px 26px rgba(44, 58, 71, .08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 80px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--tinta); }
.brand:hover { color: var(--tinta); }
.brand-mark { display: block; width: 46px; height: 46px; flex: 0 0 auto; }
.brand-mark svg { display: block; width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-titulo); font-size: 22px; font-weight: 700; color: var(--tinta); }
.brand-text small { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--coral); }

.nav { display: flex; align-items: center; gap: 24px; }
.nav > a:not(.btn) { font-size: 16px; font-weight: 600; color: var(--corpo); position: relative; }
.nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 3px;
  border-radius: 3px; background: var(--sol); transition: right .25s var(--ease);
}
.nav > a:not(.btn):hover, .nav > a.is-active:not(.btn) { color: var(--tinta); }
.nav > a:not(.btn):hover::after, .nav > a.is-active:not(.btn)::after { right: 0; }
.nav-cta { margin-left: 4px; }

.nav-toggle {
  display: none; width: 48px; height: 44px; padding: 0;
  border: 2px solid var(--linha); border-radius: 14px; background: var(--branco); cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2.5px; margin: 4px auto; background: var(--tinta); border-radius: 3px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ----------------------------------------------------------------- hero -- */
.hero { position: relative; background: var(--creme); padding: clamp(48px, 7vw, 86px) 0 clamp(70px, 9vw, 110px); overflow: hidden; }
.hero-blobs { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; }
.blob-1 { width: 320px; height: 320px; background: #FFE2D6; top: -90px; right: -60px; }
.blob-2 { width: 220px; height: 220px; background: #DFF3E8; bottom: 40px; left: -80px; }
.blob-3 { width: 140px; height: 140px; background: #FFF0C9; top: 44%; left: 42%; opacity: .45; }

.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.hero h1 { font-size: clamp(34px, 5.2vw, 58px); line-height: 1.1; margin-bottom: 20px; text-wrap: balance; }
.marker {
  color: var(--coral-esc);
  padding: 0 4px;
  background-image: linear-gradient(rgba(255, 194, 74, .5), rgba(255, 194, 74, .5));
  background-repeat: no-repeat;
  background-size: 100% .34em;
  background-position: 0 calc(100% - .34em);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero .lede { font-size: clamp(17px, 1.9vw, 19.5px); max-width: 56ch; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-chips li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 700; color: var(--tinta);
  background: var(--branco); border: 2px solid var(--linha); border-radius: 999px; padding: 8px 16px;
}
.hero-chips .ico { width: 18px; height: 18px; color: var(--coral); }

.hero-art svg { display: block; width: 100%; height: auto; }

.wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.wave svg { width: 100%; height: clamp(40px, 6vw, 90px); display: block; }
.wave-top { position: relative; bottom: auto; margin-bottom: -1px; }

/* --------------------------------------------------------------- seções -- */
.section { padding: clamp(58px, 8vw, 100px) 0; position: relative; }
.section-cream { background: var(--creme); }
.section-dark { background: var(--tinta); color: #C9D3DC; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: var(--sol); }
.section-dark .section-sub { color: #B7C2CC; }

.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 52px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.9vw, 42px); margin-bottom: 14px; text-wrap: balance; }
.section-sub { font-size: 17.5px; margin: 0; }

/* --------------------------------------------------------------- cards -- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.card {
  background: var(--branco); border: 2px solid var(--linha); border-radius: var(--raio-lg);
  padding: 30px 28px; box-shadow: var(--sombra-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sombra-md); }
.card h3 { font-size: 23px; margin: 18px 0 8px; }
.card p { font-size: 16px; margin: 0; }

.card-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 20px; color: #fff;
}
.card-ico .ico { width: 28px; height: 28px; }
.card-coral .card-ico { background: var(--coral); }
.card-sol .card-ico { background: var(--sol); color: #6B4A06; }
.card-folha .card-ico { background: var(--folha); }
.card-ceu .card-ico { background: var(--ceu); }
.card-uva .card-ico { background: var(--uva); }
.card-noite .card-ico { background: var(--tinta); }
.card-coral:hover { border-color: var(--coral); }
.card-sol:hover { border-color: var(--sol); }
.card-folha:hover { border-color: var(--folha); }
.card-ceu:hover { border-color: var(--ceu); }
.card-uva:hover { border-color: var(--uva); }
.card-noite:hover { border-color: var(--tinta); }

/* --------------------------------------------------------- diferenciais -- */
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 5vw, 66px); align-items: center; }
.split-art svg { display: block; width: 100%; height: auto; }
.split-art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 28px;
  border: 6px solid #fff;
  box-shadow: 0 22px 50px rgba(44, 58, 71, .18);
}
.split-text h2 { font-size: clamp(27px, 3.6vw, 40px); }

.feats { display: grid; gap: 22px; margin-top: 28px; }
.feats li { display: flex; gap: 16px; align-items: flex-start; }
.feats h3 { font-size: 20px; margin: 0 0 4px; }
.feats p { font-size: 16px; margin: 0; }

.feat-ico, .space-ico, .contact-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 16px; flex: 0 0 auto; color: #fff;
}
.coral { background: var(--coral); }
.sol { background: var(--sol); color: #6B4A06; }
.folha { background: var(--folha); }
.ceu { background: var(--ceu); }
.uva { background: var(--uva); }

/* --------------------------------------------------------- nosso espaço -- */
.space-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); gap: 22px; }
.space-card {
  background: var(--creme); border-radius: var(--raio-lg); padding: 28px 24px;
  border: 2px solid transparent; transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.space-card:hover { transform: translateY(-4px); border-color: var(--linha); }
.space-card h3 { font-size: 20px; margin: 16px 0 6px; }
.space-card p { font-size: 15.5px; margin: 0; }

.space-note { text-align: center; margin: 36px 0 18px; font-size: 18px; font-family: var(--font-titulo); color: var(--tinta); }
.center-cta { text-align: center; }

/* --------------------------------------------------------------- passos -- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; }
.step { background: rgba(255, 255, 255, .06); border: 2px solid rgba(255, 255, 255, .12); border-radius: var(--raio-lg); padding: 28px 26px; }
.step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--sol); color: #6B4A06;
  font-family: var(--font-titulo); font-size: 22px; font-weight: 700; margin-bottom: 16px;
}
.step h3 { font-size: 21px; margin-bottom: 8px; }
.step p { font-size: 16px; margin: 0; color: #B7C2CC; }

/* ------------------------------------------------------------------ faq -- */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--branco); border: 2px solid var(--linha); border-radius: var(--raio);
  overflow: hidden; transition: border-color .2s var(--ease);
}
.faq details[open] { border-color: var(--sol); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 58px 20px 24px; position: relative;
  font-family: var(--font-titulo); font-size: 19px; font-weight: 600; color: var(--tinta);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 26px; top: 50%; width: 11px; height: 11px; margin-top: -8px;
  border-right: 3px solid var(--coral); border-bottom: 3px solid var(--coral);
  border-radius: 2px; transform: rotate(45deg); transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(225deg); margin-top: -3px; }
.faq-body { padding: 0 24px 22px; }
.faq-body p { margin: 0; font-size: 16.5px; }

/* -------------------------------------------------------------- contato -- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.contact-text h2 { font-size: clamp(28px, 3.8vw, 40px); }
.contact-text > p { font-size: 17.5px; max-width: 44ch; }

.contact-list { display: grid; gap: 16px; margin-top: 30px; }
.contact-list li { display: flex; gap: 14px; align-items: center; }
.contact-info { display: flex; flex-direction: column; font-size: 16px; }
.contact-info strong { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--suave); }

.contact-form {
  background: var(--creme); border: 2px solid var(--linha); border-radius: var(--raio-lg);
  padding: clamp(24px, 3.2vw, 36px); box-shadow: var(--sombra-sm);
}
.contact-form h3 { font-size: 25px; margin-bottom: 4px; }
.form-intro { font-size: 15.5px; margin-bottom: 22px; }

.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 14px; font-weight: 700; color: var(--tinta); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-corpo); font-size: 16px; color: var(--tinta);
  background: var(--branco); border: 2px solid var(--linha); border-radius: 14px; padding: 12px 15px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: #A9B4BF; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ceu); box-shadow: 0 0 0 4px rgba(78, 168, 222, .16);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255, 107, 91, .14); }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%2356636F' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px;
}

.check { display: flex; gap: 11px; align-items: flex-start; margin: 6px 0 20px; font-size: 14px; line-height: 1.5; }
.check input { width: 19px; height: 19px; margin: 2px 0 0; accent-color: var(--coral); flex: 0 0 auto; }
.check a { text-decoration: underline; text-underline-offset: 2px; }

.form-help { margin: 14px 0 0; font-size: 14px; color: var(--suave); text-align: center; }
.form-status { margin: 12px 0 0; font-size: 15px; font-weight: 700; text-align: center; min-height: 1px; }
.form-status.is-error { color: var(--coral-esc); }
.form-status.is-ok { color: #21855C; }

/* -------------------------------------------------------------- rodapé -- */
.site-footer { background: var(--tinta); color: #97A4B0; padding: 0 0 24px; }
.site-footer .wave-top { background: var(--branco); }
.site-footer .wave-top svg { height: clamp(36px, 5vw, 70px); }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 36px;
  padding: clamp(20px, 4vw, 40px) 24px 32px; border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-brand p { margin: 0; font-size: 15px; line-height: 1.7; }
.footer-brand strong { color: #fff; }
.site-footer h2 { font-family: var(--font-titulo); font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sol); margin-bottom: 14px; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-contact a { color: #ACBAC6; font-size: 15.5px; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-bottom { padding-top: 22px; }
.footer-bottom .copy { margin: 0; font-size: 13.5px; color: #74838F; }

/* --------------------------------------------------------- botão fixo -- */
.float-cta {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 22px; border-radius: 999px;
  background: var(--coral); color: #fff;
  font-family: var(--font-titulo); font-size: 16px; font-weight: 600;
  box-shadow: var(--sombra-coral);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s var(--ease), background .2s var(--ease);
}
.float-cta.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.float-cta:hover { background: var(--coral-esc); color: #fff; }

/* ------------------------------------------------------------- animação -- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
/* usado quando a aba está em segundo plano, onde o navegador congela as
   transições e o conteúdo ficaria invisível */
.sem-animacao .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

/* -------------------------------------------------- páginas internas -- */
.page-hero { background: var(--creme); padding: clamp(44px, 6vw, 74px) 0 clamp(34px, 4vw, 54px); }
.page-hero h1 { font-size: clamp(30px, 4.4vw, 44px); margin-bottom: 10px; }
.page-hero p { margin: 0; font-size: 17px; max-width: 58ch; }

.legal { padding: clamp(44px, 6vw, 70px) 0 clamp(52px, 7vw, 84px); }
.legal h2 { font-size: clamp(22px, 2.8vw, 28px); margin-top: 38px; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { font-size: 16.5px; }
.legal ul { display: grid; gap: 9px; margin: 0 0 20px; }
.legal ul li { position: relative; padding-left: 24px; }
.legal ul li::before { content: ""; position: absolute; left: 3px; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--sol); }
.legal .legal-box { background: var(--creme); border: 2px solid var(--linha); border-radius: var(--raio); padding: 22px 24px; margin: 26px 0; }
.legal .legal-box p:last-child { margin-bottom: 0; }
.legal .legal-date { font-size: 14px; color: var(--suave); }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 15.5px; font-weight: 700; margin-bottom: 24px; }
.back-link .ico { width: 18px; height: 18px; transform: rotate(180deg); }

.erro-page { text-align: center; padding: clamp(70px, 11vw, 130px) 0; }
.erro-page .codigo { font-family: var(--font-titulo); font-size: clamp(70px, 14vw, 130px); line-height: 1; color: var(--coral); margin: 0 0 8px; }
.erro-page h1 { font-size: clamp(26px, 4vw, 36px); }
.erro-page p { max-width: 44ch; margin-inline: auto; }
.erro-page .btn { margin-top: 14px; }

/* ---------------------------------------------------- foto do topo -- */
.hero-art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(44, 58, 71, .18);
  border: 6px solid #fff;
}

/* o nome da marca agora aparece sozinho, sem o quadrado de logo ao lado */
.brand-text strong { letter-spacing: 0; }

/* ---------------------------------------------------------- responsivo -- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { max-width: 380px; margin-inline: auto; order: -1; }
  .split { grid-template-columns: 1fr; }
  .split-art { max-width: 320px; margin-inline: auto; }
  .contact { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  html { scroll-padding-top: 80px; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 68px 0 auto; flex-direction: column; align-items: stretch; gap: 0;
    padding: 14px 24px 26px; background: var(--branco); border-bottom: 2px solid var(--linha);
    box-shadow: 0 20px 40px rgba(44, 58, 71, .12);
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s var(--ease);
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav > a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--linha); font-size: 17px; }
  .nav > a:not(.btn)::after { display: none; }
  .nav-cta { margin: 18px 0 0; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 18px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero-actions .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .float-cta span { display: none; }
  .float-cta { padding: 16px; right: 16px; bottom: 16px; }
  .faq summary { font-size: 17.5px; padding-right: 50px; }
  .feats li { gap: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .float-cta, .contact-form-wrap, .nav-toggle, .wave { display: none !important; }
  body { color: #000; background: #fff; }
  .section-dark, .site-footer { background: #fff !important; color: #000 !important; }
  .section-dark h2, .section-dark h3 { color: #000 !important; }
}
