/* =========================================================================
   Prefeitura Municipal de Mantenópolis — Portal Oficial (provisório)
   Identidade: brasão do Município (verde-pinheiro + vermelho heráldico).
   Cores derivadas em OKLCH (ver DESIGN.md); contraste verificado ≥ AA.
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Marca (verde) */
  --brand:        oklch(0.50 0.095 162);
  --brand-strong: oklch(0.435 0.082 162);
  --brand-ink:    oklch(0.36 0.065 162);
  --brand-deep:   oklch(0.28 0.05 162);
  --brand-050:    oklch(0.985 0.012 162);
  --brand-100:    oklch(0.955 0.028 162);
  --brand-200:    oklch(0.905 0.045 162);
  --mint:         oklch(0.86 0.10 165);

  /* Acento (vermelho heráldico) */
  --accent:        oklch(0.52 0.18 27);
  --accent-strong: oklch(0.50 0.19 27);
  --accent-050:    oklch(0.96 0.03 27);

  /* Neutros levemente esverdeados */
  --ink:      oklch(0.26 0.018 165);
  --ink-soft: oklch(0.44 0.012 165);
  --muted:    oklch(0.55 0.012 165);
  --border:   oklch(0.90 0.012 165);
  --surface:  oklch(0.975 0.008 165);
  --surface-2:oklch(0.955 0.010 165);
  --bg:       oklch(0.992 0.004 165);
  --white:    #ffffff;

  /* Tipografia */
  --font-sans: 'Public Sans', system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Spectral', ui-serif, Georgia, 'Times New Roman', serif;

  /* Raios */
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 16px;
  --r-pill: 999px;

  /* Sombras (verde-profundo tingido) */
  --shadow-sm: 0 1px 2px rgba(13, 48, 33, 0.06), 0 1px 3px rgba(13, 48, 33, 0.08);
  --shadow-md: 0 6px 16px -8px rgba(13, 48, 33, 0.20);
  --shadow-lg: 0 16px 34px -14px rgba(13, 48, 33, 0.32);

  /* Movimento */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 140ms;
  --t: 230ms;

  /* Camadas */
  --z-header: 100;
  --z-menu: 90;
  --z-skip: 200;

  /* Layout */
  --wrap-max: 1160px;
  --wrap-pad: clamp(1rem, 5vw, 2.5rem);
  --header-h: 72px;
}

/* Fallback hex p/ navegadores sem OKLCH */
@supports not (color: oklch(0 0 0)) {
  :root {
    --brand: #227452; --brand-strong: #1B5F43; --brand-ink: #164832; --brand-deep: #0D3021;
    --brand-050: #F3FDF8; --brand-100: #E0F6EA; --brand-200: #C6EAD7; --mint: #A6E6C6;
    --accent: #C62A2A; --accent-strong: #B7191C; --accent-050: #FBEBEA;
    --ink: #1B2A23; --ink-soft: #46564E; --muted: #5C6B63; --border: #D7E1DC;
    --surface: #F4F8F6; --surface-2: #EDF3F0; --bg: #FBFEFD;
  }
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.965rem + 0.18vw, 1.0625rem);
  line-height: 1.62;
  color: var(--ink);
  background: var(--bg);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--brand-strong); text-decoration: none; }
a:hover { text-decoration: underline; }

button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.018em;
  color: var(--ink);
  text-wrap: balance;
}
p { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Utilitários ---------- */
.wrap { width: 100%; max-width: var(--wrap-max); margin-inline: auto; padding-inline: var(--wrap-pad); }

.sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: var(--z-skip);
  background: var(--brand-deep); color: #fff;
  padding: 12px 18px; border-radius: var(--r-sm); font-weight: 600;
  transform: translateY(-150%); transition: transform var(--t) var(--ease);
}
.skip-link:focus { transform: translateY(0); text-decoration: none; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: 0.72rem 1.3rem; border-radius: var(--r-sm);
  font-weight: 600; font-size: 0.975rem; line-height: 1;
  border: 1.5px solid transparent; text-align: center;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease),
              color var(--t) var(--ease), transform var(--t-fast) var(--ease),
              box-shadow var(--t) var(--ease);
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 0.55rem 0.95rem; font-size: 0.9rem; }
.btn--block { width: 100%; }

.btn--solid { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn--solid:hover { background: var(--brand-strong); border-color: var(--brand-strong); }

.btn--light { background: #fff; color: var(--brand-strong); box-shadow: var(--shadow-md); }
.btn--light:hover { background: var(--brand-050); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--ghost { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.55); }
.btn--ghost:hover { background: rgba(255,255,255,0.14); border-color: #fff; }

/* ---------- Barra superior ---------- */
.utbar { background: var(--brand-deep); color: rgba(255,255,255,0.88); }
.utbar__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem 1rem; flex-wrap: wrap; min-height: 40px; padding-block: 5px;
  font-size: 0.8rem;
}
.utbar__loc { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 500; }
.utbar__pin { color: var(--mint); flex: none; }

.a11y { display: inline-flex; align-items: center; gap: 0.35rem; }
.a11y__btn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  border: 1px solid rgba(255,255,255,0.32); border-radius: var(--r-sm);
  color: #fff; padding: 0.25rem 0.5rem; font-size: 0.78rem; font-weight: 600;
  line-height: 1; transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.a11y__btn:hover { background: rgba(255,255,255,0.14); }
.a11y__btn--lg { font-size: 0.95rem; }
.a11y__btn--contrast { padding-inline: 0.6rem; }
.a11y__btn[aria-pressed="true"] { background: #fff; color: var(--brand-deep); border-color: #fff; }
.a11y :focus-visible { outline-color: #fff; outline-offset: 2px; }

/* ---------- Cabeçalho ---------- */
.masthead {
  position: sticky; top: 0; z-index: var(--z-header);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t) var(--ease);
}
.masthead.is-elevated { box-shadow: var(--shadow-md); }
.masthead__in {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; }
.brand:hover { text-decoration: none; }
.brand__logo { height: clamp(38px, 2.4rem + 1.2vw, 50px); width: auto; }

.nav { display: flex; align-items: center; }
.nav__toggle {
  display: none; align-items: center; gap: 0.45rem;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  padding: 0.5rem 0.8rem; font-weight: 600; color: var(--ink);
}
.nav__toggle:hover { border-color: var(--brand); color: var(--brand-strong); }

.nav__menu { display: flex; align-items: center; gap: 0.4rem; list-style: none; padding: 0; }
.nav__menu > li > a:not(.btn) {
  display: inline-block; padding: 0.5rem 0.85rem; border-radius: var(--r-sm);
  color: var(--ink-soft); font-weight: 600; font-size: 0.97rem;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nav__menu > li > a:not(.btn):hover { color: var(--brand-strong); background: var(--brand-050); text-decoration: none; }
.nav__cta-item { margin-left: 0.35rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  color: #fff;
  background:
    radial-gradient(120% 140% at 88% 8%, rgba(255,255,255,0.10), transparent 55%),
    linear-gradient(158deg, var(--brand-ink), var(--brand-deep) 78%);
  padding-block: clamp(2.75rem, 1.8rem + 4.5vw, 5.25rem);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(0deg, rgba(0,0,0,0.10), transparent 30%);
}
.hero__in {
  display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.hero__content { max-width: 38rem; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.28);
  color: #fff; padding: 0.4rem 0.85rem; border-radius: var(--r-pill);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em;
}
.hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--mint);
  box-shadow: 0 0 0 0 rgba(166,230,198,0.7); animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(166,230,198,0.55); }
  70%, 100% { box-shadow: 0 0 0 7px rgba(166,230,198,0); }
}

.hero__title {
  margin-top: 1.1rem;
  font-size: clamp(2.2rem, 1.55rem + 3.1vw, 3.6rem);
  letter-spacing: -0.022em; color: #fff; line-height: 1.06;
}
.hero__title-city { color: var(--mint); }
.hero__lead {
  margin-top: 1.1rem; max-width: 40ch;
  font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.18rem);
  color: rgba(255,255,255,0.90); line-height: 1.65;
}
.hero__actions { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero__note {
  margin-top: 1.6rem; font-size: 0.85rem; color: rgba(255,255,255,0.74);
  letter-spacing: 0.01em;
}

.hero__seal { display: flex; justify-content: center; }
.hero__seal-disc {
  display: grid; place-items: center;
  width: clamp(160px, 16vw + 6rem, 248px); aspect-ratio: 1;
  background: radial-gradient(circle at 50% 42%, #ffffff, var(--brand-050) 78%);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.45), 0 0 0 10px rgba(255,255,255,0.07),
              var(--shadow-lg);
}
.hero__seal-disc img { width: 66%; height: auto; }

/* ---------- Cabeçalhos de seção ---------- */
.section-head { max-width: 48rem; margin-bottom: clamp(1.75rem, 1rem + 2.5vw, 2.75rem); }
.section-title { font-size: clamp(1.6rem, 1.25rem + 1.65vw, 2.3rem); }
.section-sub {
  margin-top: 0.7rem; color: var(--ink-soft);
  font-size: 1.05rem; max-width: 60ch;
}

/* ---------- Serviços ---------- */
.services { padding-block: clamp(3rem, 2rem + 4.5vw, 5.5rem); }

.services__featured {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.9rem, 0.5rem + 1.4vw, 1.4rem); margin-bottom: clamp(0.9rem, 0.5rem + 1.4vw, 1.4rem);
}
.services__grid {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: clamp(0.9rem, 0.5rem + 1.4vw, 1.4rem);
}

.svc {
  position: relative; display: flex; gap: 1rem; height: 100%;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.25rem; color: var(--ink);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease),
              border-color var(--t) var(--ease);
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-200); text-decoration: none; }
.svc:hover .svc__arrow { transform: translate(2px, -2px); }
.svc:hover .svc__title { color: var(--brand-strong); }

