/* ============================================================
   Kystperler – custom magazine theme
   Brand green: #115A46
   ============================================================ */

:root {
    --accent: var(--ghost-accent-color, #115A46);
    --green: #115A46;
    --green-700: #0d4636;
    --green-900: #08211a;
    --bg: #fbfaf6;
    --cream: #f6f1e7;
    --cream-200: #efe8d8;
    --paper: #ffffff;
    --ink: #1d2723;
    --muted: #5d6b64;
    --line: #e7e0d1;
    --radius: 10px;
    --radius-sm: 8px;
    --container: 1160px;
    --container-narrow: 720px;
    --shadow: 0 1px 2px rgba(8, 33, 26, .05), 0 10px 24px rgba(8, 33, 26, .07);
    --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--gh-font-body, var(--font-sans));
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--gh-font-heading, var(--font-serif)); color: var(--green-900); line-height: 1.18; font-weight: 600; margin: 0 0 .5em; }

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 14px 26px;
    border-radius: 6px;
    border: 0;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, opacity .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--green-700); color: #fff; }
.btn--light { background: #fff; color: var(--green-900); }
.btn--light:hover { background: var(--cream-200); }

/* ---------- Site header ---------- */
.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
}
.site-brand { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.site-brand:hover { text-decoration: none; }
.site-brand__logo { max-height: 46px; width: auto; }
.site-brand__name {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 30px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green);
}
.site-brand__name--sm { font-size: 22px; }
.site-brand__tagline {
    font-family: var(--font-sans);
    font-size: 10.5px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: .85;
}

.site-nav { margin-left: auto; }
.site-nav__menu { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.site-nav__item a {
    color: var(--green-900);
    font-size: 15px;
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: border-color .15s ease;
}
.site-nav__item a:hover { text-decoration: none; border-color: var(--accent); }

/* ---------- Destination dropdown ---------- */
.site-nav__item--dropdown { position: relative; }
.site-nav__droplink {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 0;
    cursor: pointer;
    font-family: var(--font-sans);
    color: var(--green-900);
    font-size: 15px;
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: border-color .15s ease;
}
.site-nav__droplink:hover { border-color: var(--accent); }
.site-nav__chevron { transition: transform .15s ease; }
.site-nav__item--dropdown.is-open .site-nav__chevron { transform: rotate(180deg); }
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 16px;
    display: none;
    z-index: 60;
}
.site-nav__item--dropdown.is-open .nav-dropdown { display: block; }
.nav-dropdown__list {
    list-style: none;
    margin: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 44px rgba(8, 33, 26, .16);
    padding: 20px 26px;
    columns: 2;
    column-gap: 34px;
    width: 480px;
    max-height: min(70vh, 560px);
    overflow-y: auto;
}
.nav-dropdown__list li { break-inside: avoid; }
.nav-dropdown__list a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 7px 0;
    color: var(--ink);
    font-size: 14.5px;
}
.nav-dropdown__list a:hover { color: var(--accent); text-decoration: none; }
.nav-dropdown__count {
    color: var(--muted);
    font-size: 12px;
    font-variant-numeric: tabular-nums;
}
.nav-dropdown__allitem { column-span: all; margin-top: 10px; padding-top: 12px; border-top: 1px solid var(--line); }
.nav-dropdown__list .nav-dropdown__all { font-weight: 600; font-size: 14px; color: var(--accent); justify-content: flex-start; gap: 6px; }
.nav-dropdown__list .nav-dropdown__all:hover { color: var(--green-700); }

.site-header__actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border: 0; background: transparent;
    color: var(--green-900);
    cursor: pointer;
    border-radius: 8px;
}
.icon-btn:hover { background: var(--cream-200); }
.site-nav__toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background-color: var(--cream);
    background-size: cover;
    background-position: center;
    color: var(--ink);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(251, 250, 246, .96) 0%, rgba(251, 250, 246, .82) 30%, rgba(251, 250, 246, .38) 52%, rgba(251, 250, 246, 0) 68%);
}
.hero__inner { position: relative; padding: 104px 24px 116px; max-width: var(--container); }
.hero__title {
    color: var(--green);
    font-size: clamp(2.4rem, 5vw, 4rem);
    max-width: 14ch;
    margin: 0 0 .4em;
}
.hero__subtitle {
    font-size: 1.12rem;
    line-height: 1.65;
    max-width: 38ch;
    color: #2e3b35;
    margin: 0 0 2.2rem;
}
.hero__cta { box-shadow: 0 8px 22px rgba(8, 33, 26, .18); }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section--featured { padding-top: 72px; }
.section--categories { background: var(--cream-200); }
.section__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 26px;
}
.section__title {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green);
    margin: 0 0 26px;
}
.section__head .section__title { margin: 0; }
.section__title--center { text-align: center; margin-bottom: 40px; }
.section__link { font-weight: 600; font-size: 14px; white-space: nowrap; }

