:root {
    --color-bg: #f4f1ea;
    --color-bg-alt: #e8e2d6;
    --color-surface: #ffffff;
    --color-primary: #145252;
    --color-primary-dark: #0c3838;
    --color-primary-light: #1f7373;
    --color-accent: #b8956a;
    --color-accent-soft: #ede4d4;
    --color-text: #142828;
    --color-text-muted: #3f5555;
    --color-border: #cfc7b8;
    --color-focus: #b8956a;
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "DM Sans", system-ui, sans-serif;
    --shadow-sm: 0 4px 14px rgba(12, 56, 56, 0.07);
    --shadow-md: 0 12px 40px rgba(12, 56, 56, 0.11);
    --shadow-lg: 0 24px 64px rgba(12, 56, 56, 0.14);
    --radius: 14px;
    --radius-lg: 22px;
    --max-width: 1200px;
    --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    max-width: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text);
    background:
        radial-gradient(circle at 0% 0%, rgba(184, 149, 106, 0.08), transparent 42%),
        radial-gradient(circle at 100% 100%, rgba(20, 82, 82, 0.06), transparent 40%),
        var(--color-bg);
    min-height: 100vh;
    overflow-x: clip;
    max-width: 100%;
}

#main-content {
    overflow-x: clip;
    max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }

figure { margin: 0; max-width: 100%; }

a { color: var(--color-primary); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--color-primary-light); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-primary-dark);
}

h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 0; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

ul, ol { margin: 0 0 1rem; padding-left: 1.4rem; }

address { font-style: normal; }

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
}
.skip-link:focus { top: 1rem; outline: 3px solid var(--color-focus); }

.container {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
    max-width: 100%;
}

.narrow { max-width: 640px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn:focus-visible { outline: 3px solid var(--color-focus); outline-offset: 2px; }
.btn-primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn-primary:hover { background: var(--color-primary-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-ghost:hover { background: var(--color-primary); color: #fff; }

.text-link {
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--color-accent);
}
.text-link:hover { border-bottom-color: var(--color-primary); }

.kicker {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin: 0 0 0.75rem;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 52ch;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(246, 243, 237, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    max-width: 100%;
    overflow-x: clip;
}

.header-shell {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}
.brand:hover { color: inherit; }

.brand-mark {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--color-primary-dark), var(--color-primary-light));
    color: var(--color-accent-soft);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 12px;
    letter-spacing: 0.06em;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), var(--shadow-sm);
}

.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--color-primary-dark); }
.brand-tag { font-size: 0.72rem; color: var(--color-text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 220px; }

.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--color-surface);
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-primary);
    margin: 0 auto;
    position: relative;
}
.menu-btn span::before,
.menu-btn span::after {
    content: "";
    position: absolute;
    left: 0;
}
.menu-btn span::before { top: -6px; }
.menu-btn span::after { top: 6px; }

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.15rem 0.5rem;
    align-items: center;
}

.nav-link {
    padding: 0.45rem 0.75rem;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-text-muted);
    border-radius: 999px;
    transition: background 0.15s, color 0.15s;
}
.nav-link:hover,
.nav-link[aria-current="page"] {
    background: var(--color-accent-soft);
    color: var(--color-primary-dark);
}

/* Hero home */
.hero-home {
    position: relative;
    padding: 4rem 0 4.5rem;
    overflow: hidden;
    background: linear-gradient(165deg, #fff 0%, var(--color-bg) 55%, var(--color-accent-soft) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 5% 15%, rgba(184, 149, 106, 0.18), transparent),
        radial-gradient(ellipse 55% 45% at 95% 85%, rgba(20, 82, 82, 0.1), transparent);
    pointer-events: none;
}

.hero-media {
    position: relative;
}
.hero-media::after {
    content: "";
    position: absolute;
    inset: 10px 10px -10px 10px;
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.45;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-width: 0;
}

.hero-inner > * {
    min-width: 0;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 48ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.hero-media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

/* Sections */
.section { padding: 4rem 0; }
.section-alt { background: var(--color-bg-alt); }
.section-head { margin-bottom: 2.5rem; max-width: 680px; }
.section-head.centered { text-align: center; margin-inline: auto; }

/* Pillars */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    min-width: 0;
}

.pillar-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.pillar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pillar-wide { grid-column: 1 / -1; }
.pillar-wide .pillar-thumb-wide img { max-height: 260px; }

.pillar-thumb { margin: 0; line-height: 0; }
.pillar-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.pillar-body { padding: 1.5rem 1.75rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.pillar-body .text-link { margin-top: auto; padding-top: 0.75rem; }

.pillar-icon {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

/* Split feature */
.split-feature {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
    min-width: 0;
}

.split-feature > *,
.highlight-band > *,
.topic-hero-grid > *,
.content-row > *,
.contact-layout > *,
.article-layout > *,
.article-main,
.article-sidebar {
    min-width: 0;
}

.split-media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    width: 100%;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    counter-reset: step;
}
.process-list li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    counter-increment: step;
}
.process-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    font-weight: 700;
}
.process-list strong { display: block; margin-bottom: 0.25rem; color: var(--color-primary-dark); }
.process-list span { color: var(--color-text-muted); font-size: 0.98rem; }

