/* ───────────────────────────────────────────────────────────
   Hegge Poederlee — Site stylesheet
   Ports website.css design for areas not covered by blocks
   ─────────────────────────────────────────────────────────── */

/* Aliases — map short names used in component CSS to theme.json preset vars.
   theme.json is the source of truth; these aliases keep component CSS readable. */
:root {
    --hg-green: var(--wp--preset--color--hg-green, #00763C);
    --hg-green-2: var(--wp--preset--color--hg-green-2, #4EB74A);
    --hg-red: var(--wp--preset--color--hg-red, #CA2030);
    --hg-green-50: var(--wp--preset--color--hg-green-50, #E6F1EB);
    --hg-green-100: var(--wp--preset--color--hg-green-100, #C3DECF);
    --hg-green-200: var(--wp--preset--color--hg-green-200, #8FC1A8);
    --hg-green-300: var(--wp--preset--color--hg-green-300, #4FA17B);
    --hg-green-400: var(--wp--preset--color--hg-green-400, #1A8757);
    --hg-green-500: var(--wp--preset--color--hg-green-500, #00763C);
    --hg-green-600: var(--wp--preset--color--hg-green-600, #006032);
    --hg-green-700: var(--wp--preset--color--hg-green-700, #0F4928);
    --hg-green-800: var(--wp--preset--color--hg-green-800, #11331E);
    --hg-green-900: var(--wp--preset--color--hg-green-900, #0B2014);
    --hg-leaf-100: var(--wp--preset--color--hg-leaf-100, #DDF0DC);
    --hg-leaf-300: var(--wp--preset--color--hg-leaf-300, #93D38F);
    --hg-leaf-500: var(--wp--preset--color--hg-leaf-500, #4EB74A);
    --hg-leaf-700: var(--wp--preset--color--hg-leaf-700, #2F8C2D);
    --hg-red-100: var(--wp--preset--color--hg-red-100, #F7D9DC);
    --hg-red-300: var(--wp--preset--color--hg-red-300, #E07683);
    --hg-red-500: var(--wp--preset--color--hg-red-500, #CA2030);
    --hg-red-700: var(--wp--preset--color--hg-red-700, #8E1421);
    --bg: var(--wp--preset--color--paper, #FFFFFF);
    --bg-2: var(--wp--preset--color--paper-2, #F4F4F4);
    --rule: var(--wp--preset--color--rule, #E3E3E3);
    --fg: var(--wp--preset--color--ink, #1A1A1A);
    --fg-2: var(--wp--preset--color--ink-2, #2D2D2D);
    --fg-3: var(--wp--preset--color--ink-3, #5C5C5C);
    --fg-4: var(--wp--preset--color--ink-4, #8E8E8E);
    --font-display: var(--wp--preset--font-family--display, 'Fraunces', Georgia, serif);
    --font-body: var(--wp--preset--font-family--body, 'Fira Sans', system-ui, sans-serif);
    --font-mono: var(--wp--preset--font-family--mono, 'JetBrains Mono', ui-monospace, monospace);
    --r-sm: var(--wp--custom--radius--sm, 4px);
    --r-md: var(--wp--custom--radius--md, 8px);
    --r-lg: var(--wp--custom--radius--lg, 14px);
    --r-pill: var(--wp--custom--radius--pill, 999px);
    --gutter: var(--wp--custom--gutter, clamp(20px, 4vw, 56px));
}

/* ── Block style variations ── */
.is-style-eyebrow {
    font-family: var(--font-mono) !important;
    font-size: 11.5px !important;
    letter-spacing: .16em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.is-style-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--hg-green);
}

.is-style-lede {
    font-size: 18px !important;
    line-height: 1.55;
    color: var(--fg-2) !important;
    max-width: 58ch;
}

.is-style-display {
    font-family: var(--font-display) !important;
    font-weight: 500 !important;
    font-size: clamp(36px, 5vw, 64px) !important;
    line-height: .98 !important;
    letter-spacing: -0.025em;
}

.is-style-display em {
    font-style: italic;
    color: var(--hg-green);
}

.wp-block-button.is-style-ghost .wp-block-button__link {
    background: transparent !important;
    color: var(--hg-green) !important;
    border: 1px solid var(--hg-green);
}

.wp-block-button.is-style-ghost .wp-block-button__link:hover {
    background: var(--hg-green) !important;
    color: #fff !important;
}

.wp-block-button.is-style-dark .wp-block-button__link {
    background: var(--fg) !important;
    border-color: var(--fg) !important;
}

.wp-block-button.is-style-dark .wp-block-button__link:hover {
    background: #000 !important;
    border-color: #000 !important;
}

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

body {
    font-feature-settings: 'kern', 'liga', 'calt';
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

/* ── Site switcher ── */
.site-switcher {
    background: var(--hg-green-900);
    color: rgba(255, 255, 255, .6);
    position: relative;
    z-index: 51;
}

.site-switcher-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: stretch;
    gap: 2px;
    font-size: 12.5px;
    overflow-x: auto;
    scrollbar-width: none;
}

.site-switcher-inner::-webkit-scrollbar {
    display: none;
}

.site-switcher-label {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    padding: 10px 16px 10px 0;
    white-space: nowrap;
}

.ss-tab {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    text-decoration: none;
    color: rgba(255, 255, 255, .65);
    font-weight: 500;
    letter-spacing: -0.005em;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color .15s, background .15s, border-color .15s;
}

.ss-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, .05);
}

.ss-tab.active {
    background: var(--hg-green);
    color: #fff;
}

.site-switcher-right {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    padding: 0 4px;
}

.site-switcher-right a {
    color: inherit;
    text-decoration: none;
    transition: color .15s;
}

.site-switcher-right a:hover {
    color: #fff;
}

.site-switcher-right .sep {
    opacity: .35;
}

@media (max-width: 700px) {
    .site-switcher-label, .site-switcher-right {
        display: none;
    }
}

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--hg-green);
    color: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}

.site-header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px var(--gutter);
    display: flex;
    align-items: center;
    gap: 36px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #fff;
}

.site-logo-mark {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .4), 0 2px 8px rgba(0, 0, 0, .12);
}

.site-logo-mark img {
    width: 58px;
    height: 58px;
}

.site-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.site-logo-text a {
    text-decoration: none;
}

.site-logo-text .name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 26px;
    letter-spacing: -0.02em;
    color: #fff;
}

.site-logo-text .name em {
    font-style: italic;
    color: var(--hg-leaf-500);
    font-weight: 500;
}

.site-logo-text .sub {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
    margin-top: 6px;
}

@media (max-width: 700px) {
    .site-logo-mark {
        width: 52px;
        height: 52px;
    }

    .site-logo-mark img {
        width: 46px;
        height: 46px;
    }

    .site-logo-text .name {
        font-size: 22px;
    }

    .site-logo-text .sub {
        display: none;
    }
}

/* ── Site nav ── */
.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
    font-size: 14.5px;
}

.site-nav > a, .site-nav > .has-menu > span {
    text-decoration: none;
    color: rgba(255, 255, 255, .85);
    padding: 8px 0;
    cursor: default;
    transition: color .15s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    font-weight: 500;
}

.site-nav > a:hover, .site-nav > .has-menu:hover > span {
    color: #fff;
}

.site-nav .has-menu {
    position: relative;
}

.site-nav .has-menu > span::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    display: inline-block;
    margin-left: 2px;
    opacity: .55;
}

.site-nav .submenu {
    position: absolute;
    top: 100%;
    left: -16px;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 8px;
    margin-top: 10px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, .12);
    opacity: 0;
    transform: translateY(4px);
    pointer-events: none;
    transition: opacity .15s, transform .15s;
    display: flex;
    flex-direction: column;
}

.site-nav .has-menu:hover .submenu,
.site-nav .has-menu:focus-within .submenu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.site-nav .submenu a {
    padding: 9px 12px;
    border-radius: 7px;
    text-decoration: none;
    color: var(--fg-2);
    font-size: 14px;
}

.site-nav .submenu a:hover {
    background: var(--bg-2);
    color: var(--hg-green);
}

.site-nav .cta {
    background: #fff;
    color: var(--hg-green);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background .15s, color .15s;
}

.site-nav .cta:hover {
    background: var(--hg-red);
    color: #fff;
}

@media (max-width: 900px) {
    .site-nav > a, .site-nav .has-menu {
        display: none;
    }

    .site-nav .cta {
        display: inline-flex;
    }
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    border: 1px solid var(--hg-green);
    border-radius: 999px;
    background: var(--hg-green);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s, transform .15s;
}

.btn:hover {
    background: var(--hg-green-700);
    border-color: var(--hg-green-700);
    color: #fff;
}

.btn--ghost {
    background: transparent;
    color: var(--hg-green);
}

.btn--ghost:hover {
    background: var(--hg-green);
    color: #fff;
}

.btn--dark {
    background: var(--fg);
    border-color: var(--fg);
}

.btn--dark:hover {
    background: #000;
    border-color: #000;
}

.btn .arrow {
    width: 14px;
    height: 10px;
    position: relative;
    transition: transform .2s;
}

.btn .arrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 1.5px;
    background: currentColor;
    transform: translateY(-50%);
}

.btn .arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-top: 1.5px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.btn:hover .arrow {
    transform: translateX(3px);
}

/* ── Eyebrow ── */
.eyebrow {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--hg-green);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--hg-green);
}

/* ── Display headings ── */
h2.disp {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(36px, 5vw, 64px);
    line-height: .98;
    letter-spacing: -0.025em;
    margin: 12px 0 14px;
    color: var(--fg);
}

h2.disp em {
    font-style: italic;
    color: var(--hg-green);
}

h2.disp em.red {
    color: var(--hg-red);
}

.lede {
    font-size: 18px;
    line-height: 1.55;
    color: var(--fg-2);
    max-width: 58ch;
    margin: 0;
}

/* ── Section helpers ── */
.section {
    padding: clamp(72px, 9vw, 120px) 0;
}

.section.dark {
    background: var(--hg-green-800);
    color: #f3ebd6;
    border-top: 0;
}

.section.dark .eyebrow {
    color: var(--hg-leaf-500);
}

.section.dark .eyebrow::before {
    background: var(--hg-leaf-500);
}

.section.dark h2.disp {
    color: #fff;
}

.section.dark h2.disp em {
    color: var(--hg-leaf-500);
}

.section.dark .lede {
    color: rgba(255, 255, 255, .78);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}

/* ── Hero ── */
.hero {
    padding: clamp(48px, 9vw, 120px) 0 clamp(64px, 8vw, 110px);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(36px, 6vw, 80px);
    align-items: center;
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
}

.hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--fg-3);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero-meta .pill {
    background: var(--hg-green-50);
    color: var(--hg-green);
    padding: 5px 10px;
    border-radius: 999px;
    letter-spacing: .14em;
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(48px, 7vw, 104px);
    line-height: .92;
    letter-spacing: -0.03em;
    margin: 0 0 24px;
    color: var(--fg);
}

.hero h1 em {
    font-style: italic;
    color: var(--hg-green);
    font-weight: 500;
}

.hero h1 .dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: var(--hg-red);
    border-radius: 50%;
    vertical-align: 0.12em;
    margin-left: 4px;
}

.hero p.lede {
    font-size: clamp(17px, 1.5vw, 20px);
    color: var(--fg-2);
    margin: 0 0 36px;
    max-width: 52ch;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hero-stats {
    margin-top: 56px;
    padding-top: 30px;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /*gap: 32px;*/
    max-width: 540px;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1;
    color: var(--hg-green);
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--fg-3);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: 8px;
    line-height: 1.4;
}

/* Hero visual */
.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 18px;
    overflow: hidden;
    background: repeating-linear-gradient(45deg,
    color-mix(in oklab, var(--hg-green) 10%, var(--bg-2)) 0 8px,
    color-mix(in oklab, var(--hg-green) 18%, var(--bg-2)) 8px 16px);
    border: 1px solid var(--rule);
}

.hero-visual-card {
    position: absolute;
    left: -28px;
    bottom: 36px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--rule);
    padding: 18px 20px 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .07);
    width: 240px;
}

@media (max-width: 900px) {
    .hero-visual-card {
        left: 16px;
    }
}

.hero-visual-card .kicker {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--hg-red);
}

.hero-visual-card h4 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 6px 0 8px;
    color: var(--fg);
}

.hero-visual-card h4 em {
    font-style: italic;
    color: var(--hg-green);
}

.hero-visual-card .date {
    font-size: 13px;
    color: var(--fg-3);
}

.hero-visual-card .date b {
    color: var(--fg);
    font-weight: 600;
}

/* ── Anno marquee ── */
.anno-strip {
    border-block: 1px solid var(--rule);
    background: var(--bg-2);
    overflow: hidden;
}

.anno-strip-inner {
    display: flex;
    gap: 56px;
    padding: 20px 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    color: var(--fg-3);
    white-space: nowrap;
    animation: hegge-scroll 36s linear infinite;
}

.anno-strip-inner span {
    display: inline-flex;
    align-items: center;
    gap: 56px;
}

.anno-strip-inner span::after {
    content: '·';
    color: var(--hg-red);
    font-style: normal;
}

@keyframes hegge-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ── About ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 7vw, 90px);
    align-items: center;
}

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

.about-quote {
    position: relative;
    padding-left: 28px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(20px, 1.9vw, 26px);
    line-height: 1.35;
    color: var(--fg);
}

.about-quote::before {
    content: '\201C';
    position: absolute;
    left: -6px;
    top: -22px;
    font-family: var(--font-display);
    font-size: 84px;
    color: var(--hg-red);
    line-height: 1;
}

.about-quote-cite {
    display: block;
    margin-top: 18px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: .1em;
    font-style: normal;
    text-transform: uppercase;
    color: var(--fg-3);
}

/* ── Featured event ── */
.featured {
    border-radius: 22px;
    background: var(--hg-green-800);
    color: #fff;
    padding: clamp(32px, 4vw, 56px);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.featured::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--hg-leaf-500), transparent 70%);
    opacity: .25;
    pointer-events: none;
}

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

.featured-date {
    font-family: var(--font-display);
    font-style: italic;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 16px 24px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .18);
}

.featured-date .num {
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1;
    color: var(--hg-leaf-500);
    font-weight: 500;
}

.featured-date .month {
    font-size: 13px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-style: normal;
    font-family: var(--font-mono);
    margin-top: 8px;
    color: rgba(255, 255, 255, .7);
}

.featured-body .kicker {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--hg-red);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.featured-body .kicker::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--hg-red);
    border-radius: 50%;
    animation: hegge-pulse 2.2s ease-in-out infinite;
}

