:root {
  --ink: #18322f;
  --muted: #5f6f6b;
  --paper: #fbfcf8;
  --surface: #ffffff;
  --line: #dfe7df;
  --forest: #1f6f52;
  --water: #386f8f;
  --berry: #9d463d;
  --sun: #f0c75e;
  --shadow: 0 18px 55px rgba(24, 50, 47, 0.16);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #ffffff;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.site-header-solid {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 22px rgba(24, 50, 47, 0.11);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 800;
}

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

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  opacity: 0.75;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 500px;
  height: clamp(500px, 76svh, 720px);
  overflow: hidden;
  color: #ffffff;
}

.hero-slider,
.hero-slide,
.hero-slide img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  transition: opacity 1200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide:first-child img {
  object-position: center 42%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 34, 31, 0.76), rgba(15, 34, 31, 0.35) 48%, rgba(15, 34, 31, 0.18)),
    linear-gradient(0deg, rgba(15, 34, 31, 0.36), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(980px, calc(100% - 36px));
  height: 100%;
  margin-left: clamp(18px, 7vw, 92px);
  flex-direction: column;
  justify-content: center;
  padding-top: 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
}

p,
a,
small,
strong {
  overflow-wrap: break-word;
}

h1 {
  max-width: 980px;
  font-size: clamp(2.6rem, 6.2vw, 5.6rem);
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  font-size: 1.28rem;
}

.hero-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.24rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--sun);
  color: #1c2a24;
  box-shadow: 0 12px 30px rgba(15, 34, 31, 0.18);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
}

.contact-section .button-secondary,
.section .button-secondary {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.slider-controls {
  position: absolute;
  z-index: 8;
  right: clamp(18px, 5vw, 70px);
  bottom: 72px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  background: rgba(15, 34, 31, 0.35);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.9rem;
  line-height: 1;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.slider-dot.is-active {
  width: 26px;
  background: var(--sun);
}

.quick-links {
  display: grid;
  width: min(1180px, calc(100% - 36px));
  margin: -46px auto 0;
  position: relative;
  z-index: 5;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.quick-links a {
  display: block;
  min-height: 132px;
  padding: 24px;
  background: var(--surface);
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.quick-links a:last-child {
  border-right: 0;
}

.quick-links a:hover,
.quick-links a:focus-visible {
  background: #f5faf7;
}

.quick-links span {
  display: block;
  margin-bottom: 18px;
  color: var(--water);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.quick-links strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.25;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 36px;
}

.section-heading-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  color: var(--forest);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 46px;
  align-items: start;
}

.intro-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
}

.intro-copy p {
  margin: 0 0 18px;
}

.stats {
  display: grid;
  gap: 12px;
}

.stats div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
}

.stats strong {
  color: var(--forest);
  font-size: 2rem;
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-weight: 700;
  text-align: right;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 0.9fr);
  gap: 16px;
}

.news-card {
  min-height: 245px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
}

.news-card-featured {
  grid-row: span 2;
  display: flex;
  min-height: 506px;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(24, 50, 47, 0), rgba(24, 50, 47, 0.82)),
    url("assets/images/munkeback.jpg") center / cover;
  color: #ffffff;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  opacity: 0.78;
}

.news-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.news-card-featured p {
  color: rgba(255, 255, 255, 0.88);
}

.news-card a {
  display: inline-block;
  margin-top: 24px;
  color: var(--sun);
  font-weight: 850;
}

.booking-band {
  display: flex;
  width: min(1180px, calc(100% - 36px));
  margin: 98px auto 0;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 8px;
  padding: clamp(26px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(31, 111, 82, 0.94), rgba(56, 111, 143, 0.94)),
    url("assets/images/oversikt-fran-vaster.jpg") center / cover;
  color: #ffffff;
}

.booking-band .eyebrow {
  color: var(--sun);
}

.booking-band h2 {
  max-width: 730px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.booking-band p {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.filter-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #ffffff;
  color: var(--muted);
  font-weight: 800;
}

.document-list {
  display: grid;
  gap: 10px;
}

.document-list a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
  text-decoration: none;
}

.document-list a:hover,
.document-list a:focus-visible {
  border-color: rgba(31, 111, 82, 0.45);
  box-shadow: 0 12px 26px rgba(24, 50, 47, 0.08);
}

.document-list span {
  grid-row: span 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: #edf5f1;
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 900;
}

.document-list strong {
  font-size: 1.02rem;
}

.document-list small {
  color: var(--muted);
  font-size: 0.92rem;
}

.subpage-main {
  padding-top: 78px;
}

.page-hero {
  position: relative;
  min-height: clamp(390px, 48svh, 520px);
  display: flex;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(31, 111, 82, 0.95), rgba(56, 111, 143, 0.9)),
    url("assets/images/munkeback.jpg") center / cover;
  color: #ffffff;
}

