:root {
    --bg: #f4f1ea;
    --bg-alt: #e8e4dc;
    --surface: #ffffff;
    --surface-warm: #faf8f4;
    --ink: #1a2e1f;
    --ink-soft: #3d5244;
    --muted: #6b7c72;
    --accent: #c45c26;
    --accent-light: #e8a87c;
    --sage: #5a7d65;
    --sage-dark: #3d5c48;
    --sage-light: #d4e5d8;
    --border: #d6cfc4;
    --shadow: 0 18px 50px rgba(26, 46, 31, 0.1);
    --font-sans: 'Outfit', system-ui, sans-serif;
    --font-display: 'Libre Baskerville', Georgia, serif;
    --radius: 1.25rem;
    --radius-lg: 2rem;
    --max: 76rem;
}

* { box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--ink);
    margin: 0;
    line-height: 1.65;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.25;
}

a { color: var(--sage-dark); }

/* Ad disclosure — Taboola */
.ad-strip {
    background: #2d2419;
    color: #f5e6d3;
    font-size: 0.72rem;
    border-bottom: 3px solid var(--accent);
}

.ad-strip-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0.55rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
}

.ad-strip strong {
    background: var(--accent);
    color: #fff;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.65rem;
}

/* Site header — centered wordmark, split navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--ink);
}

.site-header-bar {
    border-bottom: 3px solid var(--accent);
}

.site-header-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0.65rem 1rem 0.75rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem 1rem;
}

@media (max-width: 820px) {
    .site-header-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0.75rem 1rem 0.85rem;
    }
}

.brand-mark {
    grid-column: 2;
    justify-self: center;
    text-decoration: none;
    color: #fff;
    padding: 0.15rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

@media (max-width: 820px) {
    .brand-mark {
        grid-column: 1;
        order: -1;
    }
}

.brand-mark:hover {
    border-bottom-color: var(--accent-light);
}

.brand-wordmark {
    display: block;
    font-family: var(--font-sans);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    line-height: 1;
}

.brand-name {
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f4f1ea;
}

.brand-name span { color: var(--accent-light); }

.brand-tagline {
    display: none;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.5rem;
}

.site-nav--primary {
    justify-self: start;
}

@media (max-width: 820px) {
    .site-nav--primary {
        justify-content: center;
    }
}

.site-header-aside {
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.45rem;
}

@media (max-width: 820px) {
    .site-header-aside {
        align-items: center;
    }
}

.site-nav--secondary {
    justify-content: flex-end;
}

@media (max-width: 820px) {
    .site-nav--secondary {
        justify-content: center;
    }
}

.header-email {
    font-size: 0.72rem;
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.header-email:hover {
    color: #fff;
    text-decoration: underline;
}

.site-nav a {
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #b8cfc0;
    padding: 0.4rem 0.65rem;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.site-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.site-nav a.is-active {
    color: var(--ink);
    background: var(--accent-light);
    border-color: var(--accent-light);
}

/* Hero — centered magazine */
.hero-magazine {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-magazine__bg {
    position: absolute;
    inset: 0;
}

.hero-magazine__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-magazine__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 46, 31, 0.92) 0%, rgba(26, 46, 31, 0.35) 55%, rgba(26, 46, 31, 0.2) 100%);
}

.hero-magazine__content {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    margin: 0 auto;
    padding: 3rem 1.25rem 4rem;
    width: 100%;
    color: #fff;
}

.hero-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: var(--accent);
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    margin-bottom: 1.25rem;
}

.hero-magazine h1 {
    font-size: clamp(2rem, 5.5vw, 3.35rem);
    max-width: 18ch;
    margin: 0 0 1rem;
    color: #fff;
}

.hero-magazine .hero-lead {
    font-size: 1.1rem;
    max-width: 42rem;
    color: #d4e5d8;
    margin: 0 0 1.5rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #b8cfc0;
}

.hero-meta span {
    padding: 0.4rem 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Page sub-hero */
.page-hero {
    background: var(--sage-dark);
    color: #fff;
    padding: 3.5rem 1.25rem;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    margin: 0 auto;
    max-width: 28rem;
    color: #fff;
}

.page-hero p {
    color: var(--sage-light);
    max-width: 36rem;
    margin: 1rem auto 0;
    font-size: 1.05rem;
}

/* Layout */
.main-wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 3rem 1.25rem 4rem;
}

.section-block { margin-bottom: 4rem; }

.section-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    margin: 0 0 1.25rem;
    color: var(--ink);
}

/* Cards */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card--warm {
    background: var(--surface-warm);
}

/* Bento grid */
.bento {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .bento--2 { grid-template-columns: 1fr 1fr; }
    .bento--3 { grid-template-columns: repeat(3, 1fr); }
    .bento--4 { grid-template-columns: repeat(4, 1fr); }
    .bento--featured { grid-template-columns: 1.2fr 1fr; }
}

.bento-item {
    padding: 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
}

.bento-item--accent {
    background: var(--sage-dark);
    color: #e8f0ea;
    border-color: var(--sage-dark);
}

.bento-item--accent h3 { color: #fff; }

.bento-item--wide {
    grid-column: 1 / -1;
}

/* Image blocks */
.media-row {
    display: grid;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

@media (min-width: 768px) {
    .media-row { grid-template-columns: 1fr 1fr; }
}

.media-row img {
    width: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
}

.media-row__body {
    padding: 2rem;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

/* Numbered steps */
.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steps-list li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--ink-soft);
}

.steps-list li:last-child { border-bottom: none; }

.step-badge {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 8px;
    background: var(--sage-light);
    color: var(--sage-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Dark panel */
.panel-dark {
    background: var(--ink);
    color: #c5d4ca;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.panel-dark h2 { color: #fff; margin-top: 0; }

.panel-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .panel-grid { grid-template-columns: 1fr 1fr; }
}

.panel-grid .mini-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.panel-grid .mini-card strong {
    color: var(--accent-light);
    display: block;
    margin-bottom: 0.35rem;
}

/* FAQ */
.faq-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .faq-grid { grid-template-columns: 1fr 1fr; }
}

.faq-card {
    padding: 1.5rem;
    background: var(--surface);
    border-left: 4px solid var(--sage);
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: 0 8px 24px rgba(26, 46, 31, 0.06);
}

.faq-card dt {
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.faq-card dd {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

/* Icon tiles */
.icon-tiles {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .icon-tiles { grid-template-columns: repeat(3, 1fr); }
}

.icon-tile {
    text-align: center;
    padding: 2rem 1.25rem;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.icon-tile .emoji { font-size: 2.25rem; margin-bottom: 0.75rem; }

.icon-tile h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    margin: 0 0 0.35rem;
}

.icon-tile p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
}

/* CTA band */
.cta-band {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--surface-warm) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

/* Contact form */
.contact-module {
    display: grid;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--sage);
    box-shadow: var(--shadow);
}

@media (min-width: 900px) {
    .contact-module { grid-template-columns: 300px 1fr; }
}

.contact-module__panel {
    background: var(--sage-dark);
    color: #dce8df;
    padding: 2rem 1.75rem;
}

.contact-module__panel h2 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0 0.75rem;
}

.contact-module__steps {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.contact-module__steps li {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
}

.step-num {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
}

.contact-module__hotline {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
}

.contact-module__hotline a {
    color: var(--accent-light);
    font-weight: 600;
    text-decoration: none;
}

.contact-form-body {
    background: var(--surface-warm);
    padding: 2rem 1.5rem;
}

@media (min-width: 640px) {
    .contact-form-body { padding: 2.25rem 2rem; }
}

.contact-form-grid {
    display: grid;
    gap: 1.15rem;
}

@media (min-width: 640px) {
    .contact-form-grid--2 { grid-template-columns: 1fr 1fr; }
}

.field-group label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--sage-dark);
    margin-bottom: 0.35rem;
}