.svc__icon {
  flex: none; display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 11px;
  background: var(--brand-050); color: var(--brand); border: 1px solid var(--brand-100);
}
.svc__icon svg { stroke-linecap: round; }
.svc__body { display: flex; flex-direction: column; gap: 0.25rem; }
.svc__title { font-weight: 700; font-size: 1.06rem; color: var(--ink); transition: color var(--t-fast) var(--ease); letter-spacing: -0.005em; }
.svc__desc { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.5; }
.svc__arrow { color: var(--muted); transition: transform var(--t) var(--ease), color var(--t-fast) var(--ease); }

/* cartões compactos: seta no canto */
.services__grid .svc { padding-right: 2.6rem; }
.services__grid .svc__go { position: absolute; top: 1.1rem; right: 1rem; }
.services__grid .svc:hover .svc__go .svc__arrow { color: var(--brand); }

/* cartões em destaque */
.svc--feat { flex-direction: column; padding: clamp(1.4rem, 1rem + 1vw, 1.9rem); box-shadow: var(--shadow-md); }
.svc--feat .svc__icon { width: 56px; height: 56px; border-radius: 13px; }
.svc--feat .svc__title { font-size: 1.22rem; }
.svc--feat .svc__desc { font-size: 0.98rem; }
.svc--feat .svc__go {
  margin-top: auto; padding-top: 0.4rem; display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--brand-strong); font-weight: 700; font-size: 0.97rem;
}

/* ---------- Transição ---------- */
.transition {
  padding-block: clamp(3rem, 2rem + 4.5vw, 5.5rem);
  background: linear-gradient(180deg, var(--brand-050), var(--bg));
  border-block: 1px solid var(--border);
}
.transition__head { text-align: center; max-width: 44rem; margin-inline: auto; }
.transition__head .section-sub { margin-inline: auto; }

.chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.35rem 0.8rem; border-radius: var(--r-pill);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.01em;
}
.chip--accent { background: var(--accent-050); color: var(--accent-strong); }
.chip__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.steps {
  list-style: none; padding: 0; margin-top: clamp(1.75rem, 1rem + 2.5vw, 2.75rem);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 0.6rem + 1.4vw, 1.5rem);
}
.step {
  position: relative; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.6rem 1.4rem 1.4rem;
}
.step__num {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: var(--brand); color: #fff; font-family: var(--font-serif); font-weight: 700;
  font-size: 1.15rem; margin-bottom: 0.9rem;
}
.step__title { font-family: var(--font-sans); font-weight: 700; font-size: 1.08rem; color: var(--ink); letter-spacing: -0.005em; }
.step__text { margin-top: 0.45rem; color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Contato ---------- */
.contact { padding-block: clamp(3rem, 2rem + 4.5vw, 5.5rem); }
.contact__in {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.75rem, 1rem + 3vw, 3.5rem); align-items: start;
}

.contact__list { margin-top: 1.6rem; }
.contact__row {
  display: grid; grid-template-columns: 8.5rem 1fr; gap: 1rem;
  padding: 0.95rem 0; border-top: 1px solid var(--border);
}
.contact__row:last-child { border-bottom: 1px solid var(--border); }
.contact__row dt { color: var(--muted); font-weight: 600; font-size: 0.92rem; }
.contact__row dd { color: var(--ink); font-weight: 500; min-width: 0; overflow-wrap: anywhere; }
.contact__row dd a { color: var(--brand-strong); font-weight: 600; }

.contact__side { display: flex; flex-direction: column; gap: 1.25rem; }
.contact__card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; }
.contact__card-title { font-family: var(--font-sans); font-weight: 700; font-size: 1.1rem; }
.contact__card-text { margin: 0.4rem 0 1.1rem; color: var(--ink-soft); font-size: 0.95rem; }

