:root {
  --color-ink: #183a36;
  --color-ink-deep: #102c29;
  --color-forest: #214f43;
  --color-forest-light: #2d6857;
  --color-moss: #667c5f;
  --color-ivory: #f5f0e6;
  --color-paper: #fbf9f3;
  --color-stone: #e5e1d7;
  --color-stone-dark: #9aa39d;
  --color-slate: #596762;
  --color-orange: #ba593b;
  --color-orange-soft: #e8b19b;
  --color-white: #fff;
  --font-sans: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  --font-size-xs: .72rem;
  --font-size-sm: .86rem;
  --font-size-base: 1rem;
  --font-size-lg: clamp(1.08rem, 1.5vw, 1.3rem);
  --font-size-xl: clamp(1.6rem, 3vw, 2.45rem);
  --font-size-2xl: clamp(2.35rem, 5.7vw, 5.35rem);
  --space-1: .5rem;
  --space-2: .75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;
  --space-9: 8rem;
  --radius-sm: .35rem;
  --radius-md: .8rem;
  --radius-lg: 1.35rem;
  --radius-pill: 999px;
  --border-subtle: 1px solid rgba(24, 58, 54, .16);
  --border-light: 1px solid rgba(255, 255, 255, .18);
  --shadow-soft: 0 24px 80px rgba(20, 45, 40, .08);
  --content-width: 1240px;
  --header-height: 84px;
  --duration-fast: 180ms;
  --duration-base: 420ms;
  --duration-slow: 760ms;
  --ease-out: cubic-bezier(.2, .7, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.25rem);
  background: var(--color-paper);
}

body {
  margin: 0;
  min-width: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: .035em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .2em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.35;
  letter-spacing: .01em;
}

address {
  font-style: normal;
}

::selection {
  color: var(--color-white);
  background: var(--color-orange);
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: .75rem;
  left: .75rem;
  transform: translateY(-160%);
  padding: .75rem 1rem;
  color: var(--color-white);
  background: var(--color-ink-deep);
  border-radius: var(--radius-sm);
  transition: transform var(--duration-fast) var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(calc(100% - 3rem), var(--content-width));
  margin-inline: auto;
}

.section {
  padding-block: var(--space-9);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(251, 249, 243, .92);
  border-bottom: var(--border-subtle);
  backdrop-filter: blur(16px);
  transition: box-shadow var(--duration-base) var(--ease-out), background var(--duration-base) var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(251, 249, 243, .97);
  box-shadow: 0 8px 30px rgba(16, 44, 41, .06);
}

.header-inner {
  width: min(calc(100% - 2.5rem), 1380px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  width: min(360px, 32vw);
  flex: 0 1 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.2rem);
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: .045em;
}

.primary-nav a {
  position: relative;
  padding-block: .8rem;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: .55rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--color-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-fast) var(--ease-out);
}