.page-hero-image {
  background:
    linear-gradient(135deg, rgba(24, 50, 47, 0.78), rgba(24, 50, 47, 0.32)),
    url("assets/images/oversikt-fran-vaster.jpg") center / cover;
}

.page-hero-content {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0;
}

.page-hero .eyebrow {
  color: var(--sun);
}

.page-hero h1 {
  max-width: 930px;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.14rem;
}

.section-tight {
  padding-top: 72px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.65fr;
  gap: 16px;
}

.info-card,
.timeline-item,
.resource-card,
.person-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.info-card {
  min-height: 220px;
  padding: 26px;
}

.info-card-large {
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(24, 50, 47, 0), rgba(24, 50, 47, 0.82)),
    url("assets/images/munkeback.jpg") center / cover;
  color: #ffffff;
}

.info-card-large .eyebrow {
  color: var(--sun);
}

.info-card-large p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
}

.info-card strong {
  display: block;
  color: var(--forest);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.info-card span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
  align-items: start;
}

.feature-list,
.resource-grid,
.contact-grid {
  display: grid;
  gap: 16px;
}

.feature-list article {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.feature-list article:first-child {
  border-top: 0;
  padding-top: 0;
}

.feature-list p,
.resource-card p,
.person-card p,
.timeline-item p {
  color: var(--muted);
}

.timeline-item h2,
.info-card h2,
.person-card h2 {
  font-size: clamp(1.75rem, 3vw, 3.15rem);
  overflow-wrap: break-word;
}

.timeline-item-featured h2 {
  font-size: clamp(2rem, 3.5vw, 3.8rem);
}

.resource-card h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.feature-list a,
.resource-card a:not(.button) {
  color: var(--forest);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

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

.timeline-item {
  min-height: 260px;
  padding: 28px;
}

.timeline-item-featured {
  grid-row: span 2;
  display: flex;
  min-height: 536px;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(24, 50, 47, 0), rgba(24, 50, 47, 0.84)),
    url("assets/images/oversikt-fran-vaster.jpg") center / cover;
  color: #ffffff;
}

.timeline-item-featured p {
  color: rgba(255, 255, 255, 0.88);
}

.timeline-item .button {
  align-self: flex-start;
  margin-top: 22px;
}

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

.area-topic-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.area-topic-card p {
  color: var(--muted);
}

.living-detail-panel {
  margin-top: 18px;
}

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

.area-topic-card {
  min-height: 310px;
  padding: 26px;
}

.area-topic-card span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 8px;
  background: #edf5f1;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 900;
}

.area-topic-card a {
  display: inline-block;
  margin-top: 8px;
  margin-right: 14px;
  color: var(--forest);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.area-detail-stack {
  display: grid;
  gap: 18px;
}

.area-detail-panel {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 48px);
  background: #ffffff;
}

.area-detail-panel-featured {
  display: block;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 247, 0.94)),
    url("assets/images/munkeback.jpg") center / cover;
}

.area-detail-kicker {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px;
  background: #edf5f1;
  color: var(--forest);
  font-weight: 900;
}

.area-detail-body {
  max-width: 860px;
}

.association-details-section .area-detail-panel {
  grid-template-columns: 1fr;
}

.area-detail-body h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.area-detail-body p {
  color: var(--muted);
  font-size: 1.04rem;
}

.inline-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.inline-link-list a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: #f7faf7;
  color: var(--forest);
  font-weight: 850;
  text-decoration: none;
}

.notice-card {
  margin-top: 26px;
  border-radius: 8px;
  padding: 24px;
  background: #edf5f1;
}

.notice-card h3 {
  margin-bottom: 12px;
}

.notice-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.notice-card li + li {
  margin-top: 6px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.event-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fbfcf8;
}

.document-shortcut-grid,
.people-grid,
.fee-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.document-shortcut-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.document-shortcut-grid a,
.people-grid article,
.fee-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf8;
}

.document-shortcut-grid a {
  display: block;
  min-height: 132px;
  padding: 20px;
  text-decoration: none;
}

.document-shortcut-grid span,
.people-grid span,
.fee-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--water);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.document-shortcut-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.25;
}

.association-button {
  margin-top: 22px;
}

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

.people-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.people-grid article,
.fee-grid article {
  padding: 20px;
}

.people-grid h3,
.fee-grid h3 {
  margin-bottom: 10px;
}

