/* ========================================================================
   Lucky Bear — Honey Forest theme
   Тёплый мёд + лесной зелёный, серифная типографика, book/cozy aesthetic
   ======================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500;1,9..144,600;1,9..144,700&family=Manrope:wght@400;500;600;700&display=swap');

/* -------- CSS Variables -------- */
:root {
    --bg: #FBF5E9;
    --bg2: #F5EAD3;
    --honey: #D97706;
    --honey-dark: #B45309;
    --forest: #16543E;
    --forest-light: #22785A;
    --text: #2C1810;
    --text2: #5C4A3C;
    --muted: #8B7965;
    --border: #E8DBC1;
    --danger: #A0332B;

    --radius-card: 16px;
    --radius-btn: 12px;
    --radius-hero: 24px;

    --shadow-soft: 0 4px 20px rgba(217, 119, 6, 0.08);
    --shadow-lift: 0 8px 32px rgba(217, 119, 6, 0.12);
    --shadow-warm: 0 2px 12px rgba(44, 24, 16, 0.06);

    --font-serif: 'Fraunces', 'Georgia', 'Cambria', serif;
    --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container: 1120px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-sans);
    font-size: clamp(16px, 1.05vw + 12px, 18px);
    line-height: 1.75;
    color: var(--text);
    background: var(--bg);
    background-image:
        radial-gradient(circle at 20% 10%, rgba(217, 119, 6, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(22, 84, 62, 0.03) 0%, transparent 45%);
    min-height: 100vh;
    padding-bottom: env(safe-area-inset-bottom);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'kern', 'liga', 'clig', 'calt';
}

/* -------- Typography -------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 0.6em;
    font-feature-settings: 'ss01', 'ss02', 'kern';
}

h1 {
    font-size: clamp(2rem, 3.5vw + 1rem, 3.4rem);
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: clamp(1.6rem, 2vw + 1rem, 2.3rem);
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.005em;
    margin-top: 2em;
    margin-bottom: 0.6em;
}

h3 {
    font-size: clamp(1.25rem, 1vw + 0.9rem, 1.55rem);
    font-weight: 500;
    font-style: normal;
    margin-top: 1.5em;
    color: var(--forest);
}

h4 {
    font-size: clamp(1.1rem, 0.7vw + 0.85rem, 1.25rem);
    font-weight: 500;
    color: var(--forest);
    margin-top: 1.2em;
}

p {
    margin-bottom: 1.1em;
    max-width: 68ch;
    color: var(--text);
}

p.lead {
    font-size: 1.15em;
    color: var(--text2);
    max-width: 62ch;
}

strong, b {
    font-weight: 600;
    color: var(--text);
}

em, i {
    font-style: italic;
}

small {
    font-size: 0.85em;
    color: var(--muted);
}

/* Numbers with tabular figures */
.tnum, .stat, .num {
    font-family: var(--font-serif);
    font-feature-settings: 'tnum', 'kern';
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}

/* -------- Links -------- */
a {
    color: var(--forest);
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 4px;
    text-decoration-color: var(--honey);
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover {
    color: var(--honey-dark);
    text-decoration-color: var(--honey-dark);
}

a:focus-visible {
    outline: 2px solid var(--honey);
    outline-offset: 3px;
    border-radius: 4px;
}

/* -------- Layout -------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
}

section {
    padding: clamp(40px, 6vw, 72px) 0;
}

section + section {
    border-top: 1px solid var(--border);
}

/* -------- Header / Nav -------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 245, 233, 0.85);
    backdrop-filter: saturate(1.4) blur(14px);
    -webkit-backdrop-filter: saturate(1.4) blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 64px;
    padding: 8px 0;
}

.logo {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.01em;
}

.logo:hover {
    color: var(--honey-dark);
}

.logo-mark {
    font-size: 1.5rem;
    line-height: 1;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    color: var(--text2);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 4px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: var(--honey-dark);
}

.nav-links a[aria-current="page"] {
    text-decoration: underline;
    text-decoration-color: var(--honey);
    text-underline-offset: 6px;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

/* -------- Hero -------- */
.hero {
    padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
    position: relative;
}

.hero-inner {
    display: grid;
    gap: clamp(24px, 4vw, 48px);
    grid-template-columns: 1fr;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1.15fr 1fr;
    }
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest);
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: var(--bg2);
    margin-bottom: 20px;
}

