:root {
  --ink: #17313a;
  --muted: #5f6f69;
  --paper: #fffaf1;
  --white: #ffffff;
  --lake: #1f6f78;
  --lake-dark: #124b54;
  --leaf: #6b8b53;
  --gold: #d99d3f;
  --clay: #c96f4a;
  --mist: #e8f0ec;
  --line: rgba(23, 49, 58, 0.14);
  --shadow: 0 18px 50px rgba(23, 49, 58, 0.16);
  --radius: 8px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.reset-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: inherit;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 241, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--lake);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.mobile-nav-label {
  display: none;
}

.mobile-nav-wrap,
.mobile-nav-shell {
  display: contents;
}

.nav-scroll-arrow {
  display: none;
}

.site-nav a,
.site-nav button {
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--lake-dark);
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav button:hover,
.site-nav button:focus-visible {
  background: var(--mist);
  outline: none;
}

.hero {
  min-height: clamp(640px, 86vh, 820px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(80px, 12vw, 150px) clamp(20px, 6vw, 72px) clamp(48px, 8vw, 84px);
  background: linear-gradient(90deg, rgba(12, 33, 39, 0.82) 0%, rgba(12, 33, 39, 0.62) 42%, rgba(12, 33, 39, 0.12) 78%), url("https://media.easysite.co.nz/v1/image/fiordlandfamiliesnetwork.com/hero.webp?width=1500") center/cover;
  color: var(--white);
}

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

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.5rem, 5.8vw, 4.8rem);
  line-height: 1.02;
  font-weight: 780;
  letter-spacing: 0;
}

.hero-intro {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
}

