:root {
    --ink: #173c2a;
    --paper: #ffffff;
    --paper-dark: #173c2a;
    --moss: #173c2a;
    --gold: rgba(255, 255, 255, .72);
    --forest: #173c2a;
    --line: rgba(23, 60, 42, 0.18);
    --serif: "Aptos Display", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
    --sans: Inter, "Segoe UI", Arial, sans-serif;
}

/* Shared public header: always readable and persistent on inner pages. */
.site-header,
.posts-page .site-header,
.history-page .site-header {
    background: #173c2a;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 5px 18px rgba(5, 25, 16, .16);
}
.site-header.is-scrolled,
.posts-page .site-header.is-scrolled,
.history-page .site-header.is-scrolled {
    background: #24543c;
}
.site-header .brand {
    filter: brightness(1.12);
}
.site-header .brand:hover,
.site-header .brand:focus-visible {
    filter: brightness(1.22);
}
.posts-page .site-header,
.history-page .site-header {
    position: sticky;
    top: 0;
    inset-block-start: 0;
}

/* Temperatures are intentionally 70% of the previous scale. */
.weather-current > strong,
.weather-day > strong {
    font-size: clamp(1.15rem, 2.38vw, 1.75rem);
}

/* Weather pictograms: keep the current three-column/phone-slider layout. */
.weather-current,
.weather-day {
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 12px;
}
.weather-current > h3,
.weather-current > strong,
.weather-current > p,
.weather-day > h3,
.weather-day > strong,
.weather-day > p {
    grid-column: 2;
}
.weather-symbol {
    grid-row: 1 / span 3;
    align-self: center;
    color: #f8f4ea;
}
.weather-symbol svg {
    display: block;
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 620px) {
    #weather > .weather-current,
    #weather > .weather-day {
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 10px;
    }
    .weather-symbol svg {
        width: 36px;
        height: 36px;
    }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.5; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 4; width: 100%; display: flex; align-items: center; justify-content: space-between; margin: 0; padding: 22px max(28px, calc((100vw - 1280px) / 2)); color: #fff; }
