/* ── Reset & Base ── */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: background 0.2s ease, color 0.2s ease;
    min-height: 100vh;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ── CSS Custom Properties (Light) ── */

:root {
    --coral: #FF6F61;
    --apricot: #FFB38A;
    --soft-feed: #FFF4EC;
    --plum: #7D3357;
    --charcoal: #201A1D;
    --white: #FFFFFF;

    --bg: var(--soft-feed);
    --card-bg: var(--white);
    --text: var(--charcoal);
    --text-muted: #6B5E63;
    --heading: var(--charcoal);
    --border-subtle: rgba(32, 26, 29, 0.08);
    --shadow-card: 0 2px 12px rgba(32, 26, 29, 0.06);
    --shadow-hover: 0 4px 20px rgba(32, 26, 29, 0.10);
    --header-bg: rgba(255, 244, 236, 0.85);
    --pull-quote-bg: #FFF0E6;
    --pull-quote-border: var(--coral);
    --tag-bg: #F5E8E0;
    --tag-text: var(--plum);
    --footer-bg: var(--charcoal);
    --footer-text: #F5F0F2;
    --player-bg: #1A1517;
    --player-text: #F5F0F2;

    /* Gradient colours for animated hero */
    --grad-1: #FF6F61;   /* coral */
    --grad-2: #FFB38A;   /* apricot */
    --grad-3: #7D3357;   /* plum */
    --grad-4: #E8856E;   /* warm mid-tone */
}

/* ── CSS Custom Properties (Dark) ── */

[data-theme="dark"] {
    --bg: #201A1D;
    --card-bg: #2A2226;
    --text: #F5F0F2;
    --text-muted: #B8A9AE;
    --heading: #F5F0F2;
    --border-subtle: rgba(245, 240, 242, 0.08);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.20);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.30);
    --header-bg: rgba(32, 26, 29, 0.85);
    --pull-quote-bg: #3A2A30;
    --tag-bg: #3A2A30;
    --tag-text: var(--apricot);
    --footer-bg: #161012;
    --player-bg: #131011;

    /* Darker, richer gradient for dark mode */
    --grad-1: #C44A3F;   /* deeper coral */
    --grad-2: #D4885E;   /* deeper apricot */
    --grad-3: #5A2240;   /* deeper plum */
    --grad-4: #A85A4A;   /* deeper warm mid */
}

/* ── Animated Gradient Keyframes ── */

@keyframes yg2fHeroShift {
    0%   { background-position: 0% 50%; }
    25%  { background-position: 50% 100%; }
    50%  { background-position: 100% 50%; }
    75%  { background-position: 50% 0%; }
    100% { background-position: 0% 50%; }
}

@keyframes yg2fBlobDrift1 {
    0%,100% { transform: translate(0, 0) scale(1); }
    33%     { transform: translate(20px, -25px) scale(1.08); }
    66%     { transform: translate(-15px, 15px) scale(0.95); }
}

@keyframes yg2fBlobDrift2 {
    0%,100% { transform: translate(0, 0) scale(1); }
    40%     { transform: translate(-22px, 18px) scale(1.1); }
    70%     { transform: translate(14px, -10px) scale(0.92); }
}

@keyframes yg2fDotPulse {
    0%,100% { opacity: 0.18; transform: scale(1); }
    50%     { opacity: 0.5; transform: scale(1.5); }
}

@keyframes yg2fFloat {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-18px); }
}

@keyframes yg2fCardAccent {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ── Typography ── */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(1.75rem, 4.5vw, 3rem);
}

h2 {
    font-size: clamp(1.375rem, 3vw, 2.25rem);
}

h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

h4 {
    font-size: clamp(1rem, 2vw, 1.25rem);
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.section-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.375rem, 3vw, 2.125rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

/* ── Layout & Container ── */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

main {
    min-height: calc(100vh - 72px - 300px);
}

/* ── Buttons ── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    text-decoration: none;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
}

.btn-primary:hover {
    background: #E55A4E;
    box-shadow: 0 4px 16px rgba(255, 111, 97, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border-subtle);
}

.btn-outline:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0;
}

.icon-btn:hover {
    background: var(--border-subtle);
}

.card-link {
    color: var(--coral);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.card-link:hover {
    gap: 8px;
}

/* ── Header / Navigation ── */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 72px;
    background: var(--header-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 48px;
}

.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

[data-theme="dark"] .logo-light {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: block;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 4px;
}

.desktop-nav a {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    background: var(--coral);
    color: var(--white);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.theme-toggle .material-icons,
.search-toggle .material-icons,
.hamburger-btn .material-icons {
    font-size: 24px;
}

.hamburger-btn {
    display: inline-flex;
}

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

    .hamburger-btn {
        display: none;
    }
}

/* ── Mobile Navigation ── */

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(32, 26, 29, 0.45);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--card-bg);
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.mobile-nav-overlay.open .mobile-nav {
    transform: translateX(0);
}

.mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    margin-left: auto;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.mobile-nav-close:hover {
    background: var(--border-subtle);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-links a {
    display: block;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: var(--coral);
    color: var(--white);
}

/* ── Footer ── */

.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

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

.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--footer-text);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--footer-text);
    opacity: 0.8;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    padding: 4px 0;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--coral);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    padding: 0;
}

.footer-social a:hover {
    background: var(--coral);
    opacity: 1;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 10px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--footer-text);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.2s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(245, 240, 242, 0.5);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--coral);
}

.newsletter-form button {
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--coral);
    color: var(--white);
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsletter-form button:hover {
    background: #E55A4E;
}

.listen-strip {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
}

.listen-strip h4 {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: var(--footer-text);
}

.listen-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.listen-links a {
    font-size: 0.85rem;
    opacity: 0.7;
    transition: all 0.2s ease;
    display: inline;
    padding: 0;
}

.listen-links a:hover {
    opacity: 1;
    color: var(--coral);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-bottom a {
    display: inline;
    padding: 0;
    opacity: 1;
}

.footer-bottom a:hover {
    color: var(--coral);
}

.help-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--coral);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    opacity: 1;
}

.help-pill:hover {
    background: #E55A4E;
    transform: translateY(-1px);
    color: var(--white);
}

/* ── Cards ── */

.content-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.2s ease;
}

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

.content-card .card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.content-card .card-body {
    padding: 20px;
}

.content-card .card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.content-card .card-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.content-card .card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Category Colours ── */

.category-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-health {
    background: #FF6F61;
    color: #FFFFFF;
}

.category-addiction {
    background: #7D3357;
    color: #FFFFFF;
}

.category-depression {
    background: #201A1D;
    color: #FFFFFF;
}

