:root {
  --navy: #050d18;
  --navy-2: #0c2744;
  --blue: #025ec6;
  --blue-deep: #0059c3;
  --sky: #52a8ff;
  --cyan: #5cd8dd;
  --ink: #1e293b;
  --muted: #54595f;
  --line: #dce5ef;
  --paper: #f0f5fa;
  --white: #fff;
  --wa: #25d366;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(7, 21, 37, 0.12);
  --max: 1440px;
  --header: 76px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: Georgia, "Times New Roman", Times, serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: var(--font-serif);
  font-weight: 800;
}

h3 {
  font-family: var(--font-serif);
  font-weight: 500;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 1000;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--sky);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(82, 168, 255, .35);
}
.btn-primary:hover { background: #3b9bff; }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.45);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-dark {
  background: var(--blue-deep);
  color: var(--white);
}
.btn-wa { background: var(--wa); color: #fff; }

/* Header */
.topbar {
  background: #f4f9ff;
  color: var(--blue-deep);
  font-size: 0.82rem;
  border-top: 1px solid var(--sky);
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.topbar a { color: var(--blue-deep); font-weight: 700; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(2, 94, 198, .06);
}
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  gap: 20px;
}
.logo img {
  height: 52px;
  width: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav > li { position: relative; }
.nav > li > a,
.nav-toggle-sub {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
}
.nav > li > a:hover,
.nav > li > a[aria-current="page"] { color: var(--sky); }
.nav .sub a:hover,
.nav .sub a[aria-current="page"] { color: var(--sky); }
.nav .sub {
  display: none;
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 280px;
  background: var(--white);
  color: var(--ink);
  border-radius: 10px;
  padding: 10px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.nav > li:hover > .sub,
.nav > li:focus-within > .sub { display: block; }
.nav .sub a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}
.nav .sub a:hover,
.nav .sub a[aria-current="page"] { background: var(--paper); color: var(--sky); }
.header-cta { margin-left: 8px; white-space: nowrap; }
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--blue);
  border: 1px solid var(--line);
  border-radius: 10px;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  color: var(--ink);
  overflow: hidden;
  background: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f4f9ff 0%, #fff 34%, rgba(255,255,255,.42) 58%, rgba(255,255,255,0) 84%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 56px 0 160px;
  text-align: left;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-deep);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 14px;
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 6.4vw, 4.1rem);
  line-height: 1.12;
  letter-spacing: -.03em;
  font-weight: 800;
  max-width: 16ch;
}
.hero .lead {
  margin: 0 0 28px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--muted);
  max-width: 36ch;
}
.hero .btn-ghost {
  color: var(--blue);
  border-color: var(--blue);
}
.hero .btn-ghost:hover {
  background: rgba(2, 94, 198, .08);
  color: var(--blue-deep);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.stats {
  position: relative;
  z-index: 2;
  margin-top: -42px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.stats-grid article {
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}
.stats-grid article:last-child { border-right: 0; }
.stats-grid strong {
  display: block;
  font-size: 1.55rem;
  color: var(--blue);
  letter-spacing: -.02em;
}
.stats-grid span {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Sections */
.section { padding: 84px 0; }
.section-alt { background: var(--paper); }
.section-head {
  max-width: 680px;
  margin-bottom: 40px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head p { margin: 10px 0 0; color: var(--muted); }
.kicker {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section h2 {
  margin: 6px 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -.02em;
}
.section p { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.photo {
  position: relative;
}
.photo img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.badge {
  position: absolute;
  right: 18px;
  bottom: 28px;
  background: var(--blue-deep);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card-photo {
  width: calc(100% + 48px);
  max-width: none;
  height: 168px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  margin: -28px -24px 16px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(7,21,37,.04);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card h3 { margin: 14px 0 8px; font-size: 1.2rem; }
.card p { margin: 0 0 18px; }
.icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #e8f3ff;
  color: var(--blue);
}
.more {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.92rem;
}

.diffs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.diff {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  background: var(--paper);
  padding: 20px;
  border-radius: 16px;
}
.diff h3 { margin: 0 0 4px; font-size: 1.05rem; }
.diff p { margin: 0; font-size: 0.93rem; }

.help {
  background: var(--paper);
}
.help .section-head p,
.help p { color: var(--muted); }
.help h2 { color: var(--ink); }
.help-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: stretch;
}
.help-list { display: grid; gap: 16px; }
.help-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
}
.help-list h3 { margin: 0 0 6px; color: var(--blue); font-size: 1.05rem; }
.help-photo {
  position: relative;
  height: 100%;
  min-height: 280px;
}
.help-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.quote {
  background: var(--paper);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quote p {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
}
.quote footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-weight: 700;
  font-size: 0.9rem;
}
.quote img,
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.avatar {
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
.after-grid { margin-top: 28px; }
.stars { color: #f5b301; letter-spacing: 1px; font-size: 0.85rem; }

.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.post {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}
.post img { width: 100%; height: 180px; object-fit: cover; }
.post div { padding: 18px 18px 22px; }
.post h3 { margin: 0 0 8px; font-size: 1.05rem; line-height: 1.35; }
.post:hover h3 { color: var(--blue); }

.cta {
  background:
    linear-gradient(120deg, rgba(7,21,37,.58), rgba(2,94,198,.48)),
    url("../images/centro-de-recuperacao/centro-recanto-das-garcas-3.jpg") center 28% / cover;
  color: #fff;
  text-align: center;
}
.cta h2 {
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 18px rgba(5, 13, 24, .45);
}
.cta p {
  color: #e4eef8;
  max-width: 52ch;
  margin: 0 auto 24px;
  text-shadow: 0 1px 12px rgba(5, 13, 24, .4);
}
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.footer {
  background: var(--paper);
  color: var(--muted);
  padding: 56px 0 24px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.footer h3 { color: var(--blue); margin: 0 0 14px; font-size: 1rem; }
.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
}
.footer-logo img {
  height: 56px;
  width: auto;
}
.footer-brand p { margin: 0 0 12px; font-size: 0.92rem; }
.footer ul + .footer-wa { margin-top: 22px; }
.footer-wa {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  line-height: 1.15;
}
.footer-wa-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.footer-wa-icon svg { width: 24px; height: 24px; fill: currentColor; }
.footer-wa small {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
}
.footer-wa strong {
  display: block;
  margin-top: 2px;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -.02em;
  white-space: nowrap;
}
.footer a { color: var(--ink); }
.footer a:hover { color: var(--sky); }
.footer li { margin-bottom: 8px; }
.foot-copy {
  padding-top: 18px;
  font-size: 0.82rem;
  color: var(--muted);
}

.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: var(--wa);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  animation: wa-pulse 1.7s ease-out infinite;
}
.wa-fab:hover { transform: scale(1.04); }
.wa-fab svg { width: 28px; height: 28px; fill: currentColor; flex-shrink: 0; }

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 28px rgba(37, 211, 102, .45); }
}

:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card, .wa-fab { transition: none; animation: none; }
}

/* Inner pages */
.page-hero {
  position: relative;
  overflow: hidden;
  background: #f4f9ff;
  color: var(--ink);
}
.page-hero.has-media {
  min-height: min(48vh, 420px);
  display: grid;
  align-items: end;
}
.page-media {
  position: absolute;
  inset: 0;
}
.page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f4f9ff 0%, #fff 38%, rgba(255,255,255,.42) 66%, rgba(255,255,255,0) 90%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 48px 0 56px;
}
.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 4.2vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -.03em;
  max-width: 18ch;
}
.page-hero .lead {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
}
.page-hero-wide h1 { max-width: 26ch; }
.page-hero-wide .lead { max-width: 64ch; }
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.crumbs a:hover { color: var(--blue); }
.crumbs span { color: var(--ink); }

.page-hero:not(.has-media) .page-hero-content { padding-bottom: 12px; }

.error-page {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.error-page .error-code {
  margin: 0 0 8px;
  font-size: clamp(4.5rem, 14vw, 8rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -.06em;
  color: var(--blue);
}
.error-page > p {
  margin: 0 auto 16px;
  max-width: 46ch;
  color: var(--muted);
}
.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 28px 0 0 !important;
}
.error-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 40px auto 0;
  padding: 0;
  max-width: 560px;
  text-align: left;
  list-style: none;
}
.error-list a {
  color: var(--ink);
  font-weight: 600;
}
.error-list a:hover { color: var(--blue); }

@media (max-width: 700px) {
  .error-list { grid-template-columns: 1fr; text-align: center; }
}
.section.unit-visual { padding-top: 8px; padding-bottom: 48px; }

.showcase-main {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
}
.showcase-main img {
  width: 100%;
  height: min(52vh, 540px);
  object-fit: cover;
}
.showcase-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.showcase-thumbs button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
}
.showcase-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-thumbs button.is-active {
  outline: 2px solid var(--sky);
  outline-offset: 2px;
}
.showcase-more {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(2, 94, 198, 0.72);
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.92rem, 1.6vw, 1.12rem);
  letter-spacing: .02em;
}
.showcase-all {
  margin: 14px 0 0;
  color: var(--blue);
  font-weight: 700;
  text-underline-offset: 3px;
  text-decoration: underline;
}
.showcase-all:hover { color: var(--sky); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 56px 72px 72px;
  background: rgba(5, 13, 24, 0.92);
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(1180px, 90vw);
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  color: #fff;
  line-height: 1;
}
.lightbox-close {
  top: 16px;
  right: 20px;
  font-size: 2rem;
  width: 44px;
  height: 44px;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.6rem;
  width: 48px;
  height: 48px;
}
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-count {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  color: rgba(255,255,255,.85);
  font-size: 0.9rem;
}
html.lightbox-open { overflow: hidden; }

