:root {
    --bg: #FBF8F3;
    --surface: #F1EBE0;
    --accent: #C97B5B;
    --text: #2E2A26;
    --text-soft: #6B645C;
    --line: #E5DDD0;
    --button: #8B6C52;
    --button-hover: #6D5340;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

.wrap {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: 32px;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: var(--text);
}

.brand .cap {
    font-size: 1.4em;
}

.nav {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
    display: inline-block;
    padding: 6px 0;
}

.nav a:hover {
    color: var(--text-soft);
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--button);
    color: var(--bg);
    text-decoration: none;
    font-size: 16px;
    border-radius: 8px;
    margin-top: 32px;
    transition: background 0.2s;
}

.btn:hover {
    background: var(--button-hover);
}

.hero {
    padding: 64px 0 96px;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 720px) {
    .hero {
        grid-template-columns: 1.1fr 1fr;
        gap: 56px;
    }
}

.hero h1 {
    font-size: clamp(32px, 5vw, 44px);
    margin-bottom: 24px;
    max-width: 18ch;
}

.hero p {
    font-size: 19px;
    color: var(--text-soft);
    max-width: 56ch;
}

.hero p.hero-tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(22px, 2.6vw, 26px);
    color: var(--text);
    margin-top: 32px;
    margin-bottom: 32px;
}

.hero-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.pillars-section > h2,
.pillars-section > .section-intro {
    text-align: center;
}

.pillars-section > .section-intro {
    margin-left: auto;
    margin-right: auto;
}

section {
    padding: 80px 0;
    border-bottom: 1px solid var(--line);
}

section h2 {
    font-size: clamp(26px, 4vw, 32px);
    margin-bottom: 8px;
}

.section-intro {
    color: var(--text-soft);
    margin-bottom: 40px;
    max-width: 56ch;
}

.checklist {
    list-style: none;
    margin-top: 32px;
    max-width: 56ch;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checklist li {
    color: var(--text-soft);
    font-size: 17px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 16px;
    height: 1px;
    background: var(--accent);
}

section.no-divider {
    border-bottom: none;
    text-align: center;
}

section.no-divider .checklist {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

section.breathe {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: var(--surface);
    padding: 112px 24px;
    border-bottom: none;
    text-align: center;
}

.breathe-inner {
    max-width: 50ch;
    margin: 0 auto;
}

.breathe h2 {
    margin-bottom: 24px;
}

.breathe p {
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.breathe p:last-child {
    margin-bottom: 0;
}

.freebie {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 56px 32px;
    text-align: center;
}

@media (min-width: 640px) {
    .freebie {
        padding: 64px 56px;
    }
}

.freebie .eyebrow {
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 16px;
}

.freebie h2 {
    margin-bottom: 20px;
}

.freebie p {
    color: var(--text-soft);
    max-width: 48ch;
    margin: 0 auto 16px;
}

.freebie .btn {
    margin-top: 24px;
}

.about {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 720px) {
    .about {
        grid-template-columns: 1fr 1.2fr;
        gap: 56px;
    }
}

.about-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    background: var(--surface);
}

.about-body h2 {
    margin-bottom: 24px;
}

.about-body p {
    color: var(--text-soft);
    margin-bottom: 16px;
}

.about-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-style: italic;
    color: var(--text);
    margin-top: 32px !important;
    margin-bottom: 24px !important;
}

.btn-outline {
    display: inline-block;
    padding: 14px 28px;
    background: transparent;
    color: var(--button);
    border: 1px solid var(--button);
    text-decoration: none;
    font-size: 16px;
    border-radius: 8px;
    margin-top: 16px;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--button);
    color: var(--bg);
}

.posts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

.posts.posts-all {
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 720px) {
    .posts.posts-all {
        grid-template-columns: repeat(2, 1fr);
    }
}

.post {
    background: var(--surface);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 42, 38, 0.08);
}

.post-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    background: var(--bg);
}

.post-body {
    padding: 24px 28px 28px;
}

.post h3 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.post p {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.6;
}