.category-weight-loss {
    background: #FFB38A;
    color: #201A1D;
}

.category-life {
    background: #FF6F61;
    color: #FFFFFF;
}

[data-theme="dark"] .category-depression {
    background: #F5F0F2;
    color: #201A1D;
}

/* ── Pull Quote ── */

.pull-quote {
    border-left: 4px solid var(--pull-quote-border);
    background: var(--pull-quote-bg);
    padding: 24px 24px 24px 28px;
    border-radius: 0 12px 12px 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 32px 0;
}

/* ── Hero Section ── */

.hero {
    text-align: center;
    padding: 80px 20px 60px;
}

.hero h1 {
    max-width: 800px;
    margin: 0 auto 16px;
}

.hero .subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ── Placeholder Section ── */

.placeholder-section {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.placeholder-section h2 {
    margin-bottom: 12px;
    color: var(--text-muted);
}

/* ── Utilities ── */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ══════════════════════════════════════════════════════════════════════
   P5-A: About Page Styles
   ══════════════════════════════════════════════════════════════════════ */

.about-hero {
    padding: 64px 0 48px;
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 32px;
}

.hero-photo {
    width: 220px;
    height: 220px;
    border-radius: 24px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--apricot), var(--coral));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
}

.hero-photo .material-icons {
    font-size: 80px;
    color: var(--white);
    opacity: 0.6;
}

@media (min-width: 768px) {
    .hero-photo {
        width: 280px;
        height: 280px;
        border-radius: 32px;
    }
}

.hero-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    letter-spacing: -0.02em;
    color: var(--coral);
    margin-bottom: 0;
}

.about-story {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 0 48px;
}

.about-story h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.about-story p {
    line-height: 1.75;
    font-size: 1.0625rem;
    margin-bottom: 24px;
}

.about-timeline {
    padding: 48px 0;
    max-width: 760px;
    margin: 0 auto;
}

.about-timeline h2 {
    font-size: 1.5rem;
    margin-bottom: 32px;
    text-align: center;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: linear-gradient(to bottom, var(--coral), var(--apricot));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -33px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--coral);
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 3px var(--coral);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.timeline-year {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--coral);
    margin-bottom: 4px;
}

.timeline-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.about-mission {
    padding: 48px 0;
}

.mission-card {
    max-width: 760px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 24px;
    padding: 48px 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
    text-align: center;
}

.mission-card h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.mission-card p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.mission-card p strong {
    color: var(--text);
}

.about-cta {
    padding: 48px 0 64px;
    text-align: center;
}

.about-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════════════
   P5-A: Resources Page Styles
   ══════════════════════════════════════════════════════════════════════ */

.resource-header {
    padding: 64px 0 16px;
    text-align: center;
}

.resource-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

.resource-header p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.resource-helplines {
    padding: 32px 0 48px;
}

.helpline-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

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

.helpline-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
    border-left: 4px solid var(--coral);
    transition: all 0.2s ease;
}

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

.helpline-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--heading);
}

.helpline-number {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--coral);
    margin-bottom: 8px;
    display: block;
}

.helpline-number a {
    color: var(--coral);
    transition: all 0.2s ease;
}

.helpline-number a:hover {
    opacity: 0.8;
}

.helpline-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.helpline-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--coral);
    transition: all 0.2s ease;
}

.helpline-link:hover {
    gap: 8px;
}

.helpline-link .material-icons {
    font-size: 16px;
}

.resource-books {
    padding: 0 0 48px;
}

.book-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

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

.book-card {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
    display: flex;
    gap: 20px;
    padding: 24px;
    transition: all 0.2s ease;
}

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

.book-cover {
    width: 80px;
    height: 120px;
    border-radius: 8px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--plum), var(--coral));
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-cover .material-icons {
    font-size: 32px;
    color: var(--white);
    opacity: 0.6;
}

.book-info {
    flex: 1;
    min-width: 0;
}

.book-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--heading);
}

.book-author {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.book-rec {
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.5;
    font-style: italic;
}

.resource-community {
    padding: 0 0 48px;
}

.community-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 640px;
}

.community-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
    transition: all 0.2s ease;
}

.community-link:hover {
    box-shadow: var(--shadow-hover);
    transform: translateX(4px);
}

.community-link .material-icons {
    font-size: 20px;
    color: var(--coral);
    flex-shrink: 0;
}

.community-link span {
    font-weight: 500;
    font-size: 0.9375rem;
}

.resource-disclaimer {
    padding: 0 0 64px;
}

.disclaimer-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
    text-align: center;
}

.disclaimer-card .material-icons {
    font-size: 32px;
    color: var(--apricot);
    margin-bottom: 12px;
}

.disclaimer-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.disclaimer-card p strong {
    color: var(--text);
}

/* ======================================================================
   P5-B: Contact Page Styles
   ====================================================================== */

.contact-header {
    padding: 64px 0 16px;
    text-align: center;
}

.contact-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Contact Form ── */

.contact-form-section {
    padding: 32px 0 48px;
}

.contact-form-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
}

@media (max-width: 768px) {
    .contact-form-card {
        padding: 32px 20px;
    }
}

.contact-form-card .form-group {
    margin-bottom: 20px;
}

.contact-form-card .form-group label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--heading);
}

.contact-form-card .form-group input,
.contact-form-card .form-group select,
.contact-form-card .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 2px solid var(--border-subtle);
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.2s ease;
    outline: none;
}

.contact-form-card .form-group input:focus,
.contact-form-card .form-group select:focus,
.contact-form-card .form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 111, 97, 0.12);
}

.contact-form-card .form-group input::placeholder,
.contact-form-card .form-group textarea::placeholder {
    color: var(--text-muted);
}

.contact-form-card .form-group textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.6;
}

.contact-form-card .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B5E63' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

[data-theme="dark"] .contact-form-card .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B8A9AE' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    background: var(--coral);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    justify-content: center;
}