.people-grid a {
  display: block;
  color: var(--forest);
  font-weight: 850;
  overflow-wrap: anywhere;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.people-grid a + a {
  margin-top: 6px;
}

.compact-list {
  columns: 2;
}

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

.fee-grid strong {
  display: block;
  color: var(--forest);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.fee-grid p {
  margin-bottom: 0;
}

.resource-card {
  min-height: 270px;
  padding: 26px;
}

.resource-card-strong {
  background:
    linear-gradient(135deg, rgba(31, 111, 82, 0.96), rgba(56, 111, 143, 0.93)),
    url("assets/images/munkeback.jpg") center / cover;
  color: #ffffff;
}

.resource-card-strong p {
  color: rgba(255, 255, 255, 0.88);
}

.resource-card-strong .button {
  margin-top: 12px;
}

.document-toolbar {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.search-field {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-weight: 850;
}

.search-field input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.search-field input:focus {
  border-color: rgba(31, 111, 82, 0.58);
  outline: 3px solid rgba(31, 111, 82, 0.14);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chip {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
}

.chip.is-active {
  border-color: var(--forest);
  background: #edf5f1;
  color: var(--forest);
}

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

.doc-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #ffffff;
  text-decoration: none;
}

.doc-card:hover,
.doc-card:focus-visible,
.person-card:hover,
.resource-card:hover {
  border-color: rgba(31, 111, 82, 0.45);
  box-shadow: 0 12px 26px rgba(24, 50, 47, 0.08);
}

.doc-card span {
  grid-row: span 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: #edf5f1;
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 900;
}

.doc-card h2 {
  font-size: 1.22rem;
}

.doc-card p {
  margin: 0;
  color: var(--muted);
}

.empty-state {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #ffffff;
  color: var(--muted);
  font-weight: 800;
}

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

.person-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.person-card .button {
  margin-top: auto;
}

.person-card .button-secondary {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  margin-bottom: 96px;
  border-radius: 8px;
  padding: clamp(26px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(31, 111, 82, 0.94), rgba(56, 111, 143, 0.94)),
    url("assets/images/oversikt-fran-vaster.jpg") center / cover;
  color: #ffffff;
}

.page-cta .eyebrow {
  color: var(--sun);
}

.page-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
}

.contact-section {
  padding-bottom: 96px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 5vw, 52px);
  background: #ffffff;
}

.contact-panel p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
}

.contact-actions {
  justify-content: end;
  margin-top: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 850;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 8px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    background: #ffffff;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    height: 690px;
    min-height: 0;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    justify-content: center;
  }

  .slider-controls {
    right: 18px;
    bottom: 106px;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    padding: 6px 8px;
    background: rgba(15, 34, 31, 0.24);
    backdrop-filter: blur(8px);
  }

  .slider-controls .slider-button {
    display: none;
  }

  .slider-controls .slider-dot {
    width: 7px;
    height: 7px;
  }

  .slider-controls .slider-dot.is-active {
    width: 18px;
  }

  .quick-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-links a {
    border-bottom: 1px solid var(--line);
  }

  .quick-links a:nth-child(2n) {
    border-right: 0;
  }

  .intro-grid,
  .news-grid,
  .contact-panel,
  .content-grid,
  .split-section,
  .timeline,
  .resource-grid,
  .area-topic-grid,
  .event-grid,
  .document-shortcut-grid,
  .people-grid,
  .people-grid-compact,
  .fee-grid,
  .contact-grid,
  .doc-grid {
    grid-template-columns: 1fr;
  }

  .news-card-featured {
    min-height: 420px;
  }

  .booking-band,
  .page-cta,
  .section-heading-row {
    align-items: start;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand small {
    display: none;
  }

  .hero {
    height: 650px;
  }

  h1 {
    font-size: clamp(2.25rem, 10.6vw, 3.7rem);
  }

  .quick-links {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
  }

  .quick-links a {
    min-height: 104px;
    border-right: 0;
  }

  .section,
  .booking-band {
    width: calc(100% - 24px);
  }

  .section {
    padding-top: 74px;
  }

  .stats div {
    align-items: start;
    flex-direction: column;
  }

  .stats span {
    text-align: left;
  }

  .document-list a {
    grid-template-columns: 1fr;
  }

  .document-list span {
    grid-row: auto;
  }

  .subpage-main {
    padding-top: 70px;
  }

  .page-hero {
    min-height: 450px;
  }

  .page-hero-content {
    width: calc(100% - 24px);
    padding: 54px 0;
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.7rem);
  }

  .timeline-item,
  .timeline-item-featured,
  .resource-card,
  .area-topic-card,
  .person-card {
    min-height: auto;
  }

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

  .area-detail-kicker {
    width: 48px;
    height: 48px;
  }

  .compact-list {
    columns: 1;
  }

  .doc-card {
    grid-template-columns: 1fr;
  }

  .doc-card span {
    grid-row: auto;
  }
}

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

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