/* ============================================================
   Cape York Grassroots Aboriginal Corporation
   Art direction: Cape York Country — ochre, red dirt, rainforest
   ============================================================ */

:root {
  --ochre: #C2592B;
  --ochre-hover: #A84B22;
  --red-dirt: #8C311C;
  --moss: #1C3F30;
  --moss-light: #2A5944;
  --clay: #EDE6DC;
  --sand: #F6F2EC;
  --ink: #1A1715;
  --bark: #6B5E52;
  --line: rgba(26, 23, 21, 0.12);
  --glass: rgba(246, 242, 236, 0.85);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Plus Jakarta Sans", -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain */
body::before {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--ochre); color: var(--sand); }

img { max-width: 100%; display: block; }
a { color: inherit; }

.mono { font-family: var(--mono); font-size: 0.85em; letter-spacing: 0.02em; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 3000;
  background: var(--ink);
  color: var(--sand);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  transition: top 0.25s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container { padding: 0 3rem; } }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.site-header.is-scrolled {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .header-inner { padding: 1.1rem 3rem; } }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark { width: 34px; height: 34px; color: var(--ochre); flex: none; }
.brand-text { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; line-height: 1; letter-spacing: -0.01em; }
.brand-text em { font-style: italic; color: var(--ochre); }
.brand.light { color: var(--sand); }

.main-nav { display: none; margin-left: auto; gap: 2rem; }
@media (min-width: 900px) { .main-nav { display: flex; } }
.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--bark);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.25s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--ochre);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.main-nav a:hover, .main-nav a.is-active { color: var(--ink); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }

.header-cta { margin-left: auto; }
@media (min-width: 900px) { .header-cta { margin-left: 0; } }
@media (max-width: 480px) { .header-cta { display: none; } }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px; height: 42px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  align-items: center;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }
.nav-toggle span { display: block; width: 16px; height: 2px; background: var(--ink); transition: transform 0.3s var(--ease-out); }
body.nav-open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
body.nav-open .nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  padding: 1rem 1.5rem 1.5rem;
}
body.nav-open .mobile-nav { display: flex; }
@media (min-width: 900px) { .mobile-nav { display: none !important; } }
.mobile-nav a {
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mobile-nav a.is-active { color: var(--ochre); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.3s var(--ease-out), background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--ochre); color: var(--sand); }
.btn-primary:hover { background: var(--ochre-hover); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--sand); }
.btn-small { padding: 0.6rem 1.3rem; font-size: 0.85rem; }
.btn-arrow { width: 15px; height: 15px; transition: transform 0.3s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem 1.5rem 6rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--sand) 0%, var(--clay) 100%);
}
@media (min-width: 768px) { .hero { padding: 8rem 3rem 6rem; } }

.hero-contours { position: absolute; inset: 0; pointer-events: none; }
.contour-layer { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 55%; will-change: transform; }

.hero-inner { position: relative; max-width: 1200px; margin: 0 auto; width: 100%; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--moss);
  border: 1px solid rgba(28, 63, 48, 0.3);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease 0.15s, transform 0.8s var(--ease-out) 0.15s;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ochre); flex: none; }

.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 8vw, 6.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 2.2rem;
}
.hero-title .accent { font-style: italic; color: var(--ochre); }

.hero-line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero-line > span {
  display: block;
  transform: translateY(115%);
  transition: transform 1.1s var(--ease-out);
  will-change: transform;
}
body.is-loaded .hero-line:nth-child(1) > span { transition-delay: 0.25s; transform: translateY(0); }
body.is-loaded .hero-line:nth-child(2) > span { transition-delay: 0.4s; transform: translateY(0); }
body.is-loaded .hero-line:nth-child(3) > span { transition-delay: 0.55s; transform: translateY(0); }
body.is-loaded .hero-eyebrow { opacity: 1; transform: none; }

.hero-mission {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--bark);
  margin-bottom: 2.8rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease 0.85s, transform 0.9s var(--ease-out) 0.85s;
}
body.is-loaded .hero-mission { opacity: 1; transform: none; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease 1s, transform 0.9s var(--ease-out) 1s;
}
body.is-loaded .hero-actions { opacity: 1; transform: none; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 56px;
  background: var(--line);
  overflow: hidden;
}
.hero-scroll-hint span {
  position: absolute;
  left: 0; top: -50%;
  width: 100%; height: 50%;
  background: var(--ochre);
  animation: scrollHint 2.2s var(--ease-out) infinite;
}
@keyframes scrollHint { 0% { top: -50%; } 60%, 100% { top: 110%; } }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--moss);
  color: var(--sand);
  overflow: hidden;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(246, 242, 236, 0.1);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 55s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.marquee-track i { color: var(--ochre); font-style: normal; font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 6rem 0; }