.contact-submit-btn:hover {
    background: #E55A4E;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 111, 97, 0.3);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

@media (min-width: 768px) {
    .contact-submit-btn {
        width: auto;
    }
}

.contact-form-note {
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
}

/* ── Contact Feedback ── */

.contact-feedback {
    padding: 14px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.contact-feedback-success {
    background: rgba(76, 175, 80, 0.1);
    color: #2E7D32;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

[data-theme="dark"] .contact-feedback-success {
    background: rgba(76, 175, 80, 0.15);
    color: #81C784;
    border-color: rgba(76, 175, 80, 0.25);
}

.contact-feedback-error {
    background: rgba(244, 67, 54, 0.1);
    color: #C62828;
    border: 1px solid rgba(244, 67, 54, 0.2);
}

[data-theme="dark"] .contact-feedback-error {
    background: rgba(244, 67, 54, 0.15);
    color: #EF9A9A;
    border-color: rgba(244, 67, 54, 0.25);
}

/* ── Social Link Cards ── */

.contact-social-section {
    padding: 0 0 48px;
    text-align: center;
}

.contact-social-section h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.social-cards {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 640px;
    margin: 0 auto;
}

.social-card {
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

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

.social-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-card-icon .material-icons {
    font-size: 28px;
}

.social-card-icon.instagram {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
}

.social-card-icon.tiktok {
    background: #010101;
}

.social-card-icon.youtube {
    background: #FF0000;
}

.social-card-name {
    font-weight: 600;
    font-size: 0.9375rem;
}

/* ── Business Note ── */

.contact-business-note {
    padding: 0 0 64px;
    text-align: center;
}

.contact-business-note p {
    font-size: 0.875rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.5;
    background: var(--card-bg);
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}

/* ========================================================================
   P3-B: Blog Public Pages
   ======================================================================== */

/* ── Blog Header ── */

.blog-header {
    text-align: center;
    padding: 48px 0 32px;
}

.blog-header h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.blog-header__intro {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* ── Category Filter Pills ── */

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.blog-pill {
    padding: 8px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 999px;
    border: 2px solid transparent;
    background: var(--card-bg);
    color: var(--text);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.blog-pill:hover {
    transform: translateY(-1px);
}

/* Default / All pill active */
.blog-pill--active {
    border-color: var(--coral);
    background: var(--coral);
    color: var(--white);
}

/* Category-specific pill borders and active states */
.blog-pill--health {
    border-color: var(--coral);
}
.blog-pill--health.blog-pill--active {
    background: var(--coral);
    color: var(--white);
}

.blog-pill--addiction {
    border-color: var(--plum);
}
.blog-pill--addiction.blog-pill--active {
    background: var(--plum);
    color: var(--white);
}

.blog-pill--depression {
    border-color: var(--charcoal);
}
.blog-pill--depression.blog-pill--active {
    background: var(--charcoal);
    color: var(--white);
}
[data-theme="dark"] .blog-pill--depression {
    border-color: #F5F0F2;
}
[data-theme="dark"] .blog-pill--depression.blog-pill--active {
    background: #F5F0F2;
    color: #201A1D;
}

.blog-pill--weight-loss {
    border-color: var(--apricot);
}
.blog-pill--weight-loss.blog-pill--active {
    background: var(--apricot);
    color: var(--charcoal);
}

.blog-pill--life {
    border-color: var(--coral);
}
.blog-pill--life.blog-pill--active {
    background: var(--coral);
    color: var(--white);
}

/* ── Blog Search ── */

.blog-search {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}

.blog-search input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 2px solid var(--border-subtle);
    border-radius: 999px;
    background: var(--card-bg);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.blog-search input:focus {
    border-color: var(--coral);
}

.blog-search .material-icons {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

/* ── Featured Post ── */

.blog-featured {
    margin: 48px 0;
}

.blog-featured__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease;
}

.blog-featured__card:hover {
    box-shadow: var(--shadow-hover);
}

.blog-featured__image {
    aspect-ratio: 16/9;
    background: #D4CDD0;
    border-radius: 12px;
    margin: 24px 0 24px 24px;
    position: relative;
    overflow: hidden;
}

.blog-featured__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.blog-featured__content {
    padding: 32px 32px 32px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.blog-featured__badges {
    display: flex;
    gap: 8px;
    align-items: center;
}

.blog-featured__badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--coral);
    color: var(--white);
    border-radius: 999px;
    width: fit-content;
}

.blog-featured__card h2 {
    font-size: 1.75rem;
    margin: 0;
}

.blog-featured__excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.blog-featured__meta {
    display: flex;
    gap: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.blog-featured__link {
    font-weight: 600;
    color: var(--coral);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}

.blog-featured__card:hover .blog-featured__link {
    gap: 8px;
}

.blog-featured__link .material-icons {
    font-size: 18px;
}

.blog-featured__placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #D6CDD0 0%, #BEB3B7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9A8F93;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
}

[data-theme="dark"] .blog-featured__placeholder {
    background: linear-gradient(135deg, #3A2A30 0%, #2E2228 100%);
    color: #6B5E63;
}

/* ── Blog Grid ── */

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

/* ── Blog Card ── */

.blog-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.2s ease;
}

.blog-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px) scale(1.01);
}

.blog-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card__image {
    aspect-ratio: 16/9;
    background: #D4CDD0;
    position: relative;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.blog-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-card__title {
    font-size: 1.25rem;
    margin: 0;
}

.blog-card__excerpt {
    color: var(--text-muted);
    font-size: 0.9375rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.blog-card__meta {
    display: flex;
    gap: 16px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.blog-card__placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #D6CDD0 0%, #BEB3B7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9A8F93;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

[data-theme="dark"] .blog-card__placeholder {
    background: linear-gradient(135deg, #3A2A30 0%, #2E2228 100%);
    color: #6B5E63;
}

/* ── Pagination ── */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 64px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    color: var(--text);
    text-decoration: none;
}

.pagination a:hover {
    background: rgba(255, 111, 97, 0.10);
    color: var(--coral);
}

.pagination__active {
    background: var(--coral);
    color: var(--white) !important;
}

.pagination__disabled {
    opacity: 0.4;
    pointer-events: none;
}

.pagination__ellipsis {
    pointer-events: none;
}

/* ── No Results ── */

.blog-no-results {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-muted);
    grid-column: 1 / -1;
}

.blog-no-results .material-icons {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

/* ── Single Post Header ── */

.blog-post-header {
    text-align: center;
    padding: 48px 0 0;
}

.blog-post-header .container {
    max-width: 1200px;
}

.blog-post-header__title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post-header__meta {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.blog-post-header__meta span {
    margin: 0 6px;
}

.blog-post-header__image {
    max-width: 960px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
}

.blog-post-header__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-header__image--placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #D6CDD0 0%, #BEB3B7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9A8F93;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

[data-theme="dark"] .blog-post-header__image--placeholder {
    background: linear-gradient(135deg, #3A2A30 0%, #2E2228 100%);
    color: #6B5E63;
}

/* ── Post Body ── */

.blog-post-body-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 0;
    position: relative;
}

.blog-post-body {
    max-width: 720px;
    margin: 0 auto;
}

.blog-post-body p {
    margin-bottom: 24px;
}

.blog-post-body .video-embed {
    margin: 48px 0 12px;
    aspect-ratio: 16/9;
    background: #1A1315;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.blog-post-body .video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

/* ── Post Tags ── */

.blog-post-tags {
    max-width: 720px;
    margin: 48px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-tag-pill {
    display: inline-block;
    background: var(--tag-bg);
    color: var(--tag-text);
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 999px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.blog-tag-pill:hover {
    background: var(--coral);
    color: var(--white);
}

/* ── Share Buttons ── */

.share-sidebar {
    position: fixed;
    left: calc((100vw - 1200px) / 2 - 72px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: var(--card-bg);
    color: var(--text);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
}

.share-btn:hover {
    background: var(--coral);
    color: var(--white);
    transform: translateY(-2px);
}

.share-btn:hover svg {
    fill: var(--white);
}

.share-btn .material-icons {
    font-size: 20px;
}

.share-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.share-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--card-bg);
    border-top: 1px solid var(--border-subtle);
    padding: 8px 16px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -2px 12px rgba(32, 26, 29, 0.06);
}

.share-bottom-bar .share-btn {
    box-shadow: none;
}

.share-copy-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--charcoal);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.share-copy-tooltip.show {
    opacity: 1;
}

[data-theme="dark"] .share-copy-tooltip {
    background: var(--white);
    color: var(--charcoal);
}

/* ── Related Posts ── */

.blog-related {
    max-width: 1200px;
    margin: 64px auto 0;
    padding: 0 24px 64px;
}

.blog-related__title {
    font-size: 1.5rem;
    margin-bottom: 32px;
    text-align: center;
}

.blog-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── Blog Responsive ── */

@media (max-width: 1200px) {
    .share-sidebar {
        display: none;
    }
    .share-bottom-bar {
        display: flex;
    }
}

@media (max-width: 767px) {
    .blog-header h1 {
        font-size: 1.75rem;
    }
    .blog-header {
        padding: 32px 0 24px;
    }

    .blog-featured__card {
        grid-template-columns: 1fr;
    }
    .blog-featured__image {
        margin: 16px 16px 0;
    }
    .blog-featured__content {
        padding: 16px 24px 24px;
    }
    .blog-featured__card h2 {
        font-size: 1.375rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-related__grid {
        grid-template-columns: 1fr;
    }

    .blog-post-header__image {
        border-radius: 0;
        margin-left: -16px;
        margin-right: -16px;
        max-width: calc(100% + 32px);
    }
    .blog-post-body-wrapper {
        padding: 32px 16px 0;
    }
    .blog-post-header {
        padding: 32px 0 0;
    }
    .blog-post-header__title {
        font-size: clamp(1.5rem, 5vw, 2.25rem);
    }
}

/* ══════════════════════════════════════════════════════════════════════
   PODCAST — P4-B
   ══════════════════════════════════════════════════════════════════════ */

/* ── Podcast Header ── */

.podcast-header {
    text-align: center;
    padding: 64px 0 48px;
}

.podcast-header h1 {
    font-size: 48px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 12px;
}

.podcast-header__intro {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 24px;
}

.podcast-header__platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.platform-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: 2px solid var(--coral);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--coral);
    transition: all 0.2s ease;
}

.platform-pill:nth-child(even) {
    border-color: var(--apricot);
    color: var(--plum);
}

.platform-pill:hover {
    background: var(--coral);
    color: var(--white);
}

.platform-pill:nth-child(even):hover {
    background: var(--apricot);
    color: var(--plum);
}

.platform-pill .material-icons {
    font-size: 18px;
}

/* ── Podcast Filters ── */

.podcast-filters {
    padding: 0 0 32px;
}

.podcast-filters__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.podcast-filters__seasons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.season-pill {
    display: inline-block;
    padding: 8px 18px;
    border: 2px solid var(--border-subtle);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.season-pill:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.season-pill.active {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--white);
}

.podcast-filters__search {
    position: relative;
    display: flex;
    align-items: center;
}

.podcast-filters__search .material-icons {
    position: absolute;
    left: 14px;
    font-size: 20px;
    color: var(--text-muted);
    pointer-events: none;
}

.podcast-filters__search input {
    padding: 10px 16px 10px 42px;
    border: 2px solid var(--border-subtle);
    border-radius: 999px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background: var(--card-bg);
    color: var(--text);
    width: 240px;
    transition: border-color 0.2s ease;
}

.podcast-filters__search input:focus {
    outline: none;
    border-color: var(--coral);
}

/* ── Episode List ── */

.episode-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 48px;
}

/* ── No Results ── */

.podcast-no-results {
    text-align: center;
    padding: 64px 16px;
    color: var(--text-muted);
}

.podcast-no-results .material-icons {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
}

.podcast-no-results p {
    font-size: 16px;
}

/* ── Episode Card ── */

.episode-card {
    background: var(--card-bg);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.episode-card-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    text-decoration: none;
    color: var(--text);
}

.episode-card__badge {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    background: var(--coral);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.episode-card__content {
    flex: 1;
    min-width: 0;
}

.episode-card__content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.episode-card__desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.episode-card__meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
    align-items: center;
}

.episode-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.episode-card__meta .material-icons {
    font-size: 16px;
}

.episode-card__listen-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: var(--coral);
    color: var(--white);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.episode-card__listen-btn .material-icons {
    font-size: 18px;
}

.episode-card:hover .episode-card__listen-btn {
    background: var(--plum);
    transform: scale(1.04);
}

.episode-card__player {
    height: 80px;
    background: var(--player-bg);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 32px;
    border-radius: 0 0 24px 24px;
}

.episode-card__play {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--coral);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.episode-card__play:hover {
    background: var(--apricot);
}

.episode-card__play .material-icons {
    font-size: 20px;
}

.episode-card__track {
    flex: 1;
    min-width: 0;
}

.episode-card__track-title {
    font-size: 13px;
    color: var(--player-text);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.episode-card__bar-wrap {
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.episode-card__bar {
    height: 100%;
    width: 0%;
    background: var(--coral);
    border-radius: 2px;
}

.episode-card__time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

/* ── Episode Header (Single Page) ── */

.episode-header {
    padding: 48px 0 0;
}

.episode-header__inner {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.episode-header__artwork {
    width: 240px;
    height: 240px;
    min-width: 240px;
    border-radius: 16px;
    overflow: hidden;
}

.episode-header__artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.episode-header__artwork-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--apricot), var(--coral));
    display: flex;
    align-items: center;
    justify-content: center;
}

.episode-header__artwork-fallback .material-icons {
    font-size: 64px;
    color: var(--white);
}

.episode-header__info {
    flex: 1;
}

.episode-header__badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--coral);
    color: var(--white);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.episode-header__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 8px;
}

.episode-header__meta {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

.episode-header__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.episode-header__actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.episode-header__actions .btn .material-icons {
    font-size: 20px;
}

.episode-header__actions .btn-primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}

.episode-header__actions .btn-primary:hover {
    background: var(--plum);
    border-color: var(--plum);
}

.episode-header__actions .btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border-subtle);
}

.episode-header__actions .btn-outline:hover {
    border-color: var(--coral);
    color: var(--coral);
}

/* ── Episode Player ── */

.episode-player {
    padding: 32px 0;
}

.episode-player__embed {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
}

.episode-player__placeholder {
    background: var(--player-bg);
    border-radius: 16px;
    padding: 24px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.episode-player__play-btn {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: var(--coral);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.episode-player__play-btn:hover {
    transform: scale(1.06);
    filter: brightness(0.9);
}

.episode-player__play-btn .material-icons {
    font-size: 28px;
}

.episode-player__body {
    flex: 1;
    min-width: 0;
}

.episode-player__title {
    font-size: 15px;
    color: var(--player-text);
    font-weight: 500;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.episode-player__progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.episode-player__progress-fill {
    height: 100%;
    width: 35%;
    background: var(--coral);
    border-radius: 3px;
}

.episode-player__times {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.episode-player__subscribe {
    max-width: 800px;
    margin: 16px auto 0;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}

.episode-player__subscribe a {
    color: var(--coral);
    font-weight: 600;
    text-decoration: none;
}

.episode-player__subscribe a:hover {
    text-decoration: underline;
}

.episode-player__subscribe span {
    margin: 0 4px;
    color: var(--text-muted);
}

/* ── Show Notes ── */

.episode-notes {
    padding: 48px 0;
}

.episode-notes .container {
    max-width: 800px;
}

.episode-notes h2 {
    margin-bottom: 24px;
}

.episode-notes__body p {
    margin-bottom: 20px;
    line-height: 1.75;
    font-size: 17px;
}

.episode-notes__body a {
    color: var(--coral);
    text-decoration: underline;
}

.episode-notes__body ul,
.episode-notes__body ol {
    margin-bottom: 20px;
    padding-left: 24px;
    list-style: disc;
}

.episode-notes__body li {
    margin-bottom: 8px;
    line-height: 1.75;
    font-size: 17px;
}

/* ── Timestamps ── */

.episode-timestamps {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
    margin: 32px 0;
}

.episode-timestamps h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 18px;
}

.episode-timestamps h3 .material-icons {
    color: var(--coral);
    font-size: 22px;
}

.episode-timestamps__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.episode-timestamps__item {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.episode-timestamps__item:last-child {
    border-bottom: none;
}

.episode-timestamps__item:hover {
    transform: translateX(4px);
}

.episode-timestamps__time {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--coral);
    font-size: 15px;
    min-width: 48px;
}

.episode-timestamps__label {
    font-size: 15px;
    font-weight: 500;
}

/* ── Related Blog Post ── */

.episode-related {
    padding: 0 0 48px;
}

.episode-related .container {
    max-width: 800px;
}

.episode-related h2 {
    margin-bottom: 16px;
}

.episode-related__card {
    display: block;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.episode-related__img {
    height: 180px;
    overflow: hidden;
}

.episode-related__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.episode-related__img--fallback {
    background: linear-gradient(135deg, var(--apricot), var(--coral));
    display: flex;
    align-items: center;
    justify-content: center;
}

.episode-related__img--fallback .material-icons {
    font-size: 48px;
    color: var(--white);
}

.episode-related__body {
    padding: 24px;
}

.episode-related__body h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.episode-related__body p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
}

/* ── Prev/Next Navigation ── */

.episode-nav {
    padding: 0 0 64px;
}

.episode-nav .container {
    max-width: 800px;
}

.episode-nav__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.episode-nav__card {
    display: block;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
    text-decoration: none;
    color: var(--text);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.episode-nav__card--next {
    text-align: right;
}

.episode-nav__label {
    font-size: 13px;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    margin-bottom: 6px;
}

.episode-nav__title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

/* ── Episode Share ── */

.episode-share {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 0 48px;
}

/* ── Podcast Responsive: 768px ── */

@media (max-width: 768px) {
    .podcast-header h1 {
        font-size: 32px;
    }
    .podcast-header__intro {
        font-size: 16px;
    }

    .podcast-filters__inner {
        flex-direction: column;
        align-items: stretch;
    }
    .podcast-filters__search input {
        width: 100%;
    }

    .episode-card-inner {
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }
    .episode-card__badge {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 14px;
    }
    .episode-card__listen-btn {
        width: 100%;
        justify-content: center;
    }
    .episode-card__player {
        padding: 0 24px;
    }

    .episode-header__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .episode-header__artwork {
        width: 200px;
        height: 200px;
        min-width: 200px;
    }
    .episode-header__actions {
        justify-content: center;
    }

    .episode-nav__grid {
        grid-template-columns: 1fr;
    }
    .episode-nav__card--next {
        text-align: left;
    }
}

/* ── Podcast Responsive: 375px ── */

@media (max-width: 375px) {
    .episode-card-inner {
        padding: 16px;
    }
    .episode-card__player {
        padding: 0 16px;
    }
}

/* ── P6-D: Newsletter Signup Component ── */

.newsletter-signup__honeypot {
    position: absolute;
    left: -9999px;
}

/* -- Homepage variant -- */

.newsletter-signup--homepage {
    width: 100%;
    padding: 64px 24px;
    background: linear-gradient(135deg, var(--coral), var(--apricot));
    text-align: center;
}

.newsletter-signup--homepage .newsletter-signup__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    color: var(--white);
    margin-bottom: 8px;
}

.newsletter-signup--homepage .newsletter-signup__subtext {
    color: var(--white);
    opacity: 0.88;
    font-size: 0.9375rem;
    margin-bottom: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-signup--homepage .newsletter-signup__form {
    display: flex;
    gap: 12px;
    max-width: 560px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.newsletter-signup--homepage .newsletter-signup__input {
    flex: 1 1 260px;
    padding: 14px 20px;
    border-radius: 999px;
    border: none;
    background: var(--white);
    color: var(--charcoal);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
}

.newsletter-signup--homepage .newsletter-signup__input::placeholder {
    color: #999;
}

.newsletter-signup--homepage .newsletter-signup__input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.newsletter-signup--homepage .newsletter-signup__btn {
    padding: 14px 28px;
    border-radius: 999px;
    border: none;
    background: var(--charcoal);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease;
}

.newsletter-signup--homepage .newsletter-signup__btn:hover {
    background: #3a3035;
}

[data-theme="dark"] .newsletter-signup--homepage {
    background: linear-gradient(135deg, #5A2535, #3D2228);
}

[data-theme="dark"] .newsletter-signup--homepage .newsletter-signup__input {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

[data-theme="dark"] .newsletter-signup--homepage .newsletter-signup__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .newsletter-signup--homepage .newsletter-signup__btn {
    background: var(--coral);
}

[data-theme="dark"] .newsletter-signup--homepage .newsletter-signup__btn:hover {
    background: #E55A4E;
}

/* -- Footer variant -- */

.newsletter-signup--footer .newsletter-signup__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--footer-text);
    margin-bottom: 8px;
}

.newsletter-signup--footer .newsletter-signup__subtext {
    font-size: 0.875rem;
    color: var(--footer-text);
    opacity: 0.7;
    margin-bottom: 12px;
}

.newsletter-signup--footer .newsletter-signup__form {
    display: flex;
    gap: 8px;
    position: relative;
}

.newsletter-signup--footer .newsletter-signup__input {
    flex: 1;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.newsletter-signup--footer .newsletter-signup__input::placeholder {
    color: rgba(245, 240, 242, 0.5);
}

.newsletter-signup--footer .newsletter-signup__input:focus {
    border-color: var(--coral);
}

.newsletter-signup--footer .newsletter-signup__btn {
    padding: 10px 20px;
    border-radius: 999px;
    border: none;
    background: var(--coral);
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease;
}

.newsletter-signup--footer .newsletter-signup__btn:hover {
    background: #E55A4E;
}

/* -- Shared feedback styles -- */

.newsletter-signup__feedback {
    margin-top: 12px;
    font-size: 0.875rem;
    text-align: center;
}

.newsletter-signup__feedback--success {
    color: #4CAF50;
}

.newsletter-signup__feedback--error {
    color: var(--coral);
}

[data-theme="dark"] .newsletter-signup__feedback--success {
    color: #66BB6A;
}

/* -- Responsive: homepage stacks on mobile -- */

@media (max-width: 768px) {
    .newsletter-signup--homepage .newsletter-signup__form {
        flex-direction: column;
    }
    .newsletter-signup--homepage .newsletter-signup__input {
        flex: none;
        width: 100%;
    }
    .newsletter-signup--homepage .newsletter-signup__btn {
        width: 100%;
    }
}

/* -- P6-A: Poll Styles -- */

.poll-section {
    padding: 48px 0;
}

.poll-widget {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-card);
    max-width: 560px;
    margin: 0 auto;
}

.poll-widget__question {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: 24px;
    text-align: center;
}

.poll-widget__options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.poll-widget__option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.poll-widget__option:hover {
    border-color: var(--coral);
}

.poll-widget__option.selected {
    border-color: var(--coral);
    background: rgba(255, 111, 97, 0.06);
}

.poll-widget__option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.poll-widget__radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-subtle);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: border-color 0.2s ease;
}

.poll-widget__option.selected .poll-widget__radio {
    border-color: var(--coral);
}

.poll-widget__option.selected .poll-widget__radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--coral);
    border-radius: 50%;
}

.poll-widget__label {
    position: relative;
    z-index: 1;
    flex: 1;
}

.poll-widget__pct {
    margin-left: auto;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 1;
}

.poll-widget__bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--apricot);
    border-radius: 12px;
    transition: width 0.6s ease;
    opacity: 0;
}

.poll-widget__option--winner .poll-widget__bar {
    background: var(--coral);
}

[data-theme="dark"] .poll-widget__bar {
    background: rgba(255, 179, 138, 0.25);
}

[data-theme="dark"] .poll-widget__option--winner .poll-widget__bar {
    background: rgba(255, 111, 97, 0.35);
}

/* Voted state */

.poll-widget--voted .poll-widget__pct {
    opacity: 1;
}

.poll-widget--voted .poll-widget__bar {
    opacity: 1;
}

.poll-widget--voted .poll-widget__option {
    pointer-events: none;
    cursor: default;
}

.poll-widget--voted .poll-widget__radio {
    display: none;
}

.poll-widget--voted .poll-widget__vote-btn {
    display: none;
}

.poll-widget--voted .poll-widget__total {
    display: block;
}

/* Vote button */

.poll-widget__vote-btn {
    display: block;
    margin: 0 auto;
    background: var(--coral);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    font-family: inherit;
    font-size: 1rem;
}

.poll-widget__vote-btn:hover {
    background: #e85d50;
    transform: translateY(-1px);
}

.poll-widget__vote-btn:disabled {
    opacity: 0.5;
    cursor: default;
    transform: none;
}

/* Total count */

.poll-widget__total {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 12px;
    display: none;
}

/* Poll responsive */

@media (max-width: 375px) {
    .poll-widget {
        padding: 16px;
    }
}

/* ── P6-C: Search Overlay ── */

.search-overlay {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--card-bg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid var(--border-subtle);
}

.search-overlay.open {
    display: block;
}

.search-overlay__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px 20px;
}

