:root {
  --navy: #173f7a;
  --navy-deep: #0d2a55;
  --blue: #285ea8;
  --blue-soft: #eaf2ff;
  --orange: #e8872f;
  --orange-deep: #c96317;
  --orange-soft: #fff0df;
  --cream: #fff8ed;
  --paper: #fffdf9;
  --ink: #172238;
  --muted: #5e6b80;
  --line: #dce3ec;
  --white: #fff;
  --shadow-sm: 0 10px 30px rgba(20, 50, 89, .08);
  --shadow-lg: 0 28px 80px rgba(13, 42, 85, .16);
  --radius-sm: .85rem;
  --radius: 1.5rem;
  --radius-lg: 2.25rem;
  --container: 80rem;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section: clamp(4.5rem, 9vw, 8.5rem);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, .96rem + .12vw, 1.075rem);
  line-height: 1.65;
  overflow-wrap: anywhere;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { position: fixed; inset-inline: 0; width: 100%; overflow: hidden; overscroll-behavior: none; }
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .2em; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #ffbd6f; outline-offset: 4px; }
::selection { color: var(--navy-deep); background: #ffcf99; }
.container { width: min(calc(100% - (var(--gutter) * 2)), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section); }
.site-main { min-height: 60vh; overflow: clip; }
.sr-only, .screen-reader-text {
  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; z-index: 9999; top: 1rem; left: 1rem; padding: .8rem 1rem; color: #fff; background: var(--navy-deep); transform: translateY(-180%); border-radius: .6rem; }
.skip-link:focus { transform: none; }
.icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; }
.eyebrow { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1rem; color: var(--orange-deep); font-size: .75rem; font-weight: 800; letter-spacing: .14em; line-height: 1.25; text-transform: uppercase; }
.eyebrow::before { width: 1.05rem; height: 1.05rem; flex: 0 0 auto; content: ""; background: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 94 9 56C-8 40 1 10 22 4c12-4 23 2 28 14C55 6 66 0 78 4c21 6 30 36 13 52L50 94Z' fill='white'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 94 9 56C-8 40 1 10 22 4c12-4 23 2 28 14C55 6 66 0 78 4c21 6 30 36 13 52L50 94Z' fill='white'/%3E%3C/svg%3E") center / contain no-repeat; }
.eyebrow-light { color: #ffbd78; }
h1, h2, h3, h4 { margin: 0 0 .75em; color: var(--navy-deep); font-weight: 780; letter-spacing: -.04em; line-height: 1.05; text-wrap: balance; }
h1 { font-size: clamp(2.9rem, 7.5vw, 6.7rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4.7rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); }
p { margin: 0 0 1.35rem; }
.lead { color: var(--muted); font-size: clamp(1.15rem, 1rem + .65vw, 1.45rem); line-height: 1.55; }
.measure { max-width: 38rem; }
.button { display: inline-flex; min-height: 3.4rem; align-items: center; justify-content: center; gap: .65rem; padding: .85rem 1.35rem; color: #fff; background: var(--navy); border: 1px solid var(--navy); border-radius: 999px; font-weight: 750; line-height: 1; text-decoration: none; transition: transform .25s var(--ease), color .25s, background .25s, box-shadow .25s; cursor: pointer; }
.button:hover { background: var(--navy-deep); box-shadow: 0 12px 28px rgba(13, 42, 85, .18); transform: translateY(-2px); }
.button .icon { width: 1.1rem; }
.button-light { color: var(--navy-deep); background: #fff; border-color: #fff; }
.button-light:hover { color: #fff; background: var(--orange); border-color: var(--orange); }
.button-small { min-height: 2.85rem; padding: .7rem 1.1rem; font-size: .92rem; }
.text-link, .card-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--navy); font-weight: 760; text-decoration: none; }
.text-link .icon, .card-link .icon { width: 1.1rem; transition: transform .25s var(--ease); }
.text-link:hover .icon, .card-link:hover .icon { transform: translateX(.3rem); }
.text-link-light { color: #fff; }

/* Header */
.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid rgba(23, 63, 122, .08); background: rgba(255, 253, 249, .9); backdrop-filter: blur(16px); }
.header-inner { display: flex; min-height: 5.6rem; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { width: clamp(9.5rem, 15vw, 12.5rem); flex: 0 0 auto; }
.brand img { width: 100%; }
.site-navigation { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.2rem); }
.primary-menu { display: flex; align-items: center; gap: clamp(.8rem, 1.7vw, 1.65rem); padding: 0; margin: 0; list-style: none; }
.primary-menu > li > a, .submenu-toggle { position: relative; display: inline-flex; min-height: 3rem; align-items: center; gap: .45rem; padding: .5rem 0; color: var(--ink); background: none; border: 0; font-size: .94rem; font-weight: 680; text-decoration: none; cursor: pointer; }
.primary-menu > li > a::after, .submenu-toggle::after { position: absolute; right: 0; bottom: .25rem; left: 0; height: 2px; content: ""; background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.primary-menu > li > a:hover::after, .submenu-toggle:hover::after, .has-megamenu.is-open .submenu-toggle::after { transform: scaleX(1); transform-origin: left; }
.chevron { width: .5rem; height: .5rem; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-.15rem) rotate(45deg); transition: transform .2s; }
.has-megamenu.is-open .chevron { transform: translateY(.1rem) rotate(225deg); }
.has-megamenu { position: static; }
.megamenu { position: absolute; top: calc(100% + 1px); right: var(--gutter); left: var(--gutter); display: grid; visibility: hidden; max-width: 76rem; grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr)); gap: 1.5rem; padding: 2rem; margin-inline: auto; background: #fff; border: 1px solid var(--line); border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(-.5rem); transition: opacity .2s, transform .2s, visibility .2s; }
.has-megamenu.is-open .megamenu { visibility: visible; opacity: 1; transform: none; }
.megamenu-intro { padding: 1.35rem; color: #fff; background: var(--navy-deep); border-radius: var(--radius-sm); }
.megamenu-intro strong { display: block; max-width: 15rem; font-size: 1.45rem; line-height: 1.25; }
.megamenu-label { display: block; padding-bottom: .7rem; margin-bottom: .75rem; color: var(--muted); border-bottom: 1px solid var(--line); font-size: .74rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.megamenu-group ul { display: grid; gap: .4rem; padding: 0; margin: 0; list-style: none; }
.megamenu-group a { display: flex; align-items: center; gap: .7rem; padding: .72rem; border-radius: .7rem; font-size: .92rem; font-weight: 680; line-height: 1.3; text-decoration: none; }
.megamenu-group a:hover { color: var(--navy); background: var(--blue-soft); }
.nav-toggle { display: none; width: 3rem; height: 3rem; place-items: center; padding: 0; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 50%; }
.nav-toggle-lines { display: grid; width: 1.25rem; gap: .27rem; }
.nav-toggle-lines span { height: 2px; background: currentColor; border-radius: 2px; transition: transform .2s, opacity .2s; }

/* Home hero */
.hero { position: relative; color: #fff; background: var(--navy-deep); }
.home-hero { min-height: min(52rem, calc(100svh - 5.6rem)); padding: clamp(4rem, 8vw, 7.5rem) 0 0; overflow: hidden; isolation: isolate; }
.home-hero::before { position: absolute; z-index: -2; inset: 0; content: ""; background: linear-gradient(90deg, rgba(8,34,72,.98) 0%, rgba(8,34,72,.94) 42%, rgba(8,34,72,.58) 72%, rgba(8,34,72,.32) 100%), url('../images/projects/home-hero-treated-v1.jpg') center / cover no-repeat; background-blend-mode: multiply, normal; }
.home-hero::after { position: absolute; z-index: -1; inset: auto 0 0; height: 7rem; content: ""; background: linear-gradient(to bottom right, transparent 49.5%, var(--paper) 50%); }
.hero-grid { display: grid; align-items: center; grid-template-columns: minmax(0, 1.08fr) minmax(20rem, .92fr); gap: clamp(2.5rem, 7vw, 7rem); }
.hero-copy { position: relative; z-index: 2; min-width: 0; padding-bottom: 6rem; }
.hero h1 { max-width: 12ch; color: #fff; }
.hero h1 em { color: #ffad5f; font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.06em; }
.hero-lead { max-width: 40rem; color: rgba(255, 255, 255, .82); font-size: clamp(1.15rem, 1rem + .65vw, 1.48rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem 1.5rem; margin-top: 2rem; }
.hero-visual { position: relative; align-self: stretch; min-height: 37rem; }
.hero-photo-heart { position: absolute; top: 48%; right: 1%; width: min(31rem, 92%); aspect-ratio: 1 / .9; background: linear-gradient(rgba(23,63,122,.18),rgba(23,63,122,.18)), url('../images/projects/home-hero-treated-v1.jpg') 73% center / cover no-repeat; filter: drop-shadow(0 2rem 3rem rgba(4,20,47,.34)); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 94 9 56C-8 40 1 10 22 4c12-4 23 2 28 14C55 6 66 0 78 4c21 6 30 36 13 52L50 94Z' fill='white'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 94 9 56C-8 40 1 10 22 4c12-4 23 2 28 14C55 6 66 0 78 4c21 6 30 36 13 52L50 94Z' fill='white'/%3E%3C/svg%3E") center / contain no-repeat; transform: translateY(-50%) rotate(2deg); }
.impact-card { position: absolute; display: flex; width: min(16rem, 48%); flex-direction: column; padding: 1.35rem; color: var(--ink); background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.impact-card-main { top: 17%; left: 0; transform: rotate(-3deg); }
.impact-card-side { right: 0; bottom: 18%; color: #fff; background: var(--orange); transform: rotate(4deg); }
.impact-number { color: var(--navy); font-size: clamp(3rem, 6vw, 5.2rem); font-weight: 850; letter-spacing: -.08em; line-height: .9; }
.impact-number-spaced { display: flex; align-items: baseline; gap: .13em; letter-spacing: -.06em; }
.impact-card-side .impact-number { color: #fff; }
.impact-card > span:nth-child(2) { margin-top: .8rem; font-size: .92rem; font-weight: 720; line-height: 1.35; }
.impact-card small { margin-top: .65rem; color: var(--muted); font-size: .66rem; line-height: 1.35; }
.trust-row { position: relative; z-index: 3; display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; padding-bottom: 8rem; color: rgba(255,255,255,.72); }
.trust-row span { display: inline-flex; align-items: center; gap: .6rem; font-size: .9rem; font-weight: 650; }
.trust-row .icon { color: #ffad5f; }

/* Sections */
.intro-section { padding-top: calc(var(--section) + 1rem); }
.intro-section .split-heading { align-items: center; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .75fr); gap: clamp(2.5rem, 7vw, 7rem); }
.split-heading h2 { max-width: 14ch; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-heading > div { max-width: 47rem; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 29rem; margin: 0; color: var(--muted); }
.section-heading-inline { align-items: center; }
.projects-section { background: #f3f6fa; }
.project-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1.25rem; }
.project-card { position: relative; display: flex; min-width: 0; min-height: 27rem; grid-column: span 2; flex-direction: column; padding: clamp(1.5rem, 3vw, 2.25rem); overflow: hidden; border-radius: var(--radius); box-shadow: 0 1px 0 rgba(13,42,85,.06); text-decoration: none; transition: transform .3s var(--ease), box-shadow .3s; isolation: isolate; }
.project-card-wide { grid-column: span 4; }
.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-.45rem); }
.project-card-blue { color: #fff; background: var(--navy); }
.project-card-orange { color: #fff; background: var(--orange); }
.project-card-cream { background: var(--cream); }
.project-card-soft { background: #dfeaff; }
.project-card-photo { color: #fff; background-position: center; background-size: cover; }
.project-card-photo::before { position: absolute; z-index: -1; inset: 0; content: ""; background: linear-gradient(180deg, rgba(8,34,72,.18), rgba(8,34,72,.93) 76%); mix-blend-mode: multiply; }
.project-card-bp-centro { background-image: url('../images/projects/bp-centro-01.jpg'); background-position: center 45%; }
.project-card-bp-jundiapeba { background-image: url('../images/projects/bp-jundiapeba.jpg'); background-position: 55% center; }
.project-card-ceim-maria { background-image: url('../images/projects/ceim-maria-martinha.jpg'); background-position: 58% center; }
.project-card-ceim-reynaldo { background-image: url('../images/projects/ceim-reynaldo.jpg'); background-position: center; }
.project-card h3 { max-width: 13ch; margin-top: auto; margin-bottom: .6rem; color: inherit; font-size: clamp(1.8rem, 3vw, 3.2rem); }
.project-card p { max-width: 32rem; margin-bottom: 1.6rem; color: inherit; opacity: .82; }
.project-icon { display: grid; width: 3.25rem; height: 3.25rem; place-items: center; color: var(--navy); background: #fff; border-radius: 1rem; }
.project-icon .icon { width: 1.65rem; }
.project-type { margin-top: 1rem; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: .75; }
.project-card .card-link { color: inherit; }
.card-stat { position: absolute; top: 2rem; right: 2rem; display: flex; max-width: 8rem; flex-direction: column; padding-left: 1rem; border-left: 1px solid rgba(255,255,255,.35); font-size: .72rem; line-height: 1.25; }
.card-stat strong { font-size: 1.45rem; }
.card-stat small { margin-top: .3rem; opacity: .7; }
.card-watermark { position: absolute; z-index: -1; right: -1rem; bottom: -2rem; color: rgba(23,63,122,.08); font-size: clamp(5rem, 14vw, 12rem); font-weight: 900; letter-spacing: -.1em; }
.impact-section { color: #fff; background: var(--navy-deep); }
.impact-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(26rem, 1.18fr); gap: clamp(3rem, 8vw, 8rem); }
.impact-copy h2 { color: #fff; }
.impact-copy p { max-width: 37rem; color: rgba(255,255,255,.74); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat { position: relative; display: flex; min-height: 13rem; flex-direction: column; justify-content: end; padding: 1.5rem; overflow: hidden; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); isolation: isolate; }
.stat:not(.stat-photo):nth-child(2), .stat:not(.stat-photo):nth-child(3) { background: rgba(232,135,47,.15); }
.stat-photo { background-color: #173f7a; background-position: center; background-size: cover; }
.stat-photo::before { position: absolute; z-index: -1; inset: 0; content: ""; background: linear-gradient(180deg, rgba(13,42,85,.42) 0%, rgba(13,42,85,.9) 100%); }
.stat-founded { background-image: url('../images/projects/bp-centro-02.jpg'); background-position: 50% 48%; }
.stat-bom-prato { background-image: url('../images/projects/bp-centro-01.jpg'); background-position: 50% 42%; }
.stat-education { background-image: url('../images/projects/ceim-maria-martinha.jpg'); background-position: 50% 44%; }
.stat-longevity { background-image: url('../images/projects/mogi-longevidade.jpg'); background-position: 50% 54%; }
.stat strong, .stat span { position: relative; z-index: 1; }
.stat strong { color: #ffb66f; font-size: clamp(2.5rem, 5vw, 4.3rem); letter-spacing: -.07em; line-height: .95; text-shadow: 0 2px 18px rgba(4,20,47,.28); }
.stat span { max-width: 13rem; margin-top: .8rem; color: rgba(255,255,255,.88); font-size: .86rem; line-height: 1.35; }
.longevity-section { background: #f3f6fa; }
.longevity-card { display: grid; min-height: 31rem; grid-template-columns: minmax(18rem, .75fr) minmax(0, 1.25fr); overflow: hidden; color: #fff; background: var(--orange-deep); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.longevity-art { position: relative; display: grid; min-height: 24rem; place-items: center; overflow: hidden; background: #ff9b42; }
.longevity-number { position: relative; z-index: 2; color: #fff; font-size: clamp(6rem, 14vw, 12rem); font-weight: 900; letter-spacing: -.1em; line-height: 1; }
.longevity-number span { color: var(--navy-deep); }
.ring { position: absolute; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 94 9 56C-8 40 1 10 22 4c12-4 23 2 28 14C55 6 66 0 78 4c21 6 30 36 13 52L50 94Z' fill='none' stroke='white' stroke-opacity='.42' stroke-width='1.5'/%3E%3C/svg%3E") center / contain no-repeat; }
.ring-one { width: 14rem; height: 14rem; }
.ring-two { width: 24rem; height: 24rem; }
.ring-three { width: 35rem; height: 35rem; }
.longevity-copy { align-self: center; padding: clamp(2rem, 6vw, 5rem); }
.longevity-copy h2 { color: #fff; font-size: clamp(2.2rem, 4vw, 4rem); }
.longevity-copy p { color: rgba(255,255,255,.85); }
.inline-facts { display: flex; flex-wrap: wrap; gap: 1rem 2rem; padding: 0; margin: 2rem 0 1.2rem; list-style: none; }
.inline-facts li { display: flex; flex-direction: column; color: rgba(255,255,255,.75); font-size: .8rem; }
.inline-facts strong { color: #fff; font-size: 1.7rem; line-height: 1; }
.longevity-copy small { display: block; color: rgba(255,255,255,.62); }
.longevity-link { margin-top: 1.6rem; }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.news-card { min-width: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .3s var(--ease), box-shadow .3s; }
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-.4rem); }
.news-card-media { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--blue-soft); }
.news-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.news-card:hover .news-card-media > img { transform: scale(1.04); }
.news-placeholder { display: grid; width: 100%; height: 100%; place-items: center; background: linear-gradient(135deg, var(--blue-soft), #fff2e3); }
.news-placeholder img { width: 42%; height: auto; opacity: .17; object-fit: contain; }
.news-card-body { padding: 1.5rem; }
.news-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .65rem 1rem; margin-bottom: 1rem; color: var(--muted); font-size: .78rem; }
.tag, .topic-pill { display: inline-flex; padding: .35rem .65rem; color: var(--navy); background: var(--blue-soft); border-radius: 999px; font-size: .72rem; font-weight: 750; line-height: 1.2; text-decoration: none; }
.news-card h3 { margin-bottom: .65rem; font-size: clamp(1.25rem, 1.5vw, 1.55rem); line-height: 1.22; }
.news-card h3 a { text-decoration: none; }
.news-card h3 a:hover { color: var(--blue); }
.news-card p { display: -webkit-box; margin-bottom: 1.25rem; overflow: hidden; color: var(--muted); font-size: .92rem; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.contact-section { padding-top: 0; }
.contact-card { display: grid; grid-template-columns: minmax(0, 1fr) minmax(22rem, .75fr); gap: 3rem; padding: clamp(2rem, 5vw, 4.5rem); color: #fff; background: var(--navy); border-radius: var(--radius-lg); }
.contact-card h2 { max-width: 13ch; color: #fff; }
.contact-card p { max-width: 38rem; color: rgba(255,255,255,.75); }
.contact-actions { display: grid; align-content: center; gap: .75rem; }
.contact-actions a { display: flex; min-width: 0; align-items: center; gap: 1rem; padding: 1rem 1.1rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-sm); text-decoration: none; transition: background .2s, transform .2s; }
.contact-actions a:hover { background: rgba(255,255,255,.18); transform: translateX(.25rem); }
.contact-actions .icon { width: 1.4rem; color: #ffb66f; }
.contact-actions span { min-width: 0; font-weight: 680; }
.contact-actions small { display: block; color: rgba(255,255,255,.65); font-size: .7rem; font-weight: 500; }

/* Pages and rich content */
.page-hero, .archive-hero { position: relative; padding: clamp(4rem, 8vw, 7.5rem) 0; overflow: hidden; background: var(--cream); }
.page-hero::after { position: absolute; z-index: 1; right: -6rem; bottom: -12rem; width: 28rem; height: 28rem; content: ""; background: var(--orange-soft); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 94 9 56C-8 40 1 10 22 4c12-4 23 2 28 14C55 6 66 0 78 4c21 6 30 36 13 52L50 94Z' fill='white'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 94 9 56C-8 40 1 10 22 4c12-4 23 2 28 14C55 6 66 0 78 4c21 6 30 36 13 52L50 94Z' fill='white'/%3E%3C/svg%3E") center / contain no-repeat; transform: rotate(-8deg); }
.page-hero-a-amac { isolation: isolate; }
.page-hero-a-amac::before { position: absolute; z-index: 0; inset: 0; content: ""; background: linear-gradient(90deg, rgba(255,248,237,.96) 0%, rgba(255,248,237,.88) 48%, rgba(255,248,237,.72) 100%), url('../images/projects/home-hero-treated-v1.jpg') 58% 48% / cover no-repeat; background-blend-mode: normal; filter: saturate(.72); }
.page-hero-inner, .archive-hero-grid { position: relative; z-index: 2; display: grid; align-items: end; grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr); gap: 3rem; }
.page-hero h1, .archive-hero h1 { max-width: 13ch; font-size: clamp(3rem, 7vw, 6rem); }
.page-hero p, .archive-hero p { max-width: 38rem; color: var(--muted); font-size: 1.2rem; }
.page-layout, .project-layout { padding-block: clamp(3.5rem, 7vw, 7rem); }
.prose { max-width: 760px; margin-inline: auto; }
.prose > * { max-width: 100%; }
.prose > .alignwide, .prose > .is-style-wide { width: min(100vw - (var(--gutter) * 2), 70rem); max-width: none; margin-inline: 50%; transform: translateX(-50%); }
.prose h2 { margin-top: 1.8em; font-size: clamp(2rem, 4vw, 3.4rem); }
.prose h3 { margin-top: 1.8em; font-size: clamp(1.4rem, 2.5vw, 2rem); }
.prose p, .prose li { color: #35445c; }
.prose a { color: var(--blue); font-weight: 650; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li + li { margin-top: .55rem; }
.prose blockquote { padding: 1.5rem 1.75rem; margin: 2.5rem 0; color: var(--navy-deep); background: var(--cream); border-left: 5px solid var(--orange); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 1.18rem; }
.prose .amac-lead { color: var(--navy-deep); font-size: clamp(1.25rem, 1.1rem + .7vw, 1.6rem); line-height: 1.55; }
.prose .amac-facts { display: grid; width: min(100vw - (var(--gutter) * 2), 70rem); max-width: none; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; padding: 0; margin: 3rem 50%; list-style: none; transform: translateX(-50%); }
.prose .amac-facts li { display: flex; min-height: 10rem; flex-direction: column; justify-content: end; padding: 1.4rem; color: var(--navy-deep); background: var(--blue-soft); border-radius: var(--radius); }
.prose .amac-facts strong { display: block; color: var(--navy); font-size: clamp(1.75rem, 4vw, 3rem); letter-spacing: -.05em; line-height: 1; }
.prose .amac-facts span { margin-top: .65rem; font-size: .82rem; line-height: 1.35; }
.prose .amac-service-box { width: min(100vw - (var(--gutter) * 2), 70rem); max-width: none; padding: clamp(1.5rem, 4vw, 3rem); margin: 3rem 50%; background: var(--cream); border: 1px solid #f5dfc4; border-radius: var(--radius); transform: translateX(-50%); }
.prose .amac-service-box h2 { margin-top: 0; }
.prose .amac-service-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0; }
.prose .amac-service-item { display: grid; grid-template-columns: minmax(11rem, 13rem) minmax(0, 1fr); gap: clamp(1.25rem, 3vw, 2.5rem); align-items: start; padding: 1.35rem 0; border-top: 1px solid #ecd7bd; }
.prose .amac-service-item-wide { grid-column: auto; }
.prose .amac-service-item strong, .prose .amac-service-item span { display: block; }
.prose .amac-service-item > strong { display: inline-flex; width: fit-content; max-width: 100%; min-height: 2.6rem; align-items: center; padding: .55rem .85rem; color: var(--navy-deep); background: var(--blue-soft); border: 1px solid #cdddf2; border-radius: .7rem; box-shadow: 0 6px 18px rgba(20,50,89,.06); overflow-wrap: normal; word-break: normal; hyphens: none; line-height: 1.25; }
.prose .amac-service-item span { color: var(--muted); font-size: .9rem; }
.prose .amac-meal-schedule { display: grid; gap: .65rem; }
.prose .amac-meal-schedule > span { display: grid; grid-template-columns: minmax(8rem, 9rem) minmax(0, 1fr); gap: .85rem; }
.prose .amac-meal-schedule b { color: var(--ink); }
.prose .amac-project-photo { overflow: hidden; margin-block: 2.5rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.prose .amac-project-photo img { width: 100%; aspect-ratio: 847 / 491; object-fit: cover; }
.prose .amac-project-photo figcaption { padding: .7rem 1rem; color: var(--muted); font-size: .72rem; text-align: right; }
.prose .amac-project-photo figcaption a { color: inherit; font-weight: 600; }
.prose .amac-source-note { padding: 1rem 1.2rem; color: var(--muted); background: #f5f7fa; border-radius: .75rem; font-size: .8rem; }
.prose .amac-timeline { position: relative; padding: 0; margin: 2.5rem 0; list-style: none; }
.prose .amac-timeline::before { position: absolute; top: .5rem; bottom: .5rem; left: .4rem; width: 2px; content: ""; background: var(--line); }
.prose .amac-timeline li { position: relative; padding-left: 2.25rem; }
.prose .amac-timeline li + li { margin-top: 1.5rem; }
.prose .amac-timeline li::before { position: absolute; top: .4rem; left: 0; width: .9rem; height: .9rem; content: ""; background: var(--orange); border: 3px solid #fff; border-radius: 50%; box-shadow: 0 0 0 2px var(--orange); }
.prose .amac-timeline strong { display: block; color: var(--navy); font-size: 1.15rem; }
.project-hero { position: relative; padding: clamp(4.5rem, 9vw, 8rem) 0; overflow: hidden; color: #fff; isolation: isolate; }
.project-hero-food { background: var(--navy-deep); }
.project-hero-education { background: var(--orange-deep); }
.project-hero-longevity { background: var(--navy); }
.project-hero.has-project-photo::before { position: absolute; z-index: -2; inset: 0; content: ""; background: var(--project-photo) center / cover no-repeat; }
.project-hero-bom-prato-centro { --project-photo: url('../images/projects/bp-centro-01.jpg'); }
.project-hero-bom-prato-jundiapeba { --project-photo: url('../images/projects/bp-jundiapeba.jpg'); }
.project-hero-ceim-maria-martinha { --project-photo: url('../images/projects/ceim-maria-martinha.jpg'); }
.project-hero-ceim-reynaldo-batalha { --project-photo: url('../images/projects/ceim-reynaldo.jpg'); }
.project-hero-mogi-longevidade { --project-photo: url('../images/projects/mogi-longevidade.jpg'); }
.project-hero.has-project-photo::after { position: absolute; z-index: -1; inset: 0; content: ""; background: linear-gradient(90deg, rgba(8,34,72,.98) 0%, rgba(8,34,72,.88) 48%, rgba(8,34,72,.38) 100%); mix-blend-mode: multiply; }
.project-hero-education.has-project-photo::after { background: linear-gradient(90deg, rgba(110,43,3,.96) 0%, rgba(201,99,23,.78) 50%, rgba(13,42,85,.34) 100%); }
.project-hero-longevity.has-project-photo::after { background: linear-gradient(90deg, rgba(8,34,72,.98) 0%, rgba(23,63,122,.83) 52%, rgba(201,99,23,.34) 100%); }
.project-hero-grid { display: grid; align-items: center; grid-template-columns: minmax(0, 1.25fr) minmax(15rem, .75fr); gap: 3rem; }
.project-hero h1 { color: #fff; font-size: clamp(3.2rem, 7vw, 6.2rem); }
.project-hero-copy { position: relative; z-index: 2; }
.project-hero-mark { display: grid; min-height: 19rem; place-items: center; padding: 2rem 2rem 3rem; color: #fff; background: rgba(255,255,255,.16); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 94 9 56C-8 40 1 10 22 4c12-4 23 2 28 14C55 6 66 0 78 4c21 6 30 36 13 52L50 94Z' fill='white'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 94 9 56C-8 40 1 10 22 4c12-4 23 2 28 14C55 6 66 0 78 4c21 6 30 36 13 52L50 94Z' fill='white'/%3E%3C/svg%3E") center / contain no-repeat; transform: rotate(3deg); }
.project-hero-mark .icon { width: 6rem; height: 6rem; }
.related-news { background: #f3f6fa; }

/* News archive */
.archive-hero { color: #fff; background: var(--navy); }
.archive-hero::before { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(13,42,85,.98), rgba(23,63,122,.76)), url('../images/projects/bp-jundiapeba.jpg') 58% 42% / cover no-repeat; background-blend-mode: multiply, normal; }
.archive-hero h1 { color: #fff; }
.archive-hero p { color: rgba(255,255,255,.75); }
.news-filters { display: grid; align-items: end; grid-template-columns: 1.4fr 1fr 1.2fr auto; gap: .9rem; padding: 1.25rem; margin: calc(var(--section) * -.45) 0 3rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.news-filters label { display: block; margin: 0 0 .45rem .2rem; color: var(--ink); font-size: .73rem; font-weight: 780; }
.news-filters input, .news-filters select { width: 100%; min-height: 3.25rem; padding: .7rem .9rem; color: var(--ink); background: #f7f9fb; border: 1px solid var(--line); border-radius: .75rem; }
.news-filters select, .amac-document-filters select { padding-right: 3rem; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23173f7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1rem center; background-size: .9rem; }
.news-filters input:focus, .news-filters select:focus { background: #fff; border-color: var(--blue); outline: 3px solid rgba(40,94,168,.15); }
.input-with-icon { position: relative; }
.input-with-icon .icon { position: absolute; top: 50%; left: .9rem; width: 1.1rem; color: var(--muted); transform: translateY(-50%); }
.input-with-icon input { padding-left: 2.7rem; }
.filter-actions { display: flex; align-items: center; gap: .8rem; }
.filter-actions a { color: var(--muted); font-size: .82rem; font-weight: 700; }
.archive-summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.archive-summary p { margin: 0; }
.archive-summary span { color: var(--muted); font-size: .82rem; }
.news-grid-archive { row-gap: 2rem; }
.pagination { display: flex; justify-content: center; margin-top: 3rem; }
.pagination .page-numbers { display: inline-grid; min-width: 2.8rem; min-height: 2.8rem; place-items: center; padding: .55rem .8rem; margin: .2rem; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: .65rem; font-weight: 720; text-decoration: none; }
.pagination .page-numbers.current, .pagination .page-numbers:hover { color: #fff; background: var(--navy); border-color: var(--navy); }
.pagination .prev, .pagination .next { padding-inline: 1rem; }
.empty-state { padding: 3rem; text-align: center; background: #fff; border: 1px dashed #bdc9d8; border-radius: var(--radius); }
.empty-state h2, .empty-state h3 { margin-bottom: .6rem; }
.empty-state p { color: var(--muted); }
.empty-icon { display: grid; width: 4.5rem; height: 4.5rem; place-items: center; margin: 0 auto 1.5rem; color: var(--orange); background: var(--orange-soft); border-radius: 50%; }
.empty-icon .icon { width: 2rem; }

/* Single article */
.single-news-header { padding: clamp(3.5rem, 7vw, 6.5rem) 0 2.5rem; background: var(--cream); }
.article-narrow { width: min(calc(100% - (var(--gutter) * 2)), 50rem); margin-inline: auto; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; color: var(--muted); font-size: .78rem; }
.breadcrumbs a { text-decoration: none; }
.news-meta-large { margin-bottom: 1.4rem; }
.single-news h1 { max-width: 15ch; font-size: clamp(2.6rem, 6vw, 5.1rem); }
.article-deck { max-width: 42rem; color: var(--muted); font-size: clamp(1.15rem, 1rem + .6vw, 1.45rem); }
.article-featured { margin-top: 2rem; }
.article-featured img { width: 100%; aspect-ratio: 16 / 8.5; object-fit: cover; border-radius: var(--radius); }
.article-featured figcaption { margin-top: .55rem; color: var(--muted); font-size: .72rem; text-align: right; }
.article-byline { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem; padding: 1.2rem 0; margin-top: 2rem; color: var(--muted); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: .78rem; }
.article-body { padding-block: 2rem; }
.source-box { padding: 1.5rem; margin: 2rem 0; background: var(--blue-soft); border-radius: var(--radius-sm); }
.source-box > span { color: var(--navy); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.source-box p { margin: .5rem 0; color: var(--muted); }
.source-box a { display: inline-flex; align-items: center; gap: .4rem; color: var(--navy); font-weight: 750; }
.article-topics { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; padding: 1.5rem 0; border-top: 1px solid var(--line); }
.article-topics > span:first-child { color: var(--muted); font-size: .78rem; }
.post-navigation { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding-block: 2rem 5rem; }
.post-navigation > span:last-child { text-align: right; }
.post-navigation a { color: var(--navy); font-weight: 700; }

/* Transparency plugin */
.amac-documents { width: min(100vw - (var(--gutter) * 2), 70rem); max-width: none; margin-inline: 50%; transform: translateX(-50%); }
.amac-document-filters { display: grid; align-items: end; grid-template-columns: repeat(3, 1fr) auto; gap: .8rem; padding: 1.2rem; margin: 2rem 0; background: #f5f7fa; border-radius: var(--radius); }
.amac-document-filters label { display: block; margin-bottom: .35rem; color: var(--ink); font-size: .75rem; font-weight: 750; }
.amac-document-filters select { width: 100%; min-height: 3rem; padding: .65rem .8rem; background: #fff; border: 1px solid var(--line); border-radius: .65rem; }
.amac-document-list { display: grid; gap: .75rem; padding: 0; list-style: none; }
.amac-document-card { display: grid; align-items: center; grid-template-columns: auto minmax(0, 1fr) auto; gap: 1rem; padding: 1.15rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.amac-document-icon { display: grid; width: 3rem; height: 3rem; place-items: center; color: var(--orange-deep); background: var(--orange-soft); border-radius: .75rem; }
.amac-document-main h3 { margin: 0 0 .3rem; font-size: 1.05rem; letter-spacing: -.015em; }
.amac-document-meta { display: flex; flex-wrap: wrap; gap: .35rem .8rem; color: var(--muted); font-size: .74rem; }
.prose .amac-document-card .button, .prose .amac-document-card .button:visited { color: #fff; }
.prose .amac-document-card .button:hover { color: #fff; }

/* Footer */
.site-footer { padding-top: 4.5rem; color: rgba(255,255,255,.72); background: #0a2349; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .6fr 1fr; gap: clamp(2rem, 6vw, 6rem); padding-bottom: 3.5rem; }
.footer-brand img { width: min(16rem, 100%); padding: .8rem 1rem; margin-bottom: 1.5rem; background: #fff; border-radius: .8rem; }
.footer-brand p { max-width: 28rem; }
.footer-title { color: #fff; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links, .footer-contact { display: grid; gap: .7rem; padding: 0; margin: 0; list-style: none; }
.footer-links a, .footer-contact a { text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover { color: #ffb66f; }
.footer-contact li { display: flex; gap: .7rem; min-width: 0; }
.footer-contact .icon { width: 1.15rem; margin-top: .2rem; color: #ffb66f; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; padding-block: 1.35rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .72rem; }
.footer-bottom p { margin: 0; }
.cookie-notice { position: fixed; z-index: 500; right: max(1rem, var(--gutter)); bottom: 1rem; display: flex; width: min(34rem, calc(100% - 2rem)); align-items: center; gap: 1rem; padding: 1rem; color: #fff; background: var(--navy-deep); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.cookie-notice[hidden] { display: none; }
.cookie-notice p { min-width: 0; flex: 1 1 auto; margin: 0; font-size: .8rem; }
.cookie-notice .button { min-width: 7rem; flex: 0 0 auto; white-space: nowrap; overflow-wrap: normal; word-break: normal; }
.cookie-notice a { color: #ffbd78; }
.error-page { padding: var(--section) 0; }
.error-layout { display: grid; align-items: center; grid-template-columns: 1fr .7fr; gap: 3rem; }
.error-code { display: block; color: var(--orange); font-size: 1rem; font-weight: 900; letter-spacing: .2em; }
.error-layout h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
.error-layout img { width: min(25rem, 100%); margin-inline: auto; opacity: .14; }

@media (max-width: 68rem) {
  .nav-toggle { display: grid; }
  .menu-open .site-header { position: fixed; top: var(--wp-admin--admin-bar--height, 0px); right: 0; left: 0; background: var(--paper); -webkit-backdrop-filter: none; backdrop-filter: none; }
  .site-navigation { position: fixed; top: calc(5.6rem + var(--wp-admin--admin-bar--height, 0px)); right: 0; bottom: 0; left: 0; display: block; visibility: hidden; padding: 1.25rem var(--gutter) 3rem; overflow-y: auto; background: var(--paper); opacity: 0; transform: translateY(-.6rem); transition: opacity .2s, transform .2s, visibility .2s; }
  .menu-open .site-navigation { visibility: visible; opacity: 1; transform: none; }
  .menu-open .nav-toggle-lines span:nth-child(1) { transform: translateY(.37rem) rotate(45deg); }
  .menu-open .nav-toggle-lines span:nth-child(2) { opacity: 0; }
  .menu-open .nav-toggle-lines span:nth-child(3) { transform: translateY(-.37rem) rotate(-45deg); }
  .primary-menu { display: grid; align-items: stretch; gap: 0; }
  .primary-menu > li { border-bottom: 1px solid var(--line); }
  .primary-menu > li > a, .submenu-toggle { width: 100%; min-height: 3.75rem; justify-content: space-between; font-size: 1.15rem; }
  .megamenu { position: static; display: none; visibility: visible; grid-template-columns: 1fr 1fr; padding: 0 0 1.5rem; border: 0; box-shadow: none; opacity: 1; transform: none; }
  .has-megamenu.is-open .megamenu { display: grid; }
  .megamenu-intro { grid-column: 1 / -1; }
  .megamenu-group:last-child { grid-column: 1 / -1; }
  .nav-cta { width: 100%; margin-top: 1.25rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; }
  .hero-visual { min-height: 25rem; }
  .impact-card-main { top: 8%; }
  .trust-row { padding-bottom: 7rem; }
  .project-card, .project-card-wide { grid-column: span 3; }
  .impact-layout { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; }
  .news-filters { grid-template-columns: 1fr 1fr; }
  .filter-search { grid-column: 1 / -1; }
  .filter-actions { justify-content: flex-start; }
}

@media (max-width: 48rem) {
  :root { --section: clamp(3.7rem, 12vw, 5.5rem); }
  .header-inner { min-height: 4.8rem; }
  .site-navigation { top: calc(4.8rem + var(--wp-admin--admin-bar--height, 0px)); }
  .brand { width: 9.5rem; }
  .home-hero { min-height: auto; padding-top: 3.8rem; }
  .hero-copy h1 { font-size: clamp(3rem, 14vw, 4.7rem); }
  .hero-visual { min-height: 23rem; }
  .impact-card { width: 54%; }
  .impact-card-main { left: .25rem; }
  .impact-card-side { right: .25rem; }
  .impact-number { font-size: 3.2rem; }
  .trust-row { gap: .8rem 1.2rem; padding-bottom: 6rem; }
  .split-heading, .page-hero-inner, .archive-hero-grid, .project-hero-grid, .longevity-card, .error-layout { grid-template-columns: 1fr; }
  .section-heading { display: grid; align-items: start; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card, .project-card-wide { min-height: 23rem; grid-column: 1; }
  .card-stat { top: 1.5rem; right: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { min-height: 10rem; }
  .longevity-art { min-height: 19rem; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { display: block; }
  .news-card-media { height: auto; min-height: auto; aspect-ratio: 3 / 2; }
  .news-card-body { padding: 1.25rem; }
  .news-card p { -webkit-line-clamp: 3; }
  .prose .amac-facts { grid-template-columns: 1fr 1fr; }
  .prose .amac-service-grid { grid-template-columns: 1fr; }
  .prose .amac-service-item { grid-template-columns: 1fr; gap: .7rem; }
  .project-hero-mark { min-height: 13rem; }
  .news-filters { grid-template-columns: 1fr; padding: 1rem; }
  .filter-search { grid-column: auto; }
  .archive-summary { align-items: start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: .65rem; }
  .amac-document-filters { grid-template-columns: 1fr; }
  .amac-document-card { grid-template-columns: auto minmax(0, 1fr); }
  .amac-document-card .button { grid-column: 1 / -1; }
}

@media (max-width: 34rem) {
  .megamenu { grid-template-columns: 1fr; }
  .megamenu-intro, .megamenu-group:last-child { grid-column: auto; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .hero-visual { min-height: 26rem; }
  .impact-card { width: 62%; }
  .impact-card-side { bottom: .5rem; }
  .trust-row { display: grid; }
  .stats-grid { grid-template-columns: 1fr; }
  .inline-facts { display: grid; grid-template-columns: 1fr 1fr; }
  .contact-card { border-radius: var(--radius); }
  .contact-actions a { align-items: flex-start; }
  .news-card { display: block; }
  .news-card-media { min-height: auto; aspect-ratio: 3 / 2; }
  .prose .amac-facts { grid-template-columns: 1fr; }
  .prose .amac-meal-schedule > span { grid-template-columns: 1fr; gap: .15rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .post-navigation { grid-template-columns: 1fr; }
  .post-navigation > span:last-child { text-align: left; }
  .cookie-notice { align-items: stretch; flex-direction: column; }
  .cookie-notice .button { width: 100%; }
}

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

@media print {
  .site-header, .site-footer, .cookie-notice, .news-filters, .hero-actions { display: none !important; }
  body { color: #000; background: #fff; }
  .site-main { overflow: visible; }
  a { color: #000; }
}