.post-meta {
    font-size: 14px;
    color: var(--text-soft);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

section.closing {
    padding: 140px 0;
    text-align: center;
    border-bottom: none;
}

section.closing h2 {
    margin-bottom: 32px;
    font-size: clamp(28px, 4.5vw, 36px);
}

.closing-mantra {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(22px, 3vw, 28px);
    font-style: italic;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.4;
}

.closing-text {
    color: var(--text-soft);
    max-width: 40ch;
    margin: 0 auto;
}

.faq {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
    margin-top: 32px;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    padding: 24px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary h3 {
    font-size: 20px;
    margin: 0;
    flex: 1;
    font-weight: 500;
}

.faq-item summary::after {
    content: '+';
    font-size: 24px;
    color: var(--text-soft);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-answer {
    padding-bottom: 28px;
    color: var(--text-soft);
    max-width: 64ch;
}

.faq-answer p {
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 840px;
    margin: 0 auto;
}

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

.pillar {
    background: var(--surface);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(46, 42, 38, 0.10);
}

.pillar-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

.pillar-body {
    padding: 32px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pillar h3 {
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.pillar p {
    color: var(--text-soft);
    font-size: 16px;
    margin-bottom: 24px;
}

.pillar-cta {
    color: var(--accent);
    font-size: 15px;
    margin-top: auto;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
    align-self: flex-start;
}

.pillar:hover .pillar-cta {
    color: var(--text);
    border-bottom-color: var(--text);
}

.newsletter {
    background: var(--surface);
    padding: 48px 28px;
    border-radius: 8px;
    margin-top: 24px;
}

.newsletter h2 {
    margin-bottom: 12px;
}

.newsletter p {
    color: var(--text-soft);
    margin-bottom: 24px;
    max-width: 50ch;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 220px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    background: var(--bg);
    font-family: inherit;
    font-size: 16px;
    color: var(--text);
    border-radius: 8px;
}

.newsletter-form input[type="email"]:focus {
    outline: 2px solid var(--accent);
    outline-offset: 1px;
}

.newsletter-form button {
    padding: 14px 24px;
    background: var(--button);
    color: var(--bg);
    border: none;
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
}

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

.note {
    font-size: 15px;
    color: var(--text-soft);
    margin-top: 16px;
}

footer {
    padding: 64px 0 48px;
    text-align: center;
    color: var(--text-soft);
    font-size: 14px;
    border-top: 1px solid var(--line);
    margin-top: 80px;
}

.footer-brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: 28px;
    letter-spacing: 0.5px;
    color: var(--text);
    margin-bottom: 8px;
}

.footer-tagline {
    margin-bottom: 32px;
    font-size: 15px;
    max-width: 44ch;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin-bottom: 32px;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
    display: inline-block;
    padding: 6px 0;
}

.footer-links a:hover {
    color: var(--text-soft);
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-soft);
}

.article-header {
    padding: 64px 0 48px;
    border-bottom: 1px solid var(--line);
}

.article-eyebrow {
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 16px;
}

.article-header h1 {
    font-size: clamp(30px, 5vw, 42px);
    margin-bottom: 24px;
    max-width: 22ch;
}

.article-meta {
    font-size: 15px;
    color: var(--text-soft);
}

.article-meta time {
    margin-right: 16px;
}

.article-hero {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    margin: 0 calc(50% - 50vw) 0;
    max-width: 100vw;
    background: var(--surface);
}

@media (min-width: 1200px) {
    .article-hero {
        max-width: 1100px;
        margin: 0 auto;
        border-radius: 8px;
    }
}

.article-body {
    padding: 64px 0 80px;
    max-width: 64ch;
    margin: 0 auto;
    border-bottom: 1px solid var(--line);
}

.article-body .article-inline {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 8px;
    margin: 40px 0;
    background: var(--surface);
}

.article-body h2 {
    font-size: clamp(24px, 3.5vw, 28px);
    margin-top: 48px;
    margin-bottom: 16px;
}

.article-body h3 {
    font-size: 21px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.article-body h3.bereich-titel {
    font-size: 24px;
}

.article-body p {
    margin-bottom: 20px;
    color: var(--text);
}

.article-body p.lead {
    font-size: 20px;
    color: var(--text-soft);
    margin-bottom: 32px;
}

.article-body ul,
.article-body ol {
    margin: 0 0 24px 24px;
    color: var(--text);
}

.article-body li {
    margin-bottom: 8px;
}

.article-body blockquote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
    color: var(--text);
    border-left: 2px solid var(--accent);
    padding-left: 20px;
    margin: 32px 0;
}

.article-body a {
    color: var(--text);
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 3px;
}

.article-body a:hover {
    color: var(--text-soft);
}

.section-intro a:not(.btn):not(.btn-outline),
.faq-answer a:not(.btn):not(.btn-outline),
.note a:not(.btn):not(.btn-outline) {
    color: var(--text);
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 3px;
}

.section-intro a:not(.btn):not(.btn-outline):hover,
.faq-answer a:not(.btn):not(.btn-outline):hover,
.note a:not(.btn):not(.btn-outline):hover {
    color: var(--text-soft);
}

.article-body a.btn,
.article-body a.btn-outline {
    text-decoration: none;
}

.article-body a.btn:hover {
    color: var(--bg);
}

.article-body a.btn-outline:hover {
    color: var(--bg);
}

.affiliate-note {
    background: var(--surface);
    border-radius: 8px;
    padding: 20px 24px;
    font-size: 15px;
    color: var(--text-soft);
    margin: 32px 0;
}

.affiliate-note strong {
    color: var(--text);
    font-weight: 500;
}

.image-credit {
    font-size: 13px;
    color: var(--text-soft);
    text-align: center;
    margin-top: 8px;
}

.article-author {
    padding: 64px 0;
    border-bottom: 1px solid var(--line);
}

.article-author .about {
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .article-author .about {
        grid-template-columns: 200px 1fr;
        align-items: start;
    }
}

.article-author .about-image {
    aspect-ratio: 1 / 1;
    max-width: 200px;
}

.article-author h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.read-next {
    padding: 64px 0;
}

.read-next h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 8px;
}

.read-next-intro {
    text-align: center;
    color: var(--text-soft);
    margin-bottom: 40px;
}

section.kontakt {
    padding: 120px 0;
    text-align: center;
    border-bottom: none;
    max-width: 56ch;
    margin: 0 auto;
}

section.kontakt h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    font-size: clamp(30px, 5vw, 42px);
    margin-bottom: 24px;
}

.kontakt-lead {
    font-size: 19px;
    color: var(--text-soft);
    margin-bottom: 20px;
}

section.kontakt p {
    color: var(--text-soft);
    margin-bottom: 16px;
}

section.kontakt .btn {
    margin-top: 32px;
}

.kontakt-fallback {
    margin-top: 24px;
    font-size: 15px;
}

.kontakt-fallback a {
    color: var(--text);
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 3px;
}

.draft-review {
    padding: 24px 0;
}

.draft-review-inner {
    border-left: 3px solid #d4a574;
    background: rgba(212, 165, 116, 0.08);
    padding: 20px 24px;
    border-radius: 0 6px 6px 0;
    position: relative;
}

.draft-review-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #b07d3f;
    margin-bottom: 8px;
}

.draft-review-inner .section-intro {
    margin: 0;
}

.empfehlung-box {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 40px 28px;
    margin: 48px 0;
}

@media (min-width: 640px) {
    .empfehlung-box {
        padding: 48px 48px;
    }
}

.empfehlung-box .eyebrow {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.empfehlung-box h2 {
    margin-bottom: 20px;
    font-size: clamp(24px, 3.5vw, 30px);
}

.empfehlung-box p {
    color: var(--text);
}

.empfehlung-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.empfehlung-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    line-height: 1.7;
}

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

.empfehlung-list strong {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--text);
}

.link-placeholder {
    display: inline-block;
    margin-top: 4px;
    font-size: 14px;
    font-style: italic;
    color: var(--text-soft);
    letter-spacing: 0.3px;
}

.article-updated {
    margin-top: 48px;
    font-size: 14px;
    color: var(--text-soft);
    font-style: italic;
}

.affiliate-disclaimer {
    background: var(--surface);
    border-left: 3px solid var(--accent);
    padding: 16px 20px;
    margin: 0 0 32px 0;
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.6;
}

.affiliate-disclaimer strong {
    color: var(--text);
    font-weight: 600;
}
