:root {
    --cream: #f5f0e8;
    --cream-deep: #e8e0d4;
    --cream-warm: #faf7f2;
    --forest: #2d4a3e;
    --forest-light: #3d6354;
    --forest-dark: #1f332b;
    --gold: #b8956a;
    --gold-soft: #d4bc98;
    --gold-deep: #9a784f;
    --ink: #1a2420;
    --ink-soft: #4a5c55;
    --line: rgba(45, 74, 62, 0.14);
    --line-strong: rgba(45, 74, 62, 0.24);
    --shadow: 0 16px 48px rgba(26, 36, 32, 0.08);
    --shadow-lg: 0 24px 64px rgba(26, 36, 32, 0.12);
    --shadow-soft: 0 8px 24px rgba(26, 36, 32, 0.06);
    --radius: 4px;
    --radius-lg: 8px;
    --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-body: "Lora", Georgia, serif;
    --max: 1160px;
    --ease: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.78;
    color: var(--ink);
    background: var(--cream);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(184, 149, 106, 0.08), transparent),
        linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    max-width: 100%;
}

#main-content {
    overflow-x: clip;
    max-width: 100%;
}

img, video, iframe, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--forest);
    text-underline-offset: 0.2em;
    transition: color var(--ease);
}
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.18;
    margin: 0 0 0.85rem;
    color: var(--forest-dark);
}

h1 { font-size: clamp(2.35rem, 5vw, 3.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.35rem); }
h3 { font-size: 1.45rem; }

p { margin: 0 0 1.15rem; }

ul, ol { margin: 0 0 1.15rem; padding-left: 1.4rem; }

address { font-style: normal; }

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--forest-dark);
    color: var(--cream);
    padding: 0.75rem 1rem;
    z-index: 9999;
    font-family: var(--font-body);
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
    width: min(var(--max), calc(100% - 2.5rem));
    margin: 0 auto;
    max-width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.78rem 1.4rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--ease), color var(--ease), border-color var(--ease);
}

.btn-primary {
    background: var(--forest);
    color: var(--cream-warm);
    border-color: var(--forest);
}
.btn-primary:hover {
    background: var(--forest-dark);
    color: var(--cream-warm);
}

.btn-secondary {
    background: transparent;
    color: var(--forest);
    border-color: var(--line);
}
.btn-secondary:hover {
    border-color: var(--forest);
    color: var(--forest-dark);
}

.btn-text {
    background: none;
    border: none;
    padding: 0;
    color: var(--forest);
    font-weight: 500;
    text-decoration: underline;
    font-family: var(--font-body);
    font-size: inherit;
    cursor: pointer;
}
.btn-text:hover { color: var(--gold); }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0.95rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.logo-mark {
    width: 2.6rem;
    height: 2.6rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--forest);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cream-warm);
    background: linear-gradient(145deg, var(--forest-light), var(--forest-dark));
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--forest-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.primary-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.15rem 1.1rem;
}

.nav-link {
    text-decoration: none;
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--ease), border-color var(--ease);
}
.nav-link:hover,
.nav-link[aria-current="page"] {
    color: var(--forest-dark);
    border-bottom-color: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--cream-warm);
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 1.25rem;
    height: 2px;
    margin: 0 auto;
    background: var(--forest);
    transition: transform var(--ease), opacity var(--ease);
}

@media (max-width: 900px) {
    .nav-toggle { display: flex; }

    .primary-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--cream-warm);
        border-bottom: 1px solid var(--line);
        padding: 0.5rem 1.25rem 1rem;
        box-shadow: var(--shadow);
    }
    .primary-nav.is-open { display: flex; }

    .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--line);
    }
    .nav-link:last-child { border-bottom: none; }

    .site-header .container { position: relative; }
}

/* Hero & page intro */
.hero,
.page-head {
    padding: 4rem 0 2.75rem;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 65%);
    position: relative;
}

.hero::after,
.page-head::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: min(8rem, 30%);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.kicker {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 0.75rem;
}

.lede,
.subtitle {
    font-size: 1.2rem;
    color: var(--ink-soft);
    max-width: 42rem;
}

.hero-image,
.page-hero-image,
.content-figure img {
    width: 100%;
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-image,
.page-hero-image {
    margin-top: 2.25rem;
    position: relative;
}

.hero-image img,
.page-hero-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.hero-image:hover img,
.page-hero-image:hover img {
    transform: scale(1.02);
}

@media (hover: none) {
    .hero-image:hover img,
    .page-hero-image:hover img,
    .note-card:hover img,
    .note-card:hover,
    .entry-with-image:hover img {
        transform: none;
    }
}

.hero-image figcaption,
.page-hero-image figcaption,
.content-figure figcaption {
    margin-top: 0.75rem;
    font-size: 0.88rem;
    font-style: italic;
    color: var(--ink-soft);
    text-align: center;
    letter-spacing: 0.02em;
}

.content-figure {
    margin: 0;
}

.content-figure--inset img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.page-head { padding-bottom: 2rem; }

.page-content {
    padding: 2.75rem 0 3.5rem;
}

.page-content .prose {
    max-width: 42rem;
}

.page-content .prose-wide {
    max-width: 48rem;
}

/* Magazine grid */
.note-grid {
    padding: 3rem 0;
}

.note-grid .grid-title {
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--line);
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.note-card {
    display: flex;
    flex-direction: column;
    background: var(--cream-warm);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease);
}
.note-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--line-strong);
    transform: translateY(-3px);
}