.button-primary {
  background: var(--gold);
  color: #211606;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #efb253;
  outline: none;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.button-secondary.dark {
  border-color: rgba(23, 49, 58, 0.32);
  color: var(--ink);
}

.button-secondary.dark:hover,
.button-secondary.dark:focus-visible {
  background: rgba(23, 49, 58, 0.08);
}

.quick-panel {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(12, 33, 39, 0.58);
  padding: 22px;
  backdrop-filter: blur(14px);
}

.panel-label {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-panel p:not(.panel-label) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.quick-panel li {
  position: relative;
  padding: 12px 0 12px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.quick-panel li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(46px, 7vw, 86px) clamp(20px, 6vw, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 1.05;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(23, 49, 58, 0.09);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.intro-band a {
  min-height: 126px;
  padding: clamp(20px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.intro-band button {
  min-height: 126px;
  padding: clamp(20px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.intro-band a:last-child,
.intro-band button:last-child {
  border-right: 0;
}

.intro-band a:hover,
.intro-band a:focus-visible,
.intro-band button:hover,
.intro-band button:focus-visible {
  background: var(--mist);
  outline: none;
}

.intro-band span,
.activity-card span,
.newsletter-list span,
.newsletter-archive-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 720;
  text-transform: uppercase;
}

.intro-band strong,
.intro-band button strong {
  display: block;
  max-width: 310px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.2;
}

.page-section {
  padding: clamp(34px, 5.5vw, 68px) clamp(20px, 6vw, 72px);
}

.page-heading {
  max-width: 780px;
  margin-bottom: clamp(22px, 3.5vw, 36px);
}

.page-heading h1,
.post-hero h1 {
  max-width: 900px;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 1.1;
  font-weight: 760;
  letter-spacing: 0;
  margin: 0;
}

.page-heading p:not(.eyebrow),
.post-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.section,
.feature-section,
.support-section,
.contact-section {
  padding: clamp(46px, 7vw, 82px) clamp(20px, 6vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(28px, 5vw, 56px);
}

h2 {
  max-width: 850px;
  font-size: clamp(1.65rem, 3.3vw, 2.8rem);
  line-height: 1.08;
  font-weight: 740;
  letter-spacing: 0;
}

h3 {
  font-size: 1.24rem;
  line-height: 1.2;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 48px);
  color: var(--muted);
  font-size: 1.08rem;
}

.section-intro {
  max-width: 760px;
  margin: -24px 0 34px;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-section {
  background: linear-gradient(180deg, #fffaf1 0%, #f5ead6 100%);
}

.compact-section {
  background: var(--paper);
}

.copy-block {
  display: grid;
  gap: 18px;
  max-width: 850px;
  color: var(--muted);
  font-size: 1.08rem;
}

.copy-block h2 {
  color: var(--ink);
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.activity-card {
  min-height: 225px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 49, 58, 0.07);
}

.activity-card p,
.feature-section p,
.resource-list li,
.contact-section p,
.work-card p,
.team-card p,
.support-card p {
  color: var(--muted);
}

.team-section {
  background: #f6f4e7;
}

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

.team-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 49, 58, 0.07);
}

.team-photo-wrap,
.team-initials {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 50%;
}

.team-photo-wrap {
  overflow: hidden;
  background: var(--mist);
}

.team-photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-initials {
  display: none;
  background: var(--lake);
  color: var(--white);
  font-weight: 850;
}

.team-photo-missing .team-photo-wrap {
  display: none;
}

.team-photo-missing .team-initials {
  display: grid;
}

.team-card span,
.support-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.team-card h3 {
  margin-bottom: 8px;
}

.inline-callout {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--lake-dark);
  color: var(--white);
}

.inline-callout p {
  max-width: 620px;
}

.work-list-section {
  background: var(--paper);
}

.work-list {
  display: grid;
  gap: 14px;
}

.work-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.work-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.events-feature-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(420px, 1.42fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: clamp(38px, 6vw, 72px) clamp(20px, 6vw, 72px);
  background: #f6f4e7;
}

.events-copy {
  position: sticky;
  top: 110px;
}

.events-image-link {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(10px, 1.4vw, 16px);
  box-shadow: 0 18px 50px rgba(23, 49, 58, 0.12);
}

.events-image-link:hover,
.events-image-link:focus-visible {
  border-color: rgba(31, 111, 120, 0.38);
  outline: none;
}

.events-feature-section img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 86vh;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top center;
     object-position: top center;
  border-radius: 4px;
}

.events-feature-section p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.events-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
  background: var(--lake-dark);
  color: var(--white);
}

.feature-section p {
  max-width: 580px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.feature-button {
  margin-top: 26px;
}

.newsletter-list {
  display: grid;
  gap: 14px;
}

.newsletter-list article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-list img {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1/1.42;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top center;
     object-position: top center;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-list h3 {
  color: var(--white);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 720;
  line-height: 1.25;
}

.newsletter-list p {
  margin-top: 8px;
  font-size: 0.95rem;
}

.newsletter-list .text-link {
  margin-top: 14px;
  color: var(--gold);
  font-weight: 760;
}

.newsletter-list .mini-tags small {
  background: rgba(255, 255, 255, 0.12);
  color: #f0c282;
}

.archive-tools {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(160px, 240px);
  gap: 14px;
  margin-bottom: 24px;
}

.archive-tools label {
  display: grid;
  gap: 8px;
  color: var(--lake-dark);
  font-weight: 700;
}

.archive-tools input,
.archive-tools select {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
}

.archive-tools input:focus,
.archive-tools select:focus {
  border-color: var(--lake);
  outline: 3px solid rgba(31, 111, 120, 0.16);
}

.newsletter-archive-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 640px), 1fr));
  gap: 18px;
}

.newsletter-archive-list article {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 24px;
  min-height: 330px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 49, 58, 0.07);
}

.newsletter-archive-list img {
  width: 100%;
  max-width: 210px;
  aspect-ratio: 1/1.42;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top center;
     object-position: top center;
  border-radius: 4px;
  background: #eef4f1;
}

.newsletter-archive-list h3 {
  max-width: 720px;
  margin-bottom: 10px;
  font-size: clamp(1.05rem, 1.45vw, 1.26rem);
  font-weight: 720;
  line-height: 1.25;
}

.newsletter-archive-list p {
  max-width: 720px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.48;
}

.mini-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-tags {
  margin-top: 14px;
}

.mini-tags small,
.tag-row span {
  border-radius: 999px;
  background: #eef4f1;
  color: #526a62;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 8px;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--lake);
  font-weight: 740;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.image-fallback {
  padding: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}

.loading-text {
  color: var(--muted);
  font-weight: 800;
}

.post-page {
  padding: clamp(26px, 4vw, 48px) clamp(20px, 5vw, 62px) clamp(58px, 7vw, 92px);
}

.back-link {
  margin-bottom: 22px;
  color: var(--lake);
  font-weight: 740;
}

.post-hero {
  max-width: 980px;
  padding-bottom: clamp(26px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
}

.post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.tag-row {
  margin-top: 18px;
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(520px, 1.52fr);
  gap: clamp(24px, 4.5vw, 56px);
  align-items: start;
  margin-top: clamp(28px, 5vw, 54px);
}

.post-content {
  display: grid;
  gap: 16px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  position: sticky;
  top: 118px;
}

.pdf-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(23, 49, 58, 0.13);
  overflow: hidden;
}

.pdf-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.pdf-panel-header h2 {
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  line-height: 1.15;
}

.pdf-panel iframe {
  width: 100%;
  min-height: min(82vh, 960px);
  border: 0;
  background: var(--mist);
}

.mobile-pdf-cover {
  display: none;
}

.pdf-panel > .button {
  margin: 20px;
}

.pdf-empty {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.pdf-empty img {
  width: min(220px, 100%);
  aspect-ratio: 1/1.42;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  background: var(--mist);
}

.pdf-empty p {
  color: var(--muted);
}

.related-section {
  margin-top: clamp(46px, 7vw, 84px);
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius);
  background: var(--lake-dark);
  color: var(--white);
}

.related-section h2 {
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.resources-section {
  background: #f6f4e7;
}

.resource-layout,
.resource-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.resource-list {
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.resource-list.accent {
  background: #f0e0c8;
}

.resource-list h3 {
  margin-bottom: 18px;
}

.resource-list li {
  position: relative;
  padding: 12px 0 12px 24px;
  border-top: 1px solid var(--line);
}

.resource-list li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--leaf);
}

.resource-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.resource-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 49, 58, 0.07);
}