.social__label { color: var(--muted); font-weight: 600; font-size: 0.92rem; margin-bottom: 0.7rem; }
.social__links { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.social__btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1rem; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  color: var(--ink); font-weight: 600; font-size: 0.95rem;
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.social__btn:hover { border-color: var(--brand); color: var(--brand-strong); background: var(--brand-050); text-decoration: none; }

/* ---------- Rodapé ---------- */
.footer { background: var(--brand-deep); color: rgba(255,255,255,0.78); }
.footer__in {
  display: grid; grid-template-columns: 1.3fr 2fr; gap: clamp(1.75rem, 1rem + 3vw, 3.5rem);
  padding-block: clamp(2.5rem, 1.8rem + 3vw, 4rem);
}
.footer__org { font-family: var(--font-serif); font-weight: 700; font-size: 1.35rem; color: #fff; }
.footer__muted { color: rgba(255,255,255,0.66); font-size: 0.92rem; margin-top: 0.3rem; }
.footer__addr { margin-top: 0.8rem; line-height: 1.6; }

.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer__h {
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.8);
  margin-bottom: 0.9rem;
}
.footer__col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.footer__col a, .footer__linkbtn {
  color: rgba(255,255,255,0.78); font-size: 0.94rem; font-weight: 500;
  transition: color var(--t-fast) var(--ease); text-align: left; padding: 0;
}
.footer__col a:hover, .footer__linkbtn:hover { color: #fff; text-decoration: underline; }
.footer__linkbtn { font-family: inherit; }

.footer__bar { border-top: 1px solid rgba(255,255,255,0.14); }
.footer__bar-in {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem 1.5rem;
  flex-wrap: wrap; padding-block: 1.1rem; font-size: 0.82rem; color: rgba(255,255,255,0.7);
}
.footer__note { color: rgba(255,255,255,0.55); }
.footer :focus-visible { outline-color: #fff; }

/* ---------- Modo alto contraste ---------- */
html[data-contrast="high"] {
  --bg: #ffffff; --surface: #ffffff; --surface-2: #ffffff;
  --ink: #0a130e; --ink-soft: #122319; --muted: #1b2c22; --border: #0d3021;
  --brand: #0b3a28; --brand-strong: #093020; --brand-ink: #0a2418; --brand-deep: #06160e;
  --brand-050: #eef6f1; --brand-100: #dcebe2; --brand-200: #c2d9cc;
  --accent: #9c0f12; --accent-strong: #7e0c0f; --accent-050: #f7e7e6;
}
html[data-contrast="high"] a { text-decoration: underline; }
html[data-contrast="high"] .svc,
html[data-contrast="high"] .step,
html[data-contrast="high"] .contact__card,
html[data-contrast="high"] .svc__icon { border-width: 2px; }
html[data-contrast="high"] .btn { border-width: 2px; }
html[data-contrast="high"] .masthead { border-bottom-width: 2px; }
html[data-contrast="high"] :focus-visible { outline-width: 4px; }

/* ---------- Escala de fonte (acessibilidade) ---------- */
html[data-fontscale="lg"] { font-size: 112.5%; }
html[data-fontscale="xl"] { font-size: 125%; }

/* ---------- Responsivo ---------- */
@media (max-width: 860px) {
  .nav__toggle { display: inline-flex; }
  .nav { position: relative; }
  .nav__menu {
    position: absolute; top: calc(100% + 10px); right: 0; z-index: var(--z-menu);
    flex-direction: column; align-items: stretch; gap: 0.15rem;
    background: var(--bg); border: 1px solid var(--border); border-radius: var(--r);
    box-shadow: var(--shadow-lg); padding: 0.5rem; min-width: 230px;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility var(--t);
  }
  .nav.is-open .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__menu > li > a:not(.btn) { display: block; }
  .nav__cta-item { margin: 0.35rem 0 0; }
  .nav__cta-item .btn { width: 100%; }
}

@media (min-width: 561px) and (max-width: 920px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .hero__in { grid-template-columns: 1fr; }
  .hero__seal { grid-row: 1; justify-content: flex-start; }
  .hero__seal-disc { width: clamp(120px, 34vw, 168px); }
  .contact__in { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .services__featured { grid-template-columns: 1fr; }
  .footer__in { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero__seal { display: none; }
  .contact__row { grid-template-columns: 1fr; gap: 0.25rem; }
  .contact__row dt { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }
  .footer__nav { grid-template-columns: 1fr 1fr; gap: 1.25rem 1rem; }
  .utbar__loc { display: none; }
  .utbar__in { justify-content: center; }
}

@media (max-width: 380px) {
  .footer__nav { grid-template-columns: 1fr; }
}

/* ---------- Movimento ---------- */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }

  .hero__content > * { animation: rise 0.7s var(--ease) both; }
  .hero__badge { animation-delay: 0.02s; }
  .hero__title { animation-delay: 0.10s; }
  .hero__lead { animation-delay: 0.18s; }
  .hero__actions { animation-delay: 0.26s; }
  .hero__note { animation-delay: 0.34s; }
  .hero__seal-disc { animation: sealIn 0.9s var(--ease) both 0.15s; }

  .svc { animation: rise 0.6s var(--ease) both; }
  .services__featured .svc:nth-child(2) { animation-delay: 0.06s; }
  .services__grid li:nth-child(1) .svc { animation-delay: 0.04s; }
  .services__grid li:nth-child(2) .svc { animation-delay: 0.10s; }
  .services__grid li:nth-child(3) .svc { animation-delay: 0.16s; }
  .services__grid li:nth-child(4) .svc { animation-delay: 0.22s; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes sealIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero__badge-dot { animation: none; }
}
