/* Die Schriften werden lokal geladen – es findet keine Verbindung zu Google statt. */
@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 400; font-display: swap; src: url("assets/fonts/dm-sans-400.ttf") format("truetype"); }
@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 500; font-display: swap; src: url("assets/fonts/dm-sans-500.ttf") format("truetype"); }
@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 600; font-display: swap; src: url("assets/fonts/dm-sans-600.ttf") format("truetype"); }
@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 700; font-display: swap; src: url("assets/fonts/dm-sans-700.ttf") format("truetype"); }
@font-face { font-family: "Playfair Display"; font-style: normal; font-weight: 600; font-display: swap; src: url("assets/fonts/playfair-display-600.ttf") format("truetype"); }
@font-face { font-family: "Playfair Display"; font-style: normal; font-weight: 700; font-display: swap; src: url("assets/fonts/playfair-display-700.ttf") format("truetype"); }
@font-face { font-family: "Playfair Display"; font-style: italic; font-weight: 600; font-display: swap; src: url("assets/fonts/playfair-display-600-italic.ttf") format("truetype"); }
@font-face { font-family: "Playfair Display"; font-style: italic; font-weight: 700; font-display: swap; src: url("assets/fonts/playfair-display-700-italic.ttf") format("truetype"); }

:root {
  --ink: #173a36;
  --ink-deep: #0e2926;
  --green: #1e665b;
  --green-light: #dcebe5;
  --cream: #f7f5ef;
  --warm: #ede8dc;
  --sand: #caa776;
  --white: #fffefa;
  --muted: #68726d;
  --line: rgba(23, 58, 54, 0.15);
  --hero-image: none;
  --shadow: 0 20px 45px rgba(15, 43, 38, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "DM Sans", Arial, sans-serif; font-size: 16px; line-height: 1.6; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid var(--sand); outline-offset: 3px; }

.container { width: min(1120px, calc(100% - 3rem)); margin: 0 auto; }
.section { padding: 7rem 0; }
.section-tint { background: var(--cream); }
.section-dark { color: var(--white); background: var(--ink-deep); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: absolute; top: -4rem; left: 1rem; z-index: 100; padding: .75rem 1rem; color: var(--white); background: var(--ink); }
.skip-link:focus { top: 1rem; }

.site-header { position: absolute; z-index: 20; width: 100%; color: var(--white); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 6rem; }
.brand { display: inline-flex; gap: .82rem; align-items: center; line-height: 1.15; }
.brand-mark { display: grid; width: 2.65rem; height: 2.65rem; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: "Playfair Display", serif; font-size: .76rem; font-weight: 700; letter-spacing: -.08em; }
.brand-logo { display: block; flex: 0 0 auto; width: 3.55rem; height: 3.55rem; object-fit: contain; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1.07rem; font-weight: 700; }
.brand small { margin-top: .23rem; font-size: .72rem; letter-spacing: .035em; opacity: .84; }
.site-header .brand-logo { width: 3.8rem; height: 3.8rem; }
.site-header .brand strong { font-size: 1.18rem; }
.site-header .brand small { font-size: .79rem; }
.main-nav { display: flex; gap: 1.7rem; align-items: center; font-size: .9rem; font-weight: 600; }
.main-nav > a:not(.nav-cta) { opacity: .88; transition: opacity .2s; }
.main-nav > a:not(.nav-cta):hover { opacity: 1; }
.nav-cta { padding: .63rem 1rem; color: var(--ink); background: var(--white); border-radius: 100px; transition: transform .2s; }
.nav-cta:hover { transform: translateY(-2px); }
.menu-toggle { display: none; padding: 0; color: var(--white); background: none; border: 0; }

.hero { position: relative; display: grid; min-height: 100svh; align-items: center; overflow: hidden; color: var(--white); background: radial-gradient(circle at 85% 22%, rgba(151, 202, 179, .27), transparent 22rem), radial-gradient(circle at 78% 78%, rgba(202, 167, 118, .19), transparent 28rem), linear-gradient(125deg, #0a2d29 0%, #174c44 56%, #23685c 100%); }
.hero.has-hero-photo { background-image: var(--hero-image); background-color: var(--ink); background-position: center; background-size: cover; }
.hero-video { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(7, 30, 27, .46) 0%, rgba(11, 42, 37, .15) 48%, rgba(15, 47, 39, .04) 100%); }
.hero.has-hero-photo .hero-overlay { background: linear-gradient(90deg, rgba(7, 30, 27, .83) 0%, rgba(11, 42, 37, .55) 48%, rgba(15, 47, 39, .18) 100%); }
.hero.has-hero-video .hero-overlay { background: linear-gradient(90deg, rgba(7, 30, 27, .76) 0%, rgba(11, 42, 37, .39) 52%, rgba(15, 47, 39, .18) 100%); }
.hero-content { position: relative; z-index: 2; padding-top: 6rem; }
.eyebrow { margin: 0 0 1rem; color: var(--green); font-size: 1.72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-light { color: #d7e7de; }
.hero-club-name { text-transform: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; line-height: 1.1; }
h1 { max-width: 790px; margin-bottom: 1.25rem; font-size: clamp(3.15rem, 7vw, 6.4rem); letter-spacing: -.055em; }
h1 em { color: #dcebe5; font-weight: 600; }
.hero-copy { max-width: 35rem; margin-bottom: 2rem; font-size: clamp(1rem, 1.3vw, 1.14rem); color: rgba(255,255,255,.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button { display: inline-flex; gap: .55rem; align-items: center; justify-content: center; padding: .84rem 1.25rem; border: 1px solid transparent; border-radius: 100px; font-weight: 700; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--green); }
.button-primary:hover { background: #155147; }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.6); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.12); }
.scroll-hint { position: absolute; bottom: 2.2rem; display: flex; gap: .7rem; align-items: center; font-size: .71rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.scroll-hint span { display: block; width: 2.75rem; height: 1px; background: currentColor; }

.two-column { display: grid; grid-template-columns: .9fr 1.1fr; gap: 6rem; }
.two-column > *, .section-heading > *, .water-card, .water-card > *, .water-card-copy, .contact-grid > *, .club-services > *, .club-service, .club-service > *, .calendar-grid, .calendar-card { min-width: 0; }
h2 { margin-bottom: 1.3rem; font-size: clamp(2.4rem, 4vw, 4rem); letter-spacing: -.045em; }
.intro-text { max-width: 39rem; padding-top: .3rem; }
.intro-text p:not(.lead) { color: var(--muted); }
.lead { margin-bottom: 1.1rem; font-family: "Playfair Display", Georgia, serif; font-size: 1.5rem; line-height: 1.45; }
.text-link { display: inline-block; margin-top: .9rem; padding-bottom: .2rem; color: var(--green); border-bottom: 1px solid var(--green); font-weight: 700; }
.text-link span { padding-left: .3rem; transition: padding .2s; }
.text-link:hover span { padding-left: .6rem; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 5rem; background: var(--line); border: 1px solid var(--line); }
.value-card { padding: 2.2rem 2rem; background: var(--white); }
.value-icon { display: block; margin-bottom: 1.2rem; color: var(--green); font-size: 1.8rem; line-height: 1; }
.value-card h3 { margin-bottom: .6rem; font-size: 1.45rem; }
.value-card p { margin-bottom: 0; color: var(--muted); font-size: .93rem; }
.club-services { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 1.25rem; border: 1px solid var(--line); background: var(--line); }
.club-service { display: flex; gap: 1.3rem; align-items: flex-start; padding: 2rem; background: var(--cream); }
.service-icon { display: grid; flex: 0 0 2.6rem; width: 2.6rem; height: 2.6rem; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; font-size: 1.1rem; }
.club-service .eyebrow { margin-bottom: .55rem; }
.club-service h3 { margin-bottom: .55rem; font-size: 1.55rem; }
.club-service p:not(.eyebrow) { margin-bottom: 0; color: var(--muted); font-size: .92rem; }
.club-service-fiskado { display: grid; grid-template-columns: 1fr auto; align-items: center; }
.fiskado-link { display: grid; gap: .8rem; min-width: 12.5rem; padding: 1rem 1.1rem; color: var(--white); background: #1494b7; transition: transform .2s, background .2s; }
.fiskado-link:hover { background: #0b7896; transform: translateY(-2px); }
.fiskado-link img { width: 8.2rem; height: auto; }
.fiskado-link span { font-size: .75rem; font-weight: 700; }
.fiskado-link b { padding-left: .3rem; }

.water-heading { max-width: 46rem; margin-left: max(1.5rem, calc((100% - 1120px) / 2)); }
.water-heading > p:not(.eyebrow) { margin-bottom: 0; color: var(--muted); font-size: 1.05rem; }
.water-cards { display: grid; gap: 2rem; margin-top: 3rem; }
.water-card { display: grid; grid-template-columns: 1.06fr .94fr; overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.water-card-reversed .water-card-image { order: 2; }
.water-card-image { position: relative; min-height: 27rem; overflow: hidden; background: var(--green); }
.water-card-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 56%, rgba(5, 30, 27, .6)); pointer-events: none; }
.water-card-image img { height: 100%; object-fit: cover; }
.water-card-image span { position: absolute; z-index: 1; bottom: 1.2rem; left: 1.2rem; color: var(--white); font-size: .67rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.map-preview { position: absolute; inset: 0; display: block; width: 100%; height: 100%; padding: 0; color: var(--white); text-align: left; background: none; border: 0; cursor: zoom-in; }
.map-preview img { transition: transform .4s ease; }
.map-preview:hover img { transform: scale(1.025); }
.map-preview:focus-visible { outline: 3px solid var(--sand); outline-offset: -5px; }
.map-preview-hint { opacity: .92; transition: opacity .2s, transform .2s; }
.map-preview-hint b { padding-right: .35rem; font-size: 1.1rem; vertical-align: -1px; }
.map-preview:hover .map-preview-hint, .map-preview:focus-visible .map-preview-hint { opacity: 1; transform: translateY(-2px); }
.map-lightbox { width: min(1180px, calc(100% - 2rem)); max-height: calc(100vh - 2rem); max-height: calc(100dvh - 2rem); margin: auto; padding: 0; overflow: visible; color: var(--white); background: transparent; border: 0; }
.map-lightbox::backdrop { background: rgba(4, 20, 18, .86); backdrop-filter: blur(4px); }
.map-lightbox-content { position: relative; display: grid; gap: .7rem; max-height: calc(100vh - 2rem); max-height: calc(100dvh - 2rem); padding: .7rem; background: #102c28; box-shadow: 0 28px 80px rgba(0, 0, 0, .48); }
.map-lightbox img { width: 100%; max-height: calc(100vh - 7rem); max-height: calc(100dvh - 7rem); object-fit: contain; background: #0a211e; }
.map-lightbox p { margin: 0; padding: 0 .4rem .1rem; color: #d7e7de; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.map-lightbox-close { position: absolute; z-index: 1; top: -.9rem; right: -.9rem; display: grid; width: 2.5rem; height: 2.5rem; padding: 0; place-items: center; color: var(--ink); background: var(--white); border: 0; border-radius: 50%; box-shadow: 0 5px 18px rgba(0, 0, 0, .35); font-size: 1.7rem; line-height: 1; }
.map-lightbox-close:hover { color: var(--white); background: var(--green); }
.map-lightbox-close:focus-visible { outline: 3px solid var(--sand); outline-offset: 3px; }
.water-card-copy { padding: clamp(2rem, 5vw, 4rem); }
.water-card-copy h3 { margin-bottom: .9rem; font-size: clamp(2.25rem, 4vw, 3.5rem); }
.water-card-copy > p:not(.eyebrow) { color: var(--muted); }
.lake-facts { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem 1.3rem; margin: 2rem 0 0; }
.lake-facts div { padding-top: .6rem; border-top: 1px solid var(--line); }
.lake-facts dt { margin-bottom: .18rem; color: var(--muted); font-size: .75rem; }
.lake-facts dd { margin: 0; font-weight: 700; }
.lake-sources { margin-top: 1.2rem; color: var(--muted); font-size: .75rem; }
.lake-sources a { color: var(--green); text-decoration: underline; text-underline-offset: .18rem; }
.lake-targets { margin-top: 2rem; padding-top: 1.3rem; border-top: 1px solid var(--line); }
.lake-targets .eyebrow { margin-bottom: .75rem; }
.species-list { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.6rem 0 1.4rem; padding: 0; list-style: none; }
.species-list li { padding: .44rem .75rem; color: var(--green); background: var(--green-light); border-radius: 100px; font-size: .84rem; font-weight: 700; }
.lake-species-list { margin: 0 0 1rem; }
.species-note { margin-bottom: 0; color: var(--muted); font-size: .77rem; }
.lake-perk { margin-top: 1.7rem; padding: 1.35rem; }
.lake-perk .eyebrow { margin-bottom: .55rem; }
.lake-perk h4 { margin: 0 0 .55rem; font-family: "Playfair Display", Georgia, serif; font-size: 1.45rem; line-height: 1.12; }
.lake-perk > p:not(.eyebrow) { margin-bottom: 0; font-size: .9rem; }
.lake-perk-boat { background: #eff4ef; }
.lake-perk-boat > p:not(.eyebrow) { color: var(--muted); }
.lake-perk-boat .text-link { margin-top: .95rem; }
.lake-perk-lanke { color: var(--white); background: linear-gradient(135deg, #17463f, #2b7468); }
.lake-perk-lanke .eyebrow { color: #d5eadf; }
.lake-perk-lanke > p:not(.eyebrow) { color: rgba(255,255,255,.83); }

.about-stocking { margin-top: 1.25rem; }
.stocking-card { display: grid; grid-template-rows: 13rem 1fr; padding: 0; overflow: hidden; color: var(--white); background: var(--ink); }
.stocking-image { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.stocking-card-copy { padding: clamp(2rem, 4vw, 3.5rem); }
.stocking-mark { display: block; margin-bottom: 1.5rem; color: var(--sand); font-family: "Playfair Display", serif; font-size: 3.4rem; line-height: .7; }
.stocking-card h3 { margin-bottom: .8rem; font-size: clamp(1.9rem, 3vw, 2.8rem); }
.stocking-card p { margin-bottom: 0; color: rgba(255,255,255,.77); }
.about-stocking .stocking-card { grid-template-columns: minmax(16rem, .75fr) 1.25fr; grid-template-rows: 1fr; min-height: 19rem; }
.about-stocking .stocking-card-copy { align-self: center; }

.section-heading { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 2.7rem; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 19rem; margin-bottom: .35rem; color: var(--muted); font-size: .95rem; }
.calendar-shell { display: grid; gap: 1.15rem; }
.calendar-next { margin: 0; padding: .85rem 1rem; color: var(--green); background: var(--green-light); font-size: .9rem; font-weight: 700; }
.calendar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.calendar-card { display: grid; align-content: start; min-height: 14.2rem; padding: 1.55rem; color: var(--ink); background: var(--white); transition: background .25s, color .25s, transform .25s; }
.calendar-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.calendar-card-top { display: flex; gap: .7rem; align-items: center; justify-content: space-between; margin-bottom: 2.4rem; }
.calendar-card-top > p { margin: 0; color: var(--green); font-size: .73rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.next-badge { padding: .25rem .5rem; color: var(--white); background: var(--green); border-radius: 100px; font-size: .61rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.calendar-card ul { display: grid; gap: 1.3rem; margin: 0; padding: 0; list-style: none; }
.calendar-card h3 { margin-bottom: .35rem; font-size: 1.48rem; }
.calendar-location { margin-top: .35rem; color: var(--green); font-size: .84rem; font-weight: 700; line-height: 1.4; }
.calendar-private-hint, .calendar-private-detail { margin: 0; font-size: .82rem; }
.calendar-private-hint { color: var(--muted); }
.calendar-details-link { display: inline-flex; width: fit-content; font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .2rem; }
.calendar-details-link:hover, .calendar-details-link:focus-visible { color: var(--green); }
.calendar-private-detail { display: grid; gap: .1rem; color: var(--green); }
.calendar-private-detail strong { font-weight: 700; }
.calendar-private-detail span { font-size: .78rem; }
.calendar-private-detail .calendar-location { font-size: .84rem; }
.calendar-card.is-next { color: var(--white); background: var(--green); }
.calendar-card.is-next .calendar-card-top > p, .calendar-card.is-next .calendar-location, .calendar-card.is-next .calendar-private-hint, .calendar-card.is-next .calendar-private-detail { color: #d9eee5; }
.calendar-card.is-next .next-badge { color: var(--green); background: var(--white); }
.calendar-card.is-past { opacity: .56; }
.calendar-card.is-past:hover { opacity: .8; }
.calendar-empty { grid-column: 1 / -1; margin: 0; padding: 2rem; color: var(--muted); background: var(--white); }
.member-access { display: grid; grid-template-columns: 1fr minmax(18rem, .8fr); gap: 2rem; align-items: end; margin-top: 1rem; padding: 1.7rem; background: var(--cream); border-left: 3px solid var(--green); }
.member-access h3 { margin-bottom: .45rem; font-size: 1.6rem; }
.member-access p:not(.eyebrow):not(.access-status) { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.member-access-form { display: grid; gap: .45rem; }
.member-access-form > label { color: var(--ink); font-size: .78rem; font-weight: 700; }
.password-row { display: flex; gap: .65rem; }
.password-row input { width: 100%; min-width: 0; padding: .72rem .75rem; color: var(--ink); background: var(--white); border: 1px solid #d8d6cf; outline-color: var(--green); }
.password-row .button { padding-right: 1rem; padding-left: 1rem; border: 0; white-space: nowrap; }
.access-status { min-height: 1.2rem; margin: .1rem 0 0; color: var(--green); font-size: .77rem; font-weight: 700; }
.member-access.is-unlocked { border-left-color: var(--sand); }

.board-heading > p { color: rgba(255,255,255,.65); }
.board-groups { display: grid; gap: 5rem; }
.board-group { padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.22); }
.board-group-heading { display: flex; gap: 1rem; align-items: baseline; justify-content: space-between; margin-bottom: 1.4rem; }
.board-group-heading p { margin: 0; color: #b6d1c5; font-size: .7rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.board-group-heading h3 { margin: 0; font-size: 2rem; }
.board-grid-core { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .85rem; align-items: start; }
.board-grid-core .board-card { width: 100%; min-width: 0; }
.board-grid-extended { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .85rem; align-items: start; }
.board-grid-extended .board-card { width: 100%; min-width: 0; }
.board-card { position: relative; min-width: 0; overflow: hidden; color: var(--white); background: #163c37; box-shadow: 0 10px 25px rgba(0,0,0,.12); perspective: 1000px; cursor: pointer; touch-action: pan-y; }
.board-card-inner { position: relative; z-index: 1; transform-style: preserve-3d; transition: transform .6s ease; }
.board-card.is-flipped .board-card-inner { transform: rotateY(180deg); }
.board-card-face { backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.board-card-front { background: #163c37; }
.board-group-core .board-card-front { background: #216157; box-shadow: inset 0 3px 0 var(--sand); }
.board-group-extended .board-card-front { background: #163c37; box-shadow: inset 0 3px 0 rgba(182, 209, 197, .4); }
.board-card-photo { position: relative; aspect-ratio: var(--member-ratio); overflow: hidden; background: #0e2926; }
.board-card img, .member-monogram { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.board-grid-extended .board-card-photo { aspect-ratio: 1 / 1; isolation: isolate; }
.board-grid-extended .board-card-photo::before { content: ""; position: absolute; z-index: -2; inset: -1rem; background: center / cover no-repeat var(--member-image, none); filter: blur(14px); opacity: .55; transform: scale(1.08); }
.board-grid-extended .board-card-photo::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(145deg, rgba(9, 36, 32, .14), rgba(9, 36, 32, .34)); }
.board-grid-extended .board-card img, .board-grid-extended .member-monogram { z-index: 1; }
.board-grid-core .board-card-photo { aspect-ratio: 1 / 1; isolation: isolate; }
.board-grid-core .board-card-photo::before { content: ""; position: absolute; z-index: -2; inset: -1rem; background: center / cover no-repeat var(--member-image, none); filter: blur(14px); opacity: .55; transform: scale(1.08); }
.board-grid-core .board-card-photo::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(145deg, rgba(9, 36, 32, .14), rgba(9, 36, 32, .34)); }
.board-grid-core .board-card img, .board-grid-core .member-monogram { z-index: 1; }
.member-monogram { display: grid; place-items: center; color: #cce0d6; background: radial-gradient(circle at 50% 42%, #28594f, #0e2926 74%); font-family: "Playfair Display", serif; font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 700; letter-spacing: -.08em; }
.board-group-core .member-monogram { background: linear-gradient(145deg, #2b7468, #174b44); }
.board-card-front-copy { position: relative; z-index: 2; display: grid; gap: .25rem; padding: .9rem 1.05rem 1rem; background: #0a2925; }
.board-grid-extended .board-card-front-copy { min-height: 8rem; box-sizing: border-box; align-content: start; }
.board-grid-core .board-card-front-copy { min-height: 8rem; box-sizing: border-box; align-content: start; }
.board-group-core .board-card-front-copy { background: #185c52; }
.board-card-front-copy p, .board-back-label { margin: 0; color: #d4e5dd; font-size: .73rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.board-card h3 { margin: 0; overflow-wrap: anywhere; hyphens: auto; font-size: clamp(1.18rem, 1.45vw, 1.56rem); line-height: 1.12; }
.board-grid-core .board-card h3 { font-size: clamp(1.42rem, 1.85vw, 2rem); }
.board-card-back { position: absolute; inset: 0; display: grid; padding: clamp(1.15rem, 3vw, 1.55rem); align-content: start; color: var(--ink); background: #dcebe5; transform: rotateY(180deg); overflow-y: auto; scrollbar-width: thin; }
.board-group-core .board-card-back { color: var(--white); background: #2b7468; }
.board-card-back-copy { width: 100%; }
.board-card-back h3 { margin: .7rem 0 1.1rem; font-size: clamp(1.4rem, 1.8vw, 1.9rem); }
.board-card-back .board-back-label { color: var(--green); font-size: .88rem; }
.board-group-core .board-card-back .board-back-label { color: #d9eee5; }
.board-profile { display: grid; gap: .78rem; margin: 0; }
.board-profile div { min-width: 0; padding-top: .68rem; border-top: 1px solid rgba(23,58,54,.22); }
.board-group-core .board-profile div { border-color: rgba(255,255,255,.25); }
.board-profile dt { margin-bottom: .2rem; font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.board-profile dd { margin: 0; overflow-wrap: anywhere; font-family: "Playfair Display", Georgia, serif; font-size: clamp(1rem, 1.08vw, 1.12rem); line-height: 1.38; }
.board-profile-empty { margin: 0; color: var(--muted); font-size: 1rem; }
.board-group-core .board-profile-empty { color: #e1f0e9; }
.board-card:focus-visible { outline: 3px solid var(--sand); outline-offset: 4px; }
.board-email { position: relative; z-index: 3; display: block; margin-top: .25rem; color: #d7e7de; font-size: .82rem; overflow-wrap: anywhere; cursor: pointer; }
.board-email:hover { color: var(--white); text-decoration: underline; }

.partners-heading { margin-bottom: 2.7rem; }
.partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.partner-card { display: grid; min-height: 20rem; grid-template-rows: 1fr auto; overflow: hidden; background: var(--white); box-shadow: 0 12px 28px rgba(15,43,38,.08); transition: transform .22s, box-shadow .22s; }
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.partner-logo { display: grid; min-height: 12rem; padding: 2rem; place-items: center; }
.partner-logo img { width: min(100%, 16rem); max-height: 7rem; object-fit: contain; }
.partner-wordmark { max-width: 100%; color: var(--green); font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.75rem, 3vw, 2.8rem); font-weight: 700; line-height: .95; text-align: center; text-transform: uppercase; }
.partner-card--light .partner-logo { background: #fffefa; }
.partner-card--dark .partner-logo { background: #101b1a; }
.partner-card--blue .partner-logo { background: #1494b7; }
.partner-card-copy { display: grid; gap: .35rem; padding: 1.35rem; color: var(--ink); border-top: 1px solid var(--line); }
.partner-category { color: var(--green); font-size: .69rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.partner-card-copy strong { font-family: "Playfair Display", Georgia, serif; font-size: 1.45rem; line-height: 1.15; }
.partner-link { margin-top: .55rem; color: var(--green); font-size: .8rem; font-weight: 700; }
.partner-link b { padding-left: .25rem; font-size: 1rem; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 7rem; }
.contact-copy > p:not(.eyebrow) { max-width: 27rem; color: var(--muted); }
.contact-details { display: grid; gap: .85rem; margin-top: 2.2rem; }
.contact-details a, .contact-details p { display: flex; gap: .75rem; align-items: flex-start; margin: 0; }
.contact-details a { font-weight: 700; }
.contact-details a:hover { color: var(--green); }
.contact-details [aria-hidden="true"] { width: 1.1rem; color: var(--green); font-weight: 700; text-align: center; }
.contact-image { position: relative; min-height: 30rem; margin: 0; overflow: hidden; background: var(--ink); }
.contact-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 45%, rgba(7, 30, 27, .7)); pointer-events: none; }
.contact-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact-image figcaption { position: absolute; z-index: 1; right: 1.4rem; bottom: 1.25rem; left: 1.4rem; color: var(--white); font-family: "Playfair Display", serif; font-size: 1.3rem; }
.contact-image figcaption span { padding-right: .45rem; color: #d7e7de; font-family: "DM Sans", sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .14em; vertical-align: middle; }

.site-footer { padding: 2rem 0; color: rgba(255,255,255,.78); background: #0a211e; }
.footer-content { display: flex; gap: 1rem; align-items: center; justify-content: space-between; }
.footer-brand { color: var(--white); }
.footer-brand .brand-logo { width: 3rem; height: 3rem; }
.footer-content > p { margin: 0; font-size: .8rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: .65rem 1.2rem; justify-content: flex-end; font-size: .8rem; }
.footer-links a:hover { color: var(--white); }
.legal-page { display: flex; min-height: 100vh; flex-direction: column; }
.legal-header { color: var(--ink); background: var(--white); border-bottom: 1px solid var(--line); }
.legal-header-content { display: flex; min-height: 5.5rem; gap: 1rem; align-items: center; justify-content: space-between; }
.legal-back-link { color: var(--green); font-size: .85rem; font-weight: 700; }
.legal-back-link:hover { color: var(--ink); }
.legal-main { flex: 1; }
.legal-intro { padding: clamp(4.4rem, 9vw, 7.5rem) 0 clamp(2.7rem, 6vw, 4.5rem); color: var(--white); background: radial-gradient(circle at 82% 10%, rgba(151, 202, 179, .22), transparent 23rem), linear-gradient(135deg, #0e2926, #1e665b); }
.legal-intro .eyebrow { color: #d7e7de; }
.legal-intro h1 { max-width: none; margin-bottom: .85rem; overflow-wrap: anywhere; font-size: clamp(3.2rem, 7vw, 5.7rem); }
.legal-lead { max-width: 42rem; margin-bottom: 0; color: rgba(255,255,255,.86); font-size: 1.05rem; }
.legal-content { padding: clamp(3.5rem, 7vw, 6rem) 0; background: var(--white); }
.legal-article { max-width: 48rem; }
.legal-article > p { color: var(--muted); font-size: 1.05rem; }
.legal-article > p + p, .legal-info-banner + p { margin-top: 1.6rem; }
.legal-article strong { color: var(--ink); }
.legal-article a { overflow-wrap: anywhere; }
.legal-info-banner { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 3rem; margin-top: 2rem; padding: clamp(1.35rem, 3vw, 2rem); color: var(--ink); }
.legal-info-banner p { margin: 0; }
.legal-contact-banner { background: #eff5f1; border-left: 3px solid var(--green); }
.legal-legal-banner { background: #f6f2e9; border-left: 3px solid var(--sand); }
.legal-fact-label { display: block; margin-bottom: .45rem; color: var(--green); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.legal-legal-banner .legal-fact-label { color: #8a632a; }
.legal-details-wide { grid-column: 1 / -1; padding-top: 1.2rem; border-top: 1px solid rgba(138, 99, 42, .22); }
.legal-contact-banner .legal-details-wide { border-top-color: rgba(30, 102, 91, .2); }
.legal-representatives-stacked { display: grid; gap: .3rem; margin-top: .55rem; }
.legal-representatives-stacked > span { display: block; }
.legal-contact-link { display: inline; color: var(--green); font-weight: 700; }
.legal-contact-link:hover { color: var(--ink); text-decoration: underline; text-underline-offset: .18rem; }
.legal-section { margin-top: clamp(2.6rem, 6vw, 4.25rem); }
.legal-section h2 { margin-bottom: 1rem; font-size: clamp(1.55rem, 3vw, 2.25rem); }
.legal-section p { color: var(--muted); font-size: 1.02rem; }
.legal-section .legal-info-banner { margin-top: 1.35rem; }
.legal-updated { color: var(--ink); font-weight: 700; }
.legal-page .legal-header { color: var(--white); background: transparent; border-bottom: 0; }
.legal-page .legal-header-content { min-height: 6rem; }
.legal-page .legal-intro { padding-top: clamp(9.4rem, 14vw, 11.5rem); }
.history-page .history-header { color: var(--white); background: transparent; border-bottom: 0; }
.history-page .history-header-content { min-height: 6rem; }
.history-page .history-hero-content { padding-top: clamp(9.4rem, 14vw, 11.5rem); }

.history-page { display: flex; min-height: 100vh; flex-direction: column; }
.history-main { flex: 1; }
.history-hero { position: relative; overflow: hidden; color: var(--white); background: radial-gradient(circle at 84% 14%, rgba(202,167,118,.29), transparent 21rem), radial-gradient(circle at 76% 86%, rgba(151,202,179,.23), transparent 28rem), linear-gradient(135deg, #0b2a27, #1e665b); }
.history-hero::after { position: absolute; right: clamp(-5rem, -1vw, -1rem); bottom: clamp(-6rem, -2vw, -1rem); width: min(38vw, 30rem); aspect-ratio: 1; content: ""; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; box-shadow: 0 0 0 2.9rem rgba(255,255,255,.035), 0 0 0 6.2rem rgba(255,255,255,.025); pointer-events: none; }
.history-hero-content { position: relative; z-index: 1; padding: clamp(5.4rem, 11vw, 9rem) 0 clamp(4.4rem, 9vw, 7rem); }
.history-hero h1 { max-width: 60rem; margin-bottom: 1.15rem; }
.history-hero h1 em { color: #d7e7de; }
.history-lead { max-width: 43rem; margin-bottom: 2rem; color: rgba(255,255,255,.87); font-size: clamp(1.05rem, 1.4vw, 1.22rem); }
.history-jump-link { display: inline-flex; gap: .7rem; min-height: 2.75rem; align-items: center; color: #dcebe5; font-size: .9rem; font-weight: 700; }
.history-jump-link:hover { color: var(--white); }
.history-jump-link span { font-size: 1.1rem; }
.history-overview-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.history-overview-heading h2 { max-width: 34rem; }
.history-overview-heading > p:not(.eyebrow) { max-width: 27rem; margin-bottom: 0; color: var(--muted); }
.history-timeline { display: grid; margin: 0; padding: 0; list-style: none; border-bottom: 1px solid var(--line); }
.history-timeline li { display: grid; grid-template-columns: minmax(5.3rem, .42fr) 1fr; gap: 1rem; align-items: baseline; padding: .95rem 0; border-top: 1px solid var(--line); }
.history-timeline time { color: var(--green); font-family: "Playfair Display", Georgia, serif; font-size: 1.3rem; font-weight: 700; }
.history-timeline span { color: var(--ink); font-weight: 700; line-height: 1.35; }
.history-section--cream { background: var(--cream); }
.history-section--dark { color: var(--white); background: var(--ink-deep); }
.history-copy-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.history-copy-grid h2 { margin-bottom: 0; }
.history-prose { max-width: 44rem; }
.history-prose > p { color: var(--muted); font-size: 1.04rem; }
.history-prose > p:last-child { margin-bottom: 0; }
.history-prose .lead { color: var(--ink); font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.38rem, 2.2vw, 1.85rem); font-weight: 600; line-height: 1.32; }
.history-section--dark .history-prose > p { color: rgba(255,255,255,.78); }
.history-section--dark .history-prose .lead { color: var(--white); }
.history-founders-panel { display: grid; grid-template-columns: minmax(14rem, .62fr) minmax(0, 1.38fr); gap: clamp(2rem, 6vw, 5rem); margin-top: clamp(3rem, 7vw, 5rem); padding: clamp(1.6rem, 4vw, 2.6rem); background: var(--cream); border-top: 3px solid var(--sand); }
.history-founders-panel .eyebrow { margin-bottom: .6rem; }
.history-founders-panel h3, .history-note h3, .history-source-card h3 { margin-bottom: 0; font-size: clamp(1.7rem, 2.5vw, 2.3rem); }
.history-founders { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem 1.35rem; margin: 0; }
.history-founders div { min-width: 0; padding-top: .75rem; border-top: 1px solid var(--line); }
.history-founders dt { overflow-wrap: anywhere; font-family: "Playfair Display", Georgia, serif; font-size: 1.15rem; font-weight: 700; line-height: 1.18; }
.history-founders dd { margin: .25rem 0 0; color: var(--muted); font-size: .78rem; line-height: 1.35; }
.history-gallery { display: grid; gap: 1.2rem; margin-top: clamp(3rem, 7vw, 5rem); }
.history-gallery--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.history-figure { min-width: 0; margin: 0; background: var(--white); box-shadow: 0 12px 26px rgba(15,43,38,.08); }
.history-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #ddd8ce; filter: grayscale(100%); }
.history-figure figcaption { padding: .9rem 1rem 1rem; color: var(--muted); font-size: .8rem; line-height: 1.45; }
.history-gallery--portrait .history-figure img { object-fit: contain; }
.history-quote { margin: 1.7rem 0; padding: 1.3rem 1.45rem; color: var(--white); background: rgba(255,255,255,.1); border-left: 3px solid var(--sand); }
.history-quote p { margin: 0; color: #e3efe9 !important; font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 600; line-height: 1.35; }
.history-feature-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(16rem, .88fr); gap: clamp(1.3rem, 4vw, 3.5rem); align-items: stretch; margin-top: clamp(3rem, 7vw, 5rem); }
.history-figure--wide img { aspect-ratio: 3 / 2; }
.history-note { display: grid; align-content: center; padding: clamp(1.6rem, 4vw, 2.6rem); color: var(--white); background: linear-gradient(145deg, #17473f, #286a5e); }
.history-note .eyebrow { color: #d5eadf; }
.history-note h3 { color: var(--white); }
.history-note p:not(.eyebrow) { color: rgba(255,255,255,.8); }
.history-note p:last-child { margin-bottom: 0; }
.history-source-card { display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(14rem, .84fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; margin-top: clamp(3rem, 7vw, 5rem); padding: clamp(1.6rem, 4vw, 3rem); background: var(--green-light); border-left: 3px solid var(--green); }
.history-source-card .eyebrow { margin-bottom: .6rem; }
.history-source-card > div > p:not(.eyebrow) { margin: .9rem 0 0; color: var(--muted); }
.history-source-actions { display: grid; gap: .85rem; align-content: center; }
.history-source-actions .button { justify-content: center; text-align: center; }
.history-source-actions p { margin: 0 !important; font-size: .78rem; line-height: 1.45; }
.history-present { border-top: 1px solid var(--line); }
.history-present-card { display: grid; grid-template-columns: minmax(14rem, .78fr) minmax(0, 1.22fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; margin-top: clamp(3rem, 7vw, 5rem); padding: clamp(1.7rem, 4vw, 2.8rem); color: var(--white); background: linear-gradient(135deg, #0e2926, #1e665b); border-top: 3px solid var(--sand); }
.history-present-card .eyebrow { margin-bottom: .6rem; color: #d7e7de; }
.history-present-card h3 { margin-bottom: 0; color: var(--white); font-size: clamp(1.7rem, 2.5vw, 2.3rem); }
.history-present-card > div > p:not(.eyebrow) { margin: 0; color: rgba(255,255,255,.82); }
.history-present-link { display: inline-block; margin-top: 1rem; padding-bottom: .2rem; color: #fffefa; border-bottom: 1px solid rgba(255,255,255,.7); font-weight: 700; }
.history-present-link span { padding-left: .3rem; }

@media (max-width: 1050px) {
  .eyebrow { font-size: clamp(.68rem, 2.2vw, .78rem); letter-spacing: .14em; }
}

@media (min-width: 761px) and (max-width: 1050px) {
  .board-grid-core, .board-grid-extended, .partners-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 761px) and (max-width: 900px) {
  .club-services { grid-template-columns: 1fr; }
  .calendar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 2rem, 1120px); }
  .section { padding: clamp(3.5rem, 10vw, 4.6rem) 0; }
  .nav-wrap { height: 5.2rem; }
  .site-header .brand { gap: .6rem; }
  .site-header .brand-logo { width: 3rem; height: 3rem; }
  .site-header .brand strong { font-size: .96rem; }
  .site-header .brand small { display: block; margin-top: .15rem; font-size: .65rem; letter-spacing: .02em; }
  .menu-toggle { display: grid; width: 2.75rem; min-width: 2.75rem; min-height: 2.75rem; padding: .75rem; place-content: center; gap: .35rem; }
  .menu-toggle span:not(.sr-only) { display: block; width: 1.45rem; height: 1px; background: currentColor; }
  .main-nav { position: absolute; top: calc(100% - .2rem); right: 1rem; left: 1rem; display: none; max-height: calc(100dvh - 6rem); align-items: stretch; padding: .8rem; overflow-y: auto; color: var(--ink); background: var(--white); box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; flex-direction: column; }
  .main-nav > a { display: flex; min-height: 2.75rem; align-items: center; padding: .75rem; }
  .nav-cta { text-align: center; background: var(--green); color: var(--white); }
  .hero { min-height: max(37rem, 100svh); }
  .hero-overlay { background: linear-gradient(90deg, rgba(7,30,27,.84), rgba(11,42,37,.54)); }
  h1 { font-size: clamp(3rem, 13vw, 4.6rem); }
  .legal-intro h1 { font-size: clamp(2.3rem, 11vw, 3.2rem); }
  .scroll-hint { display: none; }
  .two-column, .water-card, .contact-grid { grid-template-columns: 1fr; gap: 2.1rem; }
  .values { grid-template-columns: 1fr; margin-top: 3rem; }
  .club-services { grid-template-columns: 1fr; }
  .club-service:not(.club-service-fiskado) { flex-direction: column; gap: .9rem; padding: 1.35rem; }
  .club-service-fiskado { grid-template-columns: 1fr; gap: 1.4rem; }
  .fiskado-link { width: 100%; }
  .water-heading { width: min(100% - 2rem, 1120px); margin-right: auto; margin-left: auto; }
  .water-card-reversed .water-card-image { order: 0; }
  .water-card-image { min-height: clamp(17rem, 72vw, 22rem); }
  .water-card-copy { padding: clamp(1.25rem, 6vw, 2rem); }
  .water-card-copy .text-link { max-width: 100%; white-space: normal; }
  .map-lightbox { width: min(calc(100% - 1rem), 1180px); }
  .map-lightbox-content { padding: .45rem; }
  .map-lightbox img { max-height: calc(100vh - 5.8rem); max-height: calc(100dvh - 5.8rem); }
  .map-lightbox-close { top: -.45rem; right: -.25rem; }
  .about-stocking .stocking-card { grid-template-columns: 1fr; grid-template-rows: 14rem 1fr; }
  .contact-image { min-height: clamp(18rem, 70vw, 24rem); }
  .section-heading { display: block; margin-bottom: 2rem; }
  .section-heading > p { margin-top: 1rem; }
  .calendar-grid { grid-template-columns: 1fr 1fr; }
  .calendar-card { min-height: auto; padding: 1.3rem; }
  .calendar-card h3 { overflow-wrap: anywhere; font-size: clamp(1.25rem, 6vw, 1.48rem); }
  .member-access { grid-template-columns: 1fr; gap: 1.2rem; padding: 1.25rem; }
  .calendar-details-link, .text-link { display: inline-flex; min-height: 2.75rem; align-items: center; }
  .board-group-heading { display: block; }
  .board-group-heading h3 { margin-top: .25rem; }
  .board-grid-core { grid-template-columns: 1fr; gap: .75rem; }
  .board-grid-core .board-card { width: 100%; min-width: 0; }
  .board-grid-extended { grid-template-columns: 1fr; gap: .75rem; }
  .board-grid-extended .board-card-front-copy { min-height: 8.6rem; padding: 2.4rem .9rem .85rem; }
  .board-grid-core .board-card-front-copy { min-height: 8.6rem; padding: 2.4rem .9rem .85rem; }
  .board-card-front-copy { padding: 2.4rem .9rem .85rem; }
  .board-card h3, .board-grid-core .board-card h3 { font-size: 1.2rem; }
  .board-grid-core .board-card h3 { font-size: 1.42rem; }
  .board-card-back { padding: 1.25rem; }
  .board-card-back h3 { margin-bottom: 1rem; font-size: 1.55rem; }
  .board-profile { gap: .72rem; }
  .board-profile dt { font-size: .7rem; }
  .board-profile dd { font-size: 1.04rem; line-height: 1.4; }
  .board-email { margin-top: .1rem; padding: .35rem 0; font-size: .8rem; }
  .partners-grid { grid-template-columns: 1fr; }
  .partner-card { min-height: 16rem; }
  .partner-logo { min-height: 10rem; }
  .footer-content { flex-direction: column; align-items: flex-start; }
  .footer-links { justify-content: flex-start; }
  .footer-links a, .contact-details a { display: inline-flex; min-height: 2.75rem; align-items: center; }
  .legal-header-content { min-height: 5.2rem; }
  .legal-page .legal-header-content { min-height: 5.2rem; }
  .legal-info-banner { grid-template-columns: 1fr; gap: 1.2rem; }
  .legal-details-wide { grid-column: auto; }
  .history-page .history-hero-content { padding-top: clamp(8.5rem, 24vw, 10rem); }
  .history-overview-layout, .history-copy-grid, .history-founders-panel, .history-feature-grid, .history-source-card, .history-present-card { grid-template-columns: 1fr; gap: 2rem; }
  .history-overview-heading > p:not(.eyebrow), .history-prose { max-width: none; }
  .history-timeline li { grid-template-columns: 5rem 1fr; }
  .history-founders { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .history-gallery--two { grid-template-columns: 1fr; }
  .history-figure img, .history-figure--wide img { aspect-ratio: 3 / 2; }
  .history-gallery--portrait .history-figure img { aspect-ratio: 4 / 3; }
}

@media (max-width: 390px) {
  .brand strong { font-size: .86rem; }
  .board-grid-extended { grid-template-columns: 1fr; }
  .calendar-grid { grid-template-columns: 1fr; }
  .password-row { flex-direction: column; }
  .password-row .button { width: 100%; }
  .history-founders { grid-template-columns: 1fr; }
  .history-timeline li { grid-template-columns: 4.25rem 1fr; gap: .65rem; }
}

@media (max-width: 560px) {
  .calendar-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
  .calendar-card, .partner-card, .board-card-inner, .map-preview img, .map-preview-hint, .text-link span, .button, .nav-cta, .fiskado-link { transition: none; }
}