.resource-card:hover,
.resource-card:focus-visible {
  border-color: rgba(31, 111, 120, 0.42);
  outline: none;
  transform: translateY(-2px);
}

.resource-card span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.resource-card strong {
  font-size: 1.18rem;
  line-height: 1.22;
}

.section-note {
  max-width: 760px;
  margin-top: 26px;
  color: var(--muted);
}

.support-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  background: var(--white);
}

.support-section p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.support-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr) minmax(260px, 0.8fr);
  gap: 16px;
  background: #f6f4e7;
}

.support-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 49, 58, 0.07);
}

.support-card h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.support-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--mist);
}

.support-card dt {
  color: var(--lake-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.support-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}

.small-note {
  font-size: 0.92rem;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink);
  color: var(--white);
}

.contact-section div {
  max-width: 760px;
}

.contact-section p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 6vw, 72px);
  background: #10252c;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.site-footer p:first-child {
  color: var(--white);
  font-weight: 800;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header,
  .contact-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-nav {
    justify-content: flex-start;
  }
  .hero,
  .page-hero,
  .events-feature-section,
  .feature-section,
  .support-section,
  .support-page-grid,
  .section-heading,
  .resource-layout,
  .post-hero,
  .post-layout,
  .newsletter-archive-list,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    background-position: 58% center;
  }
  .intro-band,
  .activity-grid,
  .two-column {
    grid-template-columns: 1fr;
  }
  .intro-band a,
  .intro-band button {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .newsletter-list article,
  .resource-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-list article {
    gap: 14px;
  }
  .newsletter-list img {
    width: min(180px, 100%);
    max-width: none;
  }
  .support-actions {
    justify-content: flex-start;
  }
  .contact-actions {
    justify-content: flex-start;
  }
  .post-content {
    position: static;
  }
  .work-card,
  .inline-callout {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}
@media (max-width: 620px) {
  .site-header {
    position: relative;
    gap: 10px;
    padding: 10px 14px 12px;
  }
  .brand {
    gap: 10px;
    min-width: 0;
    width: 100%;
  }
  .brand img {
    width: 58px;
  }
  .brand strong {
    font-size: 0.98rem;
  }
  .brand small {
    font-size: 0.78rem;
  }
  .brand:focus-visible {
    border-radius: var(--radius);
    outline: 2px solid rgba(31, 111, 120, 0.38);
    outline-offset: 4px;
  }
  .mobile-nav-wrap {
    display: grid;
    gap: 6px;
    width: 100%;
  }
  .mobile-nav-shell {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    gap: 6px;
    align-items: center;
    width: 100%;
    overflow: hidden;
  }
  .mobile-nav-shell::before,
  .mobile-nav-shell::after {
    content: none;
  }
  .nav-scroll-arrow {
    display: grid;
    width: 28px;
    height: 34px;
    place-items: center;
    border: 0;
    border-radius: var(--radius);
    background: rgba(232, 240, 236, 0.76);
    color: var(--lake-dark);
    opacity: 0.9;
  }
  .nav-scroll-arrow:hover,
  .nav-scroll-arrow:focus-visible {
    background: var(--mist);
    opacity: 1;
    outline: 2px solid rgba(31, 111, 120, 0.18);
    outline-offset: 1px;
  }
  .nav-scroll-arrow-left {
    justify-self: start;
  }
  .nav-scroll-arrow-right {
    justify-self: end;
  }
  .site-nav {
    position: relative;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 4px;
    overflow-x: auto;
    padding: 3px 0 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-nav-label {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
  }
  .site-nav::-webkit-scrollbar {
    display: none;
  }
  .site-nav a {
    flex: 0 0 auto;
    padding: 7px 10px;
    font-size: 0.86rem;
    scroll-snap-align: start;
  }
  .site-nav button {
    flex: 0 0 auto;
    padding: 7px 10px;
    font-size: 0.86rem;
    white-space: nowrap;
    scroll-snap-align: start;
  }
  .hero {
    padding: 62px 18px 28px;
    background: linear-gradient(180deg, rgba(12, 33, 39, 0.82) 0%, rgba(12, 33, 39, 0.66) 52%, rgba(12, 33, 39, 0.44) 100%), url("https://media.easysite.co.nz/v1/image/fiordlandfamiliesnetwork.com/hero.webp?width=1000") 62% center/cover;
  }
  .hero h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }
  .button,
  .hero-actions {
    width: 100%;
  }
  .quick-panel {
    padding: 18px;
  }
  .section,
  .feature-section,
  .support-section,
  .contact-section,
  .page-hero {
    padding: 50px 18px;
  }
  .support-section {
    gap: 22px;
    padding: 42px 22px;
  }
  .support-section h2 {
    margin-top: 2px;
    font-size: clamp(1.5rem, 6.3vw, 1.9rem);
    line-height: 1.2;
  }
  .support-section p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .support-section .eyebrow {
    margin-bottom: 18px;
    letter-spacing: 0.04em;
  }
  .support-section h2 + p {
    margin-top: 10px;
    max-width: 31ch;
  }
  .support-actions {
    display: grid;
    width: 100%;
    gap: 10px;
    margin-top: 8px;
  }
  .support-actions .button,
  .contact-actions .button,
  .events-actions .button {
    width: auto;
    min-height: 44px;
    padding: 10px 14px;
  }
  .events-feature-section {
    padding: 42px 18px;
  }
  .events-copy {
    position: static;
  }
  .events-feature-section img {
    max-height: none;
  }
  .site-footer {
    gap: 14px;
    padding: 28px 22px;
  }
  .site-footer div {
    gap: 10px 18px;
  }
  .site-footer p {
    max-width: 36ch;
  }
  .page-hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }
  .activity-card {
    min-height: auto;
    padding: 20px;
  }
  .archive-tools,
  .newsletter-archive-list article,
  .team-card {
    grid-template-columns: 1fr;
  }
  .newsletter-archive-list img {
    width: min(220px, 100%);
  }
  .post-page {
    padding: 34px 18px 60px;
  }
  .pdf-panel iframe {
    display: none;
  }
  .mobile-pdf-cover {
    display: grid;
    gap: 18px;
    justify-items: start;
    padding: 20px;
  }
  .mobile-pdf-cover img {
    width: min(280px, 100%);
    aspect-ratio: 1/1.42;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: top center;
       object-position: top center;
    border-radius: 4px;
    background: var(--mist);
    box-shadow: 0 8px 24px rgba(23, 49, 58, 0.1);
  }
}
@media (max-width: 520px) {
  .pdf-panel-header,
  .post-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .mobile-pdf-cover {
    justify-items: stretch;
  }
  .support-actions .button {
    width: 100%;
  }
}