.search-overlay__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.search-overlay__input-icon {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    pointer-events: none;
    font-size: 22px;
}

.search-overlay__input {
    width: 100%;
    padding: 14px 48px 14px 48px;
    border-radius: 999px;
    border: 2px solid var(--border-subtle);
    background: var(--bg);
    color: var(--text);
    font-size: 1.125rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.search-overlay__input:focus {
    border-color: var(--coral);
}

.search-overlay__close {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, background 0.2s ease;
}

.search-overlay__close:hover {
    color: var(--text);
    background: var(--border-subtle);
}

.search-overlay__results {
    margin-top: 12px;
    max-height: 320px;
    overflow-y: auto;
}

.search-overlay__suggestion {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text);
    text-decoration: none;
    transition: background 0.15s ease;
    border-radius: 8px;
}

.search-overlay__suggestion:hover {
    background: var(--bg);
}

.search-overlay__suggestion-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    margin-top: 3px;
}

.search-overlay__suggestion-badge--blog {
    background: var(--coral);
    color: var(--white);
}

.search-overlay__suggestion-badge--podcast {
    background: var(--plum);
    color: var(--white);
}

.search-overlay__suggestion-body {
    flex: 1;
    min-width: 0;
}

.search-overlay__suggestion-title {
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 2px;
}