.primary-nav a:not(.nav-contact):hover::after,
.primary-nav a:not(.nav-contact):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .6rem 1.2rem !important;
  color: var(--color-white);
  background: var(--color-ink);
  border-radius: var(--radius-pill);
  transition: background var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.nav-contact:hover {
  background: var(--color-orange);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 66px;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-button-label {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.menu-button-lines {
  width: 22px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.menu-button-lines i {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform var(--duration-fast) var(--ease-out);
}

.menu-button[aria-expanded="true"] .menu-button-lines i:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button-lines i:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  background:
    radial-gradient(circle at 86% 18%, rgba(201, 220, 194, .42), transparent 25rem),
    linear-gradient(115deg, var(--color-paper), var(--color-ivory));
  border-bottom: var(--border-subtle);
  overflow: hidden;
}

.hero-grid {
  width: min(calc(100% - 4rem), 1380px);
  min-height: calc(100svh - var(--header-height) - 116px);
  margin-inline: auto;
  padding-block: clamp(4rem, 8vh, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(380px, .75fr);
  align-items: center;
  gap: clamp(2.5rem, 4vw, 5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label,
.aside-index,
.footer-label {
  font-size: var(--font-size-xs);
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.4;
}

.eyebrow {
  margin-bottom: var(--space-5);
  color: var(--color-moss);
}

.hero h1 {
  margin-bottom: var(--space-5);
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.045em;
}

.hero h1 span {
  color: var(--color-forest);
}

.hero-lead {
  max-width: 40rem;
  margin-bottom: var(--space-3);
  color: #405651;
  font-size: var(--font-size-lg);
  line-height: 1.9;
}

.hero-note {
  margin-bottom: var(--space-5);
  color: var(--color-slate);
  font-size: var(--font-size-sm);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: .85rem 1.35rem;
  font-size: var(--font-size-sm);
  font-weight: 800;
  letter-spacing: .05em;
  text-decoration: none;
  border: 1px solid var(--color-ink);
  border-radius: var(--radius-pill);
  transition: color var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out), border var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.button span {
  font-size: 1.1em;
}

.button-primary {
  color: var(--color-white);
  background: var(--color-ink);
}

.button-primary:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  transform: translateY(-2px);
}

.button-secondary {
  background: transparent;
}

.button-secondary:hover {
  color: var(--color-white);
  background: var(--color-forest);
  transform: translateY(-2px);
}

.button-dark {
  color: var(--color-white);
  background: var(--color-ink-deep);
}

.button-dark:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  transform: translateY(-2px);
}

.hero-art {
  position: relative;
  width: min(100%, 610px);
  justify-self: end;
}

.hero-art::before,
.hero-art::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.hero-art::before {
  inset: 9% 8%;
  border: 1px dashed rgba(24, 58, 54, .28);
  animation: slow-spin 42s linear infinite;
}

.hero-art::after {
  width: 14px;
  height: 14px;
  top: 14%;
  right: 17%;
  background: var(--color-orange);
  box-shadow: -365px 250px 0 var(--color-forest-light);
}

.hero-art-label {
  position: absolute;
  z-index: 2;
  top: 8%;
  left: -2%;
  writing-mode: vertical-rl;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .2em;
}

.community-plan {
  position: relative;
  z-index: 1;
  color: var(--color-forest);
}

.plan-route,
.plan-open {
  stroke: var(--color-orange);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 8 11;
}

.plan-open {
  fill: none;
  stroke-width: 3;
}

.plan-house,
.plan-door,
.plan-window {
  fill: none;
  stroke: var(--color-forest);
  stroke-width: 8;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.plan-window {
  stroke-width: 5;
}

.plan-node {
  fill: var(--color-forest);
}

.plan-node-accent {
  fill: var(--color-orange);
}

.community-plan text {
  fill: var(--color-forest);
  font-size: 16px;
  font-family: var(--font-sans);
  font-weight: 700;
}

.art-caption {
  position: absolute;
  z-index: 3;
  right: 1%;
  bottom: 4%;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  color: var(--color-white);
  background: var(--color-ink);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.hero-facts {
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--color-white);
  background: var(--color-ink);
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-facts div {
  min-width: 0;
  padding: 1.5rem clamp(1rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .25rem;
  border-right: var(--border-light);
}

.hero-facts div:first-child {
  padding-left: max(2rem, calc((100vw - 1380px) / 2));
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts span {
  color: #adc1b8;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.hero-facts strong {
  overflow-wrap: anywhere;
  font-size: clamp(.9rem, 1.4vw, 1.08rem);
  letter-spacing: .03em;
}

.section-intro {
  margin-bottom: var(--space-7);
}

.section-label {
  margin-bottom: var(--space-4);
  color: var(--color-moss);
}

.section-label span {
  display: inline-block;
  min-width: 2.8rem;
  margin-right: .7rem;
  color: var(--color-orange);
}

.section-intro h2,
.approach-heading h2,
.mandate-heading h2,
.regional-copy h2,
.location-copy h2,
.contact-heading h2 {
  margin-bottom: 0;
  font-size: var(--font-size-xl);
  font-weight: 700;
  letter-spacing: -.025em;
}

.section-intro-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 3rem;
}

.section-intro-split > p {
  margin: 0;
  color: var(--color-slate);
  font-size: var(--font-size-sm);
}

.purpose {
  background: var(--color-paper);
}

.purpose-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.purpose-statement {
  max-width: 760px;
}

.purpose-statement p {
  color: #485a55;
}

.purpose-statement .large-copy {
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  line-height: 1.9;
}

.purpose-aside {
  position: relative;
  min-height: 310px;
  padding: 2rem;
  background: var(--color-ivory);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.purpose-aside p {
  margin-bottom: .6rem;
  padding-bottom: .6rem;
  font-weight: 700;
  border-bottom: var(--border-subtle);
}

.aside-index {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--color-orange);
}

.aside-mark {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 64px;
  color: var(--color-forest);
}

.mandate {
  padding-block: var(--space-9);
  color: var(--color-white);
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    var(--color-ink-deep);
  background-size: 48px 48px;
}

.mandate .section-shell {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.section-label-light {
  color: #b9cbc3;
}

.mandate-heading p:last-child {
  max-width: 33rem;
  margin-top: var(--space-4);
  color: #b9cbc3;
}

.mandate-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mandate-list li {
  min-height: 132px;
  padding-block: 1.7rem;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1.5rem;
  border-top: var(--border-light);
}

.mandate-list li:last-child {
  border-bottom: var(--border-light);
}

.mandate-list > li > span {
  color: var(--color-orange-soft);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.mandate-list h3 {
  margin-bottom: .5rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.mandate-list p {
  margin-bottom: 0;
  color: #b9cbc3;
  font-size: var(--font-size-sm);
}

.source-note {
  grid-column: 2;
  margin: .5rem 0 0;
  color: #8fa69c;
  font-size: .72rem;
}

.areas {
  background: var(--color-ivory);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.area-card {
  min-height: 430px;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  display: flex;
  flex-direction: column;
  background: var(--color-paper);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.area-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-slate);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.area-number {
  color: var(--color-orange);
}

.area-card h3 {
  margin-bottom: .8rem;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.area-card p {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--color-slate);
}

.area-icon {
  position: relative;
  width: 122px;
  height: 122px;
  margin: 3rem 0 auto;
  color: var(--color-forest);
}

.area-icon::before {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .22;
}

.mini-house {
  position: absolute;
  width: 62px;
  height: 49px;
  top: 43px;
  left: 30px;
  border: 4px solid currentColor;
  border-top: 0;
}

.mini-house::before {
  position: absolute;
  width: 45px;
  height: 45px;
  top: -26px;
  left: 4px;
  content: "";
  border-top: 4px solid currentColor;
  border-left: 4px solid currentColor;
  transform: rotate(45deg);
}

.mini-house::after {
  position: absolute;
  width: 17px;
  height: 26px;
  right: 7px;
  bottom: -4px;
  content: "";
  border: 4px solid currentColor;
  border-bottom: 0;
}

.people-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.people-icon i {
  position: relative;
  width: 21px;
  height: 39px;
  margin-top: 16px;
  border: 3px solid currentColor;
  border-radius: 12px 12px 4px 4px;
}

.people-icon i::before {
  position: absolute;
  width: 15px;
  height: 15px;
  top: -23px;
  left: 0;
  content: "";
  border: 3px solid currentColor;
  border-radius: 50%;
}

.people-icon i:nth-child(2) {
  height: 46px;
  transform: translateY(-7px);
}

.community-icon i {
  position: absolute;
  width: 21px;
  height: 21px;
  background: currentColor;
  border-radius: 50%;
}

.community-icon i:nth-child(1) { top: 20px; left: 51px; }
.community-icon i:nth-child(2) { top: 55px; left: 20px; }
.community-icon i:nth-child(3) { top: 55px; right: 20px; }
.community-icon i:nth-child(4) { bottom: 15px; left: 51px; background: var(--color-orange); }

.community-icon::after {
  position: absolute;
  inset: 28px;
  content: "";
  border: 2px dashed currentColor;
  border-radius: 50%;
}

.life-icon span {
  position: absolute;
  width: 50px;
  height: 55px;
  top: 32px;
  left: 35px;
  border: 4px solid currentColor;
  border-top: 0;
}

.life-icon span::before {
  position: absolute;
  width: 34px;
  height: 34px;
  top: -21px;
  left: 4px;
  content: "";
  border-top: 4px solid currentColor;
  border-left: 4px solid currentColor;
  transform: rotate(45deg);
}

.life-icon i {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 12px;
  bottom: 21px;
  background: var(--color-orange);
  border-radius: 50%;
}

.approach {
  position: relative;
  color: var(--color-white);
  background: var(--color-forest);
  overflow: hidden;
}

.approach::before {
  position: absolute;
  width: 44vw;
  height: 44vw;
  min-width: 520px;
  min-height: 520px;
  top: -25vw;
  right: -10vw;
  content: "";
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
}

.approach-orbit {
  position: absolute;
  width: 390px;
  height: 390px;
  right: 8vw;
  bottom: -225px;
  border: 1px dashed rgba(255, 255, 255, .2);
  border-radius: 50%;
}

.approach-orbit i {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--color-orange-soft);
  border-radius: 50%;
}

.approach-orbit i:nth-child(1) { top: 25px; left: 74px; }
.approach-orbit i:nth-child(2) { top: 0; right: 90px; }
.approach-orbit i:nth-child(3) { top: 116px; right: 2px; }

.approach-shell {
  position: relative;
  z-index: 2;
}

.approach-heading {
  margin-bottom: var(--space-7);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--border-light);
  border-bottom: var(--border-light);
}

.principle {
  min-height: 310px;
  padding: 2.2rem clamp(1.5rem, 3vw, 2.7rem);
  border-right: var(--border-light);
}

.principle:last-child {
  border-right: 0;
}

.principle-index {
  display: block;
  margin-bottom: 4.5rem;
  color: var(--color-orange-soft);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.principle h3 {
  margin-bottom: .9rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.principle p {
  margin-bottom: 0;
  color: #c7d7d0;
  font-size: var(--font-size-sm);
}

.regional {
  background: var(--color-paper);
}

.regional-grid {
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
}

.regional-map {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  background: var(--color-ivory);
  border: var(--border-subtle);
  border-radius: 50%;
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(24, 58, 54, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 58, 54, .09) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: rotate(12deg) scale(1.15);
}

.map-river {
  position: absolute;
  width: 72%;
  height: 30%;
  border: 18px solid rgba(56, 115, 126, .23);
  border-right-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(70deg);
}

.river-one {
  top: 3%;
  left: -16%;
}

.river-two {
  right: -25%;
  bottom: 5%;
}

.map-point {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 47%;
  left: 52%;
  background: var(--color-orange);
  border: 7px solid var(--color-paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--color-orange);
}

.regional-map p {
  position: absolute;
  right: 16%;
  bottom: 14%;
  margin: 0;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.6;
}

.regional-map strong {
  font-size: .62rem;
  color: var(--color-slate);
}

.regional-copy h2 {
  margin-bottom: var(--space-5);
}

.regional-copy > p:not(.section-label) {
  color: var(--color-slate);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-bottom: .35rem;
  font-size: var(--font-size-sm);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color var(--duration-fast) var(--ease-out), gap var(--duration-fast) var(--ease-out);
}

.text-link:hover {
  gap: 1.5rem;
  color: var(--color-orange);
}

.organization {
  background: var(--color-ivory);
}

.organization-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: 1.2rem;
  align-items: start;
}

.profile-list {
  margin: 0;
  background: var(--color-paper);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.profile-list > div {
  min-height: 96px;
  padding: 1.45rem clamp(1.3rem, 3vw, 2.2rem);
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  border-bottom: var(--border-subtle);
}

.profile-list > div:last-child {
  border-bottom: 0;
}

.profile-list dt {
  color: var(--color-slate);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.profile-list dd {
  min-width: 0;
  margin: 0;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.profile-list dd a {
  text-decoration-color: rgba(24, 58, 54, .32);
}

.profile-list small {
  display: block;
  margin-top: .35rem;
  color: var(--color-slate);
  font-size: .7rem;
  font-weight: 500;
  line-height: 1.6;
}

.numeric {
  letter-spacing: .06em;
  font-variant-numeric: tabular-nums;
}

.public-records {
  position: sticky;
  top: calc(var(--header-height) + 1.2rem);
  padding: 2rem;
  color: var(--color-white);
  background: var(--color-ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.records-mark {
  position: absolute;
  width: 170px;
  height: 170px;
  top: -65px;
  right: -55px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
}

.records-mark span {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--color-orange-soft);
  border-radius: 50%;
}

.records-mark span:nth-child(1) { left: 4px; top: 90px; }
.records-mark span:nth-child(2) { left: 35px; bottom: 15px; }
.records-mark span:nth-child(3) { right: 5px; bottom: 52px; }

.public-records h3 {
  margin-bottom: .8rem;
  font-size: 1.45rem;
}

.public-records > p:not(.aside-index) {
  color: #b9cbc3;
  font-size: var(--font-size-sm);
}

.public-records ul {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.public-records li {
  border-top: var(--border-light);
}

.public-records li:last-child {
  border-bottom: var(--border-light);
}

.public-records a {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: .75rem;
  align-items: center;
  font-size: .78rem;
  text-decoration: none;
}

.public-records a span {
  color: var(--color-orange-soft);
  font-size: .64rem;
  font-weight: 800;
}

.public-records a b {
  transition: transform var(--duration-fast) var(--ease-out);
}

.public-records a:hover b {
  transform: translate(3px, -3px);
}

.activity-fields {
  margin-top: 1.2rem;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 2rem;
  background: var(--color-paper);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
}

.activity-fields h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.activity-fields ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  list-style: none;
}

.activity-fields li {
  min-height: 58px;
  padding: .8rem 1rem;
  display: flex;
  align-items: center;
  background: var(--color-ivory);
  border-left: 3px solid var(--color-forest);
  font-size: .78rem;
  font-weight: 700;
}

.location {
  background: var(--color-paper);
}

.location-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.location-copy h2 {
  margin-bottom: var(--space-5);
}

.location-copy address {
  max-width: 36rem;
  margin-bottom: var(--space-4);
  font-size: clamp(1.15rem, 2.1vw, 1.6rem);
  font-weight: 700;
  line-height: 1.75;
}

.location-copy address span {
  display: block;
  color: var(--color-orange);
  font-size: .7em;
  letter-spacing: .08em;
}

.visit-note {
  margin-bottom: var(--space-5);
  color: var(--color-slate);
  font-size: var(--font-size-sm);
}

.location-art {
  width: 100%;
  max-width: 540px;
  justify-self: end;
}

.location-frame {
  position: relative;
  aspect-ratio: 1.05 / 1;
  background:
    linear-gradient(rgba(24, 58, 54, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 58, 54, .07) 1px, transparent 1px),
    var(--color-ivory);
  background-size: 32px 32px;
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.block {
  position: absolute;
  display: block;
  background: rgba(33, 79, 67, .12);
  border: 1px solid rgba(33, 79, 67, .22);
}

.block-a { width: 31%; height: 25%; top: 8%; left: 9%; }
.block-b { width: 38%; height: 19%; top: 12%; right: 8%; }
.block-c { width: 24%; height: 30%; bottom: 10%; left: 13%; }
.block-d { width: 39%; height: 34%; right: 9%; bottom: 8%; }

.road {
  position: absolute;
  display: block;
  background: var(--color-paper);
  border: var(--border-subtle);
}

.road-a {
  width: 120%;
  height: 54px;
  top: 46%;
  left: -10%;
  transform: rotate(-9deg);
}

.road-b {
  width: 58px;
  height: 130%;
  top: -15%;
  left: 43%;
  transform: rotate(7deg);
}

.location-pin {
  position: absolute;
  z-index: 3;
  width: 54px;
  height: 54px;
  top: 44%;
  left: 54%;
  background: var(--color-orange);
  border: 10px solid var(--color-paper);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 0 0 1px rgba(24, 58, 54, .2);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.location-pin i {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 12px;
  left: 12px;
  background: var(--color-paper);
  border-radius: 50%;
}

.coordinate {
  position: absolute;
  z-index: 4;
  right: 1.1rem;
  bottom: 1rem;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.contact {
  position: relative;
  padding-block: var(--space-9);
  color: var(--color-white);
  background: var(--color-orange);
  overflow: hidden;
}

.contact::before {
  position: absolute;
  width: 62vw;
  height: 62vw;
  min-width: 620px;
  min-height: 620px;
  top: -42vw;
  left: -16vw;
  content: "";
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
}

.contact-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  align-items: end;
  gap: clamp(3rem, 9vw, 9rem);
}

.contact-heading h2 {
  max-width: 52rem;
  margin-bottom: var(--space-4);
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  letter-spacing: -.035em;
}

.contact-heading > p:last-child {
  max-width: 44rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .82);
}

.contact-card {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--color-ink);
  background: var(--color-paper);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(82, 25, 12, .18);
}

.contact-name {
  margin-bottom: .3rem;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 700;
}

.contact-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.2rem;
  font-size: clamp(.82rem, 1.35vw, 1rem);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
  border-bottom: var(--border-subtle);
}

.contact-email span {
  flex: 0 0 auto;
}

.privacy-note {
  margin: 1.2rem 0 0;
  color: var(--color-slate);
  font-size: .72rem;
  line-height: 1.7;
}

.contact-house {
  position: absolute;
  width: 430px;
  height: 330px;
  right: -120px;
  bottom: -100px;
  opacity: .12;
  border: 4px solid var(--color-white);
  border-top: 0;
}

.contact-roof {
  position: absolute;
  width: 300px;
  height: 300px;
  top: -155px;
  left: 61px;
  border-top: 4px solid var(--color-white);
  border-left: 4px solid var(--color-white);
  transform: rotate(45deg);
}

.contact-door {
  position: absolute;
  width: 100px;
  height: 150px;
  bottom: 0;
  left: 165px;
  border: 4px solid var(--color-white);
  border-bottom: 0;
}

.contact-path {
  position: absolute;
  width: 250px;
  height: 4px;
  left: 215px;
  bottom: 0;
  background: var(--color-white);
  transform-origin: left;
  transform: rotate(-25deg);
}

.site-footer {
  color: var(--color-white);
  background: var(--color-ink-deep);
}

.footer-main {
  width: min(calc(100% - 3rem), var(--content-width));
  margin-inline: auto;
  padding-block: var(--space-7);
  display: grid;
  grid-template-columns: 1.3fr .55fr .85fr;
  gap: clamp(2rem, 6vw, 6rem);
}

.footer-brand img {
  width: min(380px, 100%);
  filter: brightness(0) invert(1);
  opacity: .95;
}

.footer-brand p {
  margin: 1.2rem 0 0;
  color: #a9beb5;
  font-family: var(--font-serif);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  font-size: .78rem;
}

.footer-column a {
  text-decoration-color: rgba(255, 255, 255, .35);
}

.footer-column p {
  margin-bottom: 0;
  color: #a9beb5;
}

.footer-column .footer-label {
  margin-bottom: .5rem;
  color: var(--color-orange-soft);
}

.footer-bottom {
  min-height: 76px;
  padding: 1rem max(1.5rem, calc((100vw - var(--content-width)) / 2));
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
  color: #8fa69c;
  border-top: var(--border-light);
  font-size: .65rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom a {
  color: var(--color-white);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.capture-mode .site-header,
.capture-mode .public-records,
.capture-mode .policy-nav {
  position: relative;
  top: auto;
}

.capture-mode {
  scroll-behavior: auto;
  scrollbar-width: none;
}

.capture-mode::-webkit-scrollbar {
  display: none;
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
  :root {
    --space-9: 6.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .75fr);
    gap: 3rem;
  }

  .hero-art-label {
    display: none;
  }

  .principle {
    padding-inline: 1.6rem;
  }

  .organization-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .section-shell {
    width: min(calc(100% - 2rem), var(--content-width));
  }

  .header-inner {
    width: calc(100% - 2rem);
  }

  .brand {
    width: min(330px, calc(100% - 74px));
  }

  .menu-button {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .primary-nav {
    position: fixed;
    z-index: 99;
    inset: var(--header-height) 0 0;
    padding: 2rem 1.25rem 4rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    color: var(--color-white);
    background: var(--color-ink-deep);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out), visibility var(--duration-base);
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    min-height: 70px;
    padding: 1rem .5rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
    border-bottom: var(--border-light);
  }

  .primary-nav a::before {
    margin-right: auto;
    color: var(--color-orange-soft);
    font-size: .62rem;
  }

  .primary-nav a:nth-child(1)::before { content: "01"; }
  .primary-nav a:nth-child(2)::before { content: "02"; }
  .primary-nav a:nth-child(3)::before { content: "03"; }
  .primary-nav a:nth-child(4)::before { content: "04"; }

  .primary-nav .nav-contact {
    min-height: 56px;
    margin-top: 1.5rem;
    justify-content: center;
    color: var(--color-ink);
    background: var(--color-paper);
    border: 0;
  }

  .hero-grid {
    width: calc(100% - 2rem);
    min-height: auto;
    padding-block: 5rem 3rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-art {
    width: min(82%, 540px);
    justify-self: center;
  }

  .hero-facts {
    min-height: 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-facts div {
    min-height: 92px;
  }

  .hero-facts div:first-child {
    padding-left: 1.2rem;
  }

  .hero-facts div:nth-child(2) {
    border-right: 0;
  }

  .hero-facts div:nth-child(-n+2) {
    border-bottom: var(--border-light);
  }

  .purpose-grid,
  .regional-grid,
  .location-shell,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .purpose-aside {
    max-width: 620px;
  }

  .mandate .section-shell {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .source-note {
    grid-column: 1;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .principle {
    min-height: 0;
    padding-block: 2rem;
    border-right: 0;
    border-bottom: var(--border-light);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .principle-index {
    margin-bottom: 2rem;
  }

  .regional-map {
    width: min(85%, 500px);
    justify-self: center;
  }

  .organization-layout {
    grid-template-columns: 1fr;
  }

  .public-records {
    position: relative;
    top: auto;
  }

  .location-art {
    justify-self: start;
  }

  .contact-card {
    max-width: 610px;
  }

  .footer-main {
    grid-template-columns: 1.2fr .8fr;
  }

  .footer-main .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }

  .footer-bottom > p:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --space-7: 3.5rem;
    --space-9: 5rem;
  }

  body {
    line-height: 1.8;
  }

  .section-intro {
    margin-bottom: 3rem;
  }

  .section-intro-split {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .hero-grid {
    padding-top: 4rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 4.1rem);
    letter-spacing: -.055em;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-art {
    width: 100%;
  }

  .art-caption {
    right: 0;
    bottom: 2%;
    padding: .75rem .85rem;
  }

  .hero-facts span {
    font-size: .54rem;
  }

  .hero-facts strong {
    font-size: .78rem;
  }

  .purpose-grid {
    gap: 2rem;
  }

  .purpose-aside {
    min-height: 290px;
    padding: 1.4rem;
  }

  .mandate-list li {
    grid-template-columns: 42px 1fr;
    gap: .8rem;
  }

  .area-grid {
    grid-template-columns: 1fr;
  }

  .area-card {
    min-height: 390px;
  }

  .area-icon {
    margin-top: 2rem;
  }

  .regional-map {
    width: 100%;
  }

  .profile-list > div {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: .3rem;
  }

  .profile-list dt {
    color: var(--color-orange);
  }

  .public-records {
    padding: 1.5rem;
  }

  .public-records a {
    grid-template-columns: 74px 1fr auto;
    gap: .5rem;
  }

  .activity-fields {
    grid-template-columns: 1fr;
  }

  .activity-fields ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-art {
    max-width: none;
  }

  .contact {
    padding-block: 5rem;
  }

  .contact-heading h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .contact-email {
    align-items: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    padding-block: 1.5rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-bottom > p:first-child {
    grid-column: auto;
  }

  .footer-bottom div {
    flex-direction: column;
    gap: .5rem;
  }
}

@media (max-width: 390px) {
  .brand {
    width: min(250px, calc(100% - 74px));
  }

  .menu-button {
    width: 54px;
  }

  .menu-button-label {
    display: none;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div,
  .hero-facts div:nth-child(2) {
    min-height: 76px;
    border-right: 0;
    border-bottom: var(--border-light);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .activity-fields ul {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1600px) {
  .hero-grid {
    max-width: 1480px;
  }

  .hero-copy {
    padding-left: 2rem;
  }

  .hero-art {
    width: 620px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .menu-button,
  .skip-link {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding-block: 2rem;
  }
}

.subpage-hero {
  padding-block: clamp(5rem, 11vw, 9rem);
  background:
    radial-gradient(circle at 83% 28%, rgba(201, 220, 194, .48), transparent 22rem),
    var(--color-ivory);
  border-bottom: var(--border-subtle);
}

.subpage-hero h1 {
  margin-bottom: .8rem;
  font-size: clamp(2.35rem, 6vw, 5rem);
  letter-spacing: -.04em;
}

.subpage-hero > div > p:last-child {
  margin-bottom: 0;
  color: var(--color-slate);
}

.policy-section {
  padding-block: var(--space-9);
}

.policy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 780px);
  gap: clamp(3rem, 9vw, 9rem);
  justify-content: center;
  align-items: start;
}

.policy-index {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  padding: 1.5rem;
  background: var(--color-ivory);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
}

.policy-index ol {
  margin: 0;
  padding-left: 1.35rem;
  color: var(--color-slate);
  font-size: .78rem;
}

.policy-index li + li {
  margin-top: .6rem;
}

.policy-content > section {
  padding-bottom: 3.5rem;
  margin-bottom: 3.5rem;
  border-bottom: var(--border-subtle);
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

.policy-content > section:last-child {
  margin-bottom: 0;
}

.policy-number {
  display: block;
  margin-bottom: .6rem;
  color: var(--color-orange);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.policy-content h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.policy-content p {
  color: var(--color-slate);
}

.policy-notice {
  margin-top: 1.8rem;
  padding: 1.3rem;
  background: var(--color-ivory);
  border-left: 4px solid var(--color-orange);
}

.policy-notice strong {
  display: block;
  margin-bottom: .4rem;
}

.policy-notice p {
  margin: 0;
  font-size: var(--font-size-sm);
}

.policy-email {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.policy-date {
  margin-top: 2rem;
  font-size: var(--font-size-sm);
}

@media (max-width: 760px) {
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .policy-index {
    position: relative;
    top: auto;
  }
}