/* ---------- Post grid + cards ---------- */
.post-grid { display: grid; gap: 30px; }
.post-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(8, 33, 26, .14); }
.card__media { position: relative; display: block; aspect-ratio: 3 / 2; overflow: hidden; }
.card__image { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card__image--empty { background: var(--cream-200); }
.card:hover .card__image { transform: scale(1.04); }
.card__badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 6px;
}
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card__meta { display: flex; align-items: baseline; gap: 7px; font-size: 12.5px; color: var(--muted); letter-spacing: .03em; text-transform: uppercase; }
.card__date { font-size: inherit; color: inherit; }
.card__title { font-size: 1.28rem; margin: 8px 0 10px; }
.card__title a { color: var(--green-900); }
.card__title a:hover { color: var(--accent); text-decoration: none; }
.card__excerpt {
    color: var(--muted);
    font-size: 15px;
    margin: 0 0 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card__more { font-weight: 600; font-size: 14px; margin-top: auto; }

/* ---------- Category tiles ---------- */
.tile-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}
.tile { display: flex; flex-direction: column; align-items: center; text-align: center; }
.tile:hover { text-decoration: none; }
.tile__image {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-top: 133.333%; /* fixed 3:4 ratio on every tile */
    border-radius: var(--radius-sm);
    background: var(--green-700) center / cover no-repeat;
    box-shadow: var(--shadow);
    transition: transform .18s ease;
}
.tile:hover .tile__image { transform: translateY(-4px); }
.tile__image--empty { background: linear-gradient(135deg, var(--green) 0%, var(--green-900) 100%); }
.tile__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    color: rgba(255, 255, 255, .92);
    font-size: 1rem;
    text-align: center;
    padding: 0 10px;
}
.tile__name {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 13.5px;
    color: var(--ink);
    margin-top: 12px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tile__desc { font-size: 12.5px; color: var(--muted); margin-top: 3px; line-height: 1.45; }

/* ---------- USP features row ---------- */
.features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 38px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}
.feature { display: flex; gap: 14px; align-items: flex-start; }
.feature__icon { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.feature__title { font-family: var(--font-sans); font-size: 14.5px; font-weight: 700; color: var(--ink); margin: 0 0 4px; }
.feature__text { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.5; }

/* ---------- Explore: categories (main) + Om/newsletter (sidebar) ---------- */
.explore-row {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(290px, 1fr);
    gap: 36px;
    align-items: start;
}
.explore-main .tile-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.explore-main .tile__desc { font-size: 12px; }
.explore-aside { display: flex; flex-direction: column; gap: 22px; }
.explore-aside .newsletter__form { flex-direction: column; }
.explore-aside .newsletter__btn { width: 100%; }

.about-box {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.about-box__image { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 0; }
.about-box__body { padding: 22px 24px 24px; }
.about-box__title {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green);
    margin: 0 0 10px;
}
.about-box__text { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0 0 14px; }
.about-box__link { font-weight: 600; font-size: 14px; }

.newsletter {
    background: var(--cream-200);
    color: var(--ink);
    border-radius: var(--radius);
    padding: 26px 24px 28px;
}
.newsletter__title {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green);
    margin: 0 0 10px;
}
.newsletter__text { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0 0 16px; }
.newsletter__form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter__input {
    flex: 1;
    min-width: 0;
    padding: 13px 16px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 6px;
    font-size: 15px;
    font-family: var(--font-sans);
}
.newsletter__input:focus { outline: 2px solid var(--green); outline-offset: -1px; }
.newsletter__btn { flex-shrink: 0; }
.newsletter__msg { font-size: 13px; margin: 10px 0 0; min-height: 0; display: none; }
.newsletter__msg--ok { color: var(--green-700); }
.newsletter__form.success ~ [data-members-success] { display: block; }
.newsletter__form.error ~ [data-members-error] { display: block; color: #a3352b; }
.newsletter__form.loading .newsletter__btn { opacity: .6; pointer-events: none; }

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 33, 26, .92);
    padding: 4vw;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity .2s ease;
}
.lightbox.is-visible { opacity: 1; }
.lightbox img { max-width: 100%; max-height: 92vh; width: auto; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }

/* ---------- Archive header ---------- */
.archive-header {
    background: var(--green-900);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.archive-header__eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: 12px; opacity: .85; }
.archive-header__title { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin: 10px 0 .3em; }
.archive-header__desc { max-width: 52ch; margin: 0 auto; color: rgba(255, 255, 255, .9); }
.archive-header--author { background: var(--green); }
.archive-header__avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 3px solid rgba(255,255,255,.5); }

/* ---------- Single post ---------- */
.post { padding-bottom: 72px; }
.post__header { padding: 60px 0 32px; text-align: center; }
.post__kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 14px;
}
.post__title { font-size: clamp(2rem, 4.5vw, 3.2rem); margin: 0 0 .4em; }
.post__lead { font-size: 1.2rem; color: var(--muted); max-width: 60ch; margin: 0 auto 1em; }
.post__meta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; font-size: 14px; color: var(--muted); }
.post__author { font-weight: 600; color: var(--green-900); }

.post__feature { margin: 0 auto 44px; max-width: 1200px; }
.post__feature img { width: 100%; border-radius: var(--radius); }
.post__feature figcaption { text-align: center; font-size: 13.5px; color: var(--muted); margin-top: 10px; }

.post__footer { margin-top: 40px; }
.post__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill {
    background: var(--cream-200);
    color: var(--green-900);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 999px;
}
.tag-pill:hover { background: var(--accent); color: #fff; text-decoration: none; }

/* ---------- Post content (Koenig) ---------- */
.gh-content { font-size: 1.12rem; line-height: 1.75; color: #2b3631; }
.gh-content > * { margin-top: 0; margin-bottom: 1.5em; }
.gh-content h2 { font-size: 1.8rem; margin-top: 1.8em; }
.gh-content h3 { font-size: 1.4rem; margin-top: 1.6em; }
.gh-content a { text-decoration: underline; }
.gh-content blockquote {
    margin: 1.8em 0;
    padding: 4px 0 4px 24px;
    border-left: 3px solid var(--accent);
    font-style: italic;
    color: var(--green-900);
    font-size: 1.25rem;
}
.gh-content img { border-radius: var(--radius); }
.gh-content figure { margin: 2em 0; }
.gh-content figcaption { text-align: center; font-size: 13.5px; color: var(--muted); margin-top: 10px; }

/* Koenig image widths – make her images BIG */
.gh-content :is(figure, img):not(.kg-width-wide):not(.kg-width-full) { max-width: 100%; }
.kg-width-wide { position: relative; width: 85vw; min-width: 100%; margin-left: calc(50% - 42.5vw); transform: none; }
.kg-width-full { position: relative; width: 100vw; margin-left: calc(50% - 50vw); border-radius: 0; }
.kg-width-full img { border-radius: 0; width: 100%; }

/* Koenig galleries */
.kg-gallery-container { display: flex; flex-direction: column; max-width: 1040px; width: 85vw; min-width: 100%; margin-left: calc(50% - 42.5vw); }
.kg-gallery-row { display: flex; flex-direction: row; justify-content: center; gap: 12px; margin-bottom: 12px; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.kg-gallery-card + .kg-gallery-card, .kg-image-card + .kg-image-card { margin-top: 0; }

/* Koenig callout / bookmark / button basics */
.kg-card-begin, .kg-card-end { margin: 0; }
.kg-callout-card { display: flex; padding: 18px 22px; border-radius: var(--radius); gap: 12px; }
.kg-bookmark-card a.kg-bookmark-container { display: flex; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; }
.kg-button-card a { display: inline-block; background: var(--accent); color: #fff; padding: 12px 26px; border-radius: 8px; font-weight: 600; }

/* ---------- Prev/next post navigation ---------- */
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}
.post-nav__link { display: flex; flex-direction: column; gap: 5px; }
.post-nav__link:hover { text-decoration: none; }
.post-nav__link--next { text-align: right; grid-column: 2; }
.post-nav__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}
.post-nav__title { font-family: var(--font-serif); font-weight: 600; font-size: 1.05rem; color: var(--green-900); line-height: 1.3; }
.post-nav__link:hover .post-nav__title { color: var(--accent); }

/* ---------- Newsletter band under posts ---------- */
.section--subscribe { padding-top: 0; }
.section--subscribe .newsletter { padding: 34px 36px; }
.section--subscribe .newsletter__form { flex-wrap: nowrap; }

/* ---------- Destination map (/kart) ---------- */
.map-hero { padding: 48px 0 28px; }
.map-hero__title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 0 0 .3em; }
.map-hero__lead { color: var(--muted); max-width: 60ch; margin: 0; font-size: 1.08rem; }
.kystkart {
    height: 72vh;
    min-height: 460px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    z-index: 1;
}
.kystkart .leaflet-popup-content-wrapper { padding: 0; overflow: hidden; border-radius: 10px; }
.kystkart .leaflet-popup-content { margin: 0; font-family: var(--font-sans); font-size: 14px; line-height: 1.45; width: 220px; }
.map-pop { display: block; color: var(--ink); }
.map-pop:hover { text-decoration: none; }
.map-pop__img { width: 220px; height: 130px; object-fit: cover; display: block; }
.map-pop__body { display: flex; flex-direction: column; gap: 3px; padding: 11px 13px 13px; }
.map-pop__title { font-family: var(--font-serif); font-weight: 600; font-size: 15px; line-height: 1.3; color: var(--green-900); }
.map-pop:hover .map-pop__title { color: var(--accent); }
.map-pop__cat { color: var(--muted); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }

/* ---------- Pagination ---------- */
.pagination { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 48px; }
.pagination__link { font-weight: 600; font-size: 14px; color: var(--green-900); }
.pagination__link--disabled { opacity: .35; }
.pagination__page { color: var(--muted); font-size: 14px; }

/* ---------- Error ---------- */
.error-page { text-align: center; padding: 120px 0; }
.error-page__code { font-size: 5rem; font-family: var(--font-serif); color: var(--accent); margin: 0; }
.error-page__title { margin: 0 0 24px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: rgba(255, 255, 255, .85); padding: 26px 0; margin-top: 0; }
.site-footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.site-footer__logo { max-height: 32px; }
.site-footer .site-brand__name { color: #fff; }
.site-footer__copy { font-size: 13.5px; margin: 0; opacity: .8; }
.site-footer__nav .site-nav__menu { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; margin: 0; padding: 0; }
.site-footer__nav .site-nav__item a { color: rgba(255, 255, 255, .85); font-size: 14px; border: 0; }
.site-footer__nav .site-nav__item a:hover { color: #fff; }
.site-footer__social { display: flex; gap: 12px; }
.site-footer__social a { color: rgba(255, 255, 255, .85); display: inline-flex; }
.site-footer__social a:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .post-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tile-grid, .explore-main .tile-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .explore-row { grid-template-columns: 1fr; }
    .features { gap: 20px; }
}

@media (max-width: 680px) {
    body { font-size: 16px; }
    .site-nav { display: none; }
    .site-nav__toggle { display: inline-flex; }
    .site-nav.is-open {
        display: block;
        position: absolute;
        top: 84px; left: 0; right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--line);
        padding: 12px 24px 20px;
        margin: 0;
    }
    .site-nav.is-open .site-nav__menu { flex-direction: column; gap: 4px; }
    .site-nav.is-open .site-nav__item a { display: block; padding: 10px 0; border-bottom: 1px solid var(--line); }
    .site-nav.is-open .site-nav__droplink { width: 100%; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
    .site-nav.is-open .nav-dropdown { position: static; transform: none; padding: 0; }
    .site-nav.is-open .nav-dropdown__list { columns: 1; width: 100%; border: 0; box-shadow: none; border-radius: 0; padding: 4px 0 4px 14px; max-height: none; background: transparent; }
    .site-nav.is-open .nav-dropdown__list a { border: 0; padding: 8px 0; }
    .post-grid--3 { grid-template-columns: 1fr; }
    .tile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .section__head { flex-direction: column; align-items: flex-start; gap: 6px; }
    .hero::before { background: rgba(251, 250, 246, .84); }
    .hero__inner { padding: 64px 24px 72px; }
    .features { grid-template-columns: 1fr; }
    .newsletter__form { flex-direction: column; }
    .newsletter__btn { width: 100%; }
    .site-footer__inner { flex-direction: column; text-align: center; }
}
