:root {
  --brand: #008835;
  --brand-text: #006b2a;
  --brand-bright: #58d98e;
  --ink: #102019;
  --ink-soft: #4f5d56;
  --paper: #f7f4ee;
  --paper-deep: #ece7de;
  --forest: #03170f;
  --forest-soft: #08271b;
  --white: #fff;
  --line: rgba(16, 32, 25, .14);
  --line-light: rgba(255, 255, 255, .14);
  --max: 1320px;
  --radius: 24px;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --display: clamp(56px, 7vw, 104px);
  --section-title: clamp(42px, 5.2vw, 72px);
  --sub-title: clamp(28px, 3.2vw, 44px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins Fiobras", Arial, sans-serif;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 3px solid #00b84f;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, .9);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 16px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--brand-text);
  font-size: 12px;
  font-weight: 600;
  transform: translateY(-180%);
  transition: transform 160ms var(--ease-out);
}
.skip-link:focus { transform: none; }

.wrap { width: min(calc(100% - 80px), var(--max)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--brand-text);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--brand-bright); }
.families .eyebrow,
.applications .eyebrow { color: var(--brand-text); }
.display {
  margin: 0;
  font-size: var(--section-title);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .98;
}
.lede {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 300;
  line-height: 1.75;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 92px;
  color: var(--white);
  background: rgba(2, 8, 5, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  backdrop-filter: blur(18px);
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}
.site-header.is-light {
  color: var(--ink);
  background: rgba(250, 248, 244, .96);
  border-bottom-color: rgba(20, 40, 29, .09);
}
.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand);
  opacity: 0;
  transition: opacity 220ms ease;
}
.site-header.is-light::after { opacity: .72; }
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { position: relative; display: block; width: 142px; line-height: 0; }
.brand img { width: 100%; height: auto; transition: opacity 180ms ease; }
.brand .logo-color { position: absolute; inset: 0; opacity: 0; }
.site-header.is-light .brand .logo-white { opacity: 0; }
.site-header.is-light .brand .logo-color { opacity: 1; }
.main-nav { display: flex; align-items: center; gap: clamp(17px, 2vw, 30px); }
.main-nav a {
  position: relative;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.site-header:not(.is-light) .main-nav a:not(.budget) { display: none; }
.main-nav a:not(.budget)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}
.main-nav a[aria-current="page"]::after,
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.budget,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 140ms var(--ease-out);
}
.budget:active,
.button:active { transform: scale(.97); }
.budget.primary,
.button.primary {
  color: var(--white);
  border-color: var(--brand);
  background: var(--brand);
  box-shadow: 0 10px 28px rgba(0, 136, 53, .2);
}
.site-header.is-light .budget.primary { color: var(--white); }
.button.secondary { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.04); }
.menu-toggle {
  display: none;
  position: relative;
  z-index: 2;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 50%;
  width: 16px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translateX(-50%);
  transition: transform 180ms var(--ease-out), opacity 140ms ease;
}
.menu-toggle span { top: 50%; }
.menu-toggle span::before { top: -5px; }
.menu-toggle span::after { top: 5px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }
@media (hover: hover) and (pointer: fine) {
  .budget.primary:hover,
  .button.primary:hover { background: #00a442; border-color: #00a442; transform: translateY(-2px); }
  .button.secondary:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
}

.internal-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: #020805;
}
.internal-hero-media { position: absolute; inset: 0; }
.internal-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 48%;
  filter: saturate(.88) contrast(1.06) brightness(.76);
}
.internal-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(1, 8, 4, .99) 0%, rgba(1, 8, 4, .94) 29%, rgba(1, 8, 4, .54) 57%, rgba(1, 8, 4, .14) 100%),
    linear-gradient(180deg, rgba(1, 8, 4, .18) 0%, transparent 46%, rgba(1, 8, 4, .62) 100%);
}
.internal-hero-content {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 76px 0 92px;
}
.internal-hero-copy { width: 100%; min-width: 0; max-width: 730px; }
.internal-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: var(--display);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .92;
}
.internal-hero h1 span { display: block; color: var(--brand-bright); }
.internal-hero h1 .mobile-break { display: none; }
.internal-hero .hero-lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 300;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 32px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: rgba(255,255,255,.72);
}
.hero-note strong { color: var(--white); font-size: 28px; font-weight: 400; letter-spacing: -.04em; }
.hero-note span { font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }

.route-strip { color: var(--white); background: var(--forest-soft); border-top: 1px solid rgba(88,217,142,.36); }
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.route-item { min-height: 164px; padding: 36px 38px; border-right: 1px solid var(--line-light); }
.route-item:last-child { border-right: 0; }
.route-index { display: block; margin-bottom: 20px; color: var(--brand-bright); font-size: 10px; font-weight: 600; letter-spacing: .14em; }
.route-item h2 { margin: 0 0 9px; font-size: 20px; font-weight: 400; letter-spacing: -.025em; }
.route-item p { max-width: 330px; margin: 0; color: rgba(255,255,255,.58); font-size: 12px; font-weight: 300; line-height: 1.65; }

.families { padding: 124px 0 132px; scroll-margin-top: 92px; background: var(--paper); }
.section-intro { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(280px, .62fr); gap: 90px; align-items: end; margin-bottom: 66px; }
.section-intro .lede { justify-self: end; }
.family-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.family-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.22);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease-out);
}
.family-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--family-color, #0d6844);
  transform: scaleX(.24);
  transform-origin: left;
  transition: transform 320ms var(--ease-out);
}
.family-visual { position: relative; aspect-ratio: 1 / .9; overflow: hidden; background: var(--paper-deep); border-bottom: 1px solid var(--line); }
.family-visual::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(2,8,5,.06), transparent 52%, rgba(2,8,5,.12)); pointer-events: none; }
.family-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88) contrast(1.02); transition: transform 700ms var(--ease-out), filter 400ms ease; }
.family-number {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  min-width: 34px;
  min-height: 28px;
  display: grid;
  place-items: center;
  padding: 0 9px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  background: rgba(2,8,5,.56);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
}
.family-copy { min-height: 168px; display: flex; flex: 1; flex-direction: column; justify-content: flex-end; padding: 24px 24px 28px; }
.family-card h3 { margin: 0 0 16px; font-size: clamp(24px, 2.2vw, 32px); font-weight: 400; letter-spacing: -.045em; line-height: 1; }
.family-card p { margin: 0; color: var(--ink-soft); font-size: 11px; font-weight: 300; line-height: 1.6; }
@media (hover: hover) and (pointer: fine) {
  .family-card:hover { border-color: rgba(16,32,25,.34); box-shadow: 0 20px 48px rgba(14,32,23,.1); transform: translateY(-5px); }
  .family-card:hover::after { transform: scaleX(1); }
  .family-card:hover .family-visual img { filter: saturate(1) contrast(1.03); transform: scale(1.045); }
}
.family-foot { display: flex; justify-content: space-between; gap: 30px; align-items: center; margin-top: 38px; }
.family-foot p { max-width: 680px; margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.65; }
.button.dark { color: var(--ink); border-color: rgba(16,32,25,.32); background: transparent; }
@media (hover: hover) and (pointer: fine) { .button.dark:hover { color: var(--white); background: var(--ink); transform: translateY(-2px); } }