@media (min-width: 1024px) { .section { padding: 8.5rem 0; } }
.alt-section { background: var(--clay); }

.section-tag {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1.4rem;
}
.section-tag.light { color: var(--ochre); }
.section-tag.light::before { content: none; }

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 720px;
  margin-bottom: 2.5rem;
}

/* scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Mission ---------- */
.mission-section { background: var(--sand); }
.mission-statement {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  max-width: 980px;
  margin-bottom: 3.5rem;
}
.mission-statement em { font-style: italic; color: var(--red-dirt); }
.mission-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 980px;
}
@media (min-width: 768px) { .mission-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.mission-grid p { color: var(--bark); }

/* ---------- Country band ---------- */
.country-band {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--moss);
}
.country-band-media { position: absolute; inset: -12% 0; will-change: transform; }
.country-band-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.country-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28, 63, 48, 0.15) 0%, rgba(20, 30, 25, 0.72) 100%);
}
.country-band-copy {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 5rem 1.5rem;
  color: var(--sand);
}
@media (min-width: 768px) { .country-band-copy { padding: 6rem 3rem; } }
.country-band-copy h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4.4vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 760px;
  margin-bottom: 1.4rem;
}
.country-band-copy p:not(.section-tag) { max-width: 560px; color: rgba(246, 242, 236, 0.85); }

/* ---------- Manifesto ---------- */
.chapter {
  display: grid;
  gap: 1.2rem;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  transition: opacity 0.9s ease, transform 0.9s var(--ease-out);
}
@media (min-width: 768px) {
  .chapter { grid-template-columns: 200px 1fr; gap: 4rem; padding: 4rem 0; }
}
.chapter-number {
  font-family: var(--mono);
  font-size: 0.95rem;
  color: var(--ochre);
  letter-spacing: 0.08em;
}
.chapter-body h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.chapter-body p { color: var(--bark); max-width: 640px; }

/* ---------- Programs teaser ---------- */
.programs-teaser { background: var(--clay); }
.teaser-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.teaser-head .section-title { margin-bottom: 0; }
.teaser-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) { .teaser-grid { grid-template-columns: repeat(3, 1fr); } }
.teaser-card {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, background-color 0.4s ease;
}
.teaser-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -20px rgba(26, 23, 21, 0.25);
  background: #fff;
}
.teaser-tag { font-family: var(--mono); font-size: 0.78rem; color: var(--ochre); letter-spacing: 0.08em; }
.teaser-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.teaser-card p { font-size: 0.95rem; color: var(--bark); flex: 1; }
.teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ochre);
}
.teaser-card:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Verify bar ---------- */
.verify-bar { background: var(--moss); color: var(--sand); padding: 3.5rem 0; }
.verify-inner {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .verify-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .verify-inner { grid-template-columns: repeat(4, 1fr); } }
.verify-item { display: flex; flex-direction: column; gap: 0.35rem; }
.verify-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 242, 236, 0.55);
}
.verify-value { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; }
.verify-value.mono { font-family: var(--mono); font-size: 1.05rem; letter-spacing: 0.04em; }

/* ---------- CTA ---------- */
.cta-section {
  background: var(--sand);
  text-align: left;
}
.cta-inner h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin-bottom: 1.4rem;
}
.cta-inner > p { max-width: 560px; color: var(--bark); margin-bottom: 2.5rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(246, 242, 236, 0.82);
  padding-top: 5rem;
}
.footer-grid {
  display: grid;
  gap: 3rem;
  padding-bottom: 4rem;
}
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.4fr 0.8fr 1fr 1fr; gap: 4rem; } }
.footer-heading {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 242, 236, 0.45);
  margin-bottom: 1.1rem;
}
.footer-ack { margin-top: 1.4rem; font-size: 0.9rem; line-height: 1.7; color: rgba(246, 242, 236, 0.6); max-width: 340px; }
.footer-nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a, .footer-contact a, .footer-legal a {
  color: rgba(246, 242, 236, 0.82);
  text-decoration: none;
  font-size: 0.95rem;
  width: fit-content;
  transition: color 0.25s ease;
}
.footer-nav a:hover, .footer-contact a:hover, .footer-legal a:hover { color: var(--ochre); }
.footer-contact p, .footer-legal p { font-size: 0.95rem; margin-bottom: 0.9rem; color: rgba(246, 242, 236, 0.65); }
.footer-base {
  border-top: 1px solid rgba(246, 242, 236, 0.12);
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.footer-base p { font-size: 0.82rem; color: rgba(246, 242, 236, 0.45); }

/* ---------- Subpage hero ---------- */
.page-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(180deg, var(--sand) 0%, var(--clay) 100%);
}
@media (min-width: 1024px) { .page-hero { padding: 12rem 0 5rem; } }
.page-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.page-title .accent { font-style: italic; color: var(--ochre); }
.page-intro { max-width: 680px; font-size: 1.06rem; color: var(--bark); }

