@font-face { font-family: "EB Garamond"; src: url("../fonts/eb-garamond-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "EB Garamond"; src: url("../fonts/eb-garamond-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "EB Garamond"; src: url("../fonts/eb-garamond-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Libre Franklin"; src: url("../fonts/libre-franklin-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Libre Franklin"; src: url("../fonts/libre-franklin-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Source Sans 3"; src: url("../fonts/source-sans-3-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Source Sans 3"; src: url("../fonts/source-sans-3-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Source Sans 3"; src: url("../fonts/source-sans-3-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Source Sans 3"; src: url("../fonts/source-sans-3-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Jost"; src: url("../fonts/jost-400-book.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: swap; }

:root {
  --forest: #254b36;
  --forest-deep: #173525;
  --forest-soft: #355e47;
  --grass: #6d9c45;
  --grass-light: #dbe8c9;
  --red: #9e382d;
  --red-deep: #7e2a22;
  --blue: #c9d8d4;
  --blue-light: #c9d8d4;
  --cream: #f6f0e4;
  --paper: #fbf8f1;
  --white: #fffdf8;
  --ink: #1b3125;
  --muted: #5f6d64;
  --line: #d9d0c0;
  --serif: "EB Garamond", Georgia, serif;
  --sans: "Source Sans 3", system-ui, sans-serif;
  --display: "Libre Franklin", "Source Sans 3", system-ui, sans-serif;
  --wordmark: "Jost", "Source Sans 3", system-ui, sans-serif;
  --shadow: 0 22px 60px rgb(26 48 35 / 10%);
  --radius: 24px;
  --container: 1280px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, p, figure, blockquote { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.035em;
}

h1 { font-size: clamp(4rem, 9vw, 8rem); }
h2 { font-size: clamp(3rem, 5.5vw, 5.4rem); }
h3 { line-height: 1.12; }

em {
  color: var(--grass);
  font-weight: 500;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.narrow { max-width: 780px; }
.section { padding-block: clamp(86px, 11vw, 150px); }
.section--blue { background: var(--blue-light); }

.eyebrow,
.meta {
  margin-bottom: 18px;
  color: var(--forest);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 3px;
  margin: 0 12px 3px 0;
  border-radius: 10px;
  background: var(--grass);
}

.eyebrow--light { color: var(--cream); }
.eyebrow--light::before { background: var(--grass-light); }
.eyebrow--red { color: var(--red); }
.eyebrow--red::before { background: var(--red); }

.lead {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 500;
  line-height: 1.25;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--forest);
  font-weight: 700;
}

.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 22px;
  align-items: center;
  min-height: 88px;
  padding: 14px 32px;
  border-bottom: 1px solid rgb(37 75 54 / 16%);
  background: var(--paper);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.home-page .site-header {
  position: fixed;
  inset: 0 0 auto;
  border-bottom-color: rgb(255 255 255 / 28%);
  background: linear-gradient(to bottom, rgb(12 33 21 / 45%), transparent);
  color: var(--white);
}

.home-page .site-header.is-scrolled {
  border-bottom-color: rgb(37 75 54 / 16%);
  background: rgb(246 240 228 / 68%);
  box-shadow: 0 8px 24px rgb(23 53 37 / 8%);
  backdrop-filter: blur(12px);
  color: var(--forest);
}

.home-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: var(--forest);
  transition: transform .2s ease, background .2s ease;
}

.home-page .home-mark { background: transparent; color: var(--white); }
.home-page .site-header.is-scrolled .home-mark { background: transparent; color: var(--forest); }
.home-mark:hover { transform: translateY(-2px); background: transparent; }
.home-mark svg { width: 28px; }

.wordmark {
  width: max-content;
  color: var(--forest);
  font-family: var(--wordmark);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-page .wordmark { color: var(--white); }
.home-page .site-header.is-scrolled .wordmark { color: var(--forest); }
.wordmark--light { color: var(--white) !important; }

.desktop-nav {
  display: flex;
  gap: clamp(18px, 2.4vw, 40px);
  align-items: center;
  margin-right: 10px;
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
  font-size: .88rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--grass);
  content: "";
  transition: transform .2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }

.menu-toggle {
  display: grid;
  width: 54px;
  height: 54px;
  gap: 5px;
  place-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
}

.menu-panel {
  position: fixed;
  z-index: 100;
  inset: 0;
  overflow-y: auto;
  padding: 22px 32px 34px;
  background: var(--forest-deep);
  color: var(--white);
}

.menu-panel[hidden] { display: none; }
.menu-panel.is-opening { animation: menu-in .34s ease both; }
@keyframes menu-in { from { opacity: 0; clip-path: circle(0 at calc(100% - 55px) 50px); } to { opacity: 1; clip-path: circle(150% at calc(100% - 55px) 50px); } }

.menu-panel__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-close {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 65%);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-close svg { width: 26px; }

.menu-panel__nav {
  display: grid;
  max-width: 960px;
  margin: clamp(50px, 8vh, 100px) auto;
}

.menu-panel__nav a {
  display: flex;
  gap: 26px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vh, 5.2rem);
  line-height: 1;
  text-decoration: none;
  transition: color .2s ease, padding-left .2s ease;
}

.menu-panel__nav a:hover { padding-left: 12px; color: var(--grass-light); }
.menu-panel__nav span { color: var(--grass); font: 700 .7rem var(--sans); letter-spacing: .12em; }

.menu-panel__footer {
  display: flex;
  max-width: 960px;
  justify-content: space-between;
  align-items: end;
  margin: auto;
  color: rgb(255 255 255 / 70%);
  font-size: .9rem;
}

.menu-panel__footer p { margin: 0; }

.hero {
  position: relative;
  min-height: min(920px, 96vh);
  background: var(--forest-deep);
  color: var(--white);
  isolation: isolate;
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image { object-fit: cover; object-position: center 42%; }
.hero__veil { background: linear-gradient(90deg, rgb(10 29 18 / 82%) 0%, rgb(10 29 18 / 50%) 42%, rgb(10 29 18 / 8%) 75%), linear-gradient(0deg, rgb(10 29 18 / 55%) 0%, transparent 45%); }

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: min(920px, 96vh);
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(75px, 10vh, 118px);
}

.hero__kicker {
  margin-bottom: 24px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: clamp(4.2rem, 8vw, 8.6rem);
}

.hero h1 em { color: var(--grass-light); }

.hero__intro {
  max-width: 630px;
  margin-bottom: 36px;
  color: rgb(255 255 255 / 88%);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.hero__scroll {
  display: flex;
  width: max-content;
  gap: 18px;
  align-items: center;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero__scroll svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgb(255 255 255 / 60%);
  border-radius: 50%;
}

.hero__caption {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 30px;
  writing-mode: vertical-rl;
  color: rgb(255 255 255 / 64%);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.next-event { background: var(--red); color: var(--white); }
.next-event-photo { width: 100%; max-width: none; margin: 0; padding: 0; border: 0; }
.next-event-photo img { display: block; width: 100%; height: auto; margin: 0; border-radius: 0; }
/* Kollagets vita ytor blandas med bakgrunden utan att ändra bildfilen. */
.next-event-photo--collage { padding: clamp(24px, 4vw, 40px) 20px 0; background: var(--blue-light); isolation: isolate; }
.next-event-photo--collage img { max-width: 900px; margin-inline: auto; mix-blend-mode: multiply; }
/* Anmälan avslutar kalenderinslaget före introduktionen till gården. */
.next-event-signup { padding: clamp(28px, 5vw, 48px) 0; background: var(--blue-light); text-align: center; }
.next-event-signup .button { max-width: 100%; white-space: normal; }
.next-event-divider { margin: 0; border: 0; border-top: 3px solid var(--forest); }
.next-event__inner {
  display: grid;
  grid-template-columns: 140px 92px 1fr auto;
  gap: 34px;
  align-items: center;
  min-height: 174px;
}

.next-event__label { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.next-event__label span { display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: var(--cream); }
.date-tile { display: grid; min-height: 96px; place-content: center; border: 1px solid rgb(255 255 255 / 45%); text-align: center; }
.date-tile strong { font-family: var(--serif); font-size: 2.8rem; line-height: .8; }
.date-tile span { margin-top: 8px; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.next-event__copy h2 { margin-bottom: 4px; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.7rem); letter-spacing: -.02em; }
.next-event__copy p { margin: 0; color: rgb(255 255 255 / 76%); font-size: .9rem; }

.button {
  display: inline-flex;
  min-height: 52px;
  gap: 28px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .035em;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button--forest { background: var(--forest); color: var(--white); }
.button--forest:hover { background: var(--forest-deep); }
.button--red { background: var(--red); color: var(--white); }
.button--red:hover { background: var(--red-deep); }
.button--grass { background: var(--grass); color: var(--forest-deep); }
.button--cream { background: var(--cream); color: var(--forest); }
.button--outline-light { border-color: rgb(255 255 255 / 64%); color: var(--white); }
.button--outline-light:hover { background: var(--white); color: var(--red); }

.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .8fr) 240px;
  gap: clamp(42px, 6vw, 90px);
  align-items: end;
}

.intro-heading h2 { margin: 0; }
.intro-copy .lead { font-size: clamp(1.45rem, 2.4vw, 2rem); }
.intro-copy > p:not(.lead) { color: var(--muted); }

.since-card {
  padding: 30px 0 0 24px;
  border-top: 3px solid var(--grass);
  border-left: 1px solid var(--line);
}

.since-card__number { display: block; margin-bottom: 12px; color: var(--red); font-family: var(--serif); font-size: 3.8rem; font-weight: 600; line-height: 1; }
.since-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.stories-section { padding-top: 20px; }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 76px);
}
.section-heading h2 { margin-bottom: 0; font-size: clamp(3rem, 5vw, 4.8rem); }

.stories-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 26px; }
.stories-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 900px; }
.story-card { overflow: hidden; border: 1px solid var(--line); border-radius: 2px 2px var(--radius) var(--radius); background: var(--white); }
.story-card__image { display: block; aspect-ratio: 1.16; overflow: hidden; }
.story-card--featured .story-card__image { aspect-ratio: 1.45; }
.story-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.1,1); }
.story-card:hover .story-card__image img { transform: scale(1.035); }
.story-card__body { padding: 28px; }
.story-card__body .meta { margin-bottom: 12px; color: var(--red); letter-spacing: .1em; }
.story-card h3 { margin-bottom: 14px; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem); }
.story-card h3 a { text-decoration: none; }
.story-card__body > p:not(.meta) { color: var(--muted); font-size: .96rem; }

.activities-section { overflow: hidden; background: var(--forest); color: var(--white); }
.section-heading--light h2 { color: var(--white); }
.section-note { max-width: 360px; margin: 0; color: rgb(255 255 255 / 68%); }
.activities-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; margin-bottom: 46px; }
.activities-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.activity-card { min-width: 0; color: var(--ink); }
.activity-card__link { display: block; height: 100%; background: var(--white); text-decoration: none; }
.activity-card__image { position: relative; aspect-ratio: 1.18; overflow: hidden; }
.activity-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.activity-card:hover .activity-card__image img { transform: scale(1.045); }
.activity-card__number { position: absolute; top: 0; left: 0; padding: 10px 14px; background: var(--red); color: var(--white); font-size: .72rem; font-weight: 700; letter-spacing: .12em; }
.activity-card__body { position: relative; min-height: 290px; padding: 28px 26px 70px; }
.activity-card__body .eyebrow { margin-bottom: 16px; font-size: .66rem; }
.activity-card__body h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 2.1rem; }
.activity-card__body p:not(.eyebrow) { color: var(--muted); font-size: .92rem; }
.round-arrow { position: absolute; right: 24px; bottom: 24px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--forest); border-radius: 50%; transition: background .2s ease, color .2s ease; }
.activity-card:hover .round-arrow { background: var(--forest); color: var(--white); }

.membership-teaser { background: var(--cream); }
.membership-teaser__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 9vw, 130px); align-items: center; }
.membership-teaser__copy h2 { margin-bottom: 30px; }
.membership-teaser__copy > p:not(.eyebrow) { max-width: 600px; color: var(--muted); font-size: 1.12rem; }
.membership-prices { display: flex; gap: 0; margin: 36px 0; border-block: 1px solid var(--line); }
.membership-prices div { display: flex; min-width: 200px; flex-direction: column; padding: 22px 30px 22px 0; }
.membership-prices div + div { padding-left: 30px; border-left: 1px solid var(--line); }
.membership-prices strong { color: var(--forest); font-family: var(--serif); font-size: 2.3rem; line-height: 1; }
.membership-prices span { margin-top: 8px; color: var(--muted); font-size: .8rem; }
.membership-teaser__image { position: relative; padding: 0 0 65px 55px; }
.membership-teaser__image::before { position: absolute; z-index: 0; inset: 50px 45px 0 0; background: var(--red); content: ""; }
.membership-teaser__image img { position: relative; z-index: 1; width: 100%; aspect-ratio: .92; object-fit: cover; }
.membership-teaser__image blockquote { position: absolute; z-index: 2; right: 0; bottom: 0; max-width: 350px; margin: 0; padding: 28px 32px; background: var(--forest); color: var(--white); font-family: var(--serif); font-size: 1.45rem; line-height: 1.25; }