.section.unit-body { padding-top: 56px; }
.wrap.unit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  grid-template-areas:
    "intro intro"
    "gallery aside"
    "content aside";
  column-gap: 32px;
  row-gap: 28px;
  align-items: start;
}
.unit-intro {
  grid-area: intro;
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
}
.unit-intro h2 {
  margin: 8px 0 14px;
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  line-height: 1.25;
  color: var(--blue);
}
.unit-intro p {
  margin: 0 0 16px;
  color: var(--muted);
}
.unit-gallery { grid-area: gallery; min-width: 0; }
.unit-main { grid-area: content; min-width: 0; }
.unit-layout > .unit-aside { grid-area: aside; }
.unit-main .prose { max-width: none; }
.unit-main .cards,
.unit-main .staff-grid { grid-template-columns: 1fr 1fr; }
.unit-main .staff-card:nth-child(5) { grid-column: 1 / -1; }
.unit-main .quotes { grid-template-columns: 1fr; }
.unit-block { margin-top: 40px; }
.unit-quotes {
  margin-top: 40px;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.unit-layout > .unit-aside,
.blog-layout > .blog-aside {
  position: sticky;
  top: calc(var(--header) + 12px);
  align-self: start;
  height: fit-content;
  overflow: visible;
  display: grid;
  gap: 16px;
}
.unit-wa,
.unit-form {
  border-radius: var(--radius);
  padding: 24px 22px;
}
.unit-wa {
  background: #ecfdf3;
  border: 1px solid #b7ebc9;
}
.unit-wa h2,
.unit-form h2 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  line-height: 1.2;
}
.unit-wa p,
.unit-form p { margin: 0 0 16px; color: var(--muted); }
.unit-wa .btn,
.unit-form .btn { width: 100%; }
.unit-form {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(7,21,37,.04);
}
.unit-form textarea { min-height: 96px; }