.site-header.is-scrolled { background: rgba(23,60,42,.7); box-shadow: 0 4px 18px rgba(5,25,16,.2); backdrop-filter: blur(9px); transition: background .2s ease, box-shadow .2s ease; }
.site-header.is-scrolled .brand, .site-header.is-scrolled .quiet-button { animation: header-control-fade 180ms ease-out; }
@keyframes header-control-fade { from { opacity: .78; } to { opacity: 1; } }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand span { display: grid; line-height: 1; }
.brand strong { font-size: 1.8rem; letter-spacing: .03em; }
.brand em { margin-top: 5px; color: #fff; font-size: .83rem; font-style: normal; font-weight: 700; letter-spacing: .04em; }
.quiet-button { min-height: 38px; padding: 8px 15px; color: #fff; border: 1px solid rgba(255,255,255,.72); border-radius: 6px; background: rgba(11,38,25,.32); font-weight: 750; cursor: pointer; }
.quiet-button:hover, .quiet-button:focus-visible { background: rgba(11,38,25,.5); outline: 3px solid rgba(255,255,255,.25); outline-offset: 3px; }
.header-actions { display: flex; flex: 0 0 auto; flex-wrap: nowrap; align-items: center; justify-content: flex-end; gap: 10px; white-space: nowrap; }
.header-actions form { flex: 0 0 auto; margin: 0; }

.hero { position: relative; min-height: min(700px, 78vh); overflow: hidden; color: #fff; background: #173e2c; }
.hero > img { width: 100%; height: min(700px, 78vh); object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,25,16,.78), rgba(5,25,16,.26) 60%, rgba(5,25,16,.12)), linear-gradient(0deg, rgba(5,25,16,.46), transparent 52%); }
.falling-leaves { position: absolute; inset: -18% 0 0; z-index: 1; overflow: hidden; pointer-events: none; }
.falling-leaves span { position: absolute; top: -72px; left: var(--leaf-left); width: var(--leaf-size); aspect-ratio: 1; background: url('dobeno-leaf-white.png') center / contain no-repeat; opacity: .48; filter: drop-shadow(0 5px 10px rgba(0,0,0,.14)); transform: rotate(var(--leaf-tilt)); animation: leaf-fall var(--leaf-speed) ease-in-out infinite; animation-delay: var(--leaf-delay); }
.falling-leaves span:nth-child(1) { --leaf-left: 6%; --leaf-size: 28px; --leaf-speed: 14s; --leaf-delay: -2s; --leaf-tilt: -28deg; --leaf-wave: 104px; }
.falling-leaves span:nth-child(2) { --leaf-left: 14%; --leaf-size: 20px; --leaf-speed: 17s; --leaf-delay: -9s; --leaf-tilt: 22deg; --leaf-wave: -82px; }
.falling-leaves span:nth-child(3) { --leaf-left: 24%; --leaf-size: 32px; --leaf-speed: 19s; --leaf-delay: -4s; --leaf-tilt: 40deg; --leaf-wave: 126px; }
.falling-leaves span:nth-child(4) { --leaf-left: 34%; --leaf-size: 22px; --leaf-speed: 15s; --leaf-delay: -12s; --leaf-tilt: -18deg; --leaf-wave: -96px; }
.falling-leaves span:nth-child(5) { --leaf-left: 45%; --leaf-size: 27px; --leaf-speed: 20s; --leaf-delay: -7s; --leaf-tilt: 31deg; --leaf-wave: 116px; }
.falling-leaves span:nth-child(6) { --leaf-left: 53%; --leaf-size: 18px; --leaf-speed: 16s; --leaf-delay: -1s; --leaf-tilt: -42deg; --leaf-wave: -76px; }
.falling-leaves span:nth-child(7) { --leaf-left: 62%; --leaf-size: 30px; --leaf-speed: 18s; --leaf-delay: -14s; --leaf-tilt: 19deg; --leaf-wave: 122px; }
.falling-leaves span:nth-child(8) { --leaf-left: 72%; --leaf-size: 23px; --leaf-speed: 21s; --leaf-delay: -6s; --leaf-tilt: -24deg; --leaf-wave: -88px; }
.falling-leaves span:nth-child(9) { --leaf-left: 80%; --leaf-size: 34px; --leaf-speed: 16s; --leaf-delay: -11s; --leaf-tilt: 37deg; --leaf-wave: 132px; }
.falling-leaves span:nth-child(10) { --leaf-left: 89%; --leaf-size: 20px; --leaf-speed: 19s; --leaf-delay: -3s; --leaf-tilt: -33deg; --leaf-wave: -94px; }
.falling-leaves span:nth-child(11) { --leaf-left: 96%; --leaf-size: 26px; --leaf-speed: 23s; --leaf-delay: -16s; --leaf-tilt: 26deg; --leaf-wave: 108px; }
.falling-leaves span:nth-child(12) { --leaf-left: 40%; --leaf-size: 17px; --leaf-speed: 22s; --leaf-delay: -18s; --leaf-tilt: -12deg; --leaf-wave: -72px; }
@keyframes leaf-fall {
    0% { transform: translate3d(0, -12vh, 0) rotate(var(--leaf-tilt)); opacity: 0; }
    9% { opacity: .42; }
    22% { transform: translate3d(var(--leaf-wave), 20vh, 0) rotate(calc(var(--leaf-tilt) + 48deg)); }
    42% { transform: translate3d(calc(var(--leaf-wave) * -.72), 42vh, 0) rotate(calc(var(--leaf-tilt) - 38deg)); opacity: .5; }
    62% { transform: translate3d(calc(var(--leaf-wave) * .58), 64vh, 0) rotate(calc(var(--leaf-tilt) + 62deg)); }
    82% { transform: translate3d(calc(var(--leaf-wave) * -.44), 86vh, 0) rotate(calc(var(--leaf-tilt) - 26deg)); opacity: .34; }
    100% { transform: translate3d(calc(var(--leaf-wave) * .3), 112vh, 0) rotate(calc(var(--leaf-tilt) + 92deg)); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .falling-leaves { display: none; }
}
.hero-copy { position: absolute; z-index: 2; bottom: clamp(64px, 10vh, 112px); left: max(28px, calc((100vw - 1280px) / 2)); width: min(620px, calc(100% - 56px)); }
.hero-copy p, .eyebrow { margin: 0 0 12px; color: var(--moss); font-size: .72rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.hero-copy p { color: rgba(255,255,255,.78); }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 700; letter-spacing: 0; }
h1 { max-width: 620px; font-size: clamp(1.9rem, 3.6vw, 3.35rem); line-height: 1.03; text-shadow: 0 2px 18px rgba(0,0,0,.22); }
h2 { font-size: clamp(1.4rem, 2.2vw, 2.25rem); line-height: 1.1; }
h3 { font-size: 1.12rem; line-height: 1.18; }

.weather { width: 100%; display: flex; justify-content: center; padding: 12px max(28px, calc((100vw - 1280px) / 2)); background: #173c2a; }
#weather { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: min(100%, 1280px); color: #f8f4ea; }
.weather-current { display: grid; align-content: start; gap: 5px; min-width: 0; padding: 7px 26px; }
.weather-current h3, .weather-day h3 { margin: 0; color: rgba(248,244,234,.76); font-family: var(--sans); font-size: .7rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.weather-current > strong, .weather-day > strong { color: #fff; font-family: var(--serif); font-size: clamp(1.65rem, 3.4vw, 2.5rem); font-weight: 600; line-height: 1; }
.weather-current > p, .weather-day p { margin: 1px 0 0; color: rgba(248,244,234,.8); font-size: .76rem; line-height: 1.45; }
.weather-current-details { display: flex; flex-wrap: nowrap; justify-content: flex-start; gap: 8px 18px; margin-top: 3px; color: rgba(248,244,234,.8); font-size: .72rem; }
.weather-current-details span { white-space: nowrap; }
.weather-current-details b { color: #fff; font-weight: 700; }
.weather-current-feels { margin-left: 8px; white-space: nowrap; }
.weather-forecast { display: contents; }
.weather-day { display: grid; gap: 5px; min-width: 0; padding: 7px 26px; border-left: 1px solid rgba(255,255,255,.24); }
.weather-current + .weather-day { border-left: 1px solid rgba(255,255,255,.24); }
.weather-day + .weather-day { border-left: 1px solid rgba(255,255,255,.24); }
.weather-alert { min-height: 104px; }
.weather-alert-copy { width: min(100%, 1280px); color: #fff; padding: 8px 26px; display: grid; gap: 3px; }
.weather-alert-copy p { margin: 0; font-size: .7rem; font-weight: 850; letter-spacing: .13em; }
.weather-alert-copy strong { font-family: var(--serif); font-size: clamp(1.35rem, 2.7vw, 2rem); }
.weather-alert-copy span { color: rgba(255,255,255,.84); font-size: .82rem; }
.weather-alert--red { background: #a3231e; } .weather-alert--yellow { background: #9a6700; } .weather-alert--green { background: #176b46; }
.story-vote-chart { height: 10px; margin-top: 16px; overflow: hidden; border-radius: 999px; background: rgba(23,60,42,.14); }
.story-vote-chart span { display: block; height: 100%; border-radius: inherit; background: var(--ink); } .vote-chart-label { margin: 6px 0 0; color: rgba(23,60,42,.7); font-size: .78rem; }

.section-wrap { width: min(1280px, calc(100% - 56px)); margin: 0 auto; }
.stories.section-wrap, .offers.section-wrap { width: 100%; margin: 0; padding-right: max(28px, calc((100vw - 1280px) / 2)); padding-left: max(28px, calc((100vw - 1280px) / 2)); }
.intro {
    display: grid;
    justify-items: center;
    max-width: 940px;
    padding: clamp(76px, 9vw, 126px) 0;
    text-align: left;
}
.intro .eyebrow,
.intro h2,
.intro > p:last-child {
    width: min(100%, 760px);
}
.intro h2 { text-wrap: balance; }
.intro > p:last-child {
    margin: 24px 0 0;
    color: #506054;
    font-family: var(--serif);
    font-size: clamp(1.08rem, 1.7vw, 1.24rem);
    line-height: 1.58;
    text-align: left;
    text-wrap: pretty;
}
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.section-heading > p { max-width: 240px; margin: 0 0 5px; color: #657263; font-family: var(--serif); font-size: 1.05rem; }
.stories { padding-top: clamp(70px, 8vw, 104px); padding-bottom: clamp(72px, 8vw, 106px); color: #fff; background: var(--forest); }
.stories .section-heading { padding-top: 0; border-top: 0; }
.stories .eyebrow { color: rgba(255,255,255,.68); }
.stories h2 { color: #fff; }
.story-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.story-card { min-width: 220px; overflow: hidden; border: 0; border-radius: 8px; background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.035) 28%, rgba(255,255,255,.035) 72%, rgba(255,255,255,.1)); backdrop-filter: blur(10px); transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.story-card:hover, .story-card:focus-visible, .path-card:hover, .path-card:focus-visible, .offer-card:hover, .offer-card:focus-within { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(5, 21, 14, .16); outline: none; }
.story-card img { width: 100%; height: 184px; object-fit: cover; }
.story-card > div { padding: 20px; }
.story-card p { margin: 12px 0 0; color: rgba(255,255,255,.8); font-size: .92rem; line-height: 1.55; }
.story-card h3 { color: #fff; }
.story-card.is-featured { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr); min-height: 310px; }
.story-card.is-featured img { height: 100%; min-height: 310px; }
.story-card.is-featured > div { align-self: center; padding: clamp(28px, 5vw, 56px); }
.story-card.is-featured h3 { font-size: clamp(1.45rem, 2.2vw, 2.25rem); }
.story-card.is-featured p { max-width: 640px; font-family: var(--serif); font-size: 1.12rem; }

.carousel-heading { align-items: center; }
.stories .carousel-heading h2 { max-width: 900px; font-size: clamp(1.4rem, 2.2vw, 2.25rem) !important; }
.carousel-controls { display: flex; gap: 9px; }
.carousel-controls button { display: grid; width: 44px; height: 44px; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; background: rgba(255,255,255,.08); font-size: 1.2rem; cursor: pointer; transition: background 160ms ease, border-color 160ms ease, transform 160ms ease; }
.carousel-controls button:hover, .carousel-controls button:focus-visible { border-color: rgba(255,255,255,.78); background: rgba(255,255,255,.18); outline: none; transform: scale(1.05); }
.offers .offer-heading-controls { display: flex; flex: 0 0 auto; gap: 6px; }
.offers .offer-heading-controls button { width: 38px; height: 38px; border-color: rgba(255,255,255,.46); background: transparent; box-shadow: none; }
.offers .offer-heading-controls svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.offers .offer-heading-controls button:hover, .offers .offer-heading-controls button:focus-visible { border-color: rgba(255,255,255,.82); background: rgba(255,255,255,.12); transform: translateY(-1px); }
.carousel-track { display: flex; gap: 0; overflow-x: hidden; overscroll-behavior-inline: contain; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab; }
.carousel-track.is-dragging { cursor: grabbing; user-select: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > * { flex: 0 0 100%; scroll-snap-align: start; scroll-snap-stop: always; }
.content-carousel .story-card, .content-carousel .story-card.is-featured { display: grid; grid-column: auto; grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr); min-height: 560px; }
.content-carousel .story-card img, .content-carousel .story-card.is-featured img { height: 100%; min-height: 560px; }
.content-carousel .story-card > div, .content-carousel .story-card.is-featured > div { align-self: center; padding: clamp(32px, 5vw, 64px); }
.story-card .story-kicker { margin: 0 0 13px; color: rgba(255,255,255,.68); font-family: var(--sans); font-size: .68rem; font-weight: 850; letter-spacing: .14em; line-height: 1.2; text-transform: uppercase; }
.content-carousel .story-card h3 { font-size: clamp(1.45rem, 2.2vw, 2.25rem); }
.content-carousel .story-card p { max-width: 680px; font-family: var(--serif); font-size: 1.12rem; line-height: 1.58; }
.content-carousel .story-card .story-kicker { font-family: var(--sans); font-size: .68rem; line-height: 1.2; }
.story-card .story-lead { max-width: 650px; margin: 0 0 22px; color: #fff; font-family: var(--sans); font-size: clamp(1.08rem, 1.5vw, 1.3rem); line-height: 1.5; }
.story-card .story-body { max-width: 690px; }
.story-card .story-body p { margin: 0; color: rgba(255,255,255,.78); font-family: var(--serif); font-size: 1.04rem; line-height: 1.62; }
.story-card .story-body p + p { margin-top: 16px; }
.story-grid--actions { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.story-grid--public-actions { grid-template-columns: 1fr; }
.story-grid--public-actions--1 .story-card { grid-column: 1 / -1; width: 100%; }
.story-grid--public-actions--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.story-grid--public-actions .story-card--text { min-height: 0; }
.story-grid--public-actions .story-card-copy { max-width: 960px; padding: clamp(32px, 5vw, 58px); }
.story-grid--public-actions--2 .story-card-copy { padding: clamp(26px, 3.5vw, 42px); }
.story-grid--public-actions--2 .story-card--text p:not(.story-kicker) { font-size: .98rem; line-height: 1.55; }
.story-grid--public-actions .story-card--text p:not(.story-kicker) { font-family: var(--serif); font-size: .98rem; line-height: 1.48; }
.story-grid--public-actions .story-card--action-front { display: grid; box-sizing: border-box; grid-template-columns: minmax(0, 1fr) clamp(120px, 15.2vw, 208px); align-items: center; gap: clamp(22px, 3vw, 52px); padding: clamp(24px, 4vw, 48px); }
.story-grid--public-actions .story-card--action-front .story-card-copy { max-width: none; padding: 0; }
.action-front-image { width: 100%; aspect-ratio: 1; margin: 0; overflow: hidden; border-radius: 7px; background: rgba(0,0,0,.12); }
.story-grid--public-actions .action-front-image img { display: block; width: 100%; height: 100%; min-height: 0; object-fit: cover; filter: grayscale(0) contrast(1) brightness(1) saturate(1) !important; transform: none !important; }
.story-grid--public-actions--2 .story-card--action-front { grid-template-columns: minmax(0, 1fr) 106px; gap: 18px; }
.story-card--text { display: block; min-height: 285px; }
.story-card--text > div { height: 100%; padding: 30px; }
.story-card--text h3 { margin: 0; font-size: clamp(1.4rem, 2vw, 2rem); line-height: 1.08; }
.story-card--text p:not(.story-kicker) { margin-top: 18px; }
.story-grid--actions .story-card--text.is-featured { display: block; grid-column: 1 / -1; min-height: 310px; }
.story-grid--actions .story-card--text.is-featured > div { max-width: 900px; padding: clamp(34px, 5vw, 62px); }
.story-grid--actions .story-card--text.is-featured h3 { font-size: clamp(1.55rem, 2.4vw, 2.35rem); }
.story-grid--actions .story-card--text.is-featured p:not(.story-kicker) { max-width: 720px; font-size: 1.08rem; line-height: 1.62; }
.action-section-title { font-size: 70% !important; }
.action-banner-list { display: grid; width: 70%; gap: 20px; min-height: 1px; margin: 0 auto; }
.action-banner-list.is-empty { min-height: 110px; }
.action-banner { display: block; overflow: hidden; border: 1px solid rgba(255,255,255,.28); border-radius: 8px; box-shadow: 0 14px 30px rgba(0,0,0,.16); transition: transform 180ms ease, box-shadow 180ms ease; }
.action-banner:hover, .action-banner:focus-visible { transform: translateY(-3px); box-shadow: 0 20px 38px rgba(0,0,0,.24); outline: 3px solid rgba(255,255,255,.32); outline-offset: 3px; }
.action-banner[aria-disabled="true"] { pointer-events: none; }
.action-banner img { display: block; width: 100%; height: auto; opacity: 1; filter: none !important; mix-blend-mode: normal; }
.content-carousel .offer-card { min-width: 100%; }
.content-carousel .offer-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); flex: 0 0 100%; gap: 16px; scroll-snap-align: start; scroll-snap-stop: always; }
.content-carousel .offer-pair .offer-card { min-width: 0; }

.history-section { display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); min-height: 520px; color: var(--ink); background: #fff; }
.history-copy { align-self: center; max-width: 620px; padding: clamp(66px, 9vw, 128px) clamp(28px, 7vw, 120px); }
.history-copy .eyebrow { color: var(--moss); }
.history-copy > p:not(.eyebrow) { max-width: 500px; margin: 24px 0 0; color: #526258; font-family: var(--serif); font-size: 1.14rem; line-height: 1.55; }
.history-copy a { display: inline-block; margin-top: 28px; color: #356843; font-size: .74rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.history-copy a span { padding-left: 8px; font-size: 1.2rem; }
.history-section figure { position: relative; min-height: 520px; margin: 0; overflow: hidden; }
.history-section figure::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, #fff 0%, transparent 18%); pointer-events: none; transition: opacity .72s cubic-bezier(.22, 1, .36, 1); }
.history-section figure img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) sepia(.5) contrast(.85); transition: filter .72s cubic-bezier(.22, 1, .36, 1), transform 1.1s cubic-bezier(.22, 1, .36, 1); }
.history-section figcaption { position: absolute; right: 22px; bottom: 18px; z-index: 1; color: #fff; font-size: .65rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; writing-mode: vertical-rl; }

.paths-section { background: #f5f2e9; }
.path-filters { display: flex; flex-wrap: wrap; gap: 9px; margin: 10px 0 34px; }
.path-filters button { min-height: 40px; padding: 0 18px; border: 1px solid rgba(23,60,42,.22); border-radius: 999px; background: rgba(255,255,255,.52); color: #173c2a; font: inherit; font-size: .8rem; font-weight: 800; cursor: pointer; }
.path-filters button:hover, .path-filters button.active { border-color: #173c2a; background: #173c2a; color: #fff; }
.offer-detail-page { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr); overflow: hidden; border-radius: 10px; background: #fff; box-shadow: 0 16px 38px rgba(23,60,42,.12); }
.offer-detail-page > img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.offer-detail-page > div { align-self: center; padding: clamp(28px, 5vw, 68px); }
.offer-detail-page h2 { margin: 0 0 18px; color: #173c2a; font-size: clamp(1.7rem, 3vw, 2.6rem); }
@media (max-width: 760px) { .offer-detail-page { grid-template-columns: 1fr; } .offer-detail-page > img { min-height: 220px; max-height: 360px; } .path-filters { margin-top: 10px; } }
.paths, .offers { padding-top: clamp(72px, 8vw, 106px); }
.offers + .paths { padding-top: clamp(104px, 10vw, 150px); }
.paths { padding-bottom: clamp(104px, 11vw, 150px); }
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.path-card { display: grid; min-height: 370px; grid-template-rows: 190px 1fr; overflow: hidden; border: 1px solid rgba(23,60,42,.08); border-radius: 8px; background: linear-gradient(90deg, rgba(23,60,42,.12), rgba(23,60,42,.048) 28%, rgba(23,60,42,.048) 72%, rgba(23,60,42,.105)); transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.path-card img { width: 100%; height: 100%; object-fit: cover; }
.path-card div { padding: 22px; }
.path-card p, .offer-grid p { margin: 0 0 10px; color: rgba(23,60,42,.72); font-size: .68rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.path-card span { display: block; margin-top: 14px; color: rgba(23,60,42,.72); font-size: .94rem; }
.path-card.is-featured { grid-column: 1 / -1; grid-template-columns: minmax(300px, .95fr) minmax(0, 1.05fr); grid-template-rows: minmax(300px, 360px); min-height: 360px; }
.path-card.is-featured img { height: 100%; }
.path-card.is-featured div { align-self: center; max-width: 660px; padding: clamp(30px, 5vw, 66px); }
.path-card.is-featured h3 { font-size: clamp(1.45rem, 2.2vw, 2.15rem); }
.path-card.is-featured span { max-width: 560px; font-family: var(--serif); font-size: 1.08rem; line-height: 1.55; }
.offers { color: #f3f8f1; padding-bottom: clamp(86px, 9vw, 130px); background: var(--forest); }
.offers .section-heading { border-color: rgba(255,255,255,.18); }
.offers .eyebrow { color: rgba(255,255,255,.68); }
.offers .section-heading, .paths .section-heading, .member-updates .section-heading, .event-reports .section-heading { border-top: 0; padding-top: 0; }
.offer-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.offer-grid.carousel-track { display: flex; gap: 0; }
.offer-card { position: relative; display: flex; min-height: 500px; overflow: hidden; border: 0; border-radius: 8px; background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.035) 28%, rgba(255,255,255,.035) 72%, rgba(255,255,255,.1)); backdrop-filter: blur(10px); transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.offer-card.is-disabled { opacity: .56; }
.offer-card-link { display: flex; flex: 1; min-width: 0; flex-direction: column; color: inherit; }
.offer-grid img { width: 100%; height: 260px; min-height: 0; object-fit: cover; }
.offer-card-link > div { flex: 1; padding: 20px 24px 22px; }
.offer-grid h3 { margin: 0; font-size: clamp(1.2rem, 1.65vw, 1.7rem); }
.offer-grid h3 { color: #fff; }
.offer-grid p { color: rgba(255,255,255,.68); }
.offer-grid span { display: -webkit-box; margin-top: 10px; overflow: hidden; color: rgba(255,255,255,.84); font-family: var(--serif); line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 5; }
.offer-toggle { position: absolute; right: 18px; bottom: 18px; z-index: 2; display: block; }
.offer-toggle button { min-height: 37px; padding: 8px 12px; color: var(--ink); border: 1px solid rgba(255,255,255,.58); border-radius: 5px; background: rgba(255,255,255,.86); font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.offer-toggle button:hover, .offer-toggle button:focus-visible { color: #fff; background: rgba(23,60,42,.9); outline: 3px solid rgba(255,255,255,.2); outline-offset: 2px; }
.member-updates { padding: clamp(72px, 8vw, 106px) 0; }
.member-post-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.member-post-grid a { min-height: 238px; padding: 25px 26px 26px; border: 0; border-radius: 8px; background: linear-gradient(90deg, rgba(23,60,42,.07), rgba(23,60,42,.016) 28%, rgba(23,60,42,.016) 72%, rgba(23,60,42,.06)); transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.member-post-grid a + a { padding-left: 26px; }
.member-post-grid a:hover, .member-post-grid a:focus-visible { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(26, 54, 37, .14); outline: none; }
.member-post-grid p { margin: 0 0 12px; color: rgba(23,60,42,.72); font-size: .68rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.member-post-grid span { display: block; margin-top: 14px; color: rgba(23,60,42,.72); font-size: .93rem; }
.all-posts-link { align-self: end; display: inline-flex; align-items: center; gap: 5px; min-height: 38px; padding: 8px 13px; color: #fff; border-radius: 6px; background: var(--ink); font-size: .76rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.all-posts-link span { padding-left: 7px; font-size: 1.2rem; }
.all-posts-link:hover, .all-posts-link:focus-visible { color: #fff; background: rgba(23,60,42,.88); outline: 3px solid rgba(23,60,42,.16); outline-offset: 3px; }
.posts-page .site-header { position: relative; width: 100%; margin: 0; padding: 22px max(28px, calc((100vw - 1280px) / 2)); background: #173c2a; }
.posts-overview { padding: clamp(72px, 10vw, 132px) 0; }
.posts-overview h1 { font-size: clamp(1.55rem, 2.5vw, 2.4rem); }
.posts-overview .member-post-grid { padding-bottom: 8px; }
.posts-by-month { display: grid; gap: clamp(54px, 7vw, 88px); }
.post-month-group { display: grid; gap: 24px; }
.post-month-label { display: flex; align-items: center; gap: 16px; color: rgba(23,60,42,.72); font-family: var(--sans); font-size: .72rem; font-weight: 850; letter-spacing: .14em; line-height: 1; text-transform: uppercase; }
.post-month-label::after { height: 1px; flex: 1; content: ""; background: var(--line); }
.post-month-label span { white-space: nowrap; }
.posts-by-kind { display: grid; gap: clamp(58px, 8vw, 96px); }
.post-kind-group { display: grid; gap: 24px; }
.post-kind-heading { display: grid; gap: 4px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.post-kind-heading .eyebrow { margin: 0; }
.post-kind-heading h2 { margin: 0; color: var(--ink); font-size: clamp(1.35rem, 2vw, 1.95rem); }
.member-post-grid .post-card--invite { color: #fff; border: 1px solid rgba(255,255,255,.22); background: linear-gradient(135deg, #214f38, #173c2a); }
.member-post-grid .post-card--invite p, .member-post-grid .post-card--invite span { color: rgba(255,255,255,.8); }
.post-card-event { display: grid !important; gap: 3px; margin-top: 18px !important; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); font-size: .86rem !important; }
.post-card-event strong { color: #fff; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
footer { display: flex; justify-content: center; padding: 32px max(28px, calc((100vw - 1280px) / 2)); color: #dce6d7; background: #122d20; font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
footer a:hover, footer a:focus-visible { color: rgba(255,255,255,.72); text-decoration: underline; outline: none; }

.history-page:not(.posts-page) .site-header { position: absolute; }
.history-origin { padding-bottom: clamp(88px, 10vw, 140px); }
.history-origin-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr); gap: clamp(36px, 7vw, 112px); align-items: center; }
.history-origin-grid > div { max-width: 580px; }
.history-origin-grid > div > p:not(.eyebrow) { margin: 22px 0 0; color: #536057; font-family: var(--serif); font-size: 1.12rem; line-height: 1.6; }
.history-origin-grid figure { position: relative; min-height: 370px; margin: 0; overflow: hidden; border-radius: 8px; }
.history-origin-grid img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) sepia(.42) contrast(.84); }
.history-origin-grid figcaption { position: absolute; right: 18px; bottom: 16px; color: #fff; font-size: .65rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; writing-mode: vertical-rl; }
.history-hero > img { filter: grayscale(1) sepia(.46) contrast(.83); }
.archive { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; padding-bottom: clamp(78px, 10vw, 138px); }
.archive article { display: grid; grid-template-columns: minmax(190px, .72fr) minmax(0, 1fr); gap: 24px; align-items: center; padding: 24px; border: 0; border-radius: 8px; background: linear-gradient(90deg, rgba(23,60,42,.07), rgba(23,60,42,.016) 28%, rgba(23,60,42,.016) 72%, rgba(23,60,42,.06)); }
.archive img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: grayscale(1) sepia(.45); }
.archive h2 { font-size: clamp(1.15rem, 1.6vw, 1.55rem); }
.archive p:not(.eyebrow) { color: #59665c; font-family: var(--serif); }
.history-closing { margin-top: 0; }
.history-story { padding-bottom: 0; }
.history-section-title { max-width: 780px; }
.history-section-title > p:not(.eyebrow), .history-wide-copy { color: #536057; font-family: var(--serif); font-size: 1.06rem; line-height: 1.65; }
.history-section-title > p:not(.eyebrow) { margin: 20px 0 0; }
.history-timeline { padding-bottom: clamp(90px, 11vw, 150px); }
.history-timeline ol { display: grid; grid-template-columns: repeat(4, 1fr); margin: 48px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.history-timeline li { position: relative; display: grid; gap: 7px; padding: 30px 22px 22px 0; }
.history-timeline li::before { position: absolute; top: -6px; left: 0; width: 11px; height: 11px; content: ""; border-radius: 50%; background: var(--ink); }
.history-timeline li strong { color: rgba(23,60,42,.66); font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.history-timeline li span { font-size: clamp(1.45rem, 2vw, 2rem); font-weight: 750; }
.history-timeline li small { max-width: 190px; color: #637067; line-height: 1.45; }
.history-language-note { max-width: 780px; margin-top: 34px; padding: 24px 28px; border-left: 3px solid var(--ink); background: rgba(23,60,42,.06); }
.history-language-note p { margin: 8px 0 0; color: #56645a; line-height: 1.55; }
.history-band { padding: clamp(80px, 10vw, 136px) 0; color: #fff; background: var(--forest); }
.history-landscape { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: clamp(40px, 8vw, 110px); align-items: center; }
.history-landscape .eyebrow { color: rgba(255,255,255,.67); }
.history-landscape p:not(.eyebrow) { margin: 22px 0 0; color: rgba(255,255,255,.78); font-family: var(--serif); font-size: 1.06rem; line-height: 1.65; }
.history-landscape blockquote { display: grid; gap: 14px; margin: 0; padding: 32px; border: 1px solid rgba(255,255,255,.24); border-radius: 8px; background: rgba(255,255,255,.07); }
.history-landscape blockquote strong { font-size: 1.35rem; }
.history-landscape blockquote span { color: rgba(255,255,255,.76); line-height: 1.6; }
.history-sword, .history-houses { padding-top: clamp(90px, 11vw, 150px); padding-bottom: clamp(90px, 11vw, 150px); }
.history-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 48px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.history-facts div { display: grid; gap: 7px; padding: 30px 22px; border-right: 1px solid var(--line); }
.history-facts div:last-child { border-right: 0; }
.history-facts strong { font-size: clamp(1.45rem, 2.4vw, 2.4rem); }
.history-facts span { color: #647168; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.history-wide-copy { max-width: 900px; margin: 34px 0 0; }
.history-timeline-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); gap: clamp(42px, 8vw, 110px); align-items: stretch; }
.history-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr); gap: clamp(40px, 7vw, 96px); align-items: center; }
.history-split--reverse figure { order: 2; }
.history-split figure, .history-timeline-grid figure, .history-memory-grid figure { position: relative; min-height: 380px; margin: 0; overflow: hidden; border-radius: 8px; }
.history-split figure img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) sepia(.34) contrast(.9); }
.history-split figcaption { position: absolute; right: 16px; bottom: 14px; padding: 7px 10px; color: #fff; border-radius: 4px; background: rgba(14,39,26,.7); font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.history-placeholder { display: grid; align-content: end; gap: 12px; padding: clamp(28px, 5vw, 56px); color: var(--ink); border: 1px dashed rgba(23,60,42,.38); background: linear-gradient(135deg, rgba(23,60,42,.08), rgba(255,255,255,.62)); }
.history-placeholder span { color: #477358; font-size: .7rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.history-placeholder strong { max-width: 24ch; font-family: var(--serif); font-size: clamp(1.25rem, 2.1vw, 2rem); line-height: 1.15; }
.history-placeholder small { max-width: 38ch; color: #526258; line-height: 1.55; }
.history-placeholder--dark { color: #fff; border-color: rgba(255,255,255,.35); background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.03)); }
.history-placeholder--dark span { color: rgba(255,255,255,.72); }
.history-placeholder--dark small { color: rgba(255,255,255,.8); }
.history-castle { display: grid; grid-template-columns: minmax(360px, 1.05fr) minmax(0, .95fr); gap: clamp(38px, 7vw, 96px); align-items: center; padding-bottom: clamp(90px, 11vw, 150px); }
.history-castle figure { margin: 0; }
.history-castle img { width: 100%; border-radius: 8px; filter: sepia(.2) contrast(.94); }
.history-castle figcaption { margin-top: 10px; color: #6a756d; font-size: .72rem; }
.history-castle p:not(.eyebrow) { margin: 20px 0 0; color: #536057; font-family: var(--serif); line-height: 1.65; }
.history-houses { border-top: 1px solid var(--line); }
.history-name-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.history-name-grid article { padding: 25px; border-radius: 8px; background: rgba(23,60,42,.06); }
.history-name-grid strong { font-size: 1.12rem; }
.history-name-grid p { margin: 12px 0 0; color: #5b685f; line-height: 1.5; }
.history-houses-detail { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr); gap: clamp(40px, 7vw, 96px); align-items: center; margin-top: clamp(40px, 6vw, 76px); }
.history-houses-detail .history-wide-copy { max-width: none; margin: 0; }
.history-houses-detail figure { min-height: 390px; margin: 0; overflow: hidden; border-radius: 8px; }
.history-houses-detail img { width: 100%; height: 100%; object-fit: cover; }
.history-archive { grid-template-columns: 1fr; gap: clamp(28px, 4vw, 52px); padding-bottom: clamp(90px, 11vw, 150px); }
.history-archive .history-feature { display: grid; min-height: 0; grid-template-columns: minmax(380px, .92fr) minmax(0, 1.08fr); gap: 0; align-items: stretch; padding: 0; overflow: hidden; border: 1px solid rgba(23,60,42,.08); border-radius: 12px; background: #f5f7f3; box-shadow: 0 22px 60px rgba(23,60,42,.08); }
.history-feature figure { position: relative; min-width: 0; height: 560px; margin: 0; overflow: hidden; background: #dfe5dd; }
.history-archive .history-feature img { display: block; width: 100%; height: 100%; min-height: 0; aspect-ratio: auto; object-fit: cover; filter: grayscale(1) sepia(.28) contrast(.92); }
.history-feature--mill figure { height: 740px; background: #d9dfd7; }
.history-feature--mill img { object-fit: contain; }
.history-feature--bees figure { order: 2; }
.history-feature--bees > div { order: 1; }
.history-feature figcaption { position: absolute; right: 18px; bottom: 16px; padding: 7px 10px; color: #fff; border-radius: 4px; background: rgba(14,39,26,.72); font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(5px); }
.history-page .history-color-shift { position: relative; overflow: hidden; isolation: isolate; background: #dfe5dd; }
.history-page .history-color-shift::after { position: absolute; inset: 0; z-index: 1; content: ""; pointer-events: none; background: linear-gradient(125deg, rgba(239,232,214,.28), rgba(23,60,42,.12) 58%, rgba(23,60,42,.34)); mix-blend-mode: multiply; opacity: 1; transition: opacity .7s ease; }
.history-page .history-color-shift img { display: block; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) sepia(.22) contrast(.9); transform: scale(1.001); transition: filter .75s cubic-bezier(.22,1,.36,1), transform 1.1s cubic-bezier(.22,1,.36,1); }
.history-page .history-color-shift figcaption { z-index: 2; }
.history-landscape .history-color-shift { min-height: 390px; border-radius: 8px; }
.history-landscape .history-color-shift figcaption, .history-memory .history-color-shift figcaption { position: absolute; right: 16px; bottom: 14px; padding: 7px 10px; color: #fff; border-radius: 4px; background: rgba(14,39,26,.72); font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(5px); }
@media (prefers-reduced-motion: reduce) { .history-page .history-color-shift::after, .history-page .history-color-shift img { transition-duration: .01ms; } }
.history-feature > div { align-self: center; min-width: 0; max-width: 650px; padding: clamp(38px, 5vw, 76px); }
.history-archive .history-feature h2 { margin-top: 8px; font-size: clamp(1.8rem, 3vw, 3.2rem); line-height: 1.05; }
.history-archive .history-feature p:not(.eyebrow) { max-width: 58ch; margin: 22px 0 0; color: #536057; font-family: var(--serif); font-size: clamp(1rem, 1.2vw, 1.12rem); line-height: 1.68; overflow-wrap: anywhere; }
.history-archive .history-feature p:not(.eyebrow) + p { margin-top: 16px; }
.history-road { display: grid; grid-template-columns: 1fr; gap: clamp(78px, 10vw, 134px); padding-bottom: clamp(90px, 11vw, 150px); }
.history-road .history-split > div > p:not(.eyebrow) { margin: 20px 0 0; color: #536057; font-family: var(--serif); line-height: 1.65; }
.history-memory { padding: clamp(78px, 9vw, 120px) 0; color: #fff; background: #22382c; }
.history-memory-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr); gap: clamp(42px, 8vw, 110px); align-items: center; }
.history-memory .eyebrow { color: rgba(255,255,255,.65); }
.history-memory p:not(.eyebrow) { margin: 22px 0 0; color: rgba(255,255,255,.77); font-family: var(--serif); font-size: 1.08rem; line-height: 1.65; }
.history-sources { padding-top: clamp(90px, 11vw, 150px); padding-bottom: clamp(90px, 11vw, 150px); }
.history-sources > p:not(.eyebrow) { max-width: 850px; margin: 20px 0 0; color: #536057; font-family: var(--serif); line-height: 1.65; }
.history-closing { padding: clamp(90px, 11vw, 150px) 0; background: #fff; }
.history-closing-copy { max-width: 760px; }
.history-closing-copy > p:not(.eyebrow) { margin: 22px 0 0; color: #536057; font-family: var(--serif); font-size: 1.12rem; line-height: 1.65; }
.history-closing-copy a { display: inline-block; margin-top: 28px; color: #356843; font-size: .74rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.history-closing-copy a span { padding-left: 8px; font-size: 1.2rem; }
.history-sources ul { display: grid; gap: 10px; max-width: 850px; margin: 28px 0 0; padding-left: 20px; }
.history-sources a { color: #285d3b; text-decoration: underline; text-underline-offset: 3px; }

.dialog { display: none; position: fixed; inset: 0; z-index: 20; }
.dialog:target { display: grid; }
.dialog-backdrop { display: grid; place-items: center; padding: 16px; background: rgba(5, 21, 14, .72); backdrop-filter: blur(8px); }
.dialog article { position: relative; width: min(480px, 100%); max-height: calc(100dvh - 32px); overflow: auto; padding: 36px; border: 1px solid rgba(23,60,42,.18); border-radius: 7px; color: var(--ink); background: #fff; box-shadow: 0 30px 90px rgba(0,0,0,.34); }
.dialog h2 { font-size: 1.45rem; }
.dialog-text { margin: 12px 0 20px; color: #5c695d; }
.close { position: absolute; top: 12px; right: 16px; display: grid; width: 38px; height: 38px; place-items: center; color: #405346; border: 1px solid rgba(23,60,42,.22); border-radius: 50%; background: rgba(255,255,255,.88); font-size: 1.8rem; line-height: 1; }
.close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 2; }
.role-access { margin-bottom: 22px; padding: 14px; border: 1px solid rgba(23,60,42,.18); border-radius: 6px; background: rgba(23,60,42,.06); }
.role-access > p { margin: 0 0 9px; color: #52604d; font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.role-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.role-options form { display: block; }
.role-options button { width: 100%; min-height: 39px; margin: 0; padding: 7px; color: var(--ink); border: 1px solid rgba(23,60,42,.22); border-radius: 4px; background: #fff; font-size: .78rem; }
.role-options button:hover, .role-options button:focus-visible { color: #fff; background: var(--ink); outline: 3px solid rgba(23,60,42,.18); outline-offset: 2px; }
.dialog form { display: grid; gap: 14px; }
.dialog label { display: grid; gap: 6px; color: #52604d; font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.dialog input { min-height: 43px; padding: 9px 11px; border: 1px solid #aeb8a6; border-radius: 4px; color: var(--ink); background: #fffefa; }
.dialog button { min-height: 45px; margin-top: 4px; color: #fff; border: 0; border-radius: 4px; background: var(--ink); font-weight: 800; cursor: pointer; }
.dialog button:hover { background: rgba(23,60,42,.88); }
.dialog-link { display: block; margin-top: 20px; padding-top: 17px; border-top: 1px solid #d7d4c6; color: #395a42; font-size: .88rem; font-weight: 800; text-align: center; }
.form-error { margin: 0; color: #9c3d2f; font-size: .86rem; font-weight: 700; }
.content-dialog article { width: min(680px, 100%); }
.content-dialog h2 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
.content-dialog .post-detail { width: min(760px, 100%); padding: 46px; }
.post-detail h2 { max-width: 620px; margin: 0 0 26px; color: var(--ink); font-size: clamp(1.6rem, 2.8vw, 2.4rem); line-height: 1.08; }
.post-detail-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.post-detail-meta div { min-width: 0; }
.post-detail-meta dt { color: #627064; font-size: .67rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.post-detail-meta dd { margin: 4px 0 0; color: var(--ink); font-size: .96rem; font-weight: 750; overflow-wrap: anywhere; }
.post-detail-kind { margin: 0 0 8px; color: #627064; font-size: .68rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.post-detail-summary { margin: 28px 0 0; color: var(--ink); font-family: var(--sans); font-size: 1.08rem; font-weight: 750; line-height: 1.55; }
.post-detail-body { margin-top: 18px; color: #536057; font-family: var(--serif); font-size: 1.08rem; line-height: 1.7; }
.detail-image { width: 100%; max-height: 270px; margin: -36px -36px 26px; width: calc(100% + 72px); object-fit: cover; }
.detail-full .dialog-backdrop { padding: 0; }
.detail-full article { position: relative; width: 100vw; max-width: none; height: 100dvh; max-height: none; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); padding: 0; border: 0; border-radius: 0; overflow: hidden; }
.detail-full article > img { width: 100%; height: 100%; object-fit: cover; }
.path-detail-map { width: 100%; height: 100%; min-height: 420px; margin: 0; background: #dfe5dd; }
.path-detail-map figcaption { display: grid; height: 100%; place-items: center; color: #355842; font: 700 .82rem/1.4 var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.path-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 26px 0; overflow: hidden; border: 1px solid var(--line); background: var(--line); }
.path-facts > div { padding: 13px 14px; background: #f7f4ea; }
.path-facts dt { margin: 0 0 5px; color: #657268; font: 800 .66rem/1.2 var(--sans); letter-spacing: .1em; text-transform: uppercase; }
.path-facts dd { margin: 0; color: var(--ink); font: 700 .9rem/1.3 var(--sans); }
.detail-full article > div { align-self: stretch; max-width: 760px; overflow-y: auto; padding: clamp(46px, 8vw, 130px); }
.detail-full article h2 { font-size: clamp(1.75rem, 2.5vw, 2.7rem); }
.detail-full article p:not(.eyebrow) { color: #536057; font-family: var(--serif); font-size: 1.2rem; line-height: 1.55; }
.detail-story { display: grid; gap: 14px; max-width: 760px; }
.detail-story p { margin: 0; color: #536057; font-family: var(--serif); font-size: 1.08rem; line-height: 1.62; }
.detail-story p:first-child { color: var(--ink); font-size: clamp(1.3rem, 2vw, 1.9rem); line-height: 1.18; }
.detail-story strong { color: var(--ink); font-family: var(--sans); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.detail-story em { color: var(--ink); font-style: italic; }
.detail-full .detail-note { margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--line); font-family: var(--sans) !important; font-size: .87rem !important; }
.path-gpx-row { margin: 28px 0 0 !important; }
.path-gpx-download { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; padding: 11px 16px; color: #fff !important; border-radius: 6px; background: var(--ink); font-family: var(--sans) !important; font-size: .78rem !important; font-weight: 850; letter-spacing: .08em; line-height: 1.2; text-transform: uppercase; }
.path-gpx-download span { font-size: 1.25rem; line-height: .8; }
.path-gpx-download:hover, .path-gpx-download:focus-visible { color: #fff !important; background: rgba(23,60,42,.86); outline: 3px solid rgba(23,60,42,.16); outline-offset: 3px; }
.path-detail-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 24px; }
.path-detail-gallery a { display: block; aspect-ratio: 1 / .72; overflow: hidden; border-radius: 5px; background: #dfe5dd; }
.path-detail-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 180ms ease; }
.path-detail-gallery a:hover img, .path-detail-gallery a:focus-visible img { transform: scale(1.05); }
.detail-full .close { z-index: 2; top: 22px; right: 28px; width: 42px; height: 42px; display: grid; place-items: center; color: #f8f5eb; border-radius: 50%; background: rgba(15, 44, 28, .65); }
.detail-path-navigation { position: absolute !important; z-index: 4; right: 28px; bottom: 24px; display: flex !important; align-items: center; gap: 8px; }
.detail-path-navigation a { display: inline-flex !important; align-items: center; gap: 10px; min-height: 42px; padding: 10px 15px; color: #fff !important; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; background: rgba(15,44,28,.72); font-family: var(--sans); font-size: .78rem; font-weight: 800; letter-spacing: .08em; line-height: 1; text-decoration: none; text-transform: uppercase; }
.detail-path-navigation a:hover, .detail-path-navigation a:focus-visible { color: #fff; background: rgba(15,44,28,.9); outline: 3px solid rgba(23,60,42,.22); outline-offset: 3px; }
.detail-path-navigation span { font-size: 1.4rem; line-height: .7; }
.detail-full:not(.story-detail) article > div { min-height: 0; padding: clamp(24px, 3.2vw, 44px) clamp(24px, 3.2vw, 44px) 88px; overflow-y: auto; overscroll-behavior: contain; }
.detail-full:not(.story-detail) .detail-story { max-height: none; padding-right: 0; overflow: visible; }
.story-detail article { display: block; height: 100dvh; overflow-y: auto; background: #f7f4ea; }
.story-page-hero { position: relative; min-height: min(560px, 62vh); display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); align-items: stretch; overflow: hidden; color: #fff; background: #173c2a; }
.story-page-hero::after { position: absolute; z-index: 1; inset: 0 0 0 40%; content: ""; background: linear-gradient(90deg, rgba(5,25,16,.22), rgba(5,25,16,.04)), linear-gradient(0deg, rgba(5,25,16,.26), transparent 58%); pointer-events: none; }
.story-page-hero > img { position: relative; z-index: 0; grid-column: 2; grid-row: 1; width: 100%; height: 100%; object-fit: cover; }
.story-page-hero > div { position: relative; z-index: 2; grid-column: 1; grid-row: 1; align-self: start; width: auto; margin: 0; padding: clamp(42px, 5vw, 66px) clamp(28px, 4vw, 52px); }
.story-page-hero .eyebrow { color: rgba(255,255,255,.72); }
.story-page-hero h2 { color: #fff; font-size: clamp(1.9rem, 3.2vw, 3.45rem); text-shadow: 0 2px 20px rgba(0,0,0,.24); }
.story-page-hero p:not(.eyebrow) { max-width: 680px; margin: 20px 0 0; color: rgba(255,255,255,.84); font-family: var(--serif); font-size: 1.18rem; line-height: 1.55; }
.story-article-copy { width: min(780px, calc(100% - 56px)); margin: 0 auto; padding: clamp(52px, 8vw, 90px) 0; }
.story-article-copy p { margin: 0; color: #536057; font-family: var(--serif); font-size: 1.08rem; line-height: 1.72; }
.story-article-copy p + p { margin-top: 22px; }
.story-feedback { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(320px, 1.22fr); gap: clamp(34px, 7vw, 110px); padding: clamp(56px, 8vw, 104px) max(28px, calc((100vw - 1180px) / 2)); color: var(--ink); background: #f7f4ea; }
.member-warning { margin-top: 28px; padding: 18px 22px; color: #6a261b; border: 1px solid #bf6b55; background: #fff1ea; }
.member-warning p { margin: 0 0 5px; font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.member-warning strong { font-size: .98rem; }
.story-feedback h3 { font-size: clamp(1.2rem, 1.5vw, 1.6rem); }
.detail-full.story-detail .dialog-backdrop { padding: 24px; }
.detail-full.story-detail article { width: min(1120px, 100%); height: auto; max-height: calc(100dvh - 48px); display: block !important; border: 1px solid rgba(255,255,255,.28); border-radius: 10px; overflow-y: auto; background: #f7f4ea; box-shadow: 0 30px 90px rgba(0,0,0,.38); }
.detail-full.story-detail article > .story-page-hero { align-self: auto; max-width: none; overflow: hidden; padding: 0; }
.detail-full.story-detail article > .story-article-copy { align-self: auto; max-width: none; overflow: visible; }
.detail-full.story-detail .story-page-hero { min-height: clamp(330px, 46vh, 470px); max-height: 470px; border-radius: 9px 9px 0 0; }
.detail-full.story-detail .story-page-hero > div { width: auto; margin: 0; padding: clamp(42px, 5vw, 66px) clamp(28px, 4vw, 52px); }
.detail-full.story-detail .story-page-hero p:not(.eyebrow) { color: rgba(255,255,255,.86); }
.detail-full.story-detail .story-article-copy { width: auto; margin: 0; padding: clamp(44px, 6vw, 72px) clamp(28px, 4vw, 52px); }
.detail-full.story-detail .story-feedback { border-top: 1px solid rgba(23,60,42,.14); }
.action-detail-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; padding: 0 clamp(28px, 4vw, 52px) clamp(44px, 6vw, 72px); }
.action-detail-gallery figure { min-height: 190px; margin: 0; overflow: hidden; border-radius: 7px; background: #dfe5dd; }
.action-detail-gallery img { width: 100%; height: 100%; object-fit: cover; }
.story-votes { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.story-votes form { display: block; }
.story-votes button { min-height: 42px; padding: 9px 12px; color: #294235; border: 1px solid #9dad99; border-radius: 4px; background: #fbfaf3; cursor: pointer; font-weight: 800; }
.story-votes button:hover, .story-votes button.selected { color: #fffdf4; border-color: #3f5f43; background: #3f5f43; }
.story-votes span { margin-left: 7px; padding-left: 7px; border-left: 1px solid currentColor; }
.feedback-login { max-width: 390px; margin: 18px 0 0; color: #536057; font-family: var(--serif); font-size: 1.05rem; line-height: 1.55; }
.feedback-login a { color: var(--ink); font-family: var(--sans); font-size: .76rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.feedback-login a:hover, .feedback-login a:focus-visible { text-decoration: underline; outline: none; }
.comment-form { display: grid; gap: 9px; }
.comment-form label { color: #56664e; font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.comment-form textarea { width: 100%; min-height: 108px; resize: vertical; padding: 12px; color: var(--ink); border: 1px solid #aeb8a6; border-radius: 4px; background: #fffefa; }
.comment-form button { justify-self: start; min-height: 42px; padding: 9px 13px; color: #fffdf4; border: 0; border-radius: 4px; background: #274b36; font-weight: 800; cursor: pointer; }
.comment-list { grid-column: 1 / -1; display: grid; gap: 0; max-width: 760px; padding-top: 8px; }
.comment-list article { padding: 18px 0; border-top: 0; background: linear-gradient(90deg, rgba(23,60,42,.055), transparent 72%); }
.comment-list strong { font-size: .92rem; }
.comment-list time { margin-left: 8px; color: #66725f; font-size: .76rem; }
.comment-list p { margin: 8px 0 0; color: #526057; }
.no-comments { margin: 0; color: #647066; }

.community-page { background: #f5f2e9; }
.community-header { position: relative; width: 100%; padding: 18px max(28px, calc((100vw - 1280px) / 2)); background: #173c2a; }
.community-hero { min-height: 330px; color: #fff; background: linear-gradient(112deg, rgba(16,52,36,.96), rgba(29,75,48,.84)), url('dobeno-front-20260715.png') center 56% / cover; }
.community-hero-copy { width: min(1280px, calc(100% - 56px)); margin: 0 auto; padding: 88px 0 72px; }
.community-hero-copy .eyebrow { color: rgba(255,255,255,.68); }
.community-hero-copy > p:last-child { margin: 20px 0 0; color: rgba(255,255,255,.8); font-size: .95rem; font-weight: 700; }
.community-main { padding: clamp(68px, 9vw, 120px) 0; }
.community-role-banner { max-width: 720px; margin-bottom: 66px; padding: 28px; border-left: 3px solid var(--ink); background: rgba(23,60,42,.06); }
.community-role-banner h2 { font-size: 1.3rem; }
.community-role-banner p:last-child { margin: 12px 0 0; color: #5d685e; }
.community-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.community-list article { min-height: 238px; padding: 25px 26px 26px; border: 0; border-radius: 8px; background: linear-gradient(90deg, rgba(23,60,42,.07), rgba(23,60,42,.016) 28%, rgba(23,60,42,.016) 72%, rgba(23,60,42,.06)); }
.community-list article + article { padding-left: 26px; }
.community-list article p { margin: 0 0 12px; color: rgba(23,60,42,.72); font-size: .68rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.community-list article span { display: block; margin-top: 14px; color: rgba(23,60,42,.72); font-size: .93rem; }
.empty-state { color: #5d685e; }

@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; } .story-card.is-featured { grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr); } .history-section { grid-template-columns: 1fr; } .history-section figure { min-height: 390px; } .history-section figure::after { background: linear-gradient(0deg, #173c2a 0%, transparent 34%); } .path-grid { grid-template-columns: 1fr; } .path-card { min-height: 0; grid-template-columns: 220px 1fr; grid-template-rows: 1fr; } .offer-grid { grid-template-columns: 1fr; } .story-feedback { grid-template-columns: 1fr; } .action-detail-gallery { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .history-landscape, .history-castle, .history-timeline-grid, .history-split, .history-memory-grid, .history-houses-detail { grid-template-columns: 1fr; } .history-split--reverse figure { order: initial; } .history-name-grid { grid-template-columns: repeat(2, 1fr); } .history-timeline ol { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .history-archive .history-feature { min-height: 0; grid-template-columns: 1fr; } .history-feature figure, .history-archive .history-feature img { min-height: 0; height: clamp(360px, 68vw, 620px); } .history-feature--bees figure, .history-feature--bees > div { order: initial; } .history-feature--bees figure, .history-feature--bees img { height: clamp(300px, 58vw, 500px); } }
@media (max-width: 620px) { .site-header, .section-wrap { width: min(100% - 32px, 1280px); } .site-header { padding-top: 16px; } .community-header { width: 100%; padding: 16px; } .brand img { width: 36px; height: 36px; } .brand em { font-size: .69rem; } .quiet-button { min-height: 34px; padding: 7px 10px; font-size: .8rem; } .hero, .hero > img { min-height: 620px; height: 78vh; } .hero-copy { left: 16px; width: calc(100% - 32px); bottom: 54px; } h1 { font-size: clamp(3.3rem, 15vw, 4.7rem); } .weather { padding: 10px 16px; } #weather { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-areas: "current forecast" "details details"; } .weather-current { padding: 8px 10px 12px 0; } .weather-current-details { flex-wrap: wrap; justify-content: flex-start; padding: 10px 0 0; } .weather-forecast { border-top: 0; border-left: 1px solid rgba(255,255,255,.18); } .weather-day { padding: 8px 8px 8px 10px; } .weather-day + .weather-day { padding-right: 0; padding-left: 8px; border-top: 0; border-left: 1px solid rgba(255,255,255,.18); } .intro { padding: 74px 0; } .section-heading { display: block; margin-bottom: 24px; } .section-heading > p { margin-top: 15px; } .story-card.is-featured { display: block; min-height: 0; } .story-card.is-featured img { min-height: 0; height: 220px; } .story-card.is-featured > div { padding: 24px; } .story-card.is-featured h3 { font-size: 2.3rem; } .story-grid--public-actions .story-card--action-front, .story-grid--public-actions--2 .story-card--action-front { grid-template-columns: minmax(0, 1fr) 85px; gap: 12px; padding: 20px; } .story-grid--public-actions .story-card--action-front .story-card-copy { padding: 0; } .story-grid--public-actions .action-front-image, .story-grid--public-actions--2 .action-front-image { margin: 0; } .history-copy { padding: 74px 16px; } .history-section figure { min-height: 320px; } .path-card { grid-template-columns: 1fr; grid-template-rows: 190px 1fr; } .offer-grid, .news-list, .archive, .community-list, .member-post-grid { grid-template-columns: 1fr; } .news-list a, .news-list a + a, .member-post-grid a, .member-post-grid a + a, .community-list article, .community-list article + article { padding: 22px 0; border-right: 0; border-bottom: 0; } .archive article { grid-template-columns: 130px 1fr; gap: 18px; } footer { padding: 24px 16px; } .dialog article { padding: 30px 22px; } .dialog h2 { font-size: 2.2rem; } .detail-image { width: calc(100% + 44px); margin: -30px -22px 22px; } .detail-full article { height: 100dvh; grid-template-columns: 1fr; grid-template-rows: 36vh 1fr; overflow-y: auto; } .detail-full article > img { height: 36vh; } .detail-full article > div { padding: 34px 22px 58px; } .detail-full article h2 { font-size: clamp(2.8rem, 13vw, 4.3rem); } .detail-full article p:not(.eyebrow) { font-size: 1.08rem; } .detail-full .close { top: 14px; right: 14px; } .story-detail article { display: block; height: 100dvh; padding: 0; } .story-page-hero { display: block; min-height: 0; } .story-page-hero > img { height: 38vh; } .story-page-hero > div { padding: 38px 22px 54px; } .story-page-hero h2 { font-size: clamp(3rem, 13vw, 4.5rem); } .story-page-hero p:not(.eyebrow) { font-size: 1.08rem; } .story-feedback { gap: 34px; padding: 48px 22px 64px; } .community-hero-copy { width: min(100% - 32px, 1280px); padding: 64px 0; } }

@media (max-width: 620px) { .offer-pair { gap: 16px; } .offer-toggle { position: static; padding: 0 18px 18px; } .offer-toggle button { width: 100%; } }
@media (max-width: 620px) { .content-dialog .post-detail { padding: 38px 22px 30px; } .post-detail-meta { grid-template-columns: 1fr; } }

@media (max-width: 620px) {
    .hero, .hero > img { min-height: 500px; height: 68vh; }
    .stories.section-wrap, .offers.section-wrap, .event-reports.section-wrap { width: 100%; padding-right: 16px; padding-left: 16px; }
    .member-post-grid a, .member-post-grid a + a, .community-list article, .community-list article + article { padding: 22px; border: 0; }
    h1 { font-size: clamp(1.9rem, 9vw, 2.4rem); }
    .story-card.is-featured h3 { font-size: 1.45rem; }
    .path-card.is-featured { display: block; min-height: 0; }
    .path-card.is-featured img { height: 240px; }
    .path-card.is-featured div { padding: 28px 24px; }
    .history-origin-grid { grid-template-columns: 1fr; gap: 30px; }
    .history-origin-grid figure { min-height: 280px; }
    .detail-full article h2 { font-size: clamp(1.75rem, 8vw, 2.35rem); }
    .story-page-hero h2 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
    .offers { padding-bottom: 54px; }
    .carousel-heading { display: flex; }
    .carousel-controls { display: none; }
    .content-carousel .story-card, .content-carousel .story-card.is-featured { display: block; min-height: 0; }
    .content-carousel .story-card img, .content-carousel .story-card.is-featured img { height: 260px; min-height: 0; }
    .content-carousel .story-card > div, .content-carousel .story-card.is-featured > div { padding: 24px; }
    .history-timeline ol, .history-facts, .history-name-grid, .history-road { grid-template-columns: 1fr; }
    .history-timeline li { padding-left: 18px; border-left: 1px solid var(--line); }
    .history-timeline li::before { top: 34px; left: -6px; }
    .history-facts div { border-right: 0; border-bottom: 1px solid var(--line); }
    .history-facts div:last-child { border-bottom: 0; }
    .history-castle { padding-right: 0; padding-left: 0; }
    .history-castle > div, .history-castle figcaption { padding-right: 16px; padding-left: 16px; }
    .history-castle img { border-radius: 0; }
    .history-archive { width: 100%; }
    .history-archive .history-feature { gap: 0; border-right: 0; border-left: 0; border-radius: 0; box-shadow: none; }
    .history-feature figure, .history-archive .history-feature img { height: min(118vw, 560px); }
    .history-feature--bees figure, .history-feature--bees img { height: min(72vw, 390px); }
    .history-feature > div { padding: 38px 20px 48px; }
    .history-feature figcaption { right: 12px; bottom: 12px; }
}

@media (max-width: 620px) {
    .story-page-hero { min-height: 520px; display: grid; align-items: end; }
    .story-page-hero > img { position: absolute; height: 100%; }
    .story-page-hero > div { width: calc(100% - 44px); margin-left: 22px; padding: 0 0 46px; }
}

/* Content images reveal their original colour only when the related item is explored. */
/* Pot cards are navigation imagery and should always remain in full colour. */
.paths .path-card img {
    filter: grayscale(0) contrast(1) brightness(1) saturate(1) !important;
    transform: none;
}

main img {
    filter: grayscale(1) contrast(.93) brightness(.96) !important;
    transform: scale(1.001);
    transition: filter 2.4s cubic-bezier(.22, 1, .36, 1), transform 2.8s cubic-bezier(.22, 1, .36, 1) !important;
}

/* Ponudniki are practical navigation cards, therefore their photographs stay in full colour. */
main .offers .offer-card img,
main .offer-detail-page > img {
    filter: grayscale(0) contrast(1) brightness(1) saturate(1) !important;
    transform: none;
}

@media (hover: hover) {
    main :is(a, figure, .hero, .story-page-hero, .detail-full article):hover img,
    main a:focus-visible img,
    main figure:focus-within img {
        filter: grayscale(0) contrast(1.03) saturate(1.08) !important;
        transform: scale(1.035);
    }
}

@media (hover: none) {
    main img {
        filter: grayscale(0) contrast(1) saturate(1) !important;
        transform: none;
    }
}

/* Event reports replace the public offer strip after login. */
.event-reports { padding-top: clamp(72px, 8vw, 106px); padding-bottom: clamp(104px, 11vw, 150px); color: #f3f8f1; background: var(--forest); }
.event-reports.section-wrap { width: 100%; margin: 0; padding-right: max(28px, calc((100vw - 1280px) / 2)); padding-left: max(28px, calc((100vw - 1280px) / 2)); }
.event-reports .section-heading { border-color: rgba(255,255,255,.18); }
.event-reports .eyebrow, .event-reports .section-heading > p { color: rgba(255,255,255,.68); }
.event-reports h2 { color: #fff; }
.event-report-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.event-report-card { display: flex; min-height: 500px; flex-direction: column; overflow: hidden; border: 0 !important; border-radius: 0; background: transparent; box-shadow: none; transition: transform 180ms ease; }
.event-report-card > figure { height: 260px; margin: 0; overflow: hidden; }
.event-report-card > figure img, .event-report-gallery img, .report-detail .story-page-hero > img, .report-detail-gallery img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0) contrast(1) brightness(1) saturate(1) !important; }
.event-report-copy { flex: 1; padding: 20px 24px 22px; color: #fff; }
.event-report-copy p { margin: 0 0 9px; color: rgba(255,255,255,.68); font-size: .68rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.event-report-copy h3 { margin: 0; color: #fff; font-size: clamp(1.2rem, 1.65vw, 1.7rem); }
.event-report-copy .report-intro { display: -webkit-box; margin: 12px 0 0; overflow: hidden; color: rgba(255,255,255,.95); font-family: var(--serif) !important; font-size: 1rem !important; font-weight: 750; letter-spacing: 0; line-height: 1.45; text-transform: none !important; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.event-report-copy span { display: -webkit-box; margin-top: 10px; overflow: hidden; color: rgba(255,255,255,.84); font-family: var(--serif); line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 5; }
.event-report-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 8px; }
.event-report-gallery figure { height: 126px; margin: 0; overflow: hidden; border-radius: 5px; }
.reports-list .report-list-card { min-height: 190px; color: var(--ink); border: 1px solid rgba(23,60,42,.22); border-radius: 0; background: #fff; box-shadow: 0 10px 24px rgba(23,60,42,.06); }
.reports-list .report-list-card p, .reports-list .report-list-card span { color: rgba(23,60,42,.76); }
.reports-list .report-list-card h3 { color: var(--ink); }
.reports-list .report-list-card:hover, .reports-list .report-list-card:focus-visible { border-color: var(--ink); background: #fff; box-shadow: 0 16px 32px rgba(23,60,42,.14); }
.report-detail-gallery { padding: 0 clamp(28px, 4vw, 52px) clamp(44px, 6vw, 72px); }
.report-detail-gallery h3 { margin-bottom: 16px; font-size: 1.05rem; }
.report-detail-gallery > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.report-detail-gallery figure { min-height: 220px; margin: 0; overflow: hidden; border-radius: 7px; background: #dfe5dd; }
.report-detail-gallery img { width: 100%; height: 100%; object-fit: cover; }
.path-detail-gallery a { position: relative; display: block; overflow: hidden; }
.path-detail-gallery a > span { position: absolute; right: 0; bottom: 0; left: 0; padding: 9px 10px; color: #fff; background: linear-gradient(transparent, rgba(5,21,14,.82)); font-size: .78rem; line-height: 1.35; }
.path-lightbox[hidden] { display: none; }
.path-lightbox { position: fixed; z-index: 80; inset: 0; display: grid; place-items: center; padding: 28px; }
.path-lightbox-backdrop { position: absolute; inset: 0; background: rgba(5,21,14,.82); backdrop-filter: blur(7px); }
.path-lightbox-panel { position: relative; z-index: 1; display: grid; width: min(860px, calc(100vw - 56px)); max-height: min(760px, calc(100dvh - 56px)); place-items: center; }
.path-lightbox-panel figure { width: 100%; margin: 0; overflow: hidden; border-radius: 8px; background: #102d20; box-shadow: 0 20px 58px rgba(0,0,0,.36); }
.path-lightbox-panel figure img { display: block; width: 100%; max-height: min(690px, calc(100dvh - 110px)); object-fit: contain; background: #102d20; }
.path-lightbox-panel figcaption { min-height: 0; padding: 10px 14px; color: rgba(255,255,255,.88); background: #102d20; font-size: .85rem; }
.path-lightbox-close, .path-lightbox-nav { position: absolute; z-index: 2; display: grid; width: 42px; height: 42px; padding: 0; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: #fff; background: rgba(15,44,28,.85); font: inherit; cursor: pointer; }
.path-lightbox-close { top: 12px; right: 12px; }
.path-lightbox-close svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.4; }
.path-lightbox-nav { top: 50%; font-size: 2rem; line-height: 1; transform: translateY(-50%); }
.path-lightbox-prev { left: -58px; }
.path-lightbox-next { right: -58px; }
.path-lightbox-close:hover, .path-lightbox-nav:hover, .path-lightbox-close:focus-visible, .path-lightbox-nav:focus-visible { border-color: #fff; background: #356843; outline: none; }
@media (max-width: 980px) { .path-lightbox-prev { left: 10px; } .path-lightbox-next { right: 10px; } }
@media (max-width: 620px) { .path-lightbox { padding: 16px; } .path-lightbox-panel { width: calc(100vw - 32px); } .path-lightbox-panel figure img { max-height: calc(100dvh - 80px); } .path-lightbox-nav { width: 38px; height: 38px; } }

/* Compact, contained content windows: only long text areas receive their own scroll. */
.dialog-backdrop { overflow: hidden; }
.content-dialog .post-detail { max-height: calc(100dvh - 32px); padding: clamp(28px, 4vw, 38px); overflow: hidden; }
.post-detail h2 { margin-bottom: 18px; font-size: clamp(1.4rem, 2.3vw, 2rem); }
.post-detail-summary { margin-top: 20px; font-size: .94rem; line-height: 1.48; }
.post-detail-body { max-height: min(42dvh, 390px); margin-top: 14px; padding-right: 10px; overflow-y: auto; font-size: .94rem; line-height: 1.58; scrollbar-width: thin; }
.detail-full article > div { padding: clamp(30px, 4.5vw, 58px); }
.detail-full article h2 { font-size: clamp(1.4rem, 1.8vw, 2rem); }
.detail-full article p:not(.eyebrow) { font-size: .94rem; line-height: 1.5; }
.detail-story { max-height: min(40dvh, 410px); padding-right: 10px; overflow-y: auto; scrollbar-width: thin; }
.detail-story p { font-size: 1rem; line-height: 1.58; }
.detail-story p:first-child { font-size: clamp(1.08rem, 1.5vw, 1.35rem); }
.detail-full.story-detail article { overflow-x: hidden; }
.detail-full.story-detail .story-page-hero { min-height: min(380px, 40dvh); }
.detail-full.story-detail .story-page-hero h2 { font-size: clamp(1.75rem, 2.7vw, 2.55rem); }
.detail-full.story-detail .story-page-hero p:not(.eyebrow) { margin-top: 14px; font-size: 1rem; line-height: 1.48; }
.detail-full.story-detail .story-article-copy { max-height: min(42dvh, 430px); margin: 0 auto; padding: clamp(34px, 4.5vw, 54px) 0; overflow-y: auto; scrollbar-width: thin; }
.detail-full.story-detail .story-article-copy p { font-size: 1rem; line-height: 1.6; }
.detail-full.story-detail .report-detail-gallery { padding-top: 0; padding-bottom: 44px; }
@media (max-width: 620px) { .content-dialog .post-detail { padding: 26px 22px; } .post-detail-body { max-height: 38dvh; } .detail-full article > div { padding: 28px 22px 42px; } .detail-story { max-height: 36dvh; } .detail-full.story-detail .story-page-hero { min-height: 34dvh; } .detail-full.story-detail .story-article-copy { max-height: 38dvh; width: min(100% - 44px, 780px); padding: 30px 0; } }

/* MapLibre controls need to remain visible inside the dark path dialog. */
.path-detail-map .maplibregl-ctrl-top-right { top: 10px; right: 10px; }
.path-detail-map .maplibregl-ctrl-group { overflow: hidden; border: 1px solid rgba(23,60,42,.26); border-radius: 5px; background: #fff; box-shadow: 0 2px 9px rgba(5,21,14,.2); }
.path-detail-map .maplibregl-ctrl-group button { display: block; width: 32px; min-width: 32px; height: 32px; min-height: 32px; margin: 0; padding: 0; border: 0; border-radius: 0; background-color: #fff; color: #173c2a; }
.path-detail-map .maplibregl-ctrl-group button + button { border-top: 1px solid rgba(23,60,42,.14); }
.path-detail-map .maplibregl-ctrl-group button:hover, .path-detail-map .maplibregl-ctrl-group button:focus-visible { background-color: #e7eee7; outline: none; }
.path-detail-map .maplibregl-ctrl-group .maplibregl-ctrl-icon { display: grid; width: 100%; height: 100%; place-items: center; background-image: none !important; opacity: 1; }
.path-detail-map .maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon::before { content: '+'; font: 800 22px/1 var(--sans); }
.path-detail-map .maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon::before { content: '−'; font: 800 22px/1 var(--sans); }
.path-detail-map .maplibregl-ctrl-compass .maplibregl-ctrl-icon::before { content: 'N'; font: 850 12px/1 var(--sans); }
.path-description-heading { margin: 28px 0 0; color: var(--ink); font-size: .86rem !important; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.path-description-heading + .detail-story { margin-top: 14px; }
.path-gpx-row { margin: 18px 0 28px !important; }
.path-gpx-row + .path-facts { margin-top: 0; }

/* Path detail: keep its heading and gallery in place; only the description scrolls. */
.detail-full:not(.story-detail) .path-detail-content { min-height: 0; display: grid; grid-template-rows: auto minmax(0, 1fr) auto; gap: 0; padding: clamp(24px, 3.2vw, 44px) !important; overflow: hidden !important; }
.path-detail-header { min-width: 0; }
.path-detail-header .path-facts { margin-bottom: 18px; }
.path-text-scroll { min-height: 0; padding-right: 10px; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; }
.path-text-scroll .detail-story { max-height: none; padding-right: 0; overflow: visible; }
.path-text-scroll .detail-note { margin-bottom: 0; }
.path-detail-gallery-shell { padding-top: 16px; }
.path-gallery-heading { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.path-gallery-heading h3 { margin: 0 0 9px; color: var(--ink); font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.path-gallery-heading > div { display: flex; gap: 6px; }
.path-gallery-heading button { display: grid; width: 28px; height: 28px; place-items: center; padding: 0; color: #fff; border: 0; border-radius: 50%; background: #173c2a; font: 700 1.15rem/1 var(--sans); cursor: pointer; }
.path-gallery-heading button:disabled { opacity: .35; cursor: default; }
.path-gallery-viewport { overflow: hidden; }
.path-detail-gallery { display: flex; gap: 8px; margin-top: 0; transition: transform 240ms ease; will-change: transform; }
.path-detail-gallery a { flex: 0 0 calc((100% - 16px) / 3); }
.path-detail-gallery[style*="--path-gallery-pages"] a { flex-basis: calc((100% - 16px) / (var(--path-gallery-pages) * 3)); }
@media (max-width: 620px) { .detail-full:not(.story-detail) .path-detail-content { padding: 24px 22px 68px !important; } .path-gallery-heading button { width: 30px; height: 30px; } }

/* Detail window layout: header/image stays still, only the reading area scrolls. */
.detail-full.story-detail article { display: grid !important; grid-template-rows: minmax(210px, 34dvh) minmax(0, 1fr); overflow: hidden; }
.detail-full.story-detail .story-page-hero { min-height: 0; height: 100%; }
.detail-full.story-detail .story-page-hero > div { padding: clamp(28px, 3vw, 40px); }
.detail-full.story-detail .story-page-hero h2 { font-size: clamp(1.35rem, 1.9vw, 1.85rem); }
.detail-full.story-detail .story-page-hero p:not(.eyebrow) { font-size: .94rem; line-height: 1.42; }
.detail-full.story-detail .story-article-copy { width: auto; max-height: none; height: 100%; margin: 0; padding: clamp(26px, 3.5vw, 42px); overflow-y: auto; }
.detail-full.story-detail .story-article-copy p { font-size: .94rem; line-height: 1.52; }
.detail-full.story-detail .story-scroll-content { min-height: 0; overflow-y: auto; scrollbar-width: thin; }
.detail-full.story-detail .story-scroll-content .story-article-copy { height: auto; overflow: visible; }

/* Izzivi in reportaže follow the same clear two-panel reading layout as paths. */
.detail-full.story-detail article { grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr) !important; grid-template-rows: minmax(0, 1fr) !important; }
.detail-full.story-detail .story-page-hero { position: relative; display: grid; grid-template-columns: 1fr; min-height: 0; height: 100%; overflow: hidden; background: #173c2a; }
.detail-full.story-detail .story-page-hero > img { grid-column: 1; grid-row: 1; width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.detail-full.story-detail .story-page-hero::after { inset: 0; background: linear-gradient(0deg, rgba(8,35,22,.96) 0%, rgba(8,35,22,.6) 40%, rgba(8,35,22,.08) 75%); }
.detail-full.story-detail .story-page-hero > div { grid-column: 1; grid-row: 1; align-self: end; width: auto; margin: 0; padding: clamp(28px, 4vw, 52px); }
.detail-full.story-detail .story-page-hero h2 { font-size: clamp(1.5rem, 2.25vw, 2.2rem); }
.detail-full.story-detail .story-page-hero p:not(.eyebrow) { margin-top: 14px; font-size: .93rem; line-height: 1.45; }
.detail-full.story-detail .story-scroll-content { grid-column: 2; grid-row: 1; min-height: 0; overflow-y: auto; overscroll-behavior: contain; background: #f7f4ea; }
.detail-full.story-detail .story-article-copy { height: auto; margin: 0; padding: clamp(30px, 4vw, 52px); overflow: visible; }
.detail-full.story-detail .story-feedback { width: min(100% - clamp(48px, 8vw, 104px), 980px); margin: 0 auto; padding: 0 0 clamp(34px, 4vw, 54px); gap: clamp(28px, 5vw, 64px); }
.detail-full.story-detail .story-feedback { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.detail-full.story-detail .story-feedback .comment-list { grid-column: 1 / -1; }
.detail-full.story-detail .report-detail-gallery { width: min(100% - clamp(48px, 8vw, 104px), 980px); margin: 0 auto; padding: 0 0 clamp(34px, 4vw, 54px); }
@media (max-width: 620px) { .detail-full.story-detail article { grid-template-columns: 1fr !important; grid-template-rows: minmax(250px, 38dvh) minmax(0, 1fr) !important; } .detail-full.story-detail .story-page-hero > div { padding: 28px 22px; } .detail-full.story-detail .story-scroll-content { grid-column: 1; grid-row: 2; } .detail-full.story-detail .story-article-copy { padding: 28px 22px; } .detail-full.story-detail .story-feedback, .detail-full.story-detail .report-detail-gallery { width: calc(100% - 44px); padding-bottom: 38px; } }

/* Reportaža: naslovna slika in galerija sta levo, vse branje ostane na desni. */
.report-detail article { grid-template-rows: minmax(0, 1fr) auto !important; }
.report-detail .story-page-hero { grid-column: 1; grid-row: 1; }
.report-detail .story-page-hero::after { display: none; }
.report-detail .story-scroll-content { grid-column: 2; grid-row: 1 / span 2; }
.report-detail-copy-header { padding: clamp(30px, 4vw, 52px) clamp(30px, 4vw, 52px) 0; }
.report-detail-copy-header .eyebrow { margin: 0 0 10px; color: #627064; }
.report-detail-copy-header h2 { margin: 0; color: var(--ink); font-size: clamp(1.5rem, 2.25vw, 2.2rem); }
.report-detail-copy-header p:not(.eyebrow) { margin: 14px 0 0; color: #334b3b; font-family: var(--sans); font-size: .98rem; line-height: 1.48; }
.report-detail .story-article-copy { padding-top: 24px; }
.report-detail .report-detail-gallery { grid-column: 1; grid-row: 2; width: auto; margin: 0; padding: 16px 18px 18px; color: #fff; background: #173c2a; }
.report-detail .report-detail-gallery h3 { margin: 0 0 12px; color: #fff; font-size: .86rem; letter-spacing: .08em; text-transform: uppercase; }
.report-detail .report-detail-gallery > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.report-detail .report-detail-gallery figure { min-height: 0; aspect-ratio: 1 / .8; border-radius: 4px; }
@media (max-width: 620px) { .report-detail article { grid-template-columns: 1fr !important; grid-template-rows: minmax(250px, 38dvh) minmax(0, 1fr) auto !important; } .report-detail .story-page-hero { grid-column: 1; grid-row: 1; } .report-detail .story-scroll-content { grid-column: 1; grid-row: 2; } .report-detail .report-detail-gallery { grid-column: 1; grid-row: 3; width: auto; padding: 16px; } .report-detail-copy-header { padding: 28px 22px 0; } }

/* Akcija uses the same calm two-panel reading layout, without text over the image. */
.action-detail .story-page-hero { grid-column: 1; grid-row: 1; }
.action-detail .story-page-hero::after { display: none; }
.action-detail .story-scroll-content { grid-column: 2; grid-row: 1; }
.action-detail-copy-header { padding: clamp(30px, 4vw, 52px) clamp(30px, 4vw, 52px) 0; }
.action-detail-copy-header .eyebrow { margin: 0 0 10px; color: #627064; }
.action-detail-copy-header h2 { margin: 0; color: var(--ink); font-size: clamp(1.5rem, 2.25vw, 2.2rem); }
.action-detail-copy-header p:not(.eyebrow) { margin: 14px 0 0; color: #334b3b; font-family: var(--sans); font-size: .98rem; line-height: 1.48; }
.action-detail .story-article-copy { padding-top: 24px; }
@media (max-width: 620px) { .action-detail .story-page-hero { grid-column: 1; grid-row: 1; } .action-detail .story-scroll-content { grid-column: 1; grid-row: 2; } .action-detail-copy-header { padding: 28px 22px 0; } }

/* Izziv: slika ostane čista na levi, naslov in odzivi so v desnem bralnem delu. */
.story-detail:not(.report-detail):not(.action-detail) .story-page-hero::after { display: none; }
.challenge-detail-copy-header { padding: clamp(30px, 4vw, 52px) clamp(30px, 4vw, 52px) 0; }
.challenge-detail-copy-header .eyebrow { margin: 0 0 10px; color: #627064; }
.challenge-detail-copy-header h2 { margin: 0; color: var(--ink); font-size: clamp(1.5rem, 2.25vw, 2.2rem); }
.challenge-detail-copy-header p:not(.eyebrow) { margin: 14px 0 0; color: #334b3b; font-family: var(--sans); font-size: .98rem; line-height: 1.48; }
.story-detail:not(.report-detail):not(.action-detail) .story-article-copy { padding-top: 24px; }
@media (max-width: 620px) { .challenge-detail-copy-header { padding: 28px 22px 0; } }

/* Izziv: odzivi stojijo pod sliko, komentar pa neposredno pod desnim besedilom. */
.story-detail:not(.report-detail):not(.action-detail) article { grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr) !important; grid-template-rows: minmax(0, 1fr) auto !important; }
.story-detail:not(.report-detail):not(.action-detail) .story-page-hero { grid-column: 1; grid-row: 1; }
.story-detail:not(.report-detail):not(.action-detail) .story-scroll-content { grid-column: 2; grid-row: 1; }
.story-detail:not(.report-detail):not(.action-detail) .story-feedback { grid-column: 1 / -1; grid-row: 2; width: auto; margin: 0; padding: 20px clamp(28px, 4vw, 52px) 24px; border-top: 1px solid rgba(23,60,42,.17); background: #f7f4ea; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: clamp(24px, 4vw, 52px); }
.story-detail:not(.report-detail):not(.action-detail) .story-feedback > :first-child { grid-column: 1; }
.story-detail:not(.report-detail):not(.action-detail) .story-feedback .comment-form { grid-column: 2; width: 100%; }
.story-detail:not(.report-detail):not(.action-detail) .story-feedback .comment-list { grid-column: 1 / -1; max-height: 14dvh; overflow-y: auto; }
@media (max-width: 620px) { .story-detail:not(.report-detail):not(.action-detail) article { grid-template-columns: 1fr !important; grid-template-rows: minmax(250px, 38dvh) minmax(0, 1fr) auto !important; } .story-detail:not(.report-detail):not(.action-detail) .story-page-hero { grid-column: 1; grid-row: 1; } .story-detail:not(.report-detail):not(.action-detail) .story-scroll-content { grid-column: 1; grid-row: 2; } .story-detail:not(.report-detail):not(.action-detail) .story-feedback { grid-column: 1; grid-row: 3; grid-template-columns: 1fr; padding: 24px 22px 32px; } .story-detail:not(.report-detail):not(.action-detail) .story-feedback > :first-child, .story-detail:not(.report-detail):not(.action-detail) .story-feedback .comment-form, .story-detail:not(.report-detail):not(.action-detail) .story-feedback .comment-list { grid-column: 1; } }

/* Compact comment composer and a contained list beneath its submit button. */
.story-detail:not(.report-detail):not(.action-detail) .comment-form textarea { min-height: 76px; height: 76px; resize: vertical; }
.story-detail:not(.report-detail):not(.action-detail) .story-feedback .comment-list { grid-column: 2; width: 100%; max-width: none; max-height: 118px; margin-top: -2px; padding-top: 0; overflow-y: auto; scrollbar-width: thin; }
@media (max-width: 620px) { .story-detail:not(.report-detail):not(.action-detail) .story-feedback .comment-list { grid-column: 1; } }

/* Compact voting and a side-by-side comment composer. */
.story-detail:not(.report-detail):not(.action-detail) .story-feedback h3 { margin: 4px 0 0; font-size: 1.15rem; }
.story-detail:not(.report-detail):not(.action-detail) .story-votes { gap: 6px; margin-top: 10px; }
.story-detail:not(.report-detail):not(.action-detail) .story-votes button { min-height: 34px; padding: 6px 9px; font-size: .82rem; }
.story-detail:not(.report-detail):not(.action-detail) .story-votes span { margin-left: 5px; padding-left: 5px; }
.story-detail:not(.report-detail):not(.action-detail) .story-vote-chart { height: 8px; margin-top: 10px; }
.story-detail:not(.report-detail):not(.action-detail) .vote-chart-label { margin-top: 5px; font-size: .72rem; }
.story-feedback-notice { margin: 8px 0 0; font-size: .78rem; font-weight: 750; }
.story-feedback-notice.is-success { color: #176b46; }.story-feedback-notice.is-error { color: #a3231e; }
.story-detail:not(.report-detail):not(.action-detail) .comment-form { grid-template-columns: minmax(0, 1fr) auto; column-gap: 10px; row-gap: 6px; align-items: end; }
.story-detail:not(.report-detail):not(.action-detail) .comment-form label { grid-column: 1 / -1; }
.story-detail:not(.report-detail):not(.action-detail) .comment-form textarea { grid-column: 1; grid-row: 2; min-height: 66px; height: 66px; }
.story-detail:not(.report-detail):not(.action-detail) .comment-form button { grid-column: 2; grid-row: 2; align-self: end; min-height: 34px; margin: 0; }
@media (max-width: 620px) { .story-detail:not(.report-detail):not(.action-detail) .comment-form { grid-template-columns: 1fr; } .story-detail:not(.report-detail):not(.action-detail) .comment-form textarea, .story-detail:not(.report-detail):not(.action-detail) .comment-form button { grid-column: 1; grid-row: auto; } .story-detail:not(.report-detail):not(.action-detail) .comment-form button { min-height: 42px; justify-self: start; } }
@media (max-width: 620px) { .detail-full.story-detail article { grid-template-rows: 29dvh minmax(0, 1fr); } .detail-full.story-detail .story-page-hero > div { padding: 24px 22px; } .detail-full.story-detail .story-page-hero h2 { font-size: 1.45rem; } .detail-full.story-detail .story-article-copy { padding: 24px 22px 34px; } }

@media (hover: hover) {
    .event-report-card:hover, .event-report-card:focus-within { transform: translateY(-3px); box-shadow: none; }
    .event-report-card:hover img, .event-report-card:focus-within img { filter: grayscale(0) contrast(1.03) saturate(1.08) !important; transform: scale(1.035); }
}

/* Izzivi: jasen krožni prikaz za/proti in več prostora za pogovor vaščanov. */
.story-detail:not(.report-detail):not(.action-detail) .story-vote-chart { display: none; }
.story-vote-summary { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.story-vote-pie { display: grid; width: 66px; aspect-ratio: 1; place-items: center; flex: 0 0 auto; border: 1px solid #9dad99; border-radius: 50%; background: conic-gradient(#274b36 0 var(--agree-percent), #fffefa var(--agree-percent) 100%); box-shadow: inset 0 0 0 1px rgba(23,60,42,.08); }
.story-vote-pie span { display: grid; width: 46px; aspect-ratio: 1; place-items: center; color: #274b36; border-radius: 50%; background: #f7f4ea; font-size: .7rem; font-weight: 850; }
.story-detail:not(.report-detail):not(.action-detail) .vote-chart-label { display: grid; gap: 4px; margin: 0; color: #526157; font-size: .74rem; line-height: 1.25; }
.story-detail:not(.report-detail):not(.action-detail) .vote-chart-label span { display: block; }

/* Natančna postavitev odzivov: graf je na sredini, komentarji pa ne širijo okna. */
.story-detail:not(.report-detail):not(.action-detail) .story-vote-summary,
.story-detail:not(.report-detail):not(.action-detail) .story-vote-pie,
.story-detail:not(.report-detail):not(.action-detail) .vote-chart-label { display: none; }
.story-detail:not(.report-detail):not(.action-detail) .story-vote-indicators { display: grid; gap: 9px; width: min(100%, 270px); margin: 14px auto 0; }
.story-detail:not(.report-detail):not(.action-detail) .story-vote-indicators p { margin: 0; }
.story-detail:not(.report-detail):not(.action-detail) .story-vote-indicators span { display: block; margin-bottom: 4px; color: #526057; font-size: .69rem; font-weight: 750; }
.story-detail:not(.report-detail):not(.action-detail) .story-vote-indicators i { display: block; height: 9px; overflow: hidden; border: 1px solid #9dad99; border-radius: 99px; background: #fffefa; }
.story-detail:not(.report-detail):not(.action-detail) .story-vote-indicators b { display: block; height: 100%; min-width: 0; border-radius: inherit; background: #274b36; }
.story-detail:not(.report-detail):not(.action-detail) .story-vote-indicators p + p b { background: #aeb8a6; }

/* Komentarji so namenoma le preprost, drseč seznam besedila. */
.story-detail:not(.report-detail):not(.action-detail) .challenge-detail-copy-header { padding-top: 18px; }
.story-detail:not(.report-detail):not(.action-detail) .story-scroll-content { align-content: start; }
.story-detail:not(.report-detail):not(.action-detail) .story-feedback .comment-list { display: block; height: 118px; max-height: 118px; margin-top: -2px; padding: 0 8px 0 0; border: 0; background: transparent; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; }
.story-detail:not(.report-detail):not(.action-detail) .comment-list .comment-line { margin: 0 0 8px; padding: 0; color: #526057; border: 0; background: transparent; font-size: .78rem; line-height: 1.42; }
.story-detail:not(.report-detail):not(.action-detail) .comment-list .comment-line small { color: #758078; font-size: .67rem; white-space: nowrap; }

/* Kompaktnejši razmik odzivov; indikatorji so poravnani ob desni rob levega stolpca. */
.story-detail:not(.report-detail):not(.action-detail) .story-feedback { padding-top: 12px; padding-bottom: 16px; column-gap: clamp(24px, 4vw, 52px); row-gap: 8px; }
.story-detail:not(.report-detail):not(.action-detail) .comment-form { row-gap: 4px; }
.story-detail:not(.report-detail):not(.action-detail) .story-feedback .comment-list { margin-top: 0; }
.story-detail:not(.report-detail):not(.action-detail) .story-vote-indicators { justify-self: start; margin-right: 0; margin-left: 0; }
.story-detail:not(.report-detail):not(.action-detail) .story-votes { justify-content: flex-start; }
.story-detail:not(.report-detail):not(.action-detail) .story-feedback { border-top: 0; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); }
.story-detail:not(.report-detail):not(.action-detail) .story-feedback > :first-child { grid-column: 1; grid-row: 1; }

/* Desni stolpec obdrži obrazec in komentarje v isti, kompaktni enoti. */
.story-detail:not(.report-detail):not(.action-detail) .story-feedback > .challenge-comments { display: grid; grid-column: 2; grid-row: 1; align-self: start; min-width: 0; gap: 6px; }
.story-detail:not(.report-detail):not(.action-detail) .challenge-comments .comment-form { grid-column: 1; align-self: start; grid-template-rows: auto auto; margin: 0; }
.story-detail:not(.report-detail):not(.action-detail) .challenge-comments .comment-form textarea { min-height: 58px; height: 58px; }
.story-detail:not(.report-detail):not(.action-detail) .challenge-comments .comment-list { display: block; grid-column: auto; width: auto; height: 72px; max-height: 72px; margin: 0; padding: 0 8px 0 0; overflow-y: auto; }
.story-detail:not(.report-detail):not(.action-detail) .challenge-comments .comment-line { margin-bottom: 5px; }
@media (max-width: 620px) {
    .story-detail:not(.report-detail):not(.action-detail) .story-feedback > .challenge-comments { grid-column: 1; grid-row: 2; }
    .story-detail:not(.report-detail):not(.action-detail) .challenge-comments .comment-list { height: 92px; max-height: 92px; }
}

@media (max-width: 620px) {
    .story-detail:not(.report-detail):not(.action-detail) .challenge-detail-copy-header { padding-top: 20px; }
}

@media (max-width: 900px) {
    .event-report-grid { grid-template-columns: 1fr; }
    .report-detail-gallery > div { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .reports-list .report-list-card { padding: 22px !important; border: 1px solid rgba(23,60,42,.22) !important; }
}

@media (prefers-reduced-motion: reduce) {
    main img { transition-duration: .01ms !important; }
}

/* History photographs remain monochrome until they enter the viewport centre. */
.history-page main .history-color-shift img {
    filter: grayscale(1) contrast(.93) brightness(.96) !important;
    transform: scale(1.001);
    transition: filter 3s ease-in-out, transform 3s ease-in-out !important;
}

.history-page main .history-color-shift::after {
    transition: opacity 3s ease-in-out;
}

/* Keep the cave photograph tightly cropped inside its landscape frame. */
.history-landscape .history-color-shift {
    height: 390px;
    min-height: 0;
}

.history-landscape .history-color-shift > img {
    position: absolute;
    inset: 0;
    transform: scale(1.09);
}

@media (prefers-reduced-motion: reduce) {
    .history-page main .history-color-shift img,
    .history-page main .history-color-shift::after { transition-duration: .01ms !important; }
}

/* History photographs gain colour only while passing through the centre of the viewport. */
.history-page main .history-color-shift:not(.is-centered) img,
main .history-section .history-scroll-reveal:not(.is-centered) img {
    filter: grayscale(1) contrast(.93) brightness(.96) !important;
    transform: scale(1.001) !important;
    transition: filter 3s ease-in-out, transform 3s ease-in-out !important;
}

.history-page main .history-color-shift:not(.is-centered)::after {
    opacity: 1 !important;
    transition: opacity 3s ease-in-out !important;
}

main .history-section .history-scroll-reveal:not(.is-centered)::after {
    opacity: 1 !important;
    transition: opacity 3s ease-in-out !important;
}

.history-page main .history-color-shift.is-centered img,
main .history-section .history-scroll-reveal.is-centered img {
    filter: grayscale(0) contrast(1.03) saturate(1.08) !important;
    transform: scale(1.055) !important;
    transition: filter 3s ease-in-out, transform 3s ease-in-out !important;
}

.history-page main .history-color-shift.is-centered::after {
    opacity: 0 !important;
    transition: opacity 3s ease-in-out !important;
}

main .history-section .history-scroll-reveal.is-centered::after {
    opacity: 0 !important;
    transition: opacity 3s ease-in-out !important;
}

.history-page main .history-landscape .history-color-shift:not(.is-centered) img { transform: scale(1.09) !important; }
.history-page main .history-landscape .history-color-shift.is-centered img { transform: scale(1.14) !important; }

@media (prefers-reduced-motion: reduce) {
    .history-page main .history-color-shift img,
    .history-page main .history-color-shift::after,
    main .history-section .history-scroll-reveal img { transition-duration: .01ms !important; }
}

@media (max-width: 620px) {
    #weather { grid-template-areas: "current forecast"; }
}

@media (max-width: 620px) {
    #weather { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-areas: none; }
    .weather-current { grid-area: auto; }
    .weather-current + .weather-day { border-left: 1px solid rgba(255,255,255,.18); }
}

/* On phones each weather block, offer and path occupies one swipeable viewport. */
@media (max-width: 620px) {
    #weather { display: flex; width: 100%; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
    #weather::-webkit-scrollbar { display: none; }
    #weather > .weather-current, #weather > .weather-day { flex: 0 0 100%; scroll-snap-align: start; }
    #weather > .weather-day { border-left: 0; }
    #weather > .weather-forecast { display: contents; }
    .offer-grid.carousel-track { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .offer-grid.carousel-track::-webkit-scrollbar { display: none; }
    .offer-grid.carousel-track .offer-pair { display: contents; }
    .offer-grid.carousel-track .offer-card { flex: 0 0 100%; scroll-snap-align: start; }
    .path-grid { display: flex; overflow-x: auto; gap: 14px; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .path-grid::-webkit-scrollbar { display: none; }
    .path-grid .path-card, .path-grid .path-card.is-featured { flex: 0 0 100%; min-width: 100%; scroll-snap-align: start; }
}

/* Poti: mirnejša hierarhija in enotno poravnane kartice. */
.posts-page .path-card { grid-template-rows: 178px minmax(0, 1fr); min-height: 352px; }
.posts-page .path-card > div { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; padding: 22px 24px 24px; }
.posts-page .path-card h3 { font-size: clamp(1.12rem, 1.45vw, 1.42rem); line-height: 1.18; }
.posts-page .path-card p { margin-bottom: 12px; font-size: .67rem; }
.posts-page .path-card span { margin-top: 12px; font-size: 1rem; line-height: 1.58; }
.posts-page .posts-overview { padding-top: clamp(52px, 6vw, 84px); padding-bottom: clamp(72px, 8vw, 110px); }
.detail-full:not(.story-detail) .path-detail-header h2 { font-size: clamp(1.38rem, 1.85vw, 1.92rem); line-height: 1.16; }
.detail-full:not(.story-detail) .path-detail-header .eyebrow { margin-bottom: 8px; }
.detail-full:not(.story-detail) .path-facts dd { font-size: .98rem; line-height: 1.35; }
.detail-full:not(.story-detail) .path-text-scroll .detail-story p { font-size: 1.06rem; line-height: 1.66; }
.detail-full:not(.story-detail) .path-text-scroll .detail-story p:first-child { font-size: clamp(1.14rem, 1.45vw, 1.32rem); line-height: 1.35; }

@media (min-width: 901px) {
    .posts-page .path-start-groups .path-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 360px)); }
}

@media (max-width: 620px) {
    .posts-page .path-card { grid-template-rows: 190px minmax(0, 1fr); min-height: 0; }
    .posts-page .path-card > div { min-height: 184px; padding: 22px; }
    .detail-full:not(.story-detail) article { display: block; height: 100dvh; overflow-y: auto; background: #fff; }
    .detail-full:not(.story-detail) .path-detail-map { width: 100%; height: min(36dvh, 320px); min-height: 0; }
    .detail-full:not(.story-detail) .path-detail-content { display: block; min-height: 0; padding: 26px 22px 22px !important; overflow: visible !important; }
    .detail-full:not(.story-detail) .path-detail-header h2 { font-size: 1.54rem; }
    .detail-full:not(.story-detail) .path-facts { margin: 20px 0; }
    .detail-full:not(.story-detail) .path-text-scroll { padding-right: 0; overflow: visible; }
    .detail-full:not(.story-detail) .path-text-scroll .detail-story { overflow: visible; }
    .detail-full:not(.story-detail) .path-text-scroll .detail-story p { font-size: 1.07rem; line-height: 1.68; }
    .detail-full:not(.story-detail) .path-detail-gallery-shell { padding-top: 24px; }
    .detail-full:not(.story-detail) .detail-path-navigation { position: static !important; justify-content: space-between; margin: 0; padding: 0 22px calc(22px + env(safe-area-inset-bottom)); background: #fff; }
    .detail-full:not(.story-detail) .detail-path-navigation a { flex: 1 1 0; justify-content: center; }
}

/* Izziv: dva dejanska stolpca, brez vpliva na tipografijo vsebine. */
.story-detail:not(.report-detail):not(.action-detail) article.challenge-detail-columns { display: grid !important; width: min(1200px, 100%); grid-template-columns: minmax(360px, .92fr) minmax(0, 1.22fr) !important; grid-template-rows: minmax(0, 1fr) !important; overflow: hidden; }
.challenge-detail-columns .challenge-detail-left, .challenge-detail-columns .challenge-detail-right { display: grid; min-width: 0; min-height: 0; grid-template-rows: minmax(0, 1fr) auto; }
.challenge-detail-columns .challenge-detail-left { grid-column: 1; grid-row: 1; background: #f7f4ea; }
.challenge-detail-columns .challenge-detail-right { grid-column: 2; grid-row: 1; background: #f7f4ea; }
.challenge-detail-columns .story-page-hero, .challenge-detail-columns .story-scroll-content { grid-column: auto !important; grid-row: auto !important; min-height: 0; }
.story-detail:not(.report-detail):not(.action-detail) article.challenge-detail-columns .challenge-detail-left > .story-page-hero { grid-column: 1 !important; grid-row: 1 !important; }
.story-detail:not(.report-detail):not(.action-detail) article.challenge-detail-columns .challenge-detail-right > .story-scroll-content { grid-column: 1 !important; grid-row: 1 !important; }
.challenge-detail-columns .story-page-hero { height: 100%; }
.challenge-detail-columns .story-scroll-content { overflow-y: auto; overscroll-behavior: contain; }
.challenge-detail-columns .story-feedback { display: block; width: auto; margin: 0; padding: 14px clamp(28px, 4vw, 52px) 18px; border: 0; background: #f7f4ea; }
.story-detail:not(.report-detail):not(.action-detail) article.challenge-detail-columns .challenge-detail-left > .story-feedback { grid-column: 1; grid-row: 2; }
.story-detail:not(.report-detail):not(.action-detail) article.challenge-detail-columns .challenge-detail-right > .story-feedback { grid-column: 1; grid-row: 2; }
.challenge-detail-columns .story-feedback-votes { padding: 0; }
.challenge-detail-columns .story-feedback--votes { margin-top: 12px; padding-top: 0; }
.story-detail:not(.report-detail):not(.action-detail) .challenge-detail-columns .story-feedback--comments > .challenge-comments { display: grid; grid-column: 1; grid-row: auto; width: auto; min-width: 0; gap: 6px; margin: 0; }
.story-detail:not(.report-detail):not(.action-detail) .challenge-detail-columns .challenge-comments .comment-form { grid-column: 1; margin: 0; }
.story-detail:not(.report-detail):not(.action-detail) .challenge-detail-columns .challenge-comments .comment-list { grid-column: 1; width: auto; margin: 0; }

/* Izziv: odzivi so neposredno pod sliko, brez notranjega zamika; bralni stolpec je bliže sliki. */
.story-detail:not(.report-detail):not(.action-detail) article.challenge-detail-columns {
    grid-template-columns: minmax(400px, .98fr) minmax(0, 1.22fr) !important;
}
.challenge-detail-columns .challenge-detail-left,
.challenge-detail-columns .challenge-detail-right {
    padding: 0 !important;
}
.challenge-detail-columns .challenge-detail-left > .story-page-hero {
    width: 100%;
    max-width: none;
    margin: 0;
    justify-self: stretch;
}
.detail-full.story-detail .challenge-detail-columns .challenge-detail-left > .story-feedback--votes {
    margin-top: 48px;
    width: auto;
    box-sizing: border-box;
    padding: 0 16px 18px 28px;
}
.challenge-detail-columns .challenge-detail-right > .story-scroll-content .challenge-detail-copy-header {
    padding-right: clamp(28px, 3vw, 38px);
    padding-left: clamp(28px, 3vw, 38px);
}
.challenge-detail-columns .challenge-detail-right > .story-scroll-content .story-article-copy {
    padding-right: clamp(28px, 3vw, 38px);
    padding-left: clamp(28px, 3vw, 38px);
}
.challenge-detail-columns .challenge-comments .comment-form {
    row-gap: 16px;
}
.challenge-detail-columns .challenge-detail-right .story-article-copy p {
    font-family: var(--serif);
    font-size: .98rem;
    line-height: 1.48;
}

/* Reportaža uporablja enako mirno dvostolpčno branje kot izziv; galerija zamenja odzive. */
.report-detail article.report-detail-columns {
    display: grid !important;
    width: min(1200px, 100%);
    grid-template-columns: minmax(400px, .98fr) minmax(0, 1.22fr) !important;
    grid-template-rows: minmax(0, 1fr) !important;
    overflow: hidden;
}
.report-detail-columns .report-detail-left,
.report-detail-columns .report-detail-right {
    display: grid;
    min-width: 0;
    min-height: 0;
    padding: 0 !important;
    grid-template-rows: minmax(0, 1fr) auto;
    background: #f7f4ea;
}
.report-detail-columns .report-detail-left { grid-column: 1; grid-row: 1; }
.report-detail-columns .report-detail-right { grid-column: 2; grid-row: 1; }
.report-detail-columns .report-detail-left > .story-page-hero {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100%;
    max-width: none;
    min-height: 0;
    height: 100%;
    margin: 0;
}
.report-detail-columns .report-detail-left > .story-page-hero::after { display: none; }
.report-detail-columns .report-detail-right > .story-scroll-content {
    grid-column: 1 !important;
    grid-row: 1 !important;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.report-detail-columns .report-detail-copy-header {
    padding: 18px clamp(28px, 3vw, 38px) 0;
}
.report-detail-columns .story-article-copy {
    padding-right: clamp(28px, 3vw, 38px);
    padding-left: clamp(28px, 3vw, 38px);
}
.report-detail-columns .story-article-copy p {
    font-family: var(--serif);
    font-size: .98rem;
    line-height: 1.48;
}
.detail-full.story-detail .report-detail-columns .report-detail-gallery {
    grid-column: 1;
    grid-row: 2;
    width: auto;
    margin: 48px 0 0;
    padding: 0 16px 18px 8px;
    color: var(--ink);
    border: 0;
    background: transparent;
}
.report-detail-columns .report-gallery-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}
.report-detail-columns .report-detail-gallery h3 {
    margin: 0;
    color: var(--ink);
    font-size: .86rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.report-detail-columns .report-gallery-controls { display: flex; gap: 6px; margin: 0; }
.report-detail-columns .report-gallery-controls button {
    display: grid;
    width: 28px;
    height: 28px;
    padding: 0;
    place-items: center;
    color: #fff;
    border: 1px solid #173c2a;
    border-radius: 50%;
    background: #173c2a;
    font-size: 1.35rem;
    line-height: 1;
}
.report-detail-columns .report-gallery-controls button:hover,
.report-detail-columns .report-gallery-controls button:focus-visible { background: #356843; }
.report-detail-columns .report-detail-gallery [data-report-gallery-track] {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.report-detail-columns .report-detail-gallery [data-report-gallery-track]::-webkit-scrollbar { display: none; }
.report-detail-columns .report-detail-gallery figure {
    flex: 0 0 calc((100% - 16px) / 3);
    min-height: 0;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 1 / .8;
    border-radius: 4px;
    scroll-snap-align: start;
}
.report-detail-columns .report-detail-gallery figure img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Akcija uporablja isto razmerje slike in bralnega stolpca kot reportaža. */
.action-detail article.action-detail-columns {
    display: grid !important;
    width: min(1200px, 100%);
    grid-template-columns: minmax(400px, .98fr) minmax(0, 1.22fr) !important;
    grid-template-rows: minmax(0, 1fr) !important;
    overflow: hidden;
}
.action-detail-columns .action-detail-left,
.action-detail-columns .action-detail-right {
    display: grid;
    min-width: 0;
    min-height: 0;
    padding: 0 !important;
    background: #f7f4ea;
}
.action-detail-columns .action-detail-left { grid-column: 1; grid-row: 1; }
.action-detail-columns .action-detail-right { grid-column: 2; grid-row: 1; }
.action-detail-columns .action-detail-left > .story-page-hero {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100%;
    max-width: none;
    min-height: 0;
    height: 100%;
    margin: 0;
}
.action-detail-columns .action-detail-left > .story-page-hero::after { display: none; }
.action-detail-columns .action-detail-right > .story-scroll-content {
    grid-column: 1 !important;
    grid-row: 1 !important;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.action-detail-columns .action-detail-copy-header { padding: 18px clamp(28px, 3vw, 38px) 0; }
.action-detail-columns .story-article-copy { padding-right: clamp(28px, 3vw, 38px); padding-left: clamp(28px, 3vw, 38px); }
.action-detail-columns .story-article-copy p { font-family: var(--serif); font-size: .98rem; line-height: 1.48; }
@media (max-width: 620px) {
    .report-detail article.report-detail-columns { grid-template-columns: 1fr !important; grid-template-rows: auto auto !important; overflow-y: auto; }
    .report-detail-columns .report-detail-left, .report-detail-columns .report-detail-right { grid-column: 1; grid-row: auto; }
    .report-detail-columns .report-detail-left > .story-page-hero { min-height: 38dvh; height: 38dvh; }
    .action-detail article.action-detail-columns { grid-template-columns: 1fr !important; grid-template-rows: auto auto !important; overflow-y: auto; }
    .action-detail-columns .action-detail-left, .action-detail-columns .action-detail-right { grid-column: 1; grid-row: auto; }
    .action-detail-columns .action-detail-left > .story-page-hero { min-height: 38dvh; height: 38dvh; }
}
@media (max-width: 620px) {
    .story-detail:not(.report-detail):not(.action-detail) article.challenge-detail-columns { grid-template-columns: 1fr !important; grid-template-rows: auto auto !important; overflow-y: auto; }
    .challenge-detail-columns .challenge-detail-left, .challenge-detail-columns .challenge-detail-right { grid-column: 1; grid-row: auto; }
    .challenge-detail-columns .story-page-hero { min-height: 38dvh; height: 38dvh; }
}

@media (max-width: 620px) {
    .site-header.is-scrolled { width: 100%; padding: 9px 16px; }
}

@media (max-width: 620px) {
    .site-header, .site-header.is-scrolled { width: 100%; margin: 0; padding: 16px; }
}

/* Final shared header and weather scale overrides. */
.site-header,
.posts-page .site-header,
.history-page .site-header {
    background: #173c2a;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 5px 18px rgba(5, 25, 16, .16);
}
.site-header.is-scrolled,
.posts-page .site-header.is-scrolled,
.history-page .site-header.is-scrolled {
    background: #24543c;
}
.site-header .brand { filter: brightness(1.12); }
.site-header .brand:hover,
.site-header .brand:focus-visible { filter: brightness(1.22); }
.posts-page .site-header,
.history-page .site-header {
    position: sticky;
    top: 0;
    inset-block-start: 0;
}
.weather-current > strong,
.weather-day > strong {
    font-size: clamp(1.15rem, 2.38vw, 1.75rem);
}