.color-proof { padding: 116px 0 126px; color: var(--white); background: var(--forest); }
.color-proof .section-intro { align-items: start; }
.color-proof .lede { color: rgba(255,255,255,.58); }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.proof-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #06130d;
}
.proof-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.74) brightness(.7); transition: transform 700ms var(--ease-out), filter 500ms ease; }
.proof-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 34%, rgba(2,9,5,.94) 100%); }
.proof-copy { position: absolute; z-index: 2; right: 34px; bottom: 32px; left: 34px; }
.proof-copy small { display: block; margin-bottom: 10px; color: var(--brand-bright); font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.proof-copy h3 { max-width: 480px; margin: 0; font-size: clamp(28px, 3vw, 43px); font-weight: 400; letter-spacing: -.045em; line-height: 1.04; }
.proof-copy p { max-width: 500px; margin: 13px 0 0; color: rgba(255,255,255,.6); font-size: 12px; font-weight: 300; line-height: 1.65; }
@media (hover: hover) and (pointer: fine) { .proof-card:hover img { transform: scale(1.025); filter: saturate(.9) brightness(.8); } }

.applications { padding: 122px 0 132px; background: #fbf9f5; }
.application-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.application-card { min-width: 0; background: var(--paper-deep); }
.application-image { aspect-ratio: 1.12 / 1; overflow: hidden; }
.application-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.application-body { min-height: 128px; padding: 20px 18px 22px; }
.application-body h3 { margin: 0 0 8px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.application-body p { margin: 0; color: var(--ink-soft); font-size: 10.5px; font-weight: 300; line-height: 1.55; }
@media (hover: hover) and (pointer: fine) { .application-card:hover .application-image img { transform: scale(1.035); } }

.closing {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 48%, rgba(185, 12, 48, .2), transparent 28%),
    var(--forest);
}
.closing::after {
  position: absolute;
  right: -10%;
  bottom: -42%;
  width: 70%;
  height: 100%;
  content: "";
  border: 1px solid rgba(88,217,142,.2);
  border-radius: 50%;
  transform: rotate(-8deg);
}
.closing-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .78fr; gap: 80px; align-items: center; padding: 90px 0; }
.closing-copy h2 { max-width: 760px; margin: 0; font-size: var(--section-title); font-weight: 400; letter-spacing: -.055em; line-height: .98; }
.closing-copy h2 span { display: block; color: var(--brand-bright); }
.closing-copy p { max-width: 590px; margin: 24px 0 0; color: rgba(255,255,255,.62); font-size: 14px; font-weight: 300; line-height: 1.7; }
.closing-visual { position: relative; width: min(100%, 440px); aspect-ratio: 1; justify-self: end; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.closing-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88) brightness(.76); }