@keyframes hegge-pulse {
    0%, 100% {
        opacity: .4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.4);
    }
}

.featured-body h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin: 12px 0 10px;
}

.featured-body h3 em {
    font-style: italic;
    color: var(--hg-leaf-500);
}

.featured-body p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    max-width: 50ch;
    line-height: 1.55;
}

.featured-action {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}

@media (max-width: 800px) {
    .featured-action {
        align-items: flex-start;
    }
}

.featured-action .btn {
    background: #fff;
    color: var(--hg-green-800);
    border-color: #fff;
    justify-content: center;
}

.featured-action .btn:hover {
    background: var(--hg-leaf-500);
    border-color: var(--hg-leaf-500);
}

.featured-action .meta {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}

/* ── Activity cards ── */
.activities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 56px;
}

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

.act-card {
    border: 1px solid var(--rule);
    border-radius: 18px;
    padding: 28px;
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: border-color .2s, transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    text-decoration: none;
    color: inherit;
}

.act-card:hover {
    border-color: var(--hg-green);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0, 118, 60, .08);
}

.act-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.act-card-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--fg-3);
}

.act-card-when {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--hg-green);
    text-transform: uppercase;
    padding: 5px 10px;
    background: var(--hg-green-50);
    border-radius: 999px;
}

.act-card-when.red {
    color: var(--hg-red);
    background: var(--hg-red-100);
}