.hero h1 {
    margin-bottom: 0.4em;
}

.hero-cards {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.hero-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-hero);
    padding: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:nth-child(1) {
    transform: rotate(-1deg);
}

.hero-card:nth-child(2) {
    transform: rotate(0.5deg);
    margin-top: 24px;
}

.hero-card:nth-child(3) {
    transform: rotate(0.8deg);
}

.hero-card:nth-child(4) {
    transform: rotate(-0.5deg);
    margin-top: 24px;
}

.hero-card:hover {
    transform: rotate(0) translateY(-2px);
    box-shadow: var(--shadow-lift);
}

.hero-card-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hero-card-value {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(1.4rem, 2vw + 0.5rem, 1.9rem);
    color: var(--honey-dark);
    line-height: 1.2;
    font-feature-settings: 'tnum';
}

/* -------- Cards -------- */
.card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: clamp(20px, 3vw, 32px);
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.card:hover {
    box-shadow: var(--shadow-lift);
    transform: translateY(-2px);
}

.card h3 {
    margin-top: 0;
}

.card-grid {
    display: grid;
    gap: clamp(16px, 2vw, 24px);
    grid-template-columns: 1fr;
}

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

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

/* -------- CTA buttons -------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    min-height: 48px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: var(--honey);
    border: none;
    border-radius: var(--radius-btn);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.btn:hover,
.btn:focus-visible {
    background: var(--honey-dark);
    color: white;
    transform: scale(1.02);
    text-decoration: none;
}

.btn:active {
    transform: scale(0.99);
}

.btn::after {
    content: '→';
    font-family: var(--font-serif);
    font-size: 1.1em;
    line-height: 1;
    transition: transform 0.2s ease;
}

.btn:hover::after {
    transform: translateX(3px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
    min-height: 56px;
}

.btn-ghost {
    background: transparent;
    color: var(--forest);
    border: 1.5px solid var(--forest);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    background: var(--forest);
    color: white;
}

.btn-block {
    width: 100%;
}

/* -------- Sticky Bottom CTA -------- */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(251, 245, 233, 0.92);
    backdrop-filter: saturate(1.4) blur(16px);
    -webkit-backdrop-filter: saturate(1.4) blur(16px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(44, 24, 16, 0.05);
}

.sticky-cta-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sticky-cta-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.35;
    flex: 1;
    min-width: 0;
}

.sticky-cta-text small {
    display: block;
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 2px;
    font-weight: 500;
}

.sticky-cta .btn {
    padding: 12px 22px;
    min-height: 46px;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* leave room so sticky CTA doesn't cover content */
main {
    padding-bottom: 100px;
}

@media (min-width: 768px) {
    main {
        padding-bottom: 96px;
    }
}

/* -------- Article / Drop cap -------- */
.article-content {
    max-width: 68ch;
    margin: 0 auto;
}

.article-content > p:first-of-type::first-letter {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: 3.5em;
    line-height: 0.85;
    float: left;
    padding: 6px 10px 0 0;
    color: var(--honey-dark);
}

.article-content ul,
.article-content ol {
    margin: 1em 0 1.5em 1.5em;
    max-width: 66ch;
}

.article-content li {
    margin-bottom: 0.5em;
    padding-left: 4px;
}

.article-content ul li::marker {
    color: var(--honey);
}

.article-content blockquote {
    border-left: 3px solid var(--honey);
    padding: 4px 0 4px 20px;
    margin: 1.5em 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1em;
    color: var(--text2);
    max-width: 62ch;
}

/* -------- Divider ornament ✦ ─── ✦ -------- */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: clamp(40px, 5vw, 64px) auto;
    color: var(--honey);
    font-size: 1rem;
    opacity: 0.75;
    max-width: 320px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.divider-mark {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    letter-spacing: 0.5em;
    padding-right: 0.5em;
}

/* -------- Tables -------- */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5em 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: var(--bg2);
}

.table-wrap table {
    margin: 0;
    border-radius: 0;
    border: 0;
    min-width: 480px;
}

