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

:root {
    --cream: #FAF7F2;
    --warm-white: #FFFDF9;
    --text: #3A3330;
    --text-light: #8A7F77;
    --text-lighter: #B5ADA6;
    --terracotta: #C4704B;
    --terracotta-dark: #A85A38;
    --terracotta-glow: rgba(196, 112, 75, 0.08);
    --sage: #7E957A;
    --sage-light: rgba(126, 149, 122, 0.12);
    --sand: #E5DCD3;
    --sand-light: #F0EBE5;
    --border: rgba(58, 51, 48, 0.08);
    --shadow-soft: 0 12px 40px rgba(58, 51, 48, 0.06);
    --shadow-warm: 0 18px 60px rgba(196, 112, 75, 0.12);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.025;
    z-index: 1000;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 720px; margin: 0 auto; padding: 0 32px; }
a { color: inherit; }

header {
    padding: 22px 0;
    position: sticky;
    top: 0;
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 100;
    border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo {
    font-family: 'Lora', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo-dot { width: 6px; height: 6px; background: var(--terracotta); border-radius: 50%; }
.nav { display: flex; gap: 32px; align-items: center; }
.nav a { font-size: 14px; color: var(--text-light); text-decoration: none; }
.nav a:hover { color: var(--terracotta); }
.nav-cta {
    padding: 9px 20px;
    background: var(--text);
    color: var(--warm-white) !important;
    border-radius: 100px;
    font-weight: 500;
}
.nav-cta:hover { background: var(--terracotta); }

.breadcrumbs {
    padding: 24px 0 0;
    font-size: 13px;
    color: var(--text-lighter);
}
.breadcrumbs a { color: var(--text-light); text-decoration: none; }
.breadcrumbs a:hover { color: var(--terracotta); }

.article-hero {
    padding: 50px 0 32px;
    text-align: center;
}
.article-hero .meta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 700;
    margin-bottom: 24px;
}
.article-hero .meta .dot { width: 4px; height: 4px; background: var(--text-lighter); border-radius: 50%; }
.article-hero .meta .neutral { color: var(--text-lighter); font-weight: 600; }
.article-hero h1 {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -0.4px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.article-hero h1 em { font-style: italic; color: var(--terracotta); }
.article-hero .lead {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.75;
    max-width: 660px;
    margin: 0 auto;
}

.article-body {
    padding: 56px 0 80px;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote,
.article-body h2,
.article-body h3,
.article-body .info-box,
.article-body .checklist,
.article-body figure {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.article-body p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 22px;
}

.article-body p:first-child::first-letter {
    font-family: 'Lora', Georgia, serif;
    font-size: 56px;
    line-height: 1;
    float: left;
    padding: 6px 12px 0 0;
    color: var(--terracotta);
    font-weight: 600;
}

.article-body h2 {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(26px, 3.4vw, 34px);
    font-weight: 400;
    line-height: 1.25;
    margin: 56px auto 18px;
    letter-spacing: -0.3px;
}

.article-body h2 em { font-style: italic; color: var(--terracotta); }

.article-body h3 {
    font-family: 'Lora', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    margin: 36px auto 12px;
    color: var(--text);
}

.article-body ul,
.article-body ol {
    padding-left: 24px;
    margin-bottom: 26px;
}

.article-body li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
}

.article-body strong {
    color: var(--text);
    font-weight: 600;
}

.article-body a {
    color: var(--terracotta);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.article-body a:hover { color: var(--terracotta-dark); }

.article-body blockquote {
    border-left: 3px solid var(--terracotta);
    padding: 4px 0 4px 24px;
    margin: 32px auto;
    font-family: 'Lora', Georgia, serif;
    font-style: italic;
    font-size: 21px;
    color: var(--text);
    line-height: 1.5;
}

.info-box {
    background: var(--sage-light);
    border-left: 3px solid var(--sage);
    padding: 24px 28px;
    border-radius: 12px;
    margin: 32px auto;
}
.info-box strong {
    display: block;
    margin-bottom: 8px;
    font-family: 'Lora', Georgia, serif;
    font-size: 17px;
    color: var(--text);
}
.info-box p {
    font-size: 15px;
    color: var(--text);
    margin: 0;
    line-height: 1.7;
    max-width: none;
}

.warn-box {
    background: rgba(196, 112, 75, 0.06);
    border-left: 3px solid var(--terracotta);
    padding: 24px 28px;
    border-radius: 12px;
    margin: 32px auto;
}
.warn-box strong {
    display: block; margin-bottom: 8px;
    font-family: 'Lora', Georgia, serif;
    font-size: 17px;
    color: var(--text);
}
.warn-box p {
    font-size: 15px;
    color: var(--text);
    margin: 0;
    line-height: 1.7;
    max-width: none;
}

.checklist {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 32px;
    margin: 36px auto;
}
.checklist h3 {
    font-family: 'Lora', Georgia, serif;
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 16px;
}
.checklist ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 16px;
    color: var(--text);
    margin-bottom: 0;
}
.checklist li svg {
    color: var(--sage);
    flex-shrink: 0;
    margin-top: 5px;
}

.cta-inline {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    margin: 48px auto;
    text-align: center;
}
.cta-inline strong {
    display: block;
    font-family: 'Lora', Georgia, serif;
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 600;
}
.cta-inline p {
    color: var(--text-light);
    font-size: 15px;
    max-width: none;
    margin-bottom: 20px;
}
.btn-inline {
    display: inline-block;
    padding: 14px 28px;
    background: var(--terracotta);
    color: var(--warm-white);
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    border-radius: 100px;
    transition: all 0.3s ease;
}
.btn-inline:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm);
}

.related {
    background: var(--sand-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 64px 0;
}
.related h3 {
    font-family: 'Lora', Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 32px;
}
.related h3 em { font-style: italic; color: var(--terracotta); }
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.related-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}
.related-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    border-color: var(--sand);
}
.related-card .cat {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}
.related-card h4 {
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
    background: var(--warm-white);
    border-top: 1px solid var(--border);
}
.cta-section h2 {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}
.cta-section h2 em { font-style: italic; color: var(--terracotta); }
.cta-section p {
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto 32px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--terracotta);
    color: var(--warm-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 100px;
    transition: all 0.35s ease;
}
.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm);
}

footer {
    padding: 48px 0 32px;
    border-top: 1px solid var(--border);
    background: var(--warm-white);
    text-align: center;
    font-size: 13px;
    color: var(--text-lighter);
}
footer a { color: var(--text-light); text-decoration: none; margin: 0 12px; }
footer a:hover { color: var(--terracotta); }

@media (max-width: 800px) {
    .related-grid { grid-template-columns: 1fr; }
    .nav { gap: 16px; }
    .nav a:not(.nav-cta) { display: none; }
}
@media (max-width: 600px) {
    .container, .narrow { padding: 0 20px; }
    .article-hero { padding: 32px 0 24px; }
    .article-body { padding: 40px 0 56px; }
    .article-body p:first-child::first-letter { font-size: 44px; }
    .cta-inline { padding: 24px; }
}