.act-card-when.muted {
    color: var(--fg-3);
    background: var(--bg-2);
}

.act-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(28px, 2.6vw, 40px);
    line-height: 1.02;
    letter-spacing: -0.022em;
    margin: 28px 0 12px;
    color: var(--fg);
}

.act-card h3 em {
    font-style: italic;
    color: var(--hg-green);
}

.act-card p {
    margin: 0;
    color: var(--fg-2);
    font-size: 14.5px;
    line-height: 1.55;
}

.act-card-foot {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--hg-green);
    font-weight: 500;
}

.act-card-foot .arrow {
    width: 14px;
    height: 10px;
    position: relative;
    transition: transform .2s;
}

.act-card-foot .arrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 1.5px;
    background: currentColor;
    transform: translateY(-50%);
}

.act-card-foot .arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-top: 1.5px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.act-card:hover .act-card-foot .arrow {
    transform: translateX(4px);
}

.act-card-glyph {
    position: absolute;
    right: -12px;
    bottom: -12px;
    width: 150px;
    height: 150px;
    color: var(--hg-green-50);
    pointer-events: none;
}

.act-card-glyph svg {
    width: 100%;
    height: 100%;
}

/* ── Archive ── */
.archive-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

@media (max-width: 900px) {
    .archive-row {
        grid-template-columns: 1fr 1fr;
    }
}

