:root {
  --green: #173f32;
  --green-dark: #0d2e25;
  --cream: #f5efe3;
  --paper: #fffdf8;
  --gold: #cda85d;
  --gold-light: #ebcc8d;
  --ink: #183027;
  --muted: #637168;
  --line: #dcd8ca;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; overflow-wrap: anywhere; }
body.admin-bar .site-header { top: 32px; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; height: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header { height: 94px; padding: 0 clamp(24px, 4vw, 68px); display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--cream); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(23,63,50,.12); }
.brand { font-family: Georgia, "Times New Roman", serif; font-size: clamp(21px, 2vw, 30px); font-weight: 700; color: var(--green); letter-spacing: -.02em; }
.main-nav-list { list-style: none; display: flex; gap: clamp(13px, 1.55vw, 29px); align-items: center; margin: 0; padding: 0; font-size: 14px; }
.main-nav-list a { position: relative; display: block; padding: 11px 0; }
.main-nav-list a::after { content: ""; height: 2px; background: var(--gold); position: absolute; left: 0; right: 100%; bottom: 4px; transition: right .2s ease; }
.main-nav-list a:hover::after, .main-nav-list a:focus-visible::after, .main-nav-list .current-menu-item > a::after { right: 0; }
.menu-button { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.menu-button span { display: block; height: 2px; background: var(--green); margin: 5px 0; transition: transform .18s ease, opacity .18s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { min-height: calc(100svh - 94px); position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr); align-items: end; gap: 58px; padding: clamp(52px, 7vh, 92px) clamp(24px, 4vw, 68px) clamp(54px, 7vh, 78px); color: var(--paper); background: var(--green-dark) var(--hero-image) center/cover no-repeat; overflow: hidden; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,42,32,.98) 0%, rgba(8,42,32,.88) 34%, rgba(8,42,32,.30) 68%, rgba(8,42,32,.08) 100%), linear-gradient(0deg, rgba(8,29,24,.28), transparent 48%); }
.hero-copy, .contact-quick { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 18px; text-transform: uppercase; letter-spacing: .14em; font-size: 13px; font-weight: 700; color: #416253; }
.eyebrow.gold { color: var(--gold-light); }
.hero h1, h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.035em; }
.hero h1 { font-size: clamp(55px, 6.2vw, 104px); line-height: .94; margin: 0; max-width: 890px; }
.gold-line { width: 68px; height: 2px; background: var(--gold); margin: 34px 0 26px; }
.hero-lead { font-size: clamp(19px, 1.7vw, 27px); line-height: 1.45; max-width: 690px; margin: 0; color: rgba(255,253,248,.92); }
.hero-actions { display: flex; gap: 18px; margin-top: 38px; }
.button { min-height: 58px; padding: 0 31px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--gold); font-size: 17px; font-weight: 700; transition: background .18s ease, color .18s ease, transform .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold-light); color: var(--green-dark); }
.button-gold:hover { background: #f4d9a2; }
.button-outline { color: var(--paper); background: rgba(13,46,37,.3); }
.button-outline:hover { background: var(--green); }

.contact-quick { width: min(100%, 560px); justify-self: end; background: rgba(10,65,50,.95); border: 1px solid rgba(235,204,141,.24); padding: 30px 34px 18px; backdrop-filter: blur(8px); box-shadow: 0 20px 60px rgba(0,0,0,.24); }
.quick-title { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--gold); padding-bottom: 22px; }
.quick-title h2 { font-size: clamp(25px, 2.2vw, 37px); margin: 0; }
.contact-quick dl { margin: 0; }
.contact-quick dl div { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.contact-quick dl div:last-child { border-bottom: 0; }
.contact-quick dt { color: var(--gold-light); font-size: 13px; }
.contact-quick dd { margin: 0; font-size: 17px; line-height: 1.45; }
.contact-quick a { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.prototype-note { position: absolute; z-index: 2; right: clamp(24px,4vw,68px); bottom: 15px; margin: 0; font-size: 11px; color: rgba(255,255,255,.62); }

.section { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 140px); padding-block: 112px; }
h2 { font-size: clamp(42px, 5vw, 72px); line-height: 1.03; margin: 0; }
.intro-copy p { color: var(--muted); font-size: 18px; line-height: 1.72; }
.intro-copy .lead { color: var(--ink); font-size: clamp(22px, 2.2vw, 30px); line-height: 1.48; margin-top: 0; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 46px; border-top: 1px solid var(--line); padding-top: 30px; }
.facts strong { display: block; min-height: 54px; font-family: Georgia, serif; font-size: 24px; color: var(--green); }
.facts span { display: block; margin-top: 7px; color: var(--muted); font-size: 13px; }
.section-copy { color: var(--muted); font-size: 18px; line-height: 1.7; }
.section-copy p { margin: 0 0 16px; }
.light-copy { color: rgba(255,253,248,.78); font-size: 19px; line-height: 1.65; }

.split-section { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
.history-card, .people-card { padding: clamp(70px, 8vw, 120px) max(24px, calc((100vw - 1180px)/2)); }
.history-card { padding-left: max(24px, calc((100vw - 1180px)/2)); padding-right: clamp(42px, 7vw, 110px); background: var(--green-dark); color: var(--paper); }
.people-card { padding-left: clamp(42px, 7vw, 110px); padding-right: max(24px, calc((100vw - 1180px)/2)); background: #e8ece6; }
.history-card h2, .people-card h2 { font-size: clamp(42px, 4vw, 62px); }
.history-card p:not(.eyebrow), .people-card p:not(.eyebrow) { font-size: 18px; line-height: 1.7; margin: 28px 0 35px; opacity: .84; }
.status-pill { display: inline-flex; border: 1px solid rgba(255,255,255,.3); padding: 10px 14px; font-size: 13px; }
.status-pill.light { border-color: rgba(23,63,50,.25); }

.products-section { padding: 108px 0; background: var(--paper); }
.products-heading { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 9vw, 140px); align-items: end; }
.products-grid { margin-top: 58px; border-top: 1px solid var(--line); }
.products-grid article { min-height: 150px; display: grid; grid-template-columns: 76px 1fr auto; gap: 30px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--line); }
.product-number { font-family: Georgia, serif; font-size: 30px; color: var(--gold); }
.products-grid h3 { margin: 0 0 11px; font-family: Georgia, serif; font-size: clamp(25px, 2.4vw, 34px); font-weight: 500; }
.products-grid p { max-width: 650px; margin: 0; color: var(--muted); line-height: 1.6; }
.product-status { padding: 10px 14px; border: 1px solid var(--line); color: #8a7350; font-size: 13px; white-space: nowrap; }

.water-section { background: var(--green); color: var(--paper); padding: 108px 0; }
.water-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 60px; }
.service-card { min-height: 330px; padding: 28px; border: 1px solid rgba(255,255,255,.2); display: flex; flex-direction: column; }
.service-card.accent { background: var(--gold-light); color: var(--green-dark); border-color: var(--gold-light); }
.service-mark { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 22px; }
.service-card h3 { font-family: Georgia, serif; font-size: 27px; margin: 40px 0 15px; }
.service-card p { line-height: 1.55; opacity: .78; }
.service-card a, .service-card .awaiting { margin-top: auto; padding-top: 22px; font-weight: 700; font-size: 14px; }
.service-card a span { float: right; font-size: 20px; }
.awaiting { color: #8a7350; font-size: 13px; }
.water-section .awaiting { color: var(--gold-light); }
.service-card.accent .awaiting { color: var(--green); }
.notices-panel { margin-top: 34px; padding: 28px 30px; border: 1px solid rgba(235,204,141,.44); background: rgba(9,45,35,.32); display: grid; grid-template-columns: 220px 1fr; gap: 30px; }
.notices-panel > strong { color: var(--gold-light); }
.notices-panel > div { display: grid; gap: 22px; }
.notices-panel article { padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.18); }
.notices-panel article:last-child { padding-bottom: 0; border-bottom: 0; }
.notices-panel h3 { margin: 0 0 10px; font: 500 24px/1.25 Georgia, serif; }
.notices-panel p { margin: 6px 0 0; line-height: 1.55; opacity: .8; }
.disclosure-note { margin-top: 34px; border-top: 1px solid rgba(255,255,255,.22); padding-top: 30px; display: grid; grid-template-columns: 220px 1fr auto; gap: 30px; align-items: start; }
.disclosure-note p { margin: 0; opacity: .76; line-height: 1.55; }
.disclosure-note a { color: var(--gold-light); font-weight: 700; }

.documents-section { padding-block: 112px; }
.section-heading { display: flex; justify-content: space-between; gap: 60px; align-items: end; }
.section-heading > .section-copy { max-width: 430px; }
.document-tools { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 45px 0 28px; }
.category-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.document-tools button { border: 1px solid var(--line); background: transparent; color: var(--ink); padding: 11px 15px; cursor: pointer; transition: .18s ease; }
.document-tools button:hover, .document-tools button.active { background: var(--green); color: white; border-color: var(--green); }
.year-filter { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 13px; }
.year-filter select { min-width: 130px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); padding: 11px 34px 11px 12px; }
.document-row { min-height: 112px; display: grid; grid-template-columns: 54px 1fr auto; gap: 22px; align-items: center; border-top: 1px solid var(--line); padding: 20px 4px; }
.document-row:last-child { border-bottom: 1px solid var(--line); }
.document-row[hidden] { display: none; }
.file-icon { width: 50px; height: 60px; border: 1px solid var(--green); display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.document-name span, .document-name p { color: var(--muted); font-size: 12px; margin: 0; }
.document-name h3 { margin: 7px 0; font-family: Georgia, serif; font-size: 21px; font-weight: 500; }
.document-row > a { font-weight: 700; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.document-empty { padding: 22px; background: var(--cream); color: var(--muted); }
.registry-note { color: var(--muted); font-size: 14px; line-height: 1.6; max-width: 800px; margin-top: 28px; }

.contacts-section { background: var(--cream); padding: 105px 0; }
.contacts-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.contacts-grid h2 { font-size: clamp(42px, 4vw, 62px); }
.contacts-grid > div > p:last-child { color: var(--muted); max-width: 470px; line-height: 1.6; }
.contacts-grid dl { margin: 0; border-top: 1px solid var(--line); }
.contacts-grid dl div { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contacts-grid dt { color: var(--muted); font-size: 13px; }
.contacts-grid dd { margin: 0; line-height: 1.45; }
.contacts-grid a { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.contacts-grid .privacy-contact-row { align-items: center; }
.privacy-contact-row a { display: inline-block; font-weight: 700; line-height: 1.5; }

.site-footer { padding: 34px clamp(24px,4vw,68px); background: #0a241c; color: var(--paper); display: grid; grid-template-columns: 1fr 1.4fr auto; align-items: center; gap: 30px; font-size: 13px; }
.site-footer > div:first-child { display: flex; flex-direction: column; gap: 6px; }
.site-footer span, .site-footer p { opacity: .62; }
.footer-top-link { justify-self: end; text-decoration: underline; text-decoration-color: rgba(235,204,141,.7); text-underline-offset: 4px; }
.site-footer .footer-legal { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(170px, .45fr) 1.55fr; gap: 30px; align-items: center; margin-top: 4px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2); }
.footer-legal span { color: var(--gold-light); font-size: 13px; font-weight: 700; letter-spacing: .06em; opacity: 1; text-transform: uppercase; }
.footer-legal a { width: fit-content; font-size: 16px; font-weight: 700; line-height: 1.45; text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 1px; text-underline-offset: 5px; }

.privacy-page, .publications-page { min-height: 100svh; background: var(--paper); }
.privacy-hero, .publications-hero { background: var(--green-dark); color: var(--paper); padding: clamp(70px,9vw,125px) 24px; }
.privacy-hero-inner { width: min(980px,100%); margin-inline: auto; }
.privacy-hero h1 { max-width: 970px; margin: 0; font-size: clamp(43px,6.2vw,82px); line-height: 1.03; letter-spacing: -.035em; }
.privacy-edition { margin: 32px 0 0; color: var(--gold-light); font-size: 14px; }
.privacy-content { width: min(900px,calc(100% - 48px)); margin-inline: auto; padding: 78px 0 110px; }
.privacy-draft-note { margin-bottom: 58px; padding: 24px 28px; border-left: 4px solid var(--gold); background: var(--cream); }
.privacy-draft-note strong { font-family: Georgia,serif; font-size: 22px; }
.privacy-draft-note p { margin-bottom: 0; }
.privacy-content .entry-content > h2 { margin: 40px 0 22px; padding-top: 10px; font-size: clamp(29px,3.5vw,42px); line-height: 1.15; border-top: 1px solid var(--line); }
.privacy-content .entry-content > h2:first-child { border-top: 0; margin-top: 0; }
.privacy-content p { margin: 0 0 15px; color: #3f5149; font-size: 17px; line-height: 1.75; }
.privacy-content a:not(.button) { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.privacy-bottom-link { margin-top: 46px; }
.privacy-bottom-link .button-outline { background: var(--green); color: var(--paper); }

.publications-hero { padding: clamp(76px,9vw,132px) 24px; }
.publications-hero-inner { width: min(1180px,100%); margin-inline: auto; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(48px,8vw,120px); align-items: end; }
.publications-hero h1 { margin: 0; font-size: clamp(58px,8vw,116px); line-height: .95; letter-spacing: -.045em; }
.publications-hero-copy { margin: 0 0 7px; color: rgba(255,253,248,.78); font-size: clamp(19px,2vw,26px); line-height: 1.55; }
.publications-content { width: min(1180px,calc(100% - 48px)); margin-inline: auto; padding: 104px 0 116px; }
.publications-intro { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(48px,9vw,140px); align-items: start; }
.publications-intro h2 { font-size: clamp(42px,5vw,72px); }
.publications-intro-text { color: var(--muted); font-size: 18px; line-height: 1.72; }
.publications-intro-text p { margin: 0 0 18px; }
.publications-categories { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 66px; }
.publications-categories article { min-height: 265px; padding: 30px; border: 1px solid var(--line); display: flex; flex-direction: column; }
.publications-categories span { color: var(--gold); font-family: Georgia,serif; font-size: 28px; }
.publications-categories h2 { margin: 42px 0 16px; font-size: clamp(28px,2.5vw,38px); }
.publications-categories p { margin: 0; color: var(--muted); line-height: 1.6; }
.publications-feed { margin-top: 100px; padding-top: 62px; border-top: 1px solid var(--line); }
.publications-feed-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.publications-feed-heading > p { max-width: 430px; margin: 0; color: var(--muted); line-height: 1.6; }
.publications-empty { margin-top: 42px; padding: 40px; border-left: 4px solid var(--gold); background: var(--cream); }
.publications-empty strong { display: block; margin-bottom: 12px; font-family: Georgia,serif; font-size: 26px; }
.publications-empty p { max-width: 780px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.publication-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 44px; }
.publication-card { border: 1px solid var(--line); background: #fff; }
.publication-card-link { display: flex; flex-direction: column; height: 100%; }
.publication-image { aspect-ratio: 16 / 9; overflow: hidden; background: var(--cream); }
.publication-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.publication-card-link:hover .publication-image img { transform: scale(1.025); }
.publication-card-copy { display: flex; flex: 1; flex-direction: column; padding: 28px; }
.publication-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--muted); font-size: 12px; }
.publication-meta span { color: #8a7350; }
.publication-card h3 { margin: 20px 0 14px; font: 500 clamp(25px,2.3vw,34px)/1.15 Georgia,serif; }
.publication-card p { margin: 0 0 28px; color: var(--muted); line-height: 1.65; }
.publication-card strong { margin-top: auto; color: var(--green); }
.pagination { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }
.pagination .page-numbers { min-width: 42px; min-height: 42px; display: grid; place-items: center; border: 1px solid var(--line); padding: 8px 12px; }
.pagination .current, .pagination a:hover { background: var(--green); color: white; border-color: var(--green); }
.publications-bottom-link { margin-top: 48px; }
.publications-bottom-link .button-outline { background: var(--green); color: var(--paper); }

.single-publication-hero, .inner-page-hero, .not-found { background: var(--green-dark); color: var(--paper); }
.single-publication-hero { padding: clamp(76px,9vw,128px) 24px; }
.single-publication-hero-inner, .inner-page-hero > div, .not-found > div { width: min(980px, 100%); margin-inline: auto; }
.single-publication-hero h1, .inner-page-hero h1, .not-found h1 { margin: 0; font-size: clamp(45px,6.4vw,84px); line-height: 1.02; }
.single-publication-meta { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 28px; color: var(--gold-light); font-size: 14px; }
.single-publication-content, .inner-page-content { width: min(900px, calc(100% - 48px)); margin-inline: auto; padding: 74px 0 108px; }
.single-publication-image { margin: 0 0 46px; }
.single-publication-image img { width: 100%; display: block; }
.entry-content { color: #3f5149; font-size: 18px; line-height: 1.75; }
.entry-content h2 { margin: 48px 0 20px; color: var(--ink); font-size: clamp(31px,4vw,48px); }
.entry-content h3 { margin: 36px 0 16px; color: var(--ink); font: 500 28px/1.2 Georgia,serif; }
.entry-content a { color: var(--green); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.entry-content blockquote { margin: 34px 0; padding: 22px 28px; border-left: 4px solid var(--gold); background: var(--cream); }
.publication-sources { display: flex; flex-wrap: wrap; gap: 14px 30px; margin-top: 48px; padding: 26px 0; border-block: 1px solid var(--line); }
.publication-sources strong { flex-basis: 100%; font-family: Georgia,serif; font-size: 23px; }
.publication-sources a, .single-back { font-weight: 700; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.single-back { display: inline-block; margin-top: 42px; }
.inner-page-hero { padding: clamp(70px,8vw,112px) 24px; }
.inner-page-hero p:last-child { max-width: 720px; margin: 28px 0 0; color: rgba(255,253,248,.78); font-size: 20px; line-height: 1.6; }
.inner-page-content > article { padding: 28px 0; border-bottom: 1px solid var(--line); }
.inner-page-content > article h2 { margin-top: 0; }
.not-found { min-height: 70svh; padding: clamp(90px,12vw,170px) 24px; }
.not-found p:not(.eyebrow) { max-width: 620px; margin: 26px 0 36px; color: rgba(255,253,248,.78); font-size: 20px; line-height: 1.6; }

.alignwide { max-width: 1180px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }
.wp-caption, .gallery-caption { color: var(--muted); font-size: 13px; }
.reveal { animation: rise .5s ease both; }
.reveal.delay { animation-delay: .12s; }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1100px) {
  .main-nav-list { gap: 13px; font-size: 13px; }
}

@media (max-width: 980px) {
  .site-header { height: 76px; }
  .menu-button { display: block; margin-left: auto; }
  .main-nav { display: none; position: absolute; top: 76px; left: 0; right: 0; background: var(--cream); padding: 14px 24px 22px; box-shadow: 0 18px 34px rgba(13,46,37,.16); }
  .main-nav.is-open { display: block; }
  .main-nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav-list a { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 40px; padding-top: 70px; }
  .contact-quick { justify-self: start; }
  .intro, .products-heading, .water-header, .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading { align-items: start; flex-direction: column; gap: 18px; }
  .disclosure-note, .notices-panel { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-top-link { justify-self: start; }
  .site-footer .footer-legal { grid-column: 1; grid-template-columns: 1fr; gap: 12px; }
  .publications-hero-inner, .publications-intro { grid-template-columns: 1fr; gap: 36px; }
  .publications-categories { grid-template-columns: 1fr; }
  .publications-categories article { min-height: auto; }
  .publications-feed-heading { align-items: start; flex-direction: column; gap: 18px; }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 720px) {
  .publication-list { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .brand { font-size: 20px; max-width: 250px; }
  .hero { padding: 58px 20px 54px; background-position: 61% center; }
  .hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero-shade { background: linear-gradient(90deg, rgba(8,42,32,.98), rgba(8,42,32,.78)), linear-gradient(0deg, rgba(8,29,24,.32), transparent); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .contact-quick { padding: 24px 20px 10px; }
  .contact-quick dl div { grid-template-columns: 1fr; gap: 7px; }
  .prototype-note { position: relative; right: auto; bottom: auto; z-index: 2; }
  .section { width: min(100% - 36px, 1180px); }
  .intro, .documents-section { padding-block: 76px; }
  .facts { grid-template-columns: 1fr; }
  .facts strong { min-height: auto; }
  .service-grid { grid-template-columns: 1fr; }
  .history-card, .people-card { padding: 72px 20px; }
  .products-section, .water-section { padding: 76px 0; }
  .products-grid article { grid-template-columns: 44px 1fr; gap: 18px; align-items: start; }
  .product-status { grid-column: 2; justify-self: start; }
  .document-row { grid-template-columns: 44px 1fr; }
  .document-tools { align-items: stretch; flex-direction: column; }
  .year-filter { justify-content: space-between; }
  .document-row > .awaiting, .document-row > a { grid-column: 2; }
  .document-name h3 { font-size: 18px; }
  .contacts-section { padding: 76px 0; }
  .contacts-grid dl div { grid-template-columns: 1fr; gap: 7px; }
  .privacy-hero, .publications-hero { padding: 64px 20px 70px; }
  .privacy-content, .single-publication-content, .inner-page-content { width: min(100% - 36px,900px); padding-block: 56px 76px; }
  .privacy-draft-note { padding: 21px 20px; }
  .publications-content { width: min(100% - 36px,1180px); padding-block: 72px 82px; }
  .publications-categories { margin-top: 48px; }
  .publications-categories article { padding: 25px 22px; }
  .publications-categories h2 { margin-top: 30px; }
  .publications-feed { margin-top: 72px; padding-top: 48px; }
  .publications-empty { padding: 28px 22px; }
  .publication-card-copy { padding: 24px 22px; }
  .single-publication-hero, .inner-page-hero { padding: 64px 20px 70px; }
}

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

:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }
