/* ONESlimz — shared article styles. Brand tokens mirror the homepage. */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #c9a259;
    --gold-deep: #a8842f;
    --gold-light: #e2c97e;
    --cream: #faf6ef;
    --cream-soft: #f5efe2;
    --ink: #2a241c;
    --ink-soft: #6b6358;
    --line: #e8dfcf;
    --brown-deep: #3d2c1a;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ---- Nav ---- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 246, 239, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.nav-logo img { height: 38px; width: auto; }
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-deep);
    color: #fff;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.nav-cta:hover { background: var(--brown-deep); text-decoration: none; }

/* ---- Article ---- */
.article { padding: 48px 0 64px; }

.breadcrumb {
    font-size: 0.78rem;
    color: var(--ink-soft);
    margin-bottom: 28px;
    letter-spacing: 0.4px;
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb span { color: var(--gold-deep); }

.eyebrow {
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
    margin-bottom: 16px;
}

.article h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 18px;
}
.article .meta {
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}
.article h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--ink);
    margin: 44px 0 16px;
}
.article h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    margin: 30px 0 12px;
}
.article p { margin-bottom: 18px; color: #3f382e; }
.article ul, .article ol { margin: 0 0 20px 22px; }
.article li { margin-bottom: 9px; color: #3f382e; }
.article strong { color: var(--ink); font-weight: 600; }

.callout {
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-left: 3px solid var(--gold);
    border-radius: 8px;
    padding: 22px 26px;
    margin: 28px 0;
}
.callout .callout-title {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
    margin-bottom: 12px;
}
.callout ul { margin-bottom: 0; }
.callout p:last-child { margin-bottom: 0; }

table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.92rem;
}
th, td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
}
th {
    background: var(--cream-soft);
    color: var(--ink);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ---- Table of contents ---- */
.toc {
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 22px 26px;
    margin: 32px 0;
}
.toc .toc-title {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
    margin-bottom: 14px;
}
.toc ol { margin: 0 0 0 18px; }
.toc li { margin-bottom: 7px; font-size: 0.92rem; }
.toc a { color: var(--ink); }
.toc a:hover { color: var(--gold-deep); }

/* ---- In-article FAQ ---- */
.faq-block { margin: 14px 0 8px; }
.faq-block .q {
    font-weight: 600;
    color: var(--ink);
    font-size: 1.02rem;
    margin: 22px 0 8px;
}
.faq-block .a { margin-bottom: 14px; color: #3f382e; }

/* ---- Author / E-E-A-T box ---- */
.author-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 22px 24px;
    margin: 40px 0 8px;
    background: #fff;
}
.author-box img { width: 52px; height: 52px; border-radius: 50%; object-fit: contain; background: var(--cream-soft); padding: 6px; flex-shrink: 0; }
.author-box .ab-name { font-weight: 600; color: var(--ink); }
.author-box .ab-bio { font-size: 0.88rem; color: var(--ink-soft); margin-top: 4px; }

.disclaimer {
    font-size: 0.8rem;
    color: var(--ink-soft);
    font-style: italic;
    border-top: 1px solid var(--line);
    margin-top: 40px;
    padding-top: 20px;
}

/* ---- CTA ---- */
.cta-box {
    background: var(--brown-deep);
    color: var(--cream);
    border-radius: 14px;
    padding: 40px 36px;
    text-align: center;
    margin: 48px 0 8px;
}
.cta-box h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.6rem;
    margin: 0 0 10px;
}
.cta-box p { color: rgba(250, 246, 239, 0.78); margin-bottom: 24px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
}
.btn-gold { background: var(--gold); color: var(--brown-deep); }
.btn-gold:hover { background: var(--gold-light); text-decoration: none; }
.btn-ghost { border: 1px solid rgba(250, 246, 239, 0.4); color: var(--cream); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); text-decoration: none; }

/* ---- Related ---- */
.related { margin-top: 56px; }
.related h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    margin-bottom: 18px;
}
.related-grid { display: grid; gap: 14px; }
.related-card {
    display: block;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 20px 22px;
    background: #fff;
    color: var(--ink);
    transition: border-color 0.2s, transform 0.2s;
}
.related-card:hover { border-color: var(--gold); transform: translateY(-2px); text-decoration: none; }
.related-card .rc-kicker {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
}
.related-card .rc-title { font-size: 1.05rem; font-weight: 600; margin: 6px 0 4px; }
.related-card .rc-desc { font-size: 0.88rem; color: var(--ink-soft); }

/* ---- Index listing ---- */
.list-hero { padding: 56px 0 12px; text-align: center; }
.list-hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 14px;
}
.list-hero p { color: var(--ink-soft); max-width: 540px; margin: 0 auto; }
.list-grid { display: grid; gap: 16px; padding: 36px 0 64px; }

/* ---- Footer ---- */
.footer {
    text-align: center;
    padding: 30px 24px;
    font-size: 0.82rem;
    color: var(--ink-soft);
    border-top: 1px solid var(--line);
}
.footer a { color: var(--ink-soft); }

@media (max-width: 600px) {
    .nav-logo img { height: 32px; }
    .nav-cta { padding: 9px 16px; font-size: 0.8rem; }
    .cta-box { padding: 32px 22px; }
}