/* Audience grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.audience-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 0;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.audience-img { margin: 0; line-height: 0; }
.audience-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.audience-body { padding: 1.35rem 1.5rem 1.5rem; }
.audience-body h3 { margin-top: 0; font-size: 1.12rem; }

/* Highlight band */
.section-highlight { background: var(--color-primary); color: #fff; }
.section-highlight h2 { color: #fff; }
.highlight-band {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
}
.highlight-copy p { color: rgba(255,255,255,0.88); }
.highlight-copy .btn-primary {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary-dark);
}
.highlight-copy .btn-primary:hover { background: #fff; border-color: #fff; }
.highlight-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.faq-item {
    background: var(--color-surface);
    padding: 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}
.faq-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }

/* Page head */
.page-head {
    padding: 3rem 0 2rem;
    background: linear-gradient(180deg, var(--color-accent-soft), var(--color-bg));
}

/* Topic pages */
.topic-hero { padding: 3rem 0 2rem; background: var(--color-surface); border-bottom: 1px solid var(--color-border); }
.topic-hero-alt { background: var(--color-bg-alt); }
.topic-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
.topic-hero-stack { text-align: center; }
.topic-hero-stack .topic-banner { margin-top: 2rem; }
.topic-hero-stack .topic-banner img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}
.topic-hero figure img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    width: 100%;
}
.topic-body { padding-bottom: 4rem; }
.topic-content { max-width: 100%; }
.topic-content.prose > h2 { margin-top: 2.5rem; }

.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    min-width: 0;
    max-width: 100%;
}
.content-row-reverse .content-row-text { order: 2; }
.content-row-reverse .content-row-media { order: 1; }
.content-row-text h2 { margin-top: 0; }
.content-row-media { margin: 0; line-height: 0; }
.content-row-media img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    max-height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.inline-figure { margin: 2rem 0; }
.inline-figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }

/* Article layout */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    align-items: start;
    padding-bottom: 4rem;
}
.article-hero-img img { border-radius: var(--radius-lg); margin-bottom: 2rem; box-shadow: var(--shadow-md); }
.sidebar-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}
.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { margin-bottom: 0.5rem; }
.sidebar-links a { text-decoration: none; font-weight: 500; }
.cta-inline { margin-top: 2rem; }

.prose h2 { margin-top: 2rem; }
.prose-wide { max-width: 780px; }
.prose,
.prose-wide,
.legal-doc {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.legal-doc .cookie-table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.legal-doc .cookie-table thead,
.legal-doc .cookie-table tbody,
.legal-doc .cookie-table tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    padding: 3rem 0;
    align-items: start;
}

.contact-panel {
    background: var(--color-primary);
    color: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
}
.contact-panel h2 { color: #fff; font-size: 1.25rem; }
.contact-panel a { color: var(--color-accent-soft); }
.contact-note { font-size: 0.92rem; opacity: 0.9; margin-top: 1rem; }

.contact-form {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.field { margin-bottom: 1.25rem; }
.field label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.92rem; }
.field-note { font-weight: 400; color: var(--color-text-muted); }
.field input,
.field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--color-bg);
}
.field input:focus,
.field textarea:focus {
    outline: 2px solid var(--color-primary);
    border-color: var(--color-primary);
    background: #fff;
}

.hp-field { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.form-alert {
    background: #fdecea;
    border: 1px solid #f5c6cb;
    color: #7f1d1d;
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.form-success {
    background: #e8f5f0;
    border: 1px solid #b8dfd0;
    padding: 2rem;
    border-radius: var(--radius-lg);
}
.form-success h2 { color: var(--color-primary); margin-top: 0; }

.map-section { padding-bottom: 4rem; }
.map-note { color: var(--color-text-muted); margin-bottom: 1rem; }
.sidebar-photo { padding: 0; overflow: hidden; }
.sidebar-photo img { width: 100%; height: 160px; object-fit: cover; display: block; }

.contact-visual { padding: 0 0 1rem; }
.contact-photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--color-border); }
.contact-photo img { width: 100%; max-height: 420px; object-fit: cover; display: block; }
.contact-photo figcaption { padding: 0.85rem 1.25rem; font-size: 0.9rem; color: var(--color-text-muted); background: var(--color-surface); border-top: 1px solid var(--color-border); }