.archive-teaser { padding-block: clamp(90px, 12vw, 170px); background: var(--blue-light); }
.archive-teaser__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(70px, 10vw, 150px); align-items: center; }
.archive-photo-stack { position: relative; min-height: 470px; }
.archive-photo-stack::after { position: absolute; inset: 44px 30px 30px 70px; border: 1px solid var(--forest); content: ""; }
.archive-photo-stack img { position: absolute; z-index: 1; object-fit: cover; filter: sepia(.25) contrast(1.08); }
.archive-photo-stack img:first-child { top: 0; left: 0; width: 66%; height: 72%; image-rendering: auto; }
.archive-photo-stack img:last-child { right: 0; bottom: 0; width: 57%; height: 54%; }
.archive-teaser h2 { margin-bottom: 30px; }
.archive-teaser p:not(.eyebrow) { max-width: 550px; color: #3d5a4a; }
.archive-teaser__links { display: flex; gap: 28px; align-items: center; margin-top: 38px; }

.gallery-ribbon { display: grid; grid-template-columns: repeat(6, minmax(180px, 1fr)); overflow: hidden; background: var(--forest); }
.gallery-ribbon figure { position: relative; aspect-ratio: .78; margin: 0; overflow: hidden; }
.gallery-ribbon img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-ribbon figure:hover img { transform: scale(1.04); }
.gallery-ribbon figcaption { position: absolute; inset: auto 0 0; padding: 45px 15px 14px; background: linear-gradient(transparent, rgb(0 0 0 / 65%)); color: var(--white); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; }

.site-footer { padding-top: clamp(90px, 10vw, 140px); background: var(--forest-deep); color: var(--white); }
.site-footer__lead { position: relative; padding-bottom: 100px; border-bottom: 1px solid rgb(255 255 255 / 18%); }
.site-footer__lead h2 { max-width: 830px; margin: 0; color: var(--white); font-size: clamp(4rem, 8vw, 8rem); }
.site-footer__lead .button { position: absolute; right: 0; bottom: 110px; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; padding-block: 70px; }
.wordmark--footer { display: inline-block; margin-bottom: 20px; font-size: 1.5rem; }
.site-footer__grid h3 { margin-bottom: 18px; color: var(--grass-light); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; }
.site-footer__grid p, .site-footer__grid a { display: block; margin-bottom: 8px; color: rgb(255 255 255 / 68%); font-size: .9rem; text-decoration: none; }
.site-footer__grid a:hover { color: var(--white); }
.site-footer__bottom { display: flex; justify-content: space-between; padding-block: 24px; border-top: 1px solid rgb(255 255 255 / 12%); color: rgb(255 255 255 / 50%); font-size: .76rem; }
.site-footer__bottom a { text-decoration: none; }

.scroll-top {
  position: fixed;
  z-index: 20;
  right: 28px;
  bottom: 28px;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--forest);
  border-radius: 50%;
  background: rgb(219 232 201 / 72%);
  box-shadow: 0 10px 24px rgb(23 53 37 / 16%);
  backdrop-filter: blur(8px);
  color: var(--forest-deep);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: transform .2s ease, opacity .2s ease, background .2s ease, color .2s ease;
}
.scroll-top.is-visible { opacity: .68; pointer-events: auto; transform: translateY(0); }
.scroll-top svg { width: 24px; height: 24px; }
.scroll-top:hover { transform: translateY(-3px); background: var(--forest); color: var(--white); opacity: .96; }
.scroll-top:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