.field-group input,
.field-group select,
.field-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--ink);
}

.field-group input:focus,
.field-group textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(90, 125, 101, 0.2);
}

.field-group textarea {
    min-height: 110px;
    resize: vertical;
}

.choice-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.choice-pill { flex: 1; min-width: 110px; }

.choice-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-pill label {
    display: block;
    text-align: center;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: var(--muted);
    margin: 0;
    transition: all 0.2s;
}

.choice-pill input:checked + label {
    background: var(--sage);
    border-color: var(--sage);
    color: #fff;
}

.consent-box {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    border: 1px dashed var(--border);
    font-size: 0.82rem;
    color: var(--muted);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.btn-submit:hover {
    background: #a84d1f;
    transform: translateY(-1px);
}

.btn-primary {
    display: inline-block;
    padding: 0.9rem 1.75rem;
    background: var(--accent);
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.2s;
}

.btn-primary:hover { background: #a84d1f; }

/* Footer */
.site-footer {
    background: var(--ink);
    color: #9eb0a4;
    margin-top: 3rem;
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 3rem 1.25rem 2rem;
}

.footer-top {
    display: grid;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-top { grid-template-columns: 1.3fr 1fr 1fr; }
}

.footer-brand .brand-name {
    color: #f4f1ea;
    font-size: 1.35rem;
}

.footer-brand .brand-name {
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-brand p {
    margin: 0.85rem 0 0;
    font-size: 0.88rem;
    max-width: 300px;
    line-height: 1.6;
}

.footer-col h4 {
    color: #f4f1ea;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 1rem;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    margin-bottom: 0.75rem;
    font-size: 0.88rem;
}

.footer-contact-list a {
    color: var(--accent-light);
    text-decoration: none;
}

.footer-contact-list a:hover { text-decoration: underline; }

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-nav a {
    color: #c5d4ca;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-nav a:hover { color: var(--accent-light); }

.footer-disclosure {
    padding: 1.25rem 0;
    font-size: 0.78rem;
    line-height: 1.65;
    color: #7a8f82;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    font-size: 0.78rem;
}

.footer-badge {
    display: inline-block;
    padding: 0.3rem 0.65rem;
    background: var(--accent);
    border-radius: 4px;
    color: #fff;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
}

/* Legal pages — contact only */
.legal-simple .card {
    padding: 2rem;
    margin-bottom: 1.25rem;
}

.legal-contact-box {
    background: var(--sage-light);
    border-radius: var(--radius);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

.legal-contact-box h2 {
    font-size: 1.1rem;
    margin: 0 0 1rem;
}

/* Modal */
.form-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(26, 46, 31, 0.65);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.form-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.form-modal {
    position: relative;
    width: 100%;
    max-width: 400px;
    background: #fff;
    border-radius: var(--radius);
    padding: 2.25rem 1.75rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid var(--sage);
    transform: scale(0.94);
    transition: transform 0.3s ease;
}

.form-modal-overlay.is-open .form-modal {
    transform: scale(1);
}

.form-modal__icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--sage);
    color: #fff;
    font-size: 1.5rem;
    line-height: 3.5rem;
    font-weight: 700;
}

.form-modal__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin: 0 0 0.65rem;
}

.form-modal__text {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0 0 1.25rem;
}

.form-modal__close {
    width: 100%;
    padding: 0.85rem;
    border: none;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
}

.form-modal__x {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 50%;
    background: var(--bg);
    cursor: pointer;
    color: var(--muted);
}

body.modal-open { overflow: hidden; }

.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.prose { color: var(--ink-soft); line-height: 1.7; }
.prose p { margin: 0 0 1rem; }
.prose ul { margin: 0; padding-left: 1.25rem; }
