/* VitaNova — editorial light redesign (single source of truth) */

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

:root {
    --paper: #f6f1e8;
    --paper-2: #efe6d7;
    --ink: #14221c;
    --ink-muted: #3d4f47;
    --accent: #b54a32;
    --accent-hover: #943c29;
    --sage: #2f5c4f;
    --sage-light: #e3efe9;
    --line: rgba(20, 34, 28, 0.12);
    --shadow: 0 18px 50px rgba(20, 34, 28, 0.08);
    --radius: 12px;
    --radius-lg: 20px;
    --max: 1120px;
    --font-ui: "Outfit", system-ui, sans-serif;
    --font-display: "Fraunces", Georgia, serif;
    /* legacy var names (inline content on older pages) */
    --color-accent: #b54a32;
    --color-cream: #efe6d7;
    --color-mint: #2f5c4f;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ui);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    font-size: 1.05rem;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--sage);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ——— Site header (shared) ——— */
.site-topbar {
    background: var(--ink);
    color: #c8d4ce;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(246, 241, 232, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--accent);
}

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

.main-nav a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--ink-muted);
}

.main-nav a:hover {
    color: var(--ink);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.9rem;
    background: var(--sage);
    color: #fff !important;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    border: none;
}

.nav-cta:hover {
    background: #264a3f;
    color: #fff;
}

/* ——— Hero (home) ——— */
.hero {
    padding: 3.5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    right: -10%;
    top: 0;
    width: 45%;
    max-width: 480px;
    height: 100%;
    background: repeating-linear-gradient(
        -12deg,
        transparent,
        transparent 12px,
        rgba(47, 92, 79, 0.06) 12px,
        rgba(47, 92, 79, 0.06) 14px
    );
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent);
    padding-left: 0.75rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--ink);
    max-width: 20ch;
    margin-bottom: 1.25rem;
}

.hero-title em,
.hero-lead em {
    font-style: italic;
    color: var(--sage);
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--ink-muted);
    max-width: 50ch;
    margin-bottom: 0.5rem;
}

.hero-description {
    margin-top: 1.25rem;
    max-width: 58ch;
    color: var(--ink-muted);
    font-size: 1.02rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
    margin: 1.75rem 0 2.5rem;
}

.cta-note {
    width: 100%;
    font-size: 0.88rem;
    color: var(--ink-muted);
}

/* ——— Buttons ——— */
.btn,
.btn-primary,
.btn-secondary,
.btn-back,
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(181, 74, 50, 0.28);
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--sage);
    border-color: var(--sage);
}

.btn-secondary:hover {
    background: var(--sage-light);
    color: var(--sage);
}

.btn-block {
    display: block;
    width: 100%;
    max-width: 360px;
    text-align: center;
}

/* ——— Book + author block ——— */
.book-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 1rem;
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
    .book-layout {
        grid-template-columns: 1fr;
    }
    .hero::after {
        display: none;
    }
}

.book-visual {
    position: relative;
}

.book-cover {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.author-panel {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(20, 34, 28, 0.06);
}

.author-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.92rem;
    color: var(--ink-muted);
    margin-bottom: 0.75rem;
}

.disclaimer-pill {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sage);
    background: var(--sage-light);
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    margin-top: 0.5rem;
}

.author-photo {
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px var(--line);
    object-fit: cover;
}

/* ——— Sections ——— */
.section {
    padding: 3.5rem 0;
}