/* Subpages */
.page-hero { padding-block: clamp(100px, 12vw, 170px); }
.page-hero--forest { background: var(--forest); color: var(--white); }
.page-hero--red { background: var(--red); color: var(--white); }
.page-hero--blue { background: var(--blue); }
.page-hero__grid { display: grid; grid-template-columns: 1.4fr .7fr; gap: 80px; align-items: end; }
.page-hero h1 { margin: 0; font-size: clamp(5rem, 10vw, 9.5rem); }
.page-hero__grid > p { max-width: 500px; margin: 0 0 12px; font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.2rem); line-height: 1.28; }
.page-hero--photo { position: relative; overflow: hidden; min-height: 620px; display: flex; align-items: end; isolation: isolate; }
.page-hero--photo > img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero--photo::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgb(13 42 27 / 86%), rgb(13 42 27 / 25%)); content: ""; }

.event-list { border-top: 2px solid var(--forest); }
.event-row { display: grid; grid-template-columns: 120px 1fr 220px; gap: 40px; align-items: center; padding-block: 42px; border-bottom: 1px solid var(--line); }
.event-row__date { display: grid; width: 92px; height: 110px; place-content: center; background: var(--red); color: var(--white); text-align: center; }
.event-row__date strong { font-family: var(--serif); font-size: 3.2rem; line-height: .72; }
.event-row__date span { margin-top: 10px; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.event-row__date small { margin-top: 2px; opacity: .7; font-size: .64rem; }
.event-row h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 2.4rem; }
.event-row p { margin-bottom: 0; color: var(--muted); }
.event-row .meta { margin-bottom: 10px; color: var(--red); }
.event-row__place { padding-left: 26px; border-left: 1px solid var(--line); }
.event-row__place span, .event-row__place strong { display: block; }
.event-row__place span { color: var(--muted); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.past-events { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.past-events article { padding: 28px; border-top: 3px solid var(--forest); background: rgb(255 255 255 / 50%); }
.past-events h3 { font-family: var(--serif); font-size: 1.8rem; }
.past-events p:last-child { color: var(--muted); font-size: .92rem; }
.empty-state { padding: 60px; background: var(--cream); text-align: center; }

.activities-page-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
.activities-page-grid .activity-card__link { display: grid; grid-template-columns: 1.05fr .95fr; }
.activities-page-grid .activity-card__image { aspect-ratio: auto; min-height: 410px; }
.practical-strip { padding-block: 70px; background: var(--red); color: var(--white); }
.practical-strip__grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 50px; align-items: center; }
.practical-strip h2 { margin: 0; font-size: 3rem; }
.practical-strip p { margin: 0; color: rgb(255 255 255 / 76%); }

.detail-hero { position: relative; display: flex; min-height: 76vh; align-items: end; color: var(--white); isolation: isolate; }
.detail-hero > img, .detail-hero__veil { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; }
.detail-hero > img { object-fit: cover; }
.detail-hero__veil { z-index: -1; background: linear-gradient(0deg, rgb(8 33 20 / 86%), rgb(8 33 20 / 5%) 80%); }
.detail-hero__content { padding-bottom: 80px; }
.detail-hero h1 { max-width: 900px; margin: 10px 0 20px; }
.detail-hero__content > p:last-child { max-width: 650px; margin: 0; font-size: 1.3rem; }
.back-link { display: inline-block; margin-bottom: 45px; color: rgb(255 255 255 / 75%); font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-decoration: none; }
.back-link--dark { color: var(--forest); }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 330px; gap: clamp(60px, 10vw, 150px); align-items: start; }
.article-copy > p { color: var(--muted); }
.article-copy .lead { color: var(--ink); }
.article-copy .button { margin-top: 20px; }
.fact-card { padding: 36px; border-top: 4px solid var(--grass); background: var(--cream); }
.fact-card ul { margin: 0; padding: 0; list-style: none; }
.fact-card li { padding: 14px 0; border-bottom: 1px solid var(--line); font-weight: 600; }

