:root {
  --ink: #17211f;
  --ink-soft: #4e5b57;
  --paper: #ffffff;
  --paper-soft: #f2f5f3;
  --line: #d8dfdc;
  --green: #173e38;
  --green-light: #dce8e4;
  --red: #991f27;
  --red-dark: #74151c;
  --blue: #116a8a;
  --display: Georgia, "Times New Roman", serif;
  --body: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  --page: min(1180px, calc(100% - 48px));
  --shadow: 0 18px 55px rgba(9, 25, 21, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 5.3rem;
}

h3 {
  letter-spacing: 0;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--paper);
  background: var(--green);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 12px max(24px, calc((100vw - 1320px) / 2));
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  transition: background-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.site-header.scrolled,
body.menu-open .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 18px rgba(9, 25, 21, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  font-size: 0.98rem;
  font-weight: 700;
}

.brand small {
  margin-top: 4px;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-cta {
  padding: 10px 16px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 4px;
}

.scrolled .nav-cta,
body.menu-open .nav-cta {
  color: var(--paper);
  background: var(--green);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.icon-close {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(800px, 82vh);
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  background: var(--green);
}

.hero-image,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 44%;
  transform: scale(1.008);
}

.hero-shade {
  z-index: -1;
  background: rgba(5, 21, 17, 0.56);
  box-shadow: inset 0 -300px 180px -180px rgba(5, 21, 17, 0.95);
}

.hero-content {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 132px 0 76px;
  text-align: center;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 0.73rem;
  font-weight: 750;
  text-transform: uppercase;
}

.eyebrow {
  justify-content: center;
}

.eyebrow span,
.hero-location span {
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: 7rem;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.36);
}

.hero-lead {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 670px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.text-link svg,
.schedule-note svg,
.email-link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.button-primary {
  color: var(--paper);
  background: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-quiet {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.button-dark {
  color: var(--paper);
  background: var(--green);
}

.hero-location {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-size: 0.74rem;
  font-weight: 650;
}

.hero-location svg {
  width: 15px;
  height: 15px;
}

.fact-band {
  color: var(--paper);
  background: var(--green);
}

.fact-grid {
  display: grid;
  width: var(--page);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}

.fact {
  display: flex;
  min-height: 124px;
  align-items: center;
  gap: 18px;
  padding: 26px 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.fact:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.fact strong {
  flex: 0 0 auto;
  font-family: var(--display);
  font-size: 2.15rem;
  font-weight: 500;
}

.fact strong span {
  color: #70b4ca;
}

.fact p {
  max-width: 140px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.4;
}

.section {
  padding: 124px 0;
}

.section-inner {
  width: var(--page);
  margin: 0 auto;
}

.kicker {
  color: var(--red);
}

.kicker::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  align-items: start;
  gap: 9%;
  grid-template-columns: 0.88fr 1.12fr;
}

.section-intro {
  position: sticky;
  top: 116px;
}

.about-copy {
  padding-top: 6px;
}

.about-copy > p:not(.large-copy),
.section-intro > p:last-child,
.contact-copy > p {
  color: var(--ink-soft);
}

.large-copy {
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: 2.05rem;
  line-height: 1.35;
}

.principles {
  display: grid;
  margin-top: 54px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.principles article {
  padding: 26px 20px 0 0;
}

.principles article + article {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.principles span,
.activity-number {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 750;
}

.principles h3 {
  margin: 12px 0 9px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
}

.principles p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.activities {
  background: var(--paper-soft);
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 12%;
  margin-bottom: 58px;
  grid-template-columns: 1fr 0.62fr;
}

.section-heading > p {
  margin-bottom: 3px;
  color: var(--ink-soft);
}

.activity-list {
  border-top: 1px solid #b9c7c2;
}

.activity {
  display: grid;
  min-height: 158px;
  align-items: center;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid #b9c7c2;
  grid-template-columns: 48px 60px 1fr;
}

.activity > svg {
  width: 34px;
  height: 34px;
  color: var(--green);
  stroke-width: 1.4;
}

.activity div {
  display: grid;
  align-items: center;
  gap: 8%;
  grid-template-columns: 0.72fr 1fr;
}

.activity h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 500;
}

.activity p {
  max-width: 530px;
  margin: 0;
  color: var(--ink-soft);
}

.schedule-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 45px;
  padding: 25px 28px;
  color: var(--paper);
  background: var(--green);
  border-radius: 5px;
}

.schedule-note div,
.schedule-note a {
  display: flex;
  align-items: center;
  gap: 13px;
}

.schedule-note div > svg {
  width: 24px;
  height: 24px;
}

.schedule-note p {
  margin: 0;
}

.schedule-note a {
  flex: 0 0 auto;
  font-size: 0.84rem;
  font-weight: 750;
}

.community {
  color: var(--paper);
  background: #112b29;
}

.section-heading.light .kicker,
.community .kicker {
  color: #d86a70;
}

.section-heading.light > p {
  color: rgba(255, 255, 255, 0.67);
}

.gallery {
  display: grid;
  gap: 12px;
  grid-auto-rows: 260px;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  color: var(--paper);
  background: #0e201e;
  border: 0;
  border-radius: 5px;
  cursor: zoom-in;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease, opacity 250ms ease;
}

.gallery-item::after {
  position: absolute;
  content: "";
  inset: 0;
  background: rgba(6, 24, 20, 0.2);
  box-shadow: inset 0 -110px 70px -55px rgba(0, 0, 0, 0.88);
  transition: background-color 250ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item:hover::after {
  background: rgba(6, 24, 20, 0.05);
}

.gallery-item span {
  position: absolute;
  z-index: 1;
  right: 17px;
  bottom: 15px;
  left: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--display);
  font-size: 1.15rem;
  text-align: left;
}

.gallery-item span svg {
  width: 19px;
  height: 19px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 750;
}

.light-link {
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.82);
}

.governance {
  background: var(--paper);
}

.governance-grid {
  display: grid;
  gap: 10%;
  grid-template-columns: 0.9fr 1.1fr;
}

.governance .section-intro > p:last-child {
  max-width: 500px;
  margin-top: 34px;
}

.governance-details dl {
  margin: 0;
  border-top: 2px solid var(--ink);
}

.governance-details dl > div {
  display: grid;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.55fr 1fr;
}

.governance-details dt {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: uppercase;
}

.governance-details dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1.3;
}

.visit {
  display: grid;
  min-height: 650px;
  background: var(--paper-soft);
  grid-template-columns: 1.08fr 0.92fr;
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 650px;
  border: 0;
  filter: saturate(0.7) contrast(1.03);
}

.visit-content {
  align-self: center;
  max-width: 590px;
  padding: 80px clamp(36px, 7vw, 110px);
}

.visit-content h2 {
  margin-bottom: 38px;
}

.visit-content address {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: 1.45rem;
  font-style: normal;
  line-height: 1.45;
}

.visit-content address svg {
  width: 24px;
  height: 24px;
  margin-top: 6px;
  color: var(--red);
}

.visit-content > p {
  max-width: 440px;
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.visit-actions {
  justify-content: flex-start;
}

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

.contact-grid {
  display: grid;
  gap: 10%;
  grid-template-columns: 0.8fr 1.2fr;
}

.contact .kicker {
  color: #d8ecef;
}

.contact-copy > p {
  max-width: 480px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.77);
}

.email-link {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  overflow-wrap: anywhere;
  font-weight: 700;
}

.contact-lines {
  display: grid;
  justify-items: start;
  gap: 13px;
}

.contact-lines p {
  display: grid;
  gap: 2px;
  margin: 0 0 5px;
}

.contact-lines p span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-lines p strong {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
}

.registered-email {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

.contact-form {
  padding: 38px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 20px;
}

.contact-form label > span {
  font-size: 0.76rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: #f8faf9;
  border: 1px solid #bbc8c3;
  border-radius: 3px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 128px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(17, 106, 138, 0.16);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.form-footer p {
  max-width: 330px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.73rem;
  line-height: 1.45;
}

.form-footer .button {
  flex: 0 0 auto;
}

.form-status {
  min-height: 1.5em;
  margin: 15px 0 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 650;
}

.site-footer {
  padding: 55px max(24px, calc((100vw - 1180px) / 2)) 25px;
  color: rgba(255, 255, 255, 0.72);
  background: #111b19;
}

.footer-inner {
  display: grid;
  align-items: center;
  gap: 28px;
  padding-bottom: 42px;
  grid-template-columns: 1fr 1fr auto;
}

.footer-brand {
  color: var(--paper);
}

.footer-brand img {
  width: 48px;
  height: 48px;
}

.footer-inner > p {
  margin: 0;
  font-size: 0.78rem;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.footer-inner nav a,
.footer-bottom {
  font-size: 0.75rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
}

.photo-dialog {
  width: min(940px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: hidden;
  color: var(--paper);
  background: #0e1715;
  border: 0;
  border-radius: 5px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

.photo-dialog::backdrop {
  background: rgba(4, 12, 10, 0.86);
}

.photo-dialog img {
  width: 100%;
  max-height: calc(100vh - 112px);
  object-fit: contain;
}

.photo-dialog p {
  margin: 0;
  padding: 15px 20px;
  font-family: var(--display);
  font-size: 1rem;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--paper);
  background: rgba(9, 20, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
}

.dialog-close svg {
  width: 20px;
  height: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

:focus-visible {
  outline: 3px solid #58b8d2;
  outline-offset: 4px;
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 40px, 760px);
  }

  .site-header {
    padding-inline: 20px;
  }

  h2 {
    font-size: 4.25rem;
  }

  .hero h1 {
    font-size: 5.6rem;
  }

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

  .large-copy {
    font-size: 1.8rem;
  }

  .activity h3 {
    font-size: 1.85rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  body.menu-open .icon-menu {
    display: none;
  }

  body.menu-open .icon-close {
    display: block;
  }

  .primary-nav {
    position: fixed;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    display: none;
    height: 100vh;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 112px 24px 40px;
    color: var(--ink);
    background: var(--paper);
  }

  .site-header > .brand,
  .menu-toggle {
    position: relative;
    z-index: 1;
  }

  body.menu-open .primary-nav {
    display: flex;
    flex-direction: column;
  }

  .primary-nav a {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 14px 0;
    font-family: var(--display);
    font-size: 1.8rem;
    font-weight: 500;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav .nav-cta {
    margin-top: 22px;
    padding: 14px 18px;
    color: var(--paper);
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 750;
    text-align: center;
    background: var(--green);
    border: 0;
  }

  .fact {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    padding: 24px;
  }

  .fact p {
    max-width: none;
  }

  .about-grid,
  .governance-grid,
  .contact-grid {
    gap: 60px;
    grid-template-columns: 1fr;
  }

  .section-intro {
    position: static;
  }

  .section-heading {
    gap: 35px;
    grid-template-columns: 1fr;
  }

  .activity div {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-auto-rows: 220px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-wide {
    grid-column: span 1;
  }

  .gallery-item:first-child {
    grid-column: span 2;
  }

  .visit {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .visit-content {
    width: var(--page);
    max-width: none;
    margin: 0 auto;
    padding: 80px 0;
    grid-row: 1;
  }

  .visit-map iframe {
    min-height: 480px;
  }

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

  .footer-inner nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --page: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    min-height: 72px;
    padding: 9px 16px;
  }

  .brand img {
    width: 45px;
    height: 45px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    font-size: 0.61rem;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-image {
    object-position: 52% center;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 90px 0 68px;
    text-align: left;
  }

  .eyebrow {
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

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

  .hero-copy {
    font-size: 0.89rem;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-location {
    right: 16px;
    bottom: 14px;
    left: 16px;
    flex-wrap: wrap;
    font-size: 0.65rem;
  }

  .fact-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .fact,
  .fact:first-child {
    min-height: 96px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .fact strong {
    width: 130px;
    font-size: 1.75rem;
  }

  .section {
    padding: 84px 0;
  }

  h2 {
    font-size: 3.15rem;
  }

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

  .principles article,
  .principles article + article {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .activity {
    min-height: 0;
    align-items: start;
    gap: 16px;
    padding: 25px 0;
    grid-template-columns: 30px 42px 1fr;
  }

  .activity > svg {
    width: 27px;
    height: 27px;
  }

  .activity h3 {
    font-size: 1.45rem;
  }

  .activity p {
    font-size: 0.85rem;
  }

  .schedule-note {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .schedule-note div {
    align-items: flex-start;
  }

  .gallery {
    grid-auto-rows: 260px;
    grid-template-columns: 1fr;
  }

  .gallery-item:first-child,
  .gallery-wide {
    grid-column: span 1;
  }

  .governance-details dl > div {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .visit-content {
    padding: 75px 0;
  }

  .visit-map iframe {
    min-height: 380px;
  }

  .contact-grid {
    gap: 45px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .field-row {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .footer-inner,
  .footer-bottom {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-inner {
    gap: 20px;
  }

  .footer-inner nav {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-content {
    width: calc(100% - 28px);
  }
}

@media (max-width: 640px) and (max-height: 720px) {
  .hero {
    min-height: 82svh;
  }

  .hero-content {
    padding-top: 78px;
    padding-bottom: 58px;
  }

  .hero-copy {
    display: none;
  }

  .hero h1 {
    margin-bottom: 16px;
  }

  .hero-actions {
    margin-top: 20px;
  }
}

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

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

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