.note-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.note-card:hover img {
    transform: scale(1.04);
}

.note-card-body {
    padding: 1.35rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.note-card .meta {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 0.5rem;
}

.note-card h2 {
    font-size: 1.55rem;
    margin-bottom: 0.65rem;
}
.note-card h2 a {
    text-decoration: none;
    color: inherit;
}
.note-card h2 a:hover { color: var(--gold); }

.note-card p:last-of-type { flex: 1; }

/* Homepage full articles */
.latest-writing {
    padding: 3rem 0;
    border-bottom: 1px solid var(--line);
}

.article-feed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.home-article {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--line);
}

.home-article:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.home-article-media {
    margin: 0;
}

.home-article-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.home-article-body .meta {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 0.5rem;
}

.home-article-body h3 {
    font-size: clamp(1.45rem, 2.5vw, 1.85rem);
    margin: 0 0 0.85rem;
}

.home-article-body h3 a {
    text-decoration: none;
    color: inherit;
}

.home-article-body h3 a:hover {
    color: var(--gold);
}

.home-article-body blockquote {
    margin: 1.25rem 0;
    padding-left: 1.25rem;
    border-left: 3px solid var(--gold);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--forest);
}

.home-article-body .btn-text {
    display: inline-block;
    margin-top: 0.5rem;
}

.reflections--compact {
    padding-top: 2.5rem;
}

@media (max-width: 720px) {
    .magazine-grid { grid-template-columns: 1fr; }

    .home-article {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* Philosophy & reflections */
.philosophy-band {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 50%, var(--forest-light) 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.philosophy-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(184, 149, 106, 0.12), transparent 50%);
    pointer-events: none;
}

.philosophy-band h2 { color: var(--cream-warm); }
.philosophy-band p { color: rgba(245, 240, 232, 0.92); max-width: 44rem; }
.philosophy-band a { color: var(--gold-soft); }

.philosophy-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.philosophy-inner img {
    border: 1px solid rgba(245, 240, 232, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

@media (max-width: 800px) {
    .philosophy-inner { grid-template-columns: 1fr; }
}

.reflections {
    padding: 3rem 0 4rem;
}

.reflection-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line);
}

.reflection-list li {
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 7rem 1fr;
    gap: 1.25rem;
    align-items: baseline;
}

.reflection-list .date {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.04em;
}

.reflection-list h3 {
    font-size: 1.2rem;
    margin: 0 0 0.35rem;
}
.reflection-list h3 a { text-decoration: none; color: var(--forest-dark); }
.reflection-list h3 a:hover { color: var(--gold); }

@media (max-width: 600px) {
    .reflection-list li { grid-template-columns: 1fr; gap: 0.35rem; }
}

/* Entry cards (journal, etc.) */
.entry-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.entry-card {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--line);
}

.entry-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.entry-card h2 {
    font-size: clamp(1.45rem, 2.5vw, 1.85rem);
    color: var(--forest-dark);
}

.entry-card .meta {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 0.5rem;
}

.entry-card blockquote {
    margin: 1.25rem 0;
    padding-left: 1.25rem;
    border-left: 3px solid var(--gold);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--forest);
}