@media (max-width: 480px) {
    .table-wrap::after {
        content: "← прокрути →";
        display: block;
        font-size: 0.75rem;
        color: var(--muted);
        text-align: center;
        padding: 4px;
    }
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

th, td {
    text-align: left;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

th {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    color: var(--forest);
    background: rgba(232, 219, 193, 0.35);
    font-size: 0.95rem;
}

tbody tr:last-child td {
    border-bottom: none;
}

td .tnum, th .tnum {
    font-family: var(--font-serif);
    font-feature-settings: 'tnum';
}

/* -------- FAQ (details/summary) -------- */
.faq-item {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.faq-item[open] {
    box-shadow: var(--shadow-soft);
}

.faq-item summary,
details.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text);
    transition: color 0.2s ease;
}

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

.faq-item summary::after {
    content: '+';
    font-family: var(--font-serif);
    font-size: 1.4rem;
    line-height: 1;
    color: var(--honey);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(0deg);
}

.faq-item summary:hover {
    color: var(--honey-dark);
}

.faq-body {
    padding: 0 22px 22px;
    color: var(--text2);
    max-width: 68ch;
}

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

/* -------- Badges / Chips -------- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--bg2);
    border: 1px solid var(--border);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--forest);
    letter-spacing: 0.02em;
}

.badge-honey {
    background: rgba(217, 119, 6, 0.1);
    border-color: rgba(217, 119, 6, 0.3);
    color: var(--honey-dark);
}

.badge-warn {
    background: rgba(160, 51, 43, 0.08);
    border-color: rgba(160, 51, 43, 0.25);
    color: var(--danger);
}

/* -------- Notice/callout -------- */
.notice {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-left: 3px solid var(--honey);
    border-radius: var(--radius-btn);
    padding: 16px 20px;
    margin: 1.5em 0;
    max-width: 68ch;
    color: var(--text2);
}

.notice-warn {
    border-left-color: var(--danger);
    background: rgba(160, 51, 43, 0.04);
}

.notice strong {
    color: var(--text);
}

/* -------- Related links / Breadcrumbs -------- */
.crumbs {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.crumbs a {
    color: var(--muted);
    text-decoration-color: transparent;
}

.crumbs a:hover {
    color: var(--honey-dark);
    text-decoration-color: var(--honey);
}

.crumbs .sep {
    margin: 0 8px;
    opacity: 0.5;
}

.related {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    margin: 2em 0;
}

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

.related a {
    display: block;
    padding: 16px 20px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-btn);
    text-decoration: none;
    color: var(--text);
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    transition: border-color 0.2s ease, transform 0.2s ease;
    min-height: 60px;
}

.related a:hover {
    border-color: var(--honey);
    color: var(--honey-dark);
    transform: translateX(2px);
}

.related a::after {
    content: ' →';
    color: var(--honey);
}

/* -------- Footer -------- */
.site-footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: clamp(32px, 5vw, 56px) 0 clamp(24px, 4vw, 40px);
    margin-top: clamp(40px, 6vw, 80px);
    font-size: 0.9rem;
    color: var(--text2);
}

.footer-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
    margin-bottom: 32px;
}

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

.site-footer h4 {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 12px;
    margin-top: 0;
}

.site-footer ul {
    list-style: none;
}

.site-footer ul li {
    margin-bottom: 8px;
}

.site-footer a {
    color: var(--text2);
    text-decoration-color: transparent;
}

.site-footer a:hover {
    color: var(--honey-dark);
    text-decoration-color: var(--honey);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--muted);
    max-width: 68ch;
    line-height: 1.65;
}

/* -------- Utilities -------- */
.text-center { text-align: center; }
.text-forest { color: var(--forest); }
.text-honey { color: var(--honey-dark); }
.text-muted { color: var(--muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1em; }
.mb-2 { margin-bottom: 1em; }
.mt-4 { margin-top: 2em; }
.mb-4 { margin-bottom: 2em; }

.stack > * + * {
    margin-top: 1em;
}

.stack-lg > * + * {
    margin-top: 1.75em;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.hide-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hide-mobile {
        display: initial;
    }
    .hide-desktop {
        display: none;
    }
}

/* -------- Reduced motion -------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero-card {
        transform: none !important;
    }
}

/* -------- Selection -------- */
::selection {
    background: rgba(217, 119, 6, 0.25);
    color: var(--text);
}

/* -------- Focus visible -------- */
:focus-visible {
    outline: 2px solid var(--honey);
    outline-offset: 3px;
}

/* ========================================================================
   Legacy class aliases — pages authored before class normalization use
   .breadcrumbs / .btn-cta / .cta-row / .topnav / .brand / .lede / .page /
   .pros-cons / .drop-cap / .ornament / .footer-links / .footer-note /
   .bonus-table / .disclaimer. Map them onto the canonical primitives
   defined above so all pages render styled.
   ======================================================================== */

/* Page wrapper (replaces .container inside <article class="page">) */
.page {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(24px, 4vw, 48px) clamp(16px, 3vw, 32px) clamp(40px, 6vw, 64px);
}

/* Top nav */
.topnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 12px 20px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 10px clamp(16px, 3vw, 32px);
    min-height: 64px;
}