.search-overlay__suggestion-excerpt {
    font-size: 0.8125rem;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-overlay__no-results {
    padding: 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ── P6-C: Search Results Page ── */

.search-results {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 20px 64px;
}

.search-results__header {
    margin-bottom: 24px;
}

.search-results__header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: var(--heading);
    margin-bottom: 8px;
}

.search-results__header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.search-results__form {
    margin-bottom: 32px;
}

.search-results__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.search-results__input-icon {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    pointer-events: none;
}

.search-results__input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border-radius: 999px;
    border: 2px solid var(--border-subtle);
    background: var(--card-bg);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.search-results__input:focus {
    border-color: var(--coral);
}

.search-results__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-results__item {
    display: flex;
    gap: 20px;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.search-results__item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.search-results__thumb {
    flex-shrink: 0;
    width: 140px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
}

.search-results__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-results__body {
    flex: 1;
    min-width: 0;
}

.search-results__type-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.search-results__type-badge--blog {
    background: var(--coral);
    color: var(--white);
}

.search-results__type-badge--podcast {
    background: var(--plum);
    color: var(--white);
}

.search-results__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.search-results__title a {
    color: var(--heading);
    text-decoration: none;
    transition: color 0.2s ease;
}

.search-results__title a:hover {
    color: var(--coral);
}

.search-results__excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}

.search-results__meta {
    display: flex;
    gap: 12px;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.search-results__empty {
    text-align: center;
    padding: 64px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-results__empty p {
    font-size: 1.0625rem;
    color: var(--text);
}

/* Dark mode overrides for search */

[data-theme="dark"] .search-overlay {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .search-results__item {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .search-results__item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Search responsive */

@media (max-width: 768px) {
    .search-results__item {
        flex-direction: column;
    }

    .search-results__thumb {
        width: 100%;
        height: 180px;
    }

    .search-results__header h1 {
        font-size: 1.5rem;
    }

    .search-results {
        padding: 32px 16px 48px;
    }
}

@media (max-width: 375px) {
    .search-overlay__inner {
        padding: 16px 12px;
    }

    .search-overlay__input {
        font-size: 1rem;
    }

    .search-results__thumb {
        height: 140px;
    }
}

/* -- P6-B: Comments -- */

/* Comment section container */

.comment-section {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 16px;
}

/* Comment form */

.comment-form-section {
    background: var(--card-bg);
    box-shadow: var(--shadow-card);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
}

.comment-form-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    margin: 0 0 24px 0;
    color: var(--text);
}

.comment-form__field {
    margin-bottom: 16px;
}

.comment-form__field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 0.9375rem;
}

.comment-form__field input,
.comment-form__field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    background: var(--bg);
    color: var(--text);
    font-family: inherit;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.comment-form__field input:focus,
.comment-form__field textarea:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 111, 97, 0.15);
}

.comment-form__field textarea {
    min-height: 120px;
    resize: vertical;
}

.comment-form__honeypot {
    position: absolute;
    left: -9999px;
}

.comment-form__email-note {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.comment-form__captcha-input {
    max-width: 120px;
}

.comment-form__submit {
    display: inline-block;
    background: var(--coral);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.comment-form__submit:hover {
    background: var(--apricot);
    transform: translateY(-1px);
}

.comment-form__success {
    background: #d4edda;
    color: #155724;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.9375rem;
}

[data-theme="dark"] .comment-form__success {
    background: #1a3a2a;
    color: #a3d9a5;
}

.comment-form__error {
    background: #f8d7da;
    color: #721c24;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.9375rem;
}

.comment-form__error p {
    margin: 0 0 4px 0;
}

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

[data-theme="dark"] .comment-form__error {
    background: #3a1a1e;
    color: #f5a3a8;
}

.comment-form__reply-indicator {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    padding: 8px 12px;
    background: var(--bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-form__cancel-reply {
    background: none;
    border: none;
    color: var(--coral);
    cursor: pointer;
    font-size: 0.8125rem;
    text-decoration: underline;
    font-family: inherit;
}

/* Comment list */

.comment-list-section {
    padding: 16px 0;
    margin-top: 8px;
}

.comment-list-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    margin: 0 0 24px 0;
    color: var(--text);
}

.comment-item {
    background: var(--card-bg);
    box-shadow: var(--shadow-card);
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 16px;
    border-left: 3px solid var(--coral);
}

.comment-item__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.comment-item__author {
    font-weight: 700;
    color: var(--text);
    font-size: 0.9375rem;
}

.comment-item__date {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.comment-item__body {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.comment-item__reply-btn {
    background: none;
    border: none;
    color: var(--coral);
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 4px 0;
    margin-top: 8px;
    font-family: inherit;
}

.comment-item__reply-btn:hover {
    text-decoration: underline;
}

.comment-item--reply {
    margin-left: 2rem;
    border-left-width: 2px;
}

.comment-item__empty {
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-style: italic;
}

/* Blog card comment count */

.comment-count {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

/* Comment responsive */

@media (max-width: 768px) {
    .comment-section {
        padding: 32px 16px;
    }

    .comment-form-section {
        padding: 24px 20px;
    }

    .comment-item {
        padding: 16px 20px;
    }
}

@media (max-width: 375px) {
    .comment-section {
        padding: 24px 12px;
    }

    .comment-form-section {
        padding: 20px 16px;
        border-radius: 8px;
    }

    .comment-item {
        padding: 14px 16px;
        border-radius: 8px;
    }

    .comment-item--reply {
        margin-left: 1rem;
    }
}

/* ══════════════════════════════════════════════════════════════════════
   P7-HP: Homepage Styles
   ══════════════════════════════════════════════════════════════════════ */

/* --- Hero (overrides P2-D placeholder hero) --- */
.hero {
    padding: 80px 0 64px;
    background: linear-gradient(-45deg, var(--grad-1), var(--grad-2), var(--grad-3), var(--grad-4));
    background-size: 400% 400%;
    animation: yg2fHeroShift 16s ease infinite;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-logo {
    display: block;
    margin: 0 auto 24px;
    width: clamp(340px, 55vw, 650px);
    height: auto;
    filter: drop-shadow(0 8px 40px rgba(32,26,29,0.28)) drop-shadow(0 2px 12px rgba(32,26,29,0.12));
    mix-blend-mode: multiply;
}

.hero-logo.logo-dark {
    display: none;
}

[data-theme="dark"] .hero-logo.logo-light {
    display: none;
}

[data-theme="dark"] .hero-logo.logo-dark {
    display: block;
    margin: 0 auto 24px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.75rem);
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(32,26,29,0.15);
}

[data-theme="dark"] .hero h1 {
    color: #F5F0F2;
}

.hero .subtitle {
    font-size: clamp(0.9375rem, 2.2vw, 1.125rem);
    color: var(--white);
    opacity: 0.92;
    max-width: 620px;
    margin: 0 auto 8px;
    line-height: 1.5;
}

[data-theme="dark"] .hero .subtitle {
    color: #F5F0F2;
}

.hero .byline {
    font-size: 0.875rem;
    color: var(--white);
    opacity: 0.78;
    font-weight: 500;
    margin-bottom: 32px;
}

[data-theme="dark"] .hero .byline {
    color: #F5F0F2;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.hero .btn-outline:hover {
    background: var(--white);
    color: var(--coral);
}

[data-theme="dark"] .hero .btn-outline {
    border-color: #F5F0F2;
    color: #F5F0F2;
}

[data-theme="dark"] .hero .btn-outline:hover {
    background: #F5F0F2;
    color: var(--coral);
}

/* --- Floating Blobs --- */
.yg2f-blob {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.yg2f-blob-1 {
    top: -100px; right: -80px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(255,179,138,0.25) 0%, transparent 70%);
    animation: yg2fBlobDrift1 20s ease-in-out infinite;
}

.yg2f-blob-2 {
    bottom: -120px; left: -60px;
    width: 320px; height: 320px;
    border-radius: 60% 40% 55% 45% / 48% 58% 42% 52%;
    background: radial-gradient(circle, rgba(125,51,87,0.2) 0%, transparent 70%);
    animation: yg2fBlobDrift2 24s ease-in-out infinite;
}

.yg2f-blob-3 {
    top: 35%; left: 8%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,111,97,0.18) 0%, transparent 70%);
    animation: yg2fBlobDrift1 18s ease-in-out infinite reverse;
}

/* --- Floating Dots --- */
.yg2f-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    pointer-events: none;
}

.yg2f-dot-1 { width: 10px; height: 10px; top: 20%; right: 18%; animation: yg2fDotPulse 3s ease-in-out infinite; }
.yg2f-dot-2 { width: 7px;  height: 7px;  top: 50%; right: 28%; animation: yg2fDotPulse 3s ease-in-out infinite 0.8s; }
.yg2f-dot-3 { width: 12px; height: 12px; bottom: 22%; right: 12%; animation: yg2fDotPulse 3s ease-in-out infinite 1.5s; }
.yg2f-dot-4 { width: 8px;  height: 8px;  top: 12%; left: 22%; animation: yg2fDotPulse 3s ease-in-out infinite 0.4s; }
.yg2f-dot-5 { width: 6px;  height: 6px;  bottom: 35%; left: 15%; animation: yg2fDotPulse 3s ease-in-out infinite 2s; }

/* --- Card Accent Strip --- */
.card-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--coral), var(--apricot), var(--plum));
    background-size: 200% 100%;
    animation: yg2fCardAccent 6s ease infinite;
}

/* --- Latest Content --- */
.latest-content {
    padding: 48px 0;
}

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

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

/* --- Homepage card children --- */
.card-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.card-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: contain;
}