.site-footer { color: rgba(255,255,255,.7); background: #020805; border-top: 1px solid rgba(255,255,255,.1); }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, .72fr); gap: 70px; padding: 76px 0 62px; }
.footer-brand img { width: 132px; height: auto; margin-bottom: 24px; }
.footer-brand p { max-width: 330px; margin: 0; font-size: 11px; font-weight: 300; line-height: 1.75; }
.footer-col h3 { margin: 0 0 21px; color: var(--white); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.footer-col a, .footer-col address { display: block; margin-bottom: 11px; color: rgba(255,255,255,.58); font-size: 11px; font-style: normal; font-weight: 300; line-height: 1.6; transition: color 160ms ease; }
.footer-col a:hover { color: var(--white); }
.footer-socials { display: flex; gap: 8px; margin-top: 17px; }
.footer-socials a { display: grid; width: 44px; height: 44px; margin: 0; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: rgba(255,255,255,.78); }
.footer-socials img { width: 18px; height: 18px; opacity: .84; transition: opacity 180ms ease, transform 180ms var(--ease-out); }
.footer-socials a:hover, .footer-socials a:focus-visible { color: var(--brand-bright); border-color: rgba(88,217,142,.58); background: rgba(88,217,142,.08); }
.footer-socials a:hover img, .footer-socials a:focus-visible img { opacity: 1; transform: translateY(-1px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 22px 0 28px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.48); font-size: 9px; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover, .footer-bottom a:focus-visible { color: rgba(255,255,255,.72); }

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 50%;
  background: #08a94e;
  box-shadow: 0 14px 36px rgba(0,0,0,.24);
  transition: transform 140ms var(--ease-out), background-color 180ms ease;
}
.whatsapp-float img { width: 24px; height: 24px; }
.whatsapp-float:active { transform: scale(.95); }
@media (hover: hover) and (pointer: fine) { .whatsapp-float:hover { background: #10bc5a; transform: translateY(-2px); } }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 720ms ease, transform 720ms var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .main-nav { gap: 13px; }
  .main-nav a { font-size: 9px; }
  .section-intro { gap: 55px; }
  .family-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .family-card { grid-column: span 2; }
  .family-card:nth-child(4), .family-card:nth-child(5) { grid-column: span 3; min-height: 430px; }
  .application-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.1fr repeat(3, .72fr); gap: 42px; }
}

@media (min-width: 761px) and (max-width: 930px) {
  .menu-toggle { display: grid; place-items: center; }
  .main-nav {
    position: absolute;
    top: 92px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    color: var(--white);
    background: var(--forest-soft);
    box-shadow: 0 18px 30px rgba(6,25,16,.18);
  }
  .site-header.is-light .main-nav { color: var(--ink); background: var(--paper); }
  .main-nav.open { display: flex; }
  .main-nav a:not(.budget),
  .site-header:not(.is-light) .main-nav.open a:not(.budget) { display: block; padding: 8px 0; }
  .budget { justify-content: space-between; }
  .section-intro { grid-template-columns: 1fr; gap: 28px; }
  .section-intro .lede { justify-self: start; }
  .closing-grid { grid-template-columns: 1fr .64fr; gap: 40px; }
}

@media (max-width: 760px) {
  .wrap { width: calc(100% - 36px); max-width: var(--max); }
  .site-header { height: 62px; }
  .brand { width: 118px; }
  .menu-toggle { display: grid; place-items: center; }
  .main-nav {
    position: absolute;
    top: 62px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    color: var(--white);
    background: var(--forest-soft);
    box-shadow: 0 18px 30px rgba(6,25,16,.18);
  }
  .site-header.is-light .main-nav { color: var(--ink); background: var(--paper); }
  .main-nav.open { display: flex; }
  .main-nav a:not(.budget),
  .site-header:not(.is-light) .main-nav.open a:not(.budget) { display: block; padding: 8px 0; }
  .budget { justify-content: space-between; }
  .internal-hero, .internal-hero-content { min-height: 690px; }
  .internal-hero-media img { object-position: 68% 50%; }
  .internal-hero-media::after {
    background:
      linear-gradient(180deg, rgba(1,8,4,.12) 0%, rgba(1,8,4,.22) 34%, rgba(1,8,4,.94) 68%, rgba(1,8,4,.99) 100%),
      linear-gradient(90deg, rgba(1,8,4,.66), rgba(1,8,4,.08));
  }
  .internal-hero-content { align-items: flex-end; padding: 100px 0 92px; }
  .internal-hero h1 { max-width: 100%; font-size: clamp(48px, 13.2vw, 64px); line-height: .94; }
  .internal-hero h1 .mobile-break { display: inline; color: inherit; }
  .internal-hero .hero-lede { margin-top: 22px; font-size: 14px; }
  .hero-actions { margin-top: 26px; }
  .hero-note { right: 18px; bottom: 18px; display: none; }
  .route-grid { grid-template-columns: 1fr; }
  .route-item { min-height: 0; padding: 27px 18px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .route-item:last-child { border-bottom: 0; }
  .route-index { margin-bottom: 11px; }
  .families, .applications { padding: 82px 0 90px; }
  .families { scroll-margin-top: 62px; }
  .color-proof { padding: 82px 0 90px; }
  .section-intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 42px; }
  .section-intro .lede { justify-self: start; }
  .display { font-size: clamp(40px, 12vw, 60px); }
  .family-grid { grid-template-columns: 1fr 1fr; }
  .family-card { grid-column: span 1; min-height: 410px; }
  .family-card:last-child { grid-column: 1 / -1; min-height: 410px; }
  .family-card h3 { font-size: 25px; }
  .family-foot { align-items: flex-start; flex-direction: column; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card { min-height: 410px; border-radius: 18px; }
  .proof-copy { right: 24px; bottom: 24px; left: 24px; }
  .application-grid { display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
  .application-card { flex: 0 0 78%; scroll-snap-align: start; }
  .closing { min-height: 700px; }
  .closing-grid { grid-template-columns: 1fr; gap: 46px; padding: 80px 0; }
  .closing-visual { width: min(78vw, 370px); justify-self: center; grid-row: 1; }
  .closing-copy { grid-row: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; padding: 48px 0 38px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > .footer-col:last-child { grid-column: 1 / -1; }
  .footer-brand img { width: 128px; height: auto; margin-bottom: 18px; }
  .footer-brand p { max-width: 300px; font-size: 12.5px; line-height: 1.65; }
  .footer-col h3 { margin-bottom: 16px; font-size: 11px; }
  .footer-col a, .footer-col address { margin-bottom: 10px; font-size: 13px; line-height: 1.55; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 18px 0 24px; font-size: 10.5px; line-height: 1.5; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

@media (max-width: 430px) {
  .family-grid { display: flex; gap: 10px; overflow-x: auto; border: 0; padding: 0 18px 10px; margin-inline: -18px; scroll-snap-type: x mandatory; }
  .family-card, .family-card:last-child { flex: 0 0 82%; min-height: 430px; border: 1px solid var(--line); scroll-snap-align: start; }
}

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