@media (max-width: 767px) {
    .topnav {
        flex-wrap: wrap;
    }
    .topnav ul {
        flex-basis: 100%;
        padding-bottom: 4px;
    }
}

.topnav ul {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 4px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

.topnav ul::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .topnav ul {
        flex-wrap: wrap;
        overflow-x: visible;
    }
}

.topnav a {
    color: var(--text2);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 4px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.topnav a:hover {
    color: var(--honey-dark);
}

.brand {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--text);
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    letter-spacing: -0.01em;
}

.brand:hover {
    color: var(--honey-dark);
}

.brand-cyr {
    font-size: 0.95rem;
    color: var(--muted);
    font-style: italic;
    font-weight: 500;
}

/* Breadcrumbs (visual variant used on 7 pages) */
.breadcrumbs {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: var(--muted);
    text-decoration-color: transparent;
}

.breadcrumbs a:hover {
    color: var(--honey-dark);
    text-decoration-color: var(--honey);
}

/* Lede paragraph */
.lede {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.1rem, 0.6vw + 1rem, 1.25rem);
    line-height: 1.6;
    color: var(--text2);
    max-width: 62ch;
    margin-bottom: 1.4em;
}

/* Drop-cap paragraph */
.drop-cap::first-letter {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: 3.5em;
    line-height: 0.85;
    float: left;
    padding: 6px 10px 0 0;
    color: var(--honey-dark);
}

/* CTA row + button (unified) */
.cta-row {
    margin: 1.5em 0;
    max-width: 68ch;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    min-height: 48px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--honey);
    border: none;
    border-radius: var(--radius-btn);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow-soft);
    -webkit-appearance: none;
    appearance: none;
}

.btn-cta:hover,
.btn-cta:focus-visible {
    background: var(--honey-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lift);
    text-decoration: none;
}

.btn-cta:active {
    transform: translateY(0);
}

/* Sticky bottom CTA: unstructured variant (7 pages) — button only */
.sticky-cta > a.btn-cta {
    display: flex;
    max-width: var(--container);
    margin: 0 auto;
}

/* Ornamental divider */
.ornament {
    text-align: center;
    color: var(--honey);
    opacity: 0.7;
    letter-spacing: 0.3em;
    margin: clamp(32px, 5vw, 56px) 0;
    font-size: 0.9rem;
}

/* Pros / cons two-column layout */
.pros-cons {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    margin: 1.5em 0;
}

@media (min-width: 720px) {
    .pros-cons {
        grid-template-columns: 1fr 1fr;
    }
}

.pros, .cons {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 20px 24px;
}

.pros {
    border-left: 3px solid var(--forest);
}

.cons {
    border-left: 3px solid var(--danger);
}

.pros h3, .cons h3 {
    margin-top: 0;
    font-size: 1.15rem;
}

.pros h3 {
    color: var(--forest);
}

.cons h3 {
    color: var(--danger);
}

.pros ul, .cons ul {
    margin: 0 0 0 1.2em;
}

.pros li, .cons li {
    margin-bottom: 0.4em;
}

/* Site header / footer aliases used by 7 pages */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    justify-content: center;
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text2);
    text-decoration-color: transparent;
    padding: 6px 4px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--honey-dark);
    text-decoration-color: var(--honey);
}

.footer-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
    max-width: 68ch;
    margin: 0 auto;
    line-height: 1.6;
}

/* Bonus table + disclaimer callout */
.bonus-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.disclaimer {
    background: rgba(160, 51, 43, 0.05);
    border: 1px solid rgba(160, 51, 43, 0.2);
    border-left: 3px solid var(--danger);
    border-radius: var(--radius-btn);
    padding: 14px 18px;
    margin: 1.5em 0;
    font-size: 0.9rem;
    color: var(--text2);
    max-width: 68ch;
}