.archive-card {
    border: 1px solid var(--rule);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: transform .2s, box-shadow .2s;
}

.archive-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .05);
}

.archive-photo {
    aspect-ratio: 4/5;
    background: repeating-linear-gradient(45deg, #d4cdb9 0 6px, #c0b7a0 6px 12px);
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.archive-photo.color {
    filter: none;
    background: repeating-linear-gradient(45deg,
    color-mix(in oklab, var(--hg-green) 10%, #f5f5f4) 0 6px,
    color-mix(in oklab, var(--hg-green) 18%, #f5f5f4) 6px 12px);
}

.archive-photo.red {
    background: repeating-linear-gradient(45deg,
    color-mix(in oklab, var(--hg-red) 12%, #f5f5f4) 0 6px,
    color-mix(in oklab, var(--hg-red) 20%, #f5f5f4) 6px 12px);
}

.archive-photo .label {
    margin: 14px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--rule);
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: .08em;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--fg-3);
}

.archive-meta {
    padding: 14px 18px;
}

.archive-meta-title {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18px;
    color: var(--fg);
}

.archive-meta-date {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--fg-3);
    text-transform: uppercase;
    margin-top: 4px;
}

/* ── Fotoarchief timeline ────────────────────── */

.fotoarchief-timeline {
    margin-top: 64px;
}

.fotoarchief-year {
    margin-bottom: 56px;
}

.fotoarchief-year-heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    font-style: italic;
    color: var(--hg-green);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rule);
}

.fotoarchief-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.archive-cover-card {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--hg-green-800);
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}

.archive-cover-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .1);
}

