@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url(../assets/fonts/cormorant-garamond-italic.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(../assets/fonts/cormorant-garamond-normal.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(../assets/fonts/figtree-normal.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #f7f8f2;
  --paper-2: #edf0e7;
  --paper-3: #e0e5d8;
  --white: #fff;
  --ink: #233c30;
  --ink-soft: #566158;
  --ink-mute: #69736a;
  --moss: #294d39;
  --moss-mid: #3b6249;
  --leaf: #607747;
  --line: #dce1d5;
  --line-strong: #c2cbbd;
  --radius: 3px;
  --header: clamp(76px, 6.7vw, 96px);
  --gutter: clamp(20px, 4vw, 56px);
  --max: 1280px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Figtree', 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 24px); }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.nav-open, body.lightbox-open { overflow: hidden; }
::selection { background: #d8e3c6; color: var(--ink); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button, a, input, textarea, select { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid #879b57; outline-offset: 5px; }
button { cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -.035em; text-wrap: balance; }
h2 { font-size: clamp(2.1rem, 3.7vw, 3.5rem); }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
.wrap, .wrap-wide { width: min(calc(100% - var(--gutter) * 2), var(--max)); margin-inline: auto; }
.eyebrow { display: block; color: var(--leaf); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 24px; line-height: 1.6; }
.lead { color: var(--ink-soft); font-size: 19px; line-height: 1.75; max-width: 42rem; }
.muted { color: var(--ink-soft); }

/* A quiet, consistent navigation on every page. */
.site-header { position: sticky; top: 0; height: var(--header); z-index: 50; display: flex; align-items: center; background: var(--paper); color: var(--ink); border-bottom: 1px solid transparent; transition: border-color .2s; }
.site-header.is-solid { border-bottom-color: var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-mark { display: block; width: clamp(168px, 15vw, 204px); height: auto; }
.nav-desktop { display: flex; align-items: center; gap: 30px; }
.nav-item { position: relative; }
.nav-link { display: inline-flex; align-items: center; gap: 10px; padding-block: 16px; font-size: 13px; font-weight: 500; }
.nav-item > .nav-link::after { content: ''; width: 5px; height: 5px; border-right: 1px solid; border-bottom: 1px solid; transform: rotate(45deg) translateY(-2px); }
.nav-link.active, .nav-link:hover { color: var(--leaf); }
.nav-cta { display: inline-flex; align-items: center; gap: 30px; background: var(--moss); color: #fff; font-size: 13px; padding: 12px 22px; border-radius: var(--radius); transition: background .2s; }
.text-link::after, .more::after { content: '↗'; font-size: 19px; font-weight: 400; line-height: 1; }
.nav-cta:hover { background: var(--moss-mid); }
.dropdown { position: absolute; top: 100%; left: -20px; min-width: 250px; padding: 12px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 14px 30px #233c3010; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .2s, transform .2s, visibility .2s; }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a { display: block; padding: 10px 12px; font-size: 14px; }
.dropdown a:hover, .dropdown a.active { background: var(--paper-2); }
.nav-toggle { display: none; position: relative; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); background: transparent; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { position: absolute; width: 18px; height: 1px; left: 12px; background: currentColor; transition: transform .2s; }
.nav-toggle span { top: 21px; }
.nav-toggle span::before, .nav-toggle span::after { content: ''; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }
.nav-mobile { display: none; }

/* Editorial opening: a generous headline beside the actual garden. */
.hero { display: grid; grid-template-columns: 46% 54%; position: relative; width: min(calc(100% - 64px), 1440px); margin: 0 auto; }
.hero > .hero-media { grid-column: 2; grid-row: 1; position: relative; min-height: clamp(500px, 42vw, 640px); overflow: hidden; border-radius: var(--radius); }
.hero-media > img { width: 100%; height: 100%; object-fit: cover; }
.hero > .hero-media > img { position: absolute; inset: 0; object-position: 57% center; }
.hero-inner { position: relative; }
.hero > .hero-inner { grid-column: 1; grid-row: 1; display: flex; flex-direction: column; justify-content: center; padding: 64px 40px 70px max(24px, calc((100vw - 1280px) / 2 - 32px)); }
.hero .eyebrow { font-size: 12px; letter-spacing: .14em; margin-bottom: 28px; }
.hero h1 { font-size: clamp(3.6rem, 5.5vw, 5.5rem); max-width: 11ch; line-height: .99; letter-spacing: -.05em; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 38px; }
.hero-actions .btn { padding-inline: 20px; gap: 18px; }
.hero-award { position: absolute; bottom: 26px; right: 26px; display: grid; place-items: center; width: 105px; height: 105px; border-radius: 50%; background: #f9f9f0; padding: 9px; box-shadow: 0 6px 24px #1b332b22; transition: transform .25s; }
.hero-award img { width: 100%; height: 100%; object-fit: contain; }
.hero-meta { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 24px; padding: 30px 0; border-bottom: 1px solid var(--line); color: var(--ink-mute); font-size: 12px; }
.hero-meta > div { padding: 0 28px; border-left: 1px solid var(--line); }
.hero-meta > div:first-child { padding-left: 0; border-left: 0; }
.hero-meta > div:last-child { padding-right: 0; }
.hero-meta strong { display: block; font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.page-hero { position: relative; display: flex; align-items: end; min-height: clamp(360px, 36vw, 540px); margin: 0 32px; overflow: hidden; border-radius: var(--radius); color: #fff; background: var(--moss); }
.page-hero .hero-media { position: absolute; inset: 0; }
.page-hero .hero-media::after { position: absolute; content: ''; inset: 0; background: linear-gradient(90deg, #14291fd6, #14291f08); }
.page-hero .hero-inner { width: min(calc(100% - var(--gutter) * 2), var(--max)); margin: 0 auto; padding: 100px 0 64px; }
.page-hero h1 { max-width: 19ch; font-size: clamp(3rem, 5.5vw, 5rem); }
.page-hero .eyebrow { color: #e0e9cd; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 28px; min-height: 50px; padding: 12px 24px; border: 1px solid transparent; border-radius: var(--radius); font-size: 13px; font-weight: 500; line-height: 1.5; transition: background .2s, color .2s; }
.btn-primary { background: var(--moss); color: #fff; }
.btn-primary:hover { background: var(--moss-mid); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: var(--paper-3); }
.btn-ghost { border-color: #ffffff70; color: #fff; background: transparent; }
.btn-ghost-dark { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn-ghost-dark:hover { background: var(--paper-2); }
.text-link { display: inline-flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line-strong); font-size: 12px; }
.text-link::after { content: '↓'; font-size: 16px; }
.text-link:hover { border-color: var(--ink); }

.section { padding: clamp(60px, 7.2vw, 104px) 0; }
.section-head { display: grid; grid-template-columns: 1fr minmax(0, 340px); align-items: end; gap: 56px; margin-bottom: 46px; }
.section-head .muted { font-size: 14px; margin-bottom: 5px; }
.section-head .eyebrow { margin-bottom: 15px; }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(36px, 6vw, 88px); }
.split > *, .contact-grid > *, .footer-grid > * { min-width: 0; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split h2 { max-width: 17ch; }
.frame { overflow: hidden; border-radius: var(--radius); background: var(--paper-2); }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.split .frame img { aspect-ratio: 4 / 3; }
.split .frame-tall img { aspect-ratio: 4 / 5; }
.band { background: var(--paper-2); }

/* Images and copy each have their own space. */
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 46px 28px; }
.card { display: flex; flex-direction: column; position: relative; min-width: 0; }
.card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); transition: opacity .2s; }
.card:hover > img { opacity: .94; }
.card-body { flex: 1; position: relative; display: flex; flex-direction: column; padding: 23px 0 19px; border-bottom: 1px solid var(--line-strong); }
.card h3 { font-size: clamp(1.6rem, 2.3vw, 2rem); letter-spacing: -.03em; margin-bottom: 12px; }
.card p { color: var(--ink-soft); font-size: 14px; line-height: 1.65; max-width: 34ch; padding-right: 16px; }
.more { display: flex; align-items: center; justify-content: space-between; font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .11em; padding-top: 10px; margin-top: auto; }
.more::after { transition: transform .2s; }
.card:hover .more::after { transform: translate(3px, -3px); }

.gallery { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 18px; }
.gallery figure { min-width: 0; height: clamp(220px, 26vw, 390px); overflow: hidden; margin: 0; border-radius: var(--radius); background: var(--paper-3); }
.gallery-zoom { position: relative; display: block; padding: 0; width: 100%; height: 100%; background: none; border: 0; cursor: zoom-in; }
.zoom-indicator { position: absolute; bottom: 16px; right: 16px; display: block; width: 36px; height: 36px; border-radius: 50%; color: var(--ink); background: var(--paper); font-size: 24px; font-weight: 400; opacity: 0; transform: translateY(4px); transition: opacity .2s, transform .2s; }
.gallery-zoom:hover .zoom-indicator, .gallery-zoom:focus-visible .zoom-indicator { opacity: 1; transform: none; }
.zoom-indicator { pointer-events: none; }
.zoom-indicator::before, .zoom-indicator::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: currentColor; }
.zoom-indicator::before { width: 14px; height: 2px; }
.zoom-indicator::after { width: 2px; height: 14px; }
.gallery-zoom:focus-visible { outline-offset: -6px; z-index: 1; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-zoom:hover img { transform: scale(1.035); }
.g-3 { grid-column: span 3; }
.g-4 { grid-column: span 4; }
.g-6 { grid-column: span 6; }
.g-8 { grid-column: span 8; }
.g-12 { grid-column: span 12; }

.award { background: var(--moss); color: var(--paper); }
.award-grid { display: grid; grid-template-columns: 210px 1fr; align-items: center; gap: 90px; max-width: 1100px; }
.award-grid > img { width: 195px; height: auto; }
.award h2 { max-width: 23ch; font-size: clamp(2rem, 3.3vw, 3rem); }
.award p:not(.eyebrow) { font-size: 14px; color: #dce4d7; max-width: 650px; }
.award blockquote { margin: 28px 0 24px; padding-top: 24px; border-top: 1px solid #ffffff30; font-family: var(--serif); font-style: italic; font-size: 24px; line-height: 1.4; }
.award a { display: inline-block; padding-block: 5px; border-bottom: 1px solid #ffffff60; }
.award a:hover { border-color: #fff; }
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 36px; }
.stat { padding-top: 17px; border-top: 1px solid var(--line-strong); }
.stat b { display: block; font-family: var(--serif); font-size: 38px; font-weight: 500; line-height: 1.1; margin-bottom: 9px; }
.stat span { display: block; color: var(--ink-mute); font-size: 11px; line-height: 1.6; }

.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px 28px; }
.person { padding: 24px 0; border-top: 1px solid var(--line-strong); }
.person strong { display: block; font-size: 17px; font-weight: 500; margin-bottom: 5px; }
.person span { color: var(--ink-soft); font-size: 14px; }
.job { border-top: 1px solid var(--line-strong); padding: 34px 0; }
.job h3 { font-size: 32px; margin-bottom: 12px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.chip { border: 1px solid var(--line-strong); padding: 5px 12px; border-radius: 2px; font-size: 12px; color: var(--ink-soft); }
.list-clean { margin: 0; padding-left: 1.1em; color: var(--ink-soft); }
.list-clean li { margin: .4em 0; }
.partner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.partner article { background: var(--white); border: 1px solid var(--line); padding: 36px; }
.partner h3 { font-size: 32px; margin: 8px 0 14px; }

.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: start; }
.contact-grid h2 { font-size: 36px; }
.contact-grid a:not(.btn) { text-decoration: underline; text-underline-offset: 4px; }
.contact-card { padding: 38px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
label { display: block; font-size: 12px; font-weight: 500; margin-bottom: 8px; }
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input, textarea, select { width: 100%; min-width: 0; padding: 12px 14px; background: var(--paper); border: 1px solid var(--line-strong); border-radius: 2px; font-size: 16px; }
input:focus, textarea:focus, select:focus { border-color: var(--moss); }
textarea { min-height: 160px; resize: vertical; }
.form-note { display: none; color: var(--moss); font-size: 14px; margin-top: 20px; }
.form-note.show { display: block; }
.map { display: block; width: 100%; height: 320px; border: 1px solid var(--line); border-radius: var(--radius); }
.prose { max-width: 760px; overflow-wrap: anywhere; }
.prose h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); margin-bottom: 32px; }
.prose h2 { font-size: 32px; margin: 2rem 0 1rem; }
.prose h3 { font-size: 25px; margin: 1.5rem 0 .75rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

.cta-band { background: var(--moss); color: var(--paper); }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 56px; }
.cta-band h2 { font-size: clamp(2.5rem, 4.6vw, 4rem); max-width: 19ch; }
.cta-band .btn { flex-shrink: 0; }
.site-footer { padding: 78px 0 28px; background: #f0f2e9; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1.2fr .85fr 1fr; gap: 42px; }
.site-footer .footer-brand { display: inline-block; width: min(220px, 100%); margin: 0 0 18px; padding: 0; }
.footer-brand img { width: 100%; height: auto; }
.site-footer p, .site-footer a { color: var(--ink-soft); font-size: 13px; }
.site-footer a { display: block; padding: 4px 0; }
.site-footer a:hover { color: var(--moss); text-decoration: underline; text-underline-offset: 4px; }
.site-footer h3 { font-family: var(--sans); font-size: 12px; line-height: 1.5; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 20px; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line-strong); color: var(--ink-mute); font-size: 11px; }
.members { display: flex; align-items: center; gap: 18px; }
.members img { max-width: 115px; width: auto; height: 38px; object-fit: contain; }

.lightbox { position: fixed; inset: 0; width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 60px 32px; border: 0; background: #132119f5; color: #fff; }
.lightbox[open] { display: flex; align-items: center; justify-content: center; }
.lightbox::backdrop { background: #132119f5; }
.lightbox img { max-width: min(1400px, 94vw); max-height: 84dvh; object-fit: contain; }
.lightbox > button { position: absolute; top: 18px; right: 20px; width: 44px; height: 44px; border: 1px solid #ffffff55; background: transparent; color: #fff; border-radius: 50%; font-size: 26px; line-height: 1; }

@media (min-width: 1600px) { .hero > .hero-inner { padding-left: 56px; } }
@media (max-width: 1100px) {
  :root { --header: 84px; }

  .nav-desktop { gap: 22px; }
  .hero { width: calc(100% - 40px); grid-template-columns: 47% 53%; }
  .hero > .hero-inner { padding: 48px 26px 48px 12px; }

  .hero h1 { font-size: clamp(3rem, 5.8vw, 4rem); }
  .hero-actions { gap: 16px; }
  .hero-meta { margin-inline: 12px; }

  .award-grid { gap: 50px; }
  .contact-grid { gap: 40px; }
  .footer-grid { gap: 28px; }
}
@media (max-width: 800px) {
  :root { --header: 76px; }
  .nav-desktop { display: none; }
  .brand-mark { width: 168px; }
  .nav-toggle { display: block; }
  .nav-mobile { position: fixed; inset: var(--header) 0 0; z-index: 49; padding: 24px 32px 48px; background: var(--paper); overflow-y: auto; overscroll-behavior: contain; }
  .nav-open .nav-mobile { display: block; }
  .nav-mobile a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav-mobile .btn { display: flex; padding: 14px 20px; font-size: 14px; }
  .nav-mobile .group-title { font-size: 12px; text-transform: uppercase; letter-spacing: .15em; color: var(--ink-mute); margin: 26px 0 8px; }
  .hero h1 { font-size: clamp(2.6rem, 6.2vw, 3.5rem); }
  .hero .eyebrow { max-width: 27ch; font-size: 12px; }

  .hero-meta { font-size: 11px; }
  .hero-meta > div { padding-inline: 18px; }
  .hero-meta strong { font-size: 13px; }
  .hero-award { width: 86px; height: 86px; bottom: 18px; right: 18px; }

  .split, .split.reverse, .contact-grid { grid-template-columns: 1fr; gap: 36px; direction: ltr; }
  .split h2 { max-width: 22ch; }
  .section-head { grid-template-columns: 1fr; gap: 22px; margin-bottom: 32px; }
  .section-head .muted { max-width: 40ch; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 22px; }
  .card h3 { font-size: 27px; }
  .split .frame-tall img { aspect-ratio: 5 / 4; }
  .award-grid { grid-template-columns: 125px 1fr; gap: 36px; }
  .award-grid > img { width: 125px; }
  .award blockquote { font-size: 22px; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats { max-width: 600px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr; gap: 44px; }
  .page-hero { margin-inline: 20px; min-height: 420px; }
  .page-hero .hero-inner { width: calc(100% - 48px); padding: 70px 0 44px; }
  .page-hero h1 { font-size: 54px; }
  .cta-band .wrap { align-items: start; flex-direction: column; gap: 30px; }
  .partner { grid-template-columns: 1fr; }
}
@media (min-width: 541px) and (max-width: 680px) {
  .hero { width: calc(100% - 40px); grid-template-columns: 1fr; }
  .hero > .hero-inner { grid-column: 1; grid-row: 1; padding: 36px 12px; }
  .hero > .hero-media { grid-column: 1; grid-row: 2; min-height: 0; aspect-ratio: 6 / 5; }
  .hero h1 { font-size: clamp(3rem, 9vw, 4rem); max-width: 12ch; }
}
@media (hover: none) {
  .zoom-indicator { opacity: 1; transform: none; }
}
@media (max-width: 540px) {

  .hero { width: calc(100% - 24px); grid-template-columns: 1fr; }
  .hero > .hero-inner { grid-column: 1; grid-row: 1; padding: 36px 12px 38px; }
  .hero .eyebrow { max-width: none; font-size: 12px; margin-bottom: 21px; }
  .hero h1 { font-size: clamp(52px, 13vw, 69px); max-width: 12ch; }
  .hero-actions { margin-top: 28px; gap: 20px; }
  .hero-actions .btn { min-height: 48px; padding-inline: 16px; gap: 14px; font-size: 12px; }
  .text-link { font-size: 11px; gap: 8px; }
  .hero > .hero-media { grid-column: 1; grid-row: 2; min-height: 0; aspect-ratio: 6 / 5; }
  .hero > .hero-media > img { object-position: center; }
  .hero-meta { grid-template-columns: 1fr; padding: 12px 0; margin-inline: 8px; }
  .hero-meta > div, .hero-meta > div:first-child, .hero-meta > div:last-child { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 12px 0; border: 0; }
  .hero-meta > div + div { border-top: 1px solid var(--line); }
  .hero-meta strong { margin: 0; flex-shrink: 0; font-size: 12px; }
  .hero-meta > div { font-size: 12px; flex-wrap: wrap; gap: 3px 16px; }

  .eyebrow { margin-bottom: 18px; font-size: 12px; }
  h2 { font-size: clamp(2rem, 7.5vw, 2.375rem); }
  .lead { font-size: 17px; }
  .card-grid { grid-template-columns: 1fr; gap: 32px; }
  .card > img { aspect-ratio: 3 / 2; }
  .card-body { padding-top: 20px; }
  .card h3 { font-size: 30px; }
  .card p { max-width: 100%; }
  .gallery { gap: 12px; }
  .gallery figure { grid-column: span 6; height: clamp(170px, 48vw, 250px); }
  .gallery figure.g-8, .gallery figure.g-12 { grid-column: span 12; height: clamp(240px, 70vw, 380px); }
  .gallery figure:last-child:nth-child(2n) { grid-column: span 12; }
  .zoom-indicator { opacity: 1; transform: none; width: 28px; height: 28px; bottom: 10px; right: 10px; font-size: 20px; }
  .award-grid { grid-template-columns: 1fr; gap: 32px; }
  .award-grid > img { width: 105px; }
  .award h2 { font-size: 35px; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
  .stat b { font-size: clamp(27px, 7vw, 38px); }
  .stat span { font-size: 12px; }
  .team-grid { grid-template-columns: 1fr; gap: 0; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-card { padding: 24px 20px; }
  .contact-grid h2 { font-size: 30px; }
  .partner article { padding: 26px; }
  .page-hero { margin-inline: 12px; min-height: 360px; }
  .page-hero .hero-inner { width: calc(100% - 40px); padding-bottom: 34px; }
  .page-hero h1 { font-size: clamp(38px, 10vw, 50px); overflow-wrap: anywhere; }
  .page-hero .hero-media::after { background: linear-gradient(0deg, #14291fda, #14291f25); }
  .site-footer { padding-top: 54px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-bottom { margin-top: 36px; }

  .site-footer h3 { font-size: 12px; }
  .site-footer a, .site-footer p { font-size: 12px; }
  .lightbox { padding-inline: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