.map-block {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    aspect-ratio: 16/9;
    background: var(--color-bg-alt);
    min-height: 380px;
    max-width: 100%;
    width: 100%;
}
.map-embed {
    width: 100%;
    max-width: 100%;
    height: 100%;
    border: 0;
    min-height: 360px;
    display: block;
}

.page-tail { margin-top: 1rem; }

/* Legal */
.legal-doc h2 { margin-top: 2.5rem; font-size: 1.35rem; }
.legal-doc h3 { margin-top: 1.5rem; font-size: 1.1rem; }

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.92rem;
}
.cookie-table th,
.cookie-table td {
    border: 1px solid var(--color-border);
    padding: 0.75rem 1rem;
    text-align: left;
    vertical-align: top;
}
.cookie-table th { background: var(--color-bg-alt); font-weight: 600; }

/* Footer */
.site-footer {
    background: var(--color-primary-dark);
    color: rgba(255,255,255,0.85);
    padding: 3.5rem 0 0;
    margin-top: auto;
    max-width: 100%;
    overflow-x: clip;
}

.footer-grid {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.75rem;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin: 0 0 1rem;
}

.footer-block address p { margin: 0 0 0.35rem; }
.footer-block a { color: rgba(255,255,255,0.9); }
.footer-block a:hover { color: var(--color-accent); }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.footer-links a:hover { color: var(--color-accent); }

.footer-base {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 1.25rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.1);
    padding: 1.25rem;
    max-width: 100vw;
    box-sizing: border-box;
}
.cookie-banner[hidden] { display: none; }

.cookie-inner {
    width: min(100%, var(--max-width));
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 2rem;
}
.cookie-inner h2 { font-size: 1rem; margin: 0; font-family: var(--font-body); }
.cookie-inner p { margin: 0; flex: 1; min-width: 0; font-size: 0.92rem; color: var(--color-text-muted); }
.cookie-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 960px) {
    .hero-inner,
    .split-feature,
    .highlight-band,
    .topic-hero-grid,
    .contact-layout,
    .article-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .pillar-grid,
    .audience-grid,
    .faq-grid,
    .content-row {
        grid-template-columns: 1fr;
    }

    .content-row-reverse .content-row-text,
    .content-row-reverse .content-row-media { order: unset; }

    .content-row {
        padding: 1.25rem;
        gap: 1.25rem;
        margin: 1.5rem 0;
    }

    .hero-media::after { display: none; }

    .pillar-card:hover { transform: none; }

    .section { padding: 2.75rem 0; }
    .hero-home { padding: 2.5rem 0 3rem; }
    .page-head { padding: 2.25rem 0 1.5rem; }

    .brand-tag { display: none; }

    .menu-btn { display: block; flex-shrink: 0; }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-width: 100%;
        background: var(--color-surface);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
        box-sizing: border-box;
    }
    .site-nav.open { display: flex; }
    .nav-link { width: 100%; padding: 0.75rem 1rem; box-sizing: border-box; }

    .site-header { position: sticky; }

    .topic-hero { padding: 2rem 0 1.5rem; }
    .contact-layout { padding: 2rem 0; gap: 1.5rem; }
    .map-block { min-height: 280px; }
    .map-embed { min-height: 260px; }
}

@media (max-width: 600px) {
    .container,
    .header-shell,
    .footer-grid {
        width: min(100% - 1.25rem, var(--max-width));
    }

    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .cookie-inner { flex-direction: column; align-items: stretch; }
    .cookie-banner { padding: 1rem; }
    .cookie-actions { width: 100%; }
    .cookie-actions .btn { flex: 1; min-width: 0; }

    .pillar-body { padding: 1.15rem 1.25rem 1.35rem; }
    .audience-body { padding: 1.15rem 1.25rem 1.35rem; }
    .contact-form,
    .contact-panel { padding: 1.25rem; }
    .faq-item { padding: 1.25rem; }

    .field input,
    .field textarea {
        max-width: 100%;
        font-size: 16px;
    }

    .kicker {
        letter-spacing: 0.08em;
        font-size: 0.72rem;
    }

    h1 { font-size: clamp(1.6rem, 8vw, 2.75rem); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