.history-hero { padding-block: clamp(90px, 10vw, 150px); background: var(--cream); }
.history-hero__grid { display: grid; grid-template-columns: 1fr .8fr; gap: 90px; align-items: center; }
.history-hero h1 { margin-bottom: 32px; font-size: clamp(4rem, 7vw, 7rem); }
.history-hero__copy > p:last-child { max-width: 640px; color: var(--muted); font-size: 1.15rem; }
.history-hero figure { margin: 0; }
.history-hero figure img { width: 100%; min-height: 520px; object-fit: cover; filter: sepia(.18); }
.history-hero figcaption { margin-top: 10px; color: var(--muted); font-size: .75rem; }
.quote-card { padding: 45px 0 20px 34px; border-top: 3px solid var(--red); border-left: 1px solid var(--line); }
.quote-card blockquote { margin: 0; font-family: var(--serif); font-size: 2rem; line-height: 1.25; }
.timeline-section { background: var(--forest); color: var(--white); }
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 50px; border-top: 1px solid rgb(255 255 255 / 35%); }
.timeline article { position: relative; padding: 42px 28px 0 0; }
.timeline article::before { position: absolute; top: -6px; left: 0; width: 11px; height: 11px; border-radius: 50%; background: var(--grass-light); content: ""; }
.timeline strong { color: var(--grass-light); font-family: var(--serif); font-size: 2.2rem; }
.timeline p { color: rgb(255 255 255 / 68%); font-size: .88rem; }
.archive-callout__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.archive-callout__images { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.archive-callout__images img { width: 100%; height: 380px; object-fit: cover; filter: sepia(.35) contrast(1.12); image-rendering: auto; }
.archive-callout h2 { margin-bottom: 24px; }
.archive-callout p:not(.eyebrow) { color: var(--muted); }

.gallery-page { background: var(--paper); }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 50px; }
.gallery-filters button { padding: 10px 18px; border: 1px solid var(--forest); border-radius: 999px; background: transparent; color: var(--forest); font-size: .82rem; font-weight: 700; cursor: pointer; }
.gallery-filters button.is-active { background: var(--forest); color: var(--white); }
.gallery-grid { display: grid; grid-auto-flow: dense; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.gallery-item { margin: 0; }
.gallery-item[hidden] { display: none; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item button { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; border: 0; background: transparent; cursor: zoom-in; }
.gallery-item img { width: 100%; aspect-ratio: 1.15; object-fit: cover; transition: transform .5s ease; }
.gallery-item--wide img { aspect-ratio: 2.36; }
.gallery-item button:hover img { transform: scale(1.025); }
.gallery-item button span { position: absolute; right: 16px; bottom: 16px; display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--white); color: var(--forest); }
.gallery-item figcaption { padding-top: 10px; color: var(--muted); font-size: .82rem; }
.lightbox { width: min(1100px, 94vw); max-height: 92vh; padding: 0; border: 0; background: transparent; color: var(--white); }
.lightbox::backdrop { background: rgb(5 16 10 / 92%); }
.lightbox img { max-width: 100%; max-height: 80vh; margin: auto; object-fit: contain; }
.lightbox p { margin: 12px 50px 0 0; }
.lightbox__close { position: fixed; top: 20px; right: 24px; width: 50px; height: 50px; border: 1px solid rgb(255 255 255 / 60%); border-radius: 50%; background: transparent; color: var(--white); font-size: 2rem; cursor: pointer; }

.membership-hero { padding-block: clamp(90px, 10vw, 145px); overflow: hidden; background: var(--cream); }
.membership-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.membership-hero h1 { margin-bottom: 30px; font-size: clamp(4rem, 7vw, 7.2rem); }
.membership-hero .lead { max-width: 680px; font-size: 1.7rem; }
.membership-prices--large { max-width: 620px; }
.membership-prices--large strong { font-size: 3rem; }
.membership-photo { position: relative; margin-right: -10vw; }
.membership-photo::before { position: absolute; z-index: 0; inset: -30px 80px 30px -30px; background: var(--red); content: ""; }
.membership-photo img { position: relative; z-index: 1; width: 100%; min-height: 580px; object-fit: cover; }
.payment-grid { display: grid; grid-template-columns: 1fr minmax(320px, 520px); gap: clamp(70px, 11vw, 160px); align-items: center; }
.payment-copy h2 { margin-bottom: 44px; }
.steps { margin: 0 0 36px; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 46px 1fr; gap: 22px; padding: 22px 0; border-top: 1px solid var(--line); }
.steps li > span { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; background: var(--grass-light); color: var(--forest); font-weight: 700; }
.steps strong { display: block; font-family: var(--serif); font-size: 1.5rem; }
.steps p { margin: 3px 0 0; color: var(--muted); }
.bankgiro-card { display: flex; justify-content: space-between; padding: 20px 24px; background: var(--blue-light); }
.bankgiro-card span { color: var(--muted); font-size: .82rem; }
.swish-card { margin: 0; padding: 20px; background: var(--forest); box-shadow: var(--shadow); }
.swish-card img { width: 100%; max-height: 720px; object-fit: contain; background: var(--white); }
.swish-card figcaption { padding: 14px 4px 0; color: rgb(255 255 255 / 70%); font-size: .75rem; text-align: center; }
.why-member__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-member__grid article { padding: 32px; border-top: 3px solid var(--forest); background: rgb(255 255 255 / 55%); }
.why-member__grid article > span { color: var(--red); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.why-member__grid h3 { margin: 24px 0 10px; font-family: var(--serif); font-size: 2rem; }
.why-member__grid p { margin: 0; color: var(--muted); }

.contact-page { padding-block: clamp(90px, 10vw, 150px); background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 11vw, 160px); }
.contact-copy h1 { margin-bottom: 26px; }
.contact-copy .lead { max-width: 600px; }
.contact-details { margin-top: 58px; border-top: 1px solid var(--line); }
.contact-details > div { display: grid; grid-template-columns: 130px 1fr; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-details span { color: var(--muted); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-details p, .contact-details a { margin: 0; text-decoration: none; }
.contact-form-wrap { padding: clamp(34px, 5vw, 64px); background: var(--white); box-shadow: var(--shadow); }
.field { margin-bottom: 24px; }
.field label { display: block; margin-bottom: 7px; font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid #9ba69e; outline: 0; background: transparent; color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { border-bottom: 2px solid var(--forest); }
.field--error input, .field--error textarea { border-color: var(--red); }
.field-error { display: block; margin-top: 6px; color: var(--red); font-size: .78rem; }
.form-note { margin: 18px 0 0; color: var(--muted); font-size: .75rem; }
.honeypot { position: absolute; left: -10000px; }
.success-message { display: flex; min-height: 450px; flex-direction: column; align-items: flex-start; justify-content: center; }
.success-message > span { display: grid; width: 60px; height: 60px; margin-bottom: 30px; place-items: center; border-radius: 50%; background: var(--grass); color: var(--forest-deep); font-size: 1.6rem; }
.success-message h2 { margin-bottom: 14px; font-size: 3.2rem; }

.simple-page h1 { margin-bottom: 40px; }
.simple-page h2 { margin-top: 60px; font-size: 2.5rem; }
.simple-page p:not(.eyebrow):not(.lead) { color: var(--muted); }

.post-hero { padding-top: 80px; background: var(--cream); }
.post-hero__heading { max-width: 920px; margin-bottom: 70px; }
.post-hero h1 { margin-bottom: 30px; font-size: clamp(4rem, 8vw, 7.5rem); }
.post-hero .lead { max-width: 760px; }
.post-hero > img { width: min(var(--container), calc(100% - 64px)); max-height: 720px; margin-inline: auto; object-fit: cover; }
.post-body { max-width: 760px; padding-block: 90px 140px; }
.article-copy--post { font-family: var(--serif); font-size: 1.45rem; line-height: 1.65; }
.article-copy--post > :first-child { margin-top: 0; }
.article-copy--post h2 { margin: 2.2em 0 .55em; font-size: 2.7rem; }
.article-copy--post h3 { margin: 1.8em 0 .45em; font-family: var(--serif); font-size: 2rem; }
.article-copy--post p { margin-bottom: 1.2em; }
.article-copy--post ul, .article-copy--post ol { margin: 0 0 1.4em; padding-left: 1.3em; }
.post-media-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 65px; }
.post-media-gallery figure { margin: 0; }
.post-media-gallery img { width: 100%; aspect-ratio: 1.25; object-fit: cover; }
.post-media-gallery figcaption { margin-top: 8px; color: var(--muted); font-size: .76rem; }
.post-attachments { margin-top: 70px; padding-top: 35px; border-top: 2px solid var(--forest); }
.post-attachments h2 { font-size: 2.4rem; }
.post-attachments ul { margin: 0; padding: 0; list-style: none; }
.post-attachments a { display: grid; grid-template-columns: 60px 1fr auto; gap: 18px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.post-attachments a > span { color: var(--red); font-size: .72rem; font-weight: 700; }
.post-attachments a > small { color: var(--muted); }
.story-card__placeholder { display: grid; width: 100%; height: 100%; place-items: center; background: var(--forest); color: var(--grass-light); font-family: var(--display); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; }
.not-found { display: grid; min-height: 75vh; place-items: center; padding-block: 100px; text-align: center; }
.not-found span { display: block; color: var(--blue); font-family: var(--serif); font-size: clamp(8rem, 24vw, 20rem); font-weight: 700; line-height: .7; }
.not-found h1 { margin: 20px 0; font-size: 4.5rem; }

/* Admin */
.admin-shell { min-height: 70vh; padding-block: 70px 120px; background: #eef1ec; }
.admin-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.admin-bar h1 { margin: 0; font-size: 4rem; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.admin-actions form { margin: 0; }
.admin-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.admin-nav a { padding: 9px 14px; border: 1px solid #c9d2ca; background: rgb(255 255 255 / 70%); color: var(--forest); font-size: .8rem; font-weight: 700; text-decoration: none; }
.admin-nav a:hover { border-color: var(--forest); background: var(--white); }
.admin-summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.admin-summary article { padding: 22px 24px; border-top: 4px solid var(--grass); background: var(--white); }
.admin-summary span, .admin-summary small { display: block; color: var(--muted); font-size: .76rem; }
.admin-summary span { font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.admin-summary strong { display: block; margin-block: 5px; color: var(--forest); font-family: var(--serif); font-size: 2.7rem; line-height: 1; }
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.admin-panel { padding: 30px; border: 1px solid #d5ddd6; background: var(--white); }
.admin-panel--wide { grid-column: 1 / -1; }
.admin-panel__heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.admin-panel__heading > div > span { color: var(--muted); font-size: .78rem; }
.admin-panel h2 { margin: 0; font-size: 2.2rem; }
.admin-panel__note { max-width: 760px; margin: -10px 0 24px; color: var(--muted); font-size: .86rem; }
.admin-list { margin: 0; padding: 0; list-style: none; }
.admin-list li { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 16px 0; border-top: 1px solid var(--line); }
.admin-list strong, .admin-list span { display: block; }
.admin-list span { color: var(--muted); font-size: .78rem; }
.status-pill { display: inline-block !important; width: max-content; margin-top: 4px; padding: 3px 8px; border-radius: 999px; background: var(--grass-light); color: var(--forest) !important; }
.status-pill--muted { background: #e6e6e3; }
.status-pill--danger { background: #f6dedb; color: var(--red-deep) !important; }
.admin-list__actions { display: flex; gap: 8px; }
.small-button { padding: 7px 11px; border: 1px solid var(--forest); background: transparent; color: var(--forest); font-size: .75rem; font-weight: 700; text-decoration: none; cursor: pointer; }
.small-button--danger { border-color: var(--red); color: var(--red); }
.admin-table-wrap { width: 100%; overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .86rem; text-align: left; }
.admin-table th { padding: 10px 14px; border-bottom: 2px solid var(--forest); color: var(--muted); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.admin-table td { padding: 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.admin-table td:first-child { padding-left: 0; }
.admin-table th:first-child { padding-left: 0; }
.admin-table strong, .admin-table small { display: block; }
.admin-table small { margin-top: 3px; color: var(--muted); font-size: .7rem; }
.admin-table .audit-details { max-width: 340px; margin-top: 7px; overflow-wrap: anywhere; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }
.admin-table code { font-size: .72rem; white-space: nowrap; }
.admin-table-wrap--logs { max-height: 680px; overflow: auto; }
.audit-table { min-width: 920px; }
.audit-table thead { position: sticky; z-index: 1; top: 0; background: var(--white); }
.audit-table td:nth-child(1), .audit-table td:nth-child(5), .audit-table td:nth-child(6) { white-space: nowrap; }
.admin-form-card { max-width: 880px; margin-inline: auto; padding: 44px; background: var(--white); }
.admin-form-card--content { max-width: 1080px; }
.admin-form-card h1 { margin-bottom: 40px; font-size: 4rem; }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 26px; }
.admin-form-grid .field--full { grid-column: 1 / -1; }
.check-field { display: flex; gap: 10px; align-items: center; margin: 12px 0 24px; }
.check-field input { width: 20px; height: 20px; accent-color: var(--forest); }
.form-success { padding: 12px 15px; background: var(--grass-light); color: var(--forest); font-size: .85rem; }
.field-label { display: block; margin-bottom: 10px; font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.editor-toolbar { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px; border: 1px solid #aeb9b0; border-bottom: 0; background: #f0f3ee; }
.editor-toolbar button { padding: 7px 10px; border: 1px solid #c8d0c9; background: var(--white); color: var(--forest); font-size: .75rem; cursor: pointer; }
.editor-toolbar button:hover, .editor-toolbar button:focus-visible { border-color: var(--forest); background: var(--grass-light); }
.editor-toolbar > span { width: 1px; margin-inline: 3px; background: #c8d0c9; }
.rich-editor { min-height: 330px; padding: 22px; overflow-y: auto; border: 1px solid #aeb9b0; outline: 0; background: #fff; font-family: var(--serif); font-size: 1.25rem; line-height: 1.55; white-space: pre-wrap; }
.rich-editor:focus { border-color: var(--forest); box-shadow: inset 0 0 0 1px var(--forest); }
.rich-editor h2 { margin: 1.2em 0 .45em; font-size: 2.4rem; }
.rich-editor h3 { margin: 1em 0 .4em; font-family: var(--serif); font-size: 1.8rem; }
.rich-editor p { margin-bottom: 1em; }
.upload-field input[type="file"] { padding: 16px; border: 1px dashed #87998c; background: #f7f9f5; }
.media-list { display: grid; gap: 10px; margin-top: 18px; }
.media-item { display: grid; grid-template-columns: 74px minmax(0, 1fr) auto auto; gap: 14px; align-items: center; padding: 10px; border: 1px solid #d5ddd6; background: #fafbf8; }
.media-item__preview { display: grid; width: 74px; height: 58px; place-items: center; overflow: hidden; background: var(--forest); color: var(--white); font-size: .7rem; font-weight: 700; }
.media-item__preview img { width: 100%; height: 100%; object-fit: cover; }
.media-item__copy { min-width: 0; }
.media-item__copy strong, .media-item__copy small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.media-item__copy small { color: var(--muted); font-size: .7rem; }
.media-choice { display: flex; gap: 7px; align-items: center; font-size: .76rem; font-weight: 700; white-space: nowrap; }
.media-choice input { width: 18px; height: 18px; accent-color: var(--forest); }
.media-choice--remove { color: var(--red); }
.legacy-image-note { padding: 14px; background: var(--blue-light); font-size: .84rem; }
.login-page { display: grid; min-height: 75vh; place-items: center; padding: 70px 20px; background: var(--forest); }
.login-card { width: min(480px, 100%); padding: 45px; background: var(--white); box-shadow: var(--shadow); }
.login-card h1 { margin-bottom: 12px; font-size: 3.5rem; }
.login-card > p { color: var(--muted); }
.form-alert { padding: 12px 15px; background: #f6dedb; color: var(--red-deep); font-size: .85rem; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .intro-grid { grid-template-columns: 1fr 1fr; }
  .since-card { grid-column: 2; }
  .stories-grid { grid-template-columns: 1fr 1fr; }
  .story-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.15fr .85fr; }
  .story-card--featured .story-card__image { aspect-ratio: auto; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-ribbon { grid-template-columns: repeat(3, 1fr); }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .site-footer__grid > div:last-child { grid-column: 2; }
  .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 35px; border-top: 0; }
  .timeline article { border-top: 1px solid rgb(255 255 255 / 35%); }
  .activities-page-grid .activity-card__link { grid-template-columns: 1fr; }
  .activities-page-grid .activity-card__image { min-height: 300px; }
  .admin-summary { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  body { font-size: 17px; }
  .container { width: min(100% - 36px, var(--container)); }
  .section { padding-block: 78px; }
  .site-header { min-height: 74px; padding: 10px 18px; }
  .home-mark, .menu-toggle, .menu-close { width: 48px; height: 48px; }
  .wordmark { font-size: .93rem; letter-spacing: .11em; }
  .menu-panel { padding: 14px 18px 28px; }
  .menu-panel__nav { margin-block: 50px; }
  .menu-panel__nav a { font-size: clamp(2.4rem, 10vw, 4rem); }
  .menu-panel__footer { display: grid; gap: 18px; }
  .hero { min-height: 780px; }
  .hero__content { min-height: 780px; padding-bottom: 66px; }
  .hero__image { object-position: 57% center; }
  .hero__veil { background: linear-gradient(0deg, rgb(9 30 18 / 86%) 0%, rgb(9 30 18 / 22%) 85%); }
  .hero h1 { font-size: clamp(3.7rem, 17vw, 6rem); }
  .hero__caption { display: none; }
  .next-event__inner { grid-template-columns: 74px 1fr; gap: 18px; padding-block: 30px; }
  .next-event__label { grid-column: 1 / -1; }
  .date-tile { min-height: 82px; }
  .next-event__copy h2 { font-size: 1.8rem; }
  .next-event .button { grid-column: 1 / -1; width: 100%; }
  .intro-grid, .membership-teaser__grid, .archive-teaser__grid, .page-hero__grid, .history-hero__grid, .archive-callout__grid, .membership-hero__grid, .payment-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .since-card { grid-column: auto; max-width: 280px; }
  .section-heading { align-items: start; }
  .desktop-only { display: none; }
  .stories-grid, .stories-grid--two { grid-template-columns: 1fr; }
  .story-card--featured { grid-column: auto; display: block; }
  .story-card--featured .story-card__image { aspect-ratio: 1.45; }
  .activities-grid, .activities-grid--three, .activities-page-grid { grid-template-columns: 1fr; }
  .activity-card__body { min-height: 250px; }
  .membership-teaser__image { padding-left: 28px; }
  .membership-prices { flex-direction: column; }
  .membership-prices div { min-width: 0; }
  .membership-prices div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .archive-photo-stack { min-height: 370px; }
  .archive-teaser__links { align-items: flex-start; flex-direction: column; }
  .gallery-ribbon { grid-template-columns: repeat(2, 1fr); }
  .gallery-ribbon figure { aspect-ratio: 1; }
  .site-footer__lead .button { position: static; margin-top: 34px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid > div:last-child { grid-column: auto; }
  .page-hero { padding-block: 90px; }
  .page-hero__grid { gap: 35px; }
  .page-hero__grid > p { font-size: 1.45rem; }
  .page-hero--photo { min-height: 570px; }
  .event-row { grid-template-columns: 86px 1fr; gap: 20px; }
  .event-row__date { width: 76px; height: 92px; }
  .event-row__place { grid-column: 2; padding: 0; border: 0; }
  .past-events { grid-template-columns: 1fr; }
  .practical-strip__grid { grid-template-columns: 1fr; gap: 26px; }
  .article-layout { grid-template-columns: 1fr; gap: 50px; }
  .detail-hero { min-height: 700px; }
  .history-hero figure img { min-height: 380px; }
  .timeline { grid-template-columns: 1fr; }
  .archive-callout__images img { height: 270px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .membership-photo { margin-right: 0; }
  .membership-photo img { min-height: 420px; }
  .why-member__grid { grid-template-columns: 1fr; }
  .admin-grid { grid-template-columns: 1fr; }
  .admin-panel--wide { grid-column: auto; }
  .admin-bar { gap: 24px; align-items: flex-start; flex-direction: column; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .admin-form-grid .field--full { grid-column: auto; }
  .media-item { grid-template-columns: 64px minmax(0, 1fr) auto; }
  .media-item__preview { width: 64px; }
  .media-choice--remove { grid-column: 2 / -1; }
}

@media (max-width: 540px) {
  h2 { font-size: 3rem; }
  .hero__intro { font-size: 1.08rem; }
  .eyebrow { letter-spacing: .11em; }
  .section-heading { display: block; }
  .stories-section { padding-top: 65px; }
  .activities-grid { gap: 16px; }
  .activity-card__image { aspect-ratio: 1.35; }
  .gallery-ribbon { grid-template-columns: 1fr 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .site-footer__grid > div:last-child { grid-column: auto; }
  .site-footer__bottom { gap: 12px; align-items: flex-start; flex-direction: column; }
  .event-row { grid-template-columns: 1fr; }
  .event-row__place { grid-column: auto; }
  .gallery-filters { flex-wrap: nowrap; margin-inline: -18px; padding-inline: 18px; overflow-x: auto; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: auto; }
  .gallery-item--wide img, .gallery-item img { aspect-ratio: 1.15; }
  .archive-callout__images { grid-template-columns: 1fr; }
  .archive-callout__images img { height: 330px; }
  .membership-hero .lead { font-size: 1.45rem; }
  .payment-grid { gap: 55px; }
  .contact-details > div { grid-template-columns: 1fr; gap: 5px; }
  .contact-form-wrap, .admin-form-card, .login-card { padding: 28px 22px; }
  .bankgiro-card { gap: 10px; flex-direction: column; }
  .admin-bar { gap: 20px; align-items: flex-start; flex-direction: column; }
  .admin-list li { grid-template-columns: 1fr; }
  .admin-summary { grid-template-columns: 1fr; }
  .admin-panel { padding: 24px 18px; }
  .admin-panel__heading { gap: 16px; align-items: flex-start; }
  .editor-toolbar > span { display: none; }
  .rich-editor { min-height: 280px; padding: 16px; }
  .media-item { grid-template-columns: 58px minmax(0, 1fr); }
  .media-item__preview { width: 58px; height: 52px; }
  .media-choice, .media-choice--remove { grid-column: auto; }
  .post-media-gallery { grid-template-columns: 1fr; }
  .post-attachments a { grid-template-columns: 48px 1fr; }
  .post-attachments a > small { grid-column: 2; }
  .scroll-top { right: 18px; bottom: 18px; width: 48px; height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