.archive-cover-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.archive-cover-overlay {
    position: absolute;
    inset: 0;
    background: var(--hg-green-800);
    opacity: .5;
}

.archive-cover-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--wp--preset--spacing--50, 24px);
}

.archive-cover-title {
    font-family: var(--font-body);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.archive-cover-date {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .75);
    margin-top: 4px;
    margin-bottom: 0;
}

/* ── Fotoarchief recent (homepage) ── */
.fotoarchief-recent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

@media (max-width: 900px) {
    .fotoarchief-recent {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .fotoarchief-recent {
        grid-template-columns: 1fr;
    }
}

.fotoarchief-recent .archive-cover-card {
    aspect-ratio: 3 / 4;
}

/* ── Numbers ── */
.numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 800px) {
    .numbers {
        grid-template-columns: repeat(2, 1fr);
    }
}

.number {
    padding: 28px 4px;
    border-top: 2px solid var(--hg-leaf-500);
}

.number b {
    display: block;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(40px, 4.5vw, 64px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
}

.number b em {
    font-style: italic;
    color: var(--hg-leaf-500);
    font-weight: 500;
}

.number span {
    display: block;
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
    margin-top: 14px;
}

/* ── News ── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

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

.news-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.news-thumb {
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
    background: repeating-linear-gradient(45deg,
    color-mix(in oklab, var(--hg-green) 8%, var(--bg-2)) 0 8px,
    color-mix(in oklab, var(--hg-green) 16%, var(--bg-2)) 8px 16px);
    border: 1px solid var(--rule);
}

.news-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--hg-green);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-tag .dt {
    color: var(--fg-3);
}

.news-tag .dt::before {
    content: '\00B7';
    margin: 0 6px;
    color: var(--fg-4);
}

.news-item h4 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.018em;
    margin: 0;
    color: var(--fg);
}

.news-item p {
    margin: 0;
    font-size: 14.5px;
    color: var(--fg-2);
    line-height: 1.5;
}

/* ── Newsletter ── */
.newsletter {
    border-radius: 22px;
    border: 1px solid var(--rule);
    background: var(--bg-2);
    padding: clamp(36px, 5vw, 64px);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}

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

.newsletter h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 12px 0 12px;
    color: var(--fg);
}