.section.about-body { padding-top: 56px; }
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: start;
}
.about-main { min-width: 0; }
.about-main .prose { max-width: none; }
.about-block { margin-bottom: 44px; }
.about-block:last-child { margin-bottom: 0; }
.about-main .section-head { max-width: none; }
.about-main .pillars,
.about-main .values,
.about-main .team { grid-template-columns: 1fr; }
.about-main .about-block > h2 {
  margin: 8px 0 14px;
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  line-height: 1.25;
}
.about-main .about-block > h2 + p {
  margin: 0 0 18px;
  color: var(--muted);
}
.about-main .about-block > .city-grid,
.about-main .about-block > .pair-grid,
.about-main .about-block > .steps { margin-top: 16px; }
.about-main .license-grid,
.about-main .staff-grid,
.about-main .city-grid,
.about-main .pair-grid {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-main .license-card,
.about-main .license-card:nth-child(4) { grid-column: auto; }
.about-main .license-card:nth-child(5),
.about-main .staff-card:nth-child(5) { grid-column: 1 / -1; }
.about-main .split { grid-template-columns: 1fr; gap: 22px; }
.about-main .photo { margin: 0; }
.about-main .photo img { height: 320px; border-radius: var(--radius); }
.about-aside {
  position: sticky;
  top: calc(var(--header) + 12px);
  align-self: start;
  height: fit-content;
  display: grid;
  gap: 16px;
}
.talk-box {
  background: #ecfdf3;
  border: 1px solid #b7ebc9;
  border-radius: var(--radius);
  padding: 28px 24px;
}
.talk-box .kicker { margin: 0 0 8px; }
.talk-box h2 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  line-height: 1.2;
}
.talk-box > p {
  margin: 0 0 18px;
  color: var(--muted);
}
.talk-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  line-height: 1.15;
  color: inherit;
}
.talk-box .talk-row:last-child { margin-bottom: 0; }
.talk-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.talk-icon svg { width: 22px; height: 22px; fill: currentColor; }
.talk-icon-wa { background: var(--wa); }
.talk-icon-clock { background: var(--blue); }
.talk-row small {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}
.talk-row strong {
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
}
a.talk-row:hover strong { color: var(--blue); }