.card-type-label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--coral);
}

.card-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--apricot), var(--coral));
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-placeholder .material-icons {
    font-size: 48px;
    color: var(--white);
    opacity: 0.5;
}

.play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.play-btn:hover {
    transform: scale(1.08);
    background: #e95d50;
}

/* --- Category Strip --- */
.category-strip {
    padding: 16px 0 48px;
}

.pills-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    justify-content: flex-start;
}

.pills-row::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .pills-row {
        justify-content: center;
    }
}

.pill {
    flex-shrink: 0;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}

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

/* --- About Teaser --- */
.about-teaser {
    padding: 48px 0;
}

.about-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .about-inner {
        flex-direction: row;
        text-align: left;
    }
}

.about-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--card-bg);
    border: 3px solid var(--apricot);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
}

.about-avatar .material-icons {
    font-size: 48px;
    color: var(--apricot);
}

.about-text h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

/* --- Newsletter Section --- */
.newsletter {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--coral), var(--apricot));
}

[data-theme="dark"] .newsletter {
    background: linear-gradient(135deg, #5A2535, #3D2228);
}

.newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2,
.newsletter .newsletter-signup__heading {
    color: var(--white);
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    margin-bottom: 8px;
}

[data-theme="dark"] .newsletter h2,
[data-theme="dark"] .newsletter .newsletter-signup__heading {
    color: #F5F0F2;
}

.newsletter p,
.newsletter .newsletter-signup__subtext {
    color: var(--white);
    opacity: 0.88;
    margin-bottom: 24px;
    font-size: 0.9375rem;
}

[data-theme="dark"] .newsletter p,
[data-theme="dark"] .newsletter .newsletter-signup__subtext {
    color: #F5F0F2;
}

.newsletter .newsletter-signup__form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter .newsletter-signup__input {
    flex: 1 1 260px;
    padding: 14px 20px;
    border-radius: 999px;
    border: none;
    font-size: 1rem;
    background: var(--white);
    color: var(--charcoal);
    outline: none;
    min-width: 0;
}

.newsletter .newsletter-signup__input::placeholder {
    color: #A89A9E;
}

.newsletter .newsletter-signup__btn {
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--charcoal);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.newsletter .newsletter-signup__btn:hover {
    background: #3A2228;
    transform: translateY(-1px);
}

/* ── P7-D: Skip Navigation ── */

.skip-nav {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    padding: 12px 24px;
    background: var(--coral);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 0 0 12px 12px;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-nav:focus {
    top: 0;
}

/* ── P7-D: Cookie Consent ── */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: var(--card-bg);
    border-top: 1px solid var(--border-subtle);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 16px 0;
}

[data-theme="dark"] .cookie-consent {
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.cookie-consent__text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text);
    margin: 0;
}