.newsletter h2 em {
    font-style: italic;
    color: var(--hg-green);
}

.newsletter p {
    margin: 0;
    color: var(--fg-2);
    max-width: 42ch;
}

.newsletter-form {
    display: flex;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 999px;
    padding: 6px;
    align-items: center;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 15px;
    padding: 10px 14px;
    outline: none;
    color: var(--fg);
}

.newsletter-form button {
    border: 0;
    background: var(--hg-green);
    color: #fff;
    font: inherit;
    font-weight: 500;
    font-size: 14.5px;
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: background .15s;
}

.newsletter-form button:hover {
    background: var(--hg-green-700);
}

.newsletter-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--fg-3);
    margin-top: 14px;
}

/* ── Footer ── */
.site-footer {
    background: #fff;
    border-top: 1px solid var(--rule);
    padding: 64px 0 28px;
    margin-top: auto;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 900px) {
    .site-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

.site-footer h5 {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--fg-4);
    margin: 0 0 18px;
}

.site-footer-brand {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--hg-green);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.site-footer-brand img {
    width: 36px;
    height: 36px;
}

.site-footer-brand em {
    font-style: italic;
    color: var(--hg-red);
}

.site-footer p {
    margin: 0 0 8px;
    font-size: 14px;
    color: var(--fg-2);
    line-height: 1.5;
}

.site-footer a {
    color: var(--fg-2);
    text-decoration: none;
    transition: color .15s;
}

.site-footer a:hover {
    color: var(--hg-green);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--rule);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--fg-3);
}

.footer-social a:hover {
    border-color: var(--hg-green);
    color: var(--hg-green);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.site-footer-bottom {
    border-top: 1px solid var(--rule);
    margin-top: 56px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .08em;
    color: var(--fg-4);
}

/* ── Rabbit ── */
.hare {
    position: absolute;
    left: clamp(8px, 3vw, 36px);
    bottom: 24px;
    width: clamp(80px, 9vw, 130px);
    color: var(--hg-green);
    opacity: .55;
    pointer-events: auto;
    cursor: pointer;
    transition: opacity .25s, transform .25s;
    z-index: 2;
}

.hare:hover {
    opacity: 1;
    transform: translateY(-4px);
}

.hare svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

.hare .ear-left,
.hare .ear-right {
    transform-origin: 50% 100%;
    transition: transform .35s cubic-bezier(.4, 1.6, .6, 1);
}

.hare:hover .ear-left {
    transform: rotate(-14deg);
}

.hare:hover .ear-right {
    transform: rotate(10deg);
}

.hare .eye {
    transform-origin: center;
    animation: hegge-blink 4.5s infinite;
}

@keyframes hegge-blink {
    0%, 92%, 100% {
        transform: scaleY(1);
    }
    94%, 98% {
        transform: scaleY(.1);
    }
}

.hare-tip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: var(--fg);
    color: #fff;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 999px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s, transform .2s;
}