.entry-with-image {
    display: grid;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.entry-with-image figure {
    margin: 0;
}

.entry-with-image img {
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: box-shadow var(--ease), transform var(--ease);
}

.entry-with-image:hover img {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.letter-with-image {
    display: grid;
    grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
    max-width: 52rem;
}

.letter-with-image figure {
    margin: 0;
}

.letter-with-image img {
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.section-foot {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
}

/* Single post page */
.post-single .kicker a {
    text-decoration: none;
    color: inherit;
}

.post-single .kicker a:hover {
    color: var(--forest-dark);
}

.post-meta {
    margin-bottom: 0;
}

.post-body blockquote {
    margin: 1.5rem 0;
    padding-left: 1.25rem;
    border-left: 3px solid var(--gold);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--forest);
}

.post-nav {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.entry-with-image h2 a,
.home-article-body h3 a {
    text-decoration: none;
    color: inherit;
}

.entry-with-image h2 a:hover,
.home-article-body h3 a:hover {
    color: var(--gold);
}

.entry-with-image figure a {
    display: block;
}

@media (max-width: 700px) {
    .entry-with-image,
    .letter-with-image { grid-template-columns: 1fr; }
}

/* Letter style */
.letter-block {
    max-width: 52rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--line);
}

.letter-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.letter-salutation {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.letter-sign {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--ink-soft);
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    padding: 2.5rem 0;
    align-items: start;
}

.contact-panel h2 { font-size: 1.5rem; }

.map-section {
    padding: 0 0 3.5rem;
}

.map-section h2 { font-size: 1.5rem; margin-bottom: 1rem; }

.map-wrapper {
    border: 1px solid var(--line-strong);
    background: var(--cream-deep);
    min-height: 360px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-frame {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

@media (max-width: 800px) {
    .contact-layout { grid-template-columns: 1fr; }
}

/* Forms */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }

.form-field label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: var(--forest-dark);
}

.form-field .req { color: var(--gold); }

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.72rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--cream-warm);
    color: var(--ink);
    transition: border-color var(--ease);
}
.form-field input:focus,
.form-field textarea:focus {
    outline: 2px solid var(--forest);
    outline-offset: 1px;
    border-color: var(--forest);
}

.form-field textarea { resize: vertical; min-height: 140px; }

.honeypot {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.form-alert {
    padding: 1rem 1.15rem;
    background: #fce8e6;
    border: 1px solid #e8b4b0;
    border-radius: var(--radius);
    color: #5c2320;
}
.form-alert ul { margin: 0; padding-left: 1.2rem; }

.form-success {
    padding: 1.5rem;
    background: var(--cream-warm);
    border: 1px solid var(--line);
    border-left: 4px solid var(--forest);
}
.form-success h2 { font-size: 1.5rem; }

/* Legal */
.legal-content {
    padding: 2.5rem 0 4rem;
    max-width: 46rem;
}

.legal-content h2 {
    font-size: 1.55rem;
    margin-top: 2.25rem;
}
.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    font-family: var(--font-display);
    color: var(--forest);
}

.legal-content ul { margin-bottom: 1.15rem; }

/* 404 */
.error-page {
    padding: 5rem 0 6rem;
    text-align: center;
    max-width: 32rem;
}

.error-page .kicker { font-size: 1.1rem; }

.error-page .btn { margin: 0.35rem; }

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--forest-dark);
    color: var(--cream);
    padding: 1.25rem;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
}

.cookie-inner {
    width: min(var(--max), calc(100% - 2rem));
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 2rem;
}

.cookie-inner h2 {
    font-size: 1.15rem;
    color: var(--cream-warm);
    margin: 0;
    width: 100%;
}

.cookie-inner p {
    flex: 1;
    min-width: 0;
    margin: 0;
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.9);
}

.cookie-inner a { color: var(--gold-soft); }

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.cookie-banner .btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--forest-dark);
}
.cookie-banner .btn-primary:hover {
    background: var(--gold-soft);
    color: var(--forest-dark);
}

.cookie-banner .btn-secondary {
    color: var(--cream);
    border-color: rgba(245, 240, 232, 0.35);
}
.cookie-banner .btn-secondary:hover {
    border-color: var(--cream);
    color: var(--cream-warm);
}

/* Footer */
.site-footer {
    background: var(--forest-dark);
    color: rgba(245, 240, 232, 0.88);
    padding: 3rem 0 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
}

.footer-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--cream-warm);
    margin: 0 0 0.5rem;
}

.footer-tagline {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.75);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-soft);
    margin: 0 0 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-footer a { color: var(--cream); text-decoration: none; }
.site-footer a:hover { color: var(--gold-soft); }

.site-footer address p {
    margin: 0 0 0.45rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-legal li { margin-bottom: 0.45rem; }

.footer-bottom {
    border-top: 1px solid rgba(245, 240, 232, 0.12);
    padding: 1.15rem 0;
    font-size: 0.88rem;
    color: rgba(245, 240, 232, 0.6);
}

@media (max-width: 860px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--max), calc(100% - 1.25rem));
    }

    .hero,
    .page-head {
        padding: 2.5rem 0 2rem;
    }

    .kicker {
        letter-spacing: 0.08em;
        font-size: 0.85rem;
    }

    h1 {
        font-size: clamp(1.85rem, 8vw, 2.35rem);
        overflow-wrap: anywhere;
    }

    .logo-text {
        font-size: 1.05rem;
        white-space: normal;
    }

    .header-inner {
        gap: 0.75rem;
    }

    .note-card-body,
    .home-article-body,
    .page-content,
    .legal-content {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .cookie-inner {
        width: min(var(--max), calc(100% - 1rem));
    }

    .cookie-banner {
        padding: 1rem;
    }

    .map-frame {
        height: 280px;
    }

    .reflection-list li {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }
}