.section-alt,
.section-alternate {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-header {
    margin-bottom: 2rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.section-description,
.muted,
.page-subtitle {
    color: var(--ink-muted);
    max-width: 60ch;
}

.muted,
.page-subtitle {
    font-size: 1.02rem;
}

/* ——— Feature bento ——— */
.features-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (max-width: 700px) {
    .features-bento {
        grid-template-columns: 1fr;
    }
}

.feature-card,
.recipe-tile,
.approach-block,
.faq-item,
.disclaimer-card,
.glass-card,
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem 1.4rem;
    box-shadow: 0 2px 12px rgba(20, 34, 28, 0.04);
}

.feature-card {
    position: relative;
    padding-top: 2.25rem;
}

.feature-num {
    position: absolute;
    top: 1rem;
    left: 1.4rem;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(181, 74, 50, 0.25);
}

.feature-icon {
    display: none;
}

.feature-title,
.recipe-title,
.approach-title,
.faq-question,
.disclaimer-section h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.feature-description,
.recipe-description,
.approach-description,
.faq-answer,
.content p,
.content li {
    font-size: 0.98rem;
    color: var(--ink-muted);
}

.faq-answer,
.approach-description {
    margin: 0;
}

.disclaimer-box,
.age-restriction,
.footer-warning,
.risk-block {
    background: #fff7f0;
    border: 1px solid rgba(181, 74, 50, 0.3);
    border-left: 4px solid var(--accent);
    color: var(--ink);
    padding: 1.1rem 1.25rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.95rem;
    margin: 1.5rem 0 0;
}

/* ——— Recipes ——— */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (max-width: 800px) {
    .recipe-grid {
        grid-template-columns: 1fr;
    }
}

.recipe-tile {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.recipe-emoji {
    width: 3.25rem;
    height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-light);
    border-radius: 10px;
    font-size: 1.6rem;
}

/* ——— Approach ——— */
.approach-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.approach-block {
    border-top: 3px solid var(--sage);
}

/* ——— Author band ——— */
.author-bio {
    padding: 3rem 0;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.author-bio-content {
    max-width: 52ch;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.author-bio-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.author-bio-text {
    color: var(--ink-muted);
}

/* ——— FAQ ——— */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-item {
    border-left: 3px solid var(--accent);
}

.faq-question {
    font-size: 1.05rem;
}

/* ——— CTA band ——— */
.cta-section {
    padding: 3.5rem 0;
    text-align: center;
    background: var(--sage);
    color: #e8f0ec;
    border: none;
}

.cta-section .section-title,
.cta-section p {
    color: #e8f0ec;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .section-title {
    margin-bottom: 0.75rem;
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--sage);
    box-shadow: var(--shadow);
    margin-top: 1.25rem;
}

.cta-section .btn-primary:hover {
    background: var(--paper);
    color: var(--ink);
}

/* ——— Risk / disclaimer (home) ——— */
.risk-section {
    padding: 3.5rem 0;
    background: var(--paper-2);
}

.risk-block {
    margin: 0 0 1.25rem;
    max-width: 900px;
}

.risk-block:last-child {
    margin-bottom: 0;
}

.risk-section h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin: 2rem 0 0.5rem;
}

.risk-subtitle {
    font-size: 1.25rem;
    font-family: var(--font-display);
    margin: 0 0 1rem;
}

.risk-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.risk-cta a {
    display: inline-block;
    padding: 0.9rem 1.5rem;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(181, 74, 50, 0.25);
}

.risk-cta a:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-1px);
}

/* ——— Footer ——— */
footer {
    background: #0f1814;
    color: #a8b5b0;
    padding: 3rem 0 1.5rem;
    font-size: 0.9rem;
}

footer a {
    color: #b8c9c0;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

.legal-licensing-block {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    margin: 0 auto 2.5rem;
    max-width: 720px;
    text-align: left;
    color: #b8c9c0;
}

.legal-licensing-block h3 {
    font-family: var(--font-display);
    color: #e8f0ec;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.legal-licensing-block p,
.legal-licensing-block strong {
    color: #b8c9b8;
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0.2rem 0;
}

.legal-licensing-block .vat-highlight,
footer .vat-highlight {
    color: #fff;
    background: rgba(47, 92, 79, 0.5);
    padding: 0.1em 0.4em;
    border-radius: 4px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
}

.footer-section h3 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7a8e86;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.footer-links,
.research-links ul {
    list-style: none;
}

.footer-links li,
.research-links li {
    margin-bottom: 0.4rem;
}

.research-links li::before {
    content: "· ";
    color: var(--accent);
    font-weight: 700;
}

.research-links p,
.footer-section p,
.footer-section li {
    font-size: 0.88rem;
    line-height: 1.55;
}

.research-links ul {
    margin-top: 0.5rem;
}

.research-links a {
    color: #b8c9b8;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.2);
}

.advertising-disclosure {
    border: 1px solid rgba(181, 74, 50, 0.35);
    background: rgba(40, 24, 20, 0.6);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    margin: 0 0 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.85rem;
    line-height: 1.6;
}

.advertising-disclosure h3 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #e0a08f;
    margin-bottom: 0.75rem;
}

.advertising-disclosure p,
.advertising-disclosure strong {
    color: #b8a9a3;
}

.advertising-disclosure strong {
    color: #e0c9c0;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: #6a7a74;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ——— Legal inner pages ——— */
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0 0;
}

.page .card,
main.card {
    max-width: 760px;
    width: 100%;
    margin: 2.5rem auto 2rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 2.25rem 2rem;
}

.badge,
.hero-category,
.doc-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1.25rem;
    padding: 0.3rem 0.65rem;
    background: var(--sage-light);
    border-radius: 6px;
    background-clip: padding-box;
    -webkit-text-fill-color: initial;
}

/* reset old gradient class names */
.sponsored-badge,
.hero-category {
    background: var(--sage-light) !important;
    -webkit-text-fill-color: var(--sage) !important;
    color: var(--sage) !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    text-align: left;
    position: static;
    width: auto;
    line-height: 1.4;
}

.sponsored-badge {
    display: block;
    max-width: var(--max);
    margin: 0 auto;
    text-align: center;
    border-radius: 0;
    padding: 0.5rem 1.5rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    background: #fff;
}