.clinic-teaser {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.clinic-teaser h2 {
  margin: 0 0 14px;
  font-size: 1.28rem;
  line-height: 1.25;
  letter-spacing: 0;
}
.clinic-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.clinic-thumbs button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 16 / 10;
}
.clinic-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.clinic-teaser .btn { width: 100%; }

.prose { max-width: 74ch; }
.contact-intro { max-width: none; }
.prose p { color: var(--muted); margin: 0 0 16px; }
.prose h2 {
  margin: 8px 0 14px;
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  line-height: 1.25;
}
.prose h3 { margin: 22px 0 8px; font-size: 1.15rem; color: var(--blue); }
.about-main .prose h2 + h3 { margin-top: 4px; }
.prose ul,
.prose ol {
  margin: 0 0 18px;
  padding-left: 1.2em;
  color: var(--muted);
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; }
.prose em { color: var(--ink); }

.steps {
  display: grid;
  gap: 16px;
  margin: 8px 0 8px;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-deep);
  color: #fff;
  font-weight: 700;
  font-family: var(--font);
}
.step h3 { margin: 2px 0 6px; }
.step p { margin: 0; color: var(--muted); }
.step ul {
  list-style: disc;
  padding-left: 1.2em;
  margin: 10px 0 0;
  color: var(--muted);
}
.step li { margin-bottom: 6px; }