/* ---------- Program detail ---------- */
.program-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .program-grid { grid-template-columns: 1.05fr 0.95fr; gap: 5rem; }
  .program-grid.flip .program-copy { order: 2; }
  .program-grid.flip .program-media { order: 1; }
}
.program.alt { background: var(--clay); }
.program-copy h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 1rem 0 1.4rem;
}
.program-copy > p { color: var(--bark); margin-bottom: 1.2rem; }
.program-media { border-radius: 20px; overflow: hidden; }
.program-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter 0.6s ease;
  filter: saturate(0.95);
}
.program-media:hover img { transform: scale(1.04); filter: saturate(1.05); }
.program-media figcaption {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--bark);
  padding: 0.9rem 0.2rem 0;
}

.tick-list { list-style: none; margin-top: 1.6rem; display: grid; gap: 0.9rem; }
.tick-list li {
  position: relative;
  padding-left: 1.9rem;
  font-size: 0.97rem;
  color: var(--ink);
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--ochre);
}

/* ---------- Access strip ---------- */
.access-strip { background: var(--moss); color: var(--sand); }
.access-inner h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 3rem;
  letter-spacing: -0.015em;
}
.access-steps { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .access-steps { grid-template-columns: repeat(3, 1fr); gap: 3.5rem; } }
.access-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(246, 242, 236, 0.35);
  border-radius: 50%;
  color: var(--ochre);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.access-step h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.6rem; }
.access-step p { color: rgba(246, 242, 236, 0.78); font-size: 0.95rem; }
.access-step a { color: var(--sand); text-decoration-color: var(--ochre); text-underline-offset: 3px; }
.access-step a:hover { color: var(--ochre); }

/* ---------- About ---------- */
.two-col { display: grid; gap: 3.5rem; align-items: start; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1.1fr 0.9fr; gap: 5rem; } }
.two-col p { color: var(--bark); margin-bottom: 1.3rem; }
.two-col .section-title { margin-bottom: 1.8rem; }

.fact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.4rem;
  position: sticky;
  top: 7rem;
}
.fact-list { display: grid; gap: 1.1rem; margin-bottom: 2rem; }
.fact-list dt {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 0.2rem;
}
.fact-list dd { font-size: 0.98rem; font-weight: 500; }

.gov-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .gov-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .gov-grid { grid-template-columns: repeat(4, 1fr); } }
.gov-card {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.9rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.gov-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -18px rgba(26, 23, 21, 0.22); }
.gov-card h3 { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; margin-bottom: 0.7rem; }
.gov-card p { font-size: 0.92rem; color: var(--bark); }
.gov-card a { color: var(--ochre); text-underline-offset: 3px; }

.values-list { border-top: 1px solid var(--line); }
.value-row {
  display: grid;
  gap: 0.6rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
@media (min-width: 768px) { .value-row { grid-template-columns: 260px 1fr; gap: 3rem; } }
.value-word {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--red-dirt);
  letter-spacing: -0.01em;
}
.value-row p { color: var(--bark); max-width: 620px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 1.5rem; }
@media (min-width: 820px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -22px rgba(26, 23, 21, 0.22); }
.contact-card-tag {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
}
.contact-card h2 { font-family: var(--serif); font-weight: 600; font-size: 1.9rem; letter-spacing: -0.01em; }
.contact-card p { color: var(--bark); margin-bottom: 0.6rem; }

/* ---------- Policy ---------- */
.policy-body { max-width: 780px; }
.policy-block { padding: 2.2rem 0; border-bottom: 1px solid var(--line); }
.policy-block h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}
.policy-block p { color: var(--bark); }
.policy-block a { color: var(--ochre); text-underline-offset: 3px; }
.policy-updated { margin-top: 2.5rem; color: var(--bark); font-size: 0.82rem; }

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .hero-line > span, .hero-eyebrow, .hero-mission, .hero-actions { opacity: 1; transform: none; }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