body > .sponsored-badge {
    margin: 0;
    box-sizing: border-box;
}

.page .content h1,
main.card h1,
.card h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.content h2 {
    font-family: var(--font-display);
    color: var(--sage);
    font-size: 1.2rem;
    margin: 1.75rem 0 0.75rem;
    font-weight: 600;
}

.content ul,
.content ol {
    margin: 0.5rem 0 1.25rem 1.2rem;
}

.footnote,
.card .footnote {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--ink-muted);
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}

.btn-back,
.legal .btn-back,
.card .btn-back,
main .btn-back {
    display: inline-block;
    margin-top: 1.5rem;
    text-decoration: none;
    color: #fff;
    background: var(--sage);
    font-weight: 600;
    padding: 0.6rem 1.1rem;
    border-radius: 8px;
    border: none;
}

footer .footer-links a {
    margin-right: 0.5rem;
}

/* definition list in legal */
.definition-list {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.4rem 1.25rem;
    font-size: 0.95rem;
}

.definition-list dt {
    font-weight: 600;
    color: var(--sage);
}

/* ——— Contact page ——— */
.contact-hero h1,
section.hero h1 {
    text-align: left;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
}

/* Contact page: old header (when not using full site header) - align with new */
header .logo span {
    color: var(--accent);
}

header nav a {
    margin-left: 0;
    text-decoration: none;
    color: var(--ink-muted);
    font-weight: 500;
    margin-left: 1.25rem;
}

.contact-section,
.faq-section {
    padding: 2.5rem 0 3.5rem;
    background: var(--paper-2);
}

.faq-section {
    background: var(--paper);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    margin-top: 0;
    align-items: start;
}

@media (max-width: 960px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-wrapper h2,
.contact-form-wrapper p {
    margin-bottom: 0.75rem;
}

.contact-form-wrapper h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.contact-form-wrapper {
    background: #fff;
    padding: 1.75rem 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 28px rgba(20, 34, 28, 0.05);
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
    background: #fafaf8;
    color: var(--ink);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid rgba(47, 92, 79, 0.3);
    border-color: var(--sage);
    background: #fff;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    margin-top: 0.25rem;
}

.btn-submit:hover {
    background: var(--accent-hover);
    color: #fff;
}

.success-message {
    display: none;
    background: var(--sage-light);
    border: 1px solid var(--sage);
    color: var(--sage);
    padding: 0.9rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
    font-weight: 500;
}

.success-message.show {
    display: block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.2rem 1.1rem;
    border-left: 3px solid var(--accent);
}

.info-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-display);
    margin: 0.2rem 0 0.5rem;
    color: var(--ink);
}

.info-card a {
    color: var(--sage);
    font-weight: 500;
}

/* ——— Disclaimer / inner pages ——— */
.main-content {
    padding: 0 0 2rem;
    background: var(--paper-2);
}

.main-content .container,
.disclaimer-page-content {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.3rem);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.back-link,
.nav-link {
    text-decoration: none;
    color: var(--sage);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link {
    color: var(--sage);
    margin-left: auto;
}

header.header {
    position: static;
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
}

header.header + .main-content,
.site-header + main {
    margin-top: 0;
}

.disclaimer-section h3,
.disclaimer-section h2 {
    color: var(--sage);
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0 0;
}

@media (max-width: 800px) {
    .disclaimer-grid {
        grid-template-columns: 1fr;
    }
}

/* disclaimer inline fixes - use new vars */
.glass-card {
    border-left: 2px solid var(--sage);
    box-shadow: var(--shadow);
}

/* legacy gradient title fix */
.disclaimer-page-content .section-title,
.section-header .section-title,
.faq-section .section-title,
.contact-section .section-title,
main .section-title,
.section .section-title,
.cta-section .section-title,
.author-bio-title,
.author-bio .author-bio-title,
.footer-section h3 {
    background: none;
    -webkit-text-fill-color: var(--ink);
    color: var(--ink);
}

.faq-item {
    text-align: left;
}

/* Feature cards - remove old float animation */
.feature-card,
.recipe-tile,
.approach-block,
.faq-item {
    opacity: 1;
    transform: none;
}

/* footer warning */
.footer-warning {
    margin-top: 0;
    border-radius: 8px;
    font-size: 0.85rem;
}

/* fade-in (optional - no initial hide) */
.fade-in-up {
    animation: none;
}

@keyframes simpleFade {
    from {
        opacity: 0.99;
    }
    to {
        opacity: 1;
    }
}

/* Mobile fine-tuning */
@media (max-width: 600px) {
    .main-nav {
        width: 100%;
        justify-content: flex-start;
    }
    .sponsored-badge {
        font-size: 0.58rem;
        line-height: 1.3;
    }
}