.pillars,
.team,
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pillar,
.member,
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.pillar h3,
.member h3,
.value-card h3 { margin: 0 0 8px; color: var(--blue); }
.pillar p,
.member p,
.value-card p { margin: 0; color: var(--muted); }

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-facts span { display: grid; gap: 2px; }
.about-facts strong {
  color: var(--blue);
  font-size: 1.12rem;
  line-height: 1.2;
}
.about-facts small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mvv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.mvv .value-card {
  border-top: 3px solid var(--blue);
  box-shadow: 0 8px 24px rgba(7,21,37,.04);
}
.mvv .values-card { grid-column: 1 / -1; }
.value-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
}
.value-list li {
  margin: 0;
  padding-left: 14px;
  border-left: 2px solid #d6e8fb;
  color: var(--muted);
}
.value-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(7,21,37,.04);
}
.trust-n {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #e8f3ff;
  color: var(--blue);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: .04em;
}
.trust-card h3 { margin: 0 0 8px; color: var(--blue); }
.trust-card p { margin: 0; color: var(--muted); }
.cta-actions .btn { white-space: normal; text-align: center; }

.license-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.license-card {
  grid-column: span 2;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  box-shadow: 0 8px 24px rgba(7,21,37,.04);
  border-top: 3px solid var(--blue);
}
.license-card:nth-child(4),
.license-card:nth-child(5) { grid-column: span 3; }
.license-seal {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e8f3ff;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.license-card h3 { margin: 0 0 10px; color: var(--blue); font-size: 1.15rem; }
.license-card p { margin: 0; color: var(--muted); }
.license-card .license-meta {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 0.95rem;
}
.license-card .license-meta strong { color: var(--blue-deep); }

.assure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.assure-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 8px 24px rgba(7,21,37,.04);
}
.assure-card h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 1.12rem;
}
.assure-card p { margin: 0; color: var(--muted); }

.staff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.staff-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(7,21,37,.04);
  border-top: 3px solid var(--blue);
}
.staff-card:nth-child(5) { grid-column: 1 / -1; }
.staff-area {
  display: block;
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sky);
}
.staff-card h3 { margin: 0 0 4px; color: var(--blue); font-size: 1.18rem; }
.staff-job {
  margin: 0 0 10px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
}
.staff-reg {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e8f3ff;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.staff-card p { margin: 0; color: var(--muted); }

.support-band {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.support-band h2 { margin: 0 0 12px; }
.support-band p { margin: 0; color: var(--muted); max-width: 78ch; }
.support-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.support-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  background: #e8f3ff;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.city-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.city-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: 0 8px 24px rgba(7,21,37,.04);
}
.city-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #e8f3ff;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.city-card h3 {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 1.05rem;
}
.city-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.note-box {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: #fff8e8;
  border: 1px solid #f0e0b8;
  color: var(--ink);
}
.note-box strong { display: block; margin-bottom: 6px; color: var(--blue-deep); }
.note-box p { margin: 0; color: var(--muted); }

.pair-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.address-box {
  margin-top: 28px;
  padding: 28px 26px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
}
.address-box h2 { margin: 8px 0 12px; }
.address-box p { margin: 0 0 12px; color: var(--muted); }
.address-box p:last-of-type { margin-bottom: 16px; }
.address-box .btn { width: auto; }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--blue);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--sky);
  font-weight: 800;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0;
  padding: 0 22px 18px;
  color: var(--muted);
}
.member span {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sky);
  margin-bottom: 8px;
  font-family: var(--font);
}

.lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.ok, .no {
  border-radius: var(--radius);
  padding: 24px;
}
.ok { background: #eef8f1; }
.no { background: #f8eeee; }
.ok h3 { color: #157a3a; margin: 0 0 12px; }
.no h3 { color: #b42318; margin: 0 0 12px; }
.ok ul, .no ul { list-style: disc; padding-left: 1.15em; color: var(--ink); }
.ok li, .no li { margin-bottom: 8px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery a { display: block; }
.gallery img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-radius: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}
.contact-box,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  box-shadow: 0 8px 24px rgba(7, 21, 37, .04);
}
.contact-box .kicker,
.contact-panel .kicker { margin: 0 0 8px; }
.contact-box > p,
.contact-panel > p {
  margin-top: 0;
  color: var(--muted);
}
.contact-box h2,
.contact-panel h2 {
  margin: 0 0 10px;
  font-size: 1.85rem;
  line-height: 1.2;
}
.contact-list {
  margin-top: 8px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
}
.contact-list > div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.contact-list > div:last-child { padding-bottom: 0; }
.contact-list strong {
  display: block;
  font-family: var(--font);
  font-size: 0.75rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.contact-list p {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.45;
}
.contact-list a { color: var(--blue-deep); }
.contact-panel .form {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}
.contact-panel .form textarea {
  flex: 1 1 auto;
  min-height: 140px;
}
.form label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin: 0 0 6px;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.form textarea { min-height: 120px; resize: vertical; }
.map {
  margin-top: 28px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map iframe { width: 100%; height: 380px; border: 0; display: block; }
.contact-why {
  margin-top: 0;
  align-items: stretch;
  background: var(--white);
}
.contact-why .map {
  margin-top: 0;
  min-height: 380px;
}
.contact-why .map iframe {
  height: 100%;
  min-height: 380px;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  grid-template-areas: "main side";
  gap: 36px;
  align-items: start;
}
.blog-main,
.blog-post {
  grid-area: main;
  min-width: 0;
}
.blog-layout > .blog-aside {
  grid-area: side;
}
.blog-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(7,21,37,.04);
}
.blog-card-media { display: block; }
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px 22px;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  font-family: var(--font);
}
.blog-card-meta time { color: var(--muted); font-weight: 600; }
.blog-card h2,
.blog-cards .blog-card h2 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.35;
  letter-spacing: 0;
}
.blog-card h2 a:hover { color: var(--blue); }
.blog-card-body > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.blog-post figure { margin: 0 0 28px; }
.blog-post figure img {
  width: 100%;
  height: min(42vh, 420px);
  object-fit: cover;
  border-radius: 18px;
}
.blog-layout .prose { max-width: none; }
.blog-side-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.blog-side-box .kicker { margin: 0 0 12px; }
.blog-cats,
.blog-latest { display: grid; gap: 10px; }
.blog-cats li,
.blog-latest li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.blog-cats small { color: var(--muted); }
.blog-latest a { color: var(--blue-deep); font-weight: 600; }
.blog-latest a:hover { color: var(--sky); }
.blog-latest time {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  color: var(--muted);
}
.blog-latest li { display: block; }
.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}
.pager a,
.pager-gap {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-weight: 700;
  color: var(--blue-deep);
}
.pager a:hover,
.pager a[aria-current="page"] {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.pager-gap { border: 0; color: var(--muted); }

.blog-groups { display: grid; gap: 36px; }
.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 28px;
}
.blog-list a {
  color: var(--blue-deep);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.blog-list a:hover { color: var(--sky); }

.cta .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.55);
}

@media (max-width: 1120px) {
  .nav > li > a,
  .nav-toggle-sub {
    padding: 10px 8px;
    font-size: 0.82rem;
  }
  .header-cta { padding: 0 14px; font-size: 0.85rem; }
}