.cookie-consent__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-consent__btn {
    padding: 10px 24px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    line-height: 1;
}

.cookie-consent__btn--accept {
    background: var(--coral);
    color: var(--white);
}

.cookie-consent__btn--accept:hover {
    background: #E55A4E;
    transform: translateY(-1px);
}

.cookie-consent__btn--reject {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border-subtle);
}

.cookie-consent__btn--reject:hover {
    border-color: var(--coral);
    color: var(--coral);
}

@media (max-width: 480px) {
    .cookie-consent__inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent__actions {
        width: 100%;
        justify-content: center;
    }
}

/* ── P7-D: Focus States (Accessibility) ── */

:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(255, 111, 97, 0.15);
}

.icon-btn:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 2px;
    background: rgba(255, 111, 97, 0.12);
}

.desktop-nav a:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 2px;
}

/* ── P7-D: Error Pages ── */

.hero {
    text-align: center;
    padding: 80px 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.hero .container {
    width: 100%;
}

.hero h1 {
    margin-bottom: 16px;
}

.hero .subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Reduced Motion ── */

@media (prefers-reduced-motion: reduce) {
    .hero,
    .login-brand,
    .card-accent { animation: none; }
    .yg2f-blob,
    .yg2f-dot { animation: none; display: none; }
}