.hare-tip::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 8px;
    height: 8px;
    background: var(--fg);
    transform: translateX(-50%) rotate(45deg);
}

.hare:hover .hare-tip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 900px) {
    .hare {
        left: auto;
        right: 16px;
        bottom: 16px;
    }
}

/* ── Photo gallery block ─────────────────────── */

.wp-block-hegge-photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.wp-block-hegge-photo-gallery a {
    display: block;
    cursor: pointer;
}

.wp-block-hegge-photo-gallery img {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 4px;
}

@media (max-width: 600px) {
    .wp-block-hegge-photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Ledenlijst block ────────────────────────── */

.hegge-ledenlijst__lijst {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hegge-ledenlijst.is-lijst .hegge-ledenlijst__lid {
    padding: 10px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 16px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.hegge-ledenlijst.is-lijst .hegge-ledenlijst__lid:last-child {
    border-bottom: none;
}

.hegge-ledenlijst__lijst.has-2-columns {
    columns: 2;
    column-gap: 32px;
}

.hegge-ledenlijst__lijst.has-2-columns .hegge-ledenlijst__lid {
    break-inside: avoid;
}

@media (max-width: 600px) {
    .hegge-ledenlijst__lijst.has-2-columns {
        columns: 1;
    }
}

.hegge-ledenlijst__functie {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .08em;
    color: var(--fg-3);
}

.hegge-ledenlijst.is-lijst .hegge-ledenlijst__functie {
    margin-left: auto;
}

/* Kaarten */
.hegge-ledenlijst__kaarten {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .hegge-ledenlijst__kaarten {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .hegge-ledenlijst__kaarten {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hegge-ledenlijst__kaart {
    text-align: center;
}

.hegge-ledenlijst__kaart .hegge-ledenlijst__foto {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--bg-2);
}

.hegge-ledenlijst__kaart .hegge-ledenlijst__foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hegge-ledenlijst__kaart .hegge-ledenlijst__foto--placeholder {
    display: grid;
    place-items: center;
}

.hegge-ledenlijst__kaart .hegge-ledenlijst__foto--placeholder .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: var(--fg-4);
}

.hegge-ledenlijst__kaart .hegge-ledenlijst__naam {
    display: block;
    font-weight: 500;
    font-size: 15px;
}

.hegge-ledenlijst__kaart .hegge-ledenlijst__functie {
    display: block;
    margin-top: 2px;
}

/* Bestuur uitgelicht */
.hegge-ledenlijst__uitgelicht {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .hegge-ledenlijst__uitgelicht {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .hegge-ledenlijst__uitgelicht {
        grid-template-columns: 1fr;
    }
}

.hegge-ledenlijst__lid--uitgelicht {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-2);
    border-radius: 14px;
}

.hegge-ledenlijst__lid--uitgelicht .hegge-ledenlijst__foto {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
}

.hegge-ledenlijst__lid--uitgelicht .hegge-ledenlijst__foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hegge-ledenlijst__lid--uitgelicht .hegge-ledenlijst__foto--placeholder {
    display: grid;
    place-items: center;
}

.hegge-ledenlijst__lid--uitgelicht .hegge-ledenlijst__foto--placeholder .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: var(--fg-4);
}

.hegge-ledenlijst__lid--uitgelicht .hegge-ledenlijst__info {
    display: flex;
    flex-direction: column;
}

.hegge-ledenlijst__lid--uitgelicht .hegge-ledenlijst__naam {
    font-weight: 500;
    font-size: 16px;
}

.hegge-ledenlijst__lid--uitgelicht .hegge-ledenlijst__functie {
    display: block;
    margin-top: 2px;
}

.is-bestuur-uitgelicht .hegge-ledenlijst__lijst .hegge-ledenlijst__lid {
    padding: 8px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 15px;
}

.is-bestuur-uitgelicht .hegge-ledenlijst__lijst .hegge-ledenlijst__lid:last-child {
    border-bottom: none;
}