@media (max-width: 980px) {
  .menu-btn { display: grid; place-items: center; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 2px;
  }
  .nav.open { display: flex; }
  .nav .sub {
    position: static;
    display: none;
    min-width: 0;
    background: transparent;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 12px;
  }
  .nav .sub a { color: var(--muted); }
  .nav li.open > .sub { display: block; }
  .header-cta { display: none; }
  .stats-grid,
  .split,
  .cards,
  .diffs,
  .help-grid,
  .quotes,
  .posts,
  .footer-grid,
  .pillars,
  .team,
  .values,
  .trust-grid,
  .assure-grid,
  .contact-grid,
  .lists,
  .blog-list { grid-template-columns: 1fr 1fr; }
  .license-grid { grid-template-columns: 1fr 1fr; }
  .license-card,
  .license-card:nth-child(4) { grid-column: auto; }
  .license-card:nth-child(5) { grid-column: 1 / -1; }
  .blog-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "side";
  }
  .blog-layout > .blog-aside { position: static; }
  .about-layout { grid-template-columns: 1fr; }
  .about-aside { position: static; }
  .unit-layout,
  .wrap.unit-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "gallery"
      "content"
      "aside";
  }
  .unit-aside { position: static; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .photo img { height: 360px; }
}

@media (max-width: 700px) {
  .topbar span { display: none; }
  .topbar .wrap { justify-content: center; }
  .stats { margin-top: 0; padding-top: 8px; }
  .stats-grid,
  .cards,
  .diffs,
  .quotes,
  .posts,
  .footer-grid,
  .split,
  .help-grid,
  .pillars,
  .team,
  .values,
  .trust-grid,
  .assure-grid,
  .license-grid,
  .mvv,
  .contact-grid,
  .lists,
  .blog-list,
  .blog-cards,
  .gallery { grid-template-columns: 1fr; }
  .value-list,
  .staff-grid,
  .city-grid,
  .pair-grid { grid-template-columns: 1fr; }
  .staff-card:nth-child(5) { grid-column: auto; }
  .about-facts { grid-template-columns: 1fr; gap: 14px; }
  .gallery img { height: 220px; }
  .showcase-main img { height: 240px; }
  .showcase-thumbs { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .lightbox { padding: 56px 12px 64px; }
  .page-hero-content { padding: 36px 0 28px; }
  .stats-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero { min-height: 78vh; align-items: center; }
  .hero-content { padding: 40px 0 96px; }
  .section { padding: 64px 0; }
  .photo img { height: 320px; border-radius: 18px; }
  .help-photo img { height: 280px; }
  .unit-main .cards { grid-template-columns: 1fr; }
}

/* Home */
.hero-home h1 {
  max-width: 22ch;
  font-size: clamp(1.7rem, 4.2vw, 3rem);
}
.hero-home .lead { max-width: 46ch; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(2, 94, 198, .08);
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.hero .btn-wa {
  box-shadow: 0 10px 24px rgba(37, 211, 102, .28);
}
.hero .btn-wa:hover { background: #1ebe5d; }
.home-equipe {
  display: grid;
  grid-template-columns: minmax(340px, 1.35fr) minmax(0, .85fr);
  gap: 48px;
  align-items: start;
}
.home-equipe-copy {
  position: sticky;
  top: calc(var(--header) + 28px);
}
.home-equipe-copy h2 { max-width: 22ch; }
.home-equipe-copy p { max-width: 58ch; }
.home-equipe-copy .btn { margin-top: 10px; }
.home-staff {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-left: -56px;
}
.home-staff .staff-card {
  grid-column: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px 22px;
}
.home-staff .staff-card:first-child { grid-column: 1 / -1; }
.home-staff .staff-card h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}
.home-staff .staff-card .staff-bio {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.program-num {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.home-legal,
.home-diffs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.home-legal .assure-card,
.home-diffs .assure-card { height: 100%; }
.home-legal .assure-card a.more,
.home-diffs .assure-card a.more { display: inline-block; margin-top: 16px; }

@media (max-width: 1100px) {
  .home-equipe {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .home-equipe-copy { position: static; }
  .home-equipe-copy h2,
  .home-equipe-copy p { max-width: none; }
  .home-staff { margin-left: 0; }
}
@media (max-width: 700px) {
  .home-staff,
  .home-legal,
  .home-diffs { grid-template-columns: 1fr; }
  .home-staff .staff-card:first-child { grid-column: auto; }
  .hero-home h1 { max-width: none; }
}
