/* ════════════════════════════════════════════════════
   BRAND DIGEST — Main Stylesheet
   Blood Red · Black · Warm Linen #e0dcd3
════════════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
    --red:          #C41E3A;
    --red-dark:     #A01830;
    --red-light:    #E8293F;
    --black:        #0A0A0A;
    --near-black:   #111111;
    --charcoal:     #1A1A1A;
    --mid-grey:     #555555;
    --light-grey:   #888888;
    --bg:           #e0dcd3;
    --bg-light:     #F5F1EB;
    --bg-dark:      #D4CFC5;
    --border:       #C4BFB6;
    --border-dark:  #B0A99E;
    --white:        #FFFFFF;
    --off-white:    #FAF8F5;

    --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
    --font-serif:   'Playfair Display', Georgia, serif;
    --font-sans:    'Inter', system-ui, -apple-system, sans-serif;

    --space-xs:  4px;
    --space-sm:  8px;
    --space-md:  16px;
    --space-lg:  24px;
    --space-xl:  40px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 999px;

    --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md:  0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:  0 12px 40px rgba(0,0,0,.14);
    --shadow-red: 0 8px 32px rgba(196,30,58,.25);

    --transition: 0.22s cubic-bezier(.4,0,.2,1);

    --max-w: 1280px;
    --article-w: 720px;
    --header-h: 68px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    background-color: var(--bg);
    color: var(--charcoal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea { font-family: inherit; }

/* ── Container ── */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--space-xl);
}
@media (max-width: 768px) { .container { padding-inline: var(--space-md); } }

/* ── Reading Progress ── */
#reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--red);
    z-index: 9999;
    transition: width .1s linear;
}
.reading-progress-track {
    position: sticky;
    top: var(--header-h);
    z-index: 100;
    height: 3px;
    background: var(--border);
    width: 100%;
}
.reading-progress-fill {
    height: 100%;
    background: var(--red);
    width: 0%;
    transition: width .1s linear;
}

/* ════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-lg);
}

/* Logo */
.site-logo-text, .footer-logo {
    display: inline-flex;
    align-items: baseline;
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1;
}
.logo-brand { color: var(--white); }
.logo-digest { color: var(--red); }

.header-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.header-tagline {
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    font-family: var(--font-sans);
    font-weight: 500;
    white-space: nowrap;
}

/* Nav */
.primary-nav { flex: 1; display: flex; justify-content: center; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}
.nav-menu li a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    transition: color var(--transition);
    position: relative;
    padding-block: 4px;
}
.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--red);
    transition: width var(--transition);
}
.nav-menu li a:hover { color: var(--white); }
.nav-menu li a:hover::after { width: 100%; }
.nav-menu li.current-menu-item a { color: var(--white); }
.nav-menu li.current-menu-item a::after { width: 100%; }

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .04em;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-subscribe {
    background: var(--red);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.btn-subscribe:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-red);
}
.btn-read {
    background: var(--red);
    color: var(--white);
    font-size: 14px;
    padding: 12px 24px;
}
.btn-read:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-red);
}
.btn-load-more {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--border-dark);
    font-size: 14px;
    padding: 14px 32px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.btn-load-more:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--near-black);
    z-index: 999;
    padding: var(--space-xl) var(--space-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.mobile-menu { display: flex; flex-direction: column; gap: var(--space-md); }
.mobile-menu li a {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    padding-block: var(--space-sm);
    display: block;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-subscribe { margin-top: var(--space-lg); width: 100%; justify-content: center; }

/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    background: #0a0a0a;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

/* Background layers */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}
.hero-orb--1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(196,30,58,.28) 0%, transparent 70%);
    top: -180px; left: -120px;
    animation: orb-a 14s ease-in-out infinite alternate;
}
.hero-orb--2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(100,10,25,.22) 0%, transparent 70%);
    bottom: -100px; right: -80px;
    animation: orb-b 10s ease-in-out infinite alternate;
}
@keyframes orb-a {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(50px, 40px) scale(1.1); }
}
@keyframes orb-b {
    from { transform: translate(0, 0); }
    to   { transform: translate(-30px, -40px) scale(1.08); }
}

/* Vertical divider */
.hero-divider {
    position: absolute;
    left: 50%;
    top: 8%;
    bottom: 8%;
    width: 1px;
    background: linear-gradient(to bottom,
        transparent,
        rgba(255,255,255,.08) 25%,
        rgba(255,255,255,.08) 75%,
        transparent);
    z-index: 2;
}

/* LEFT column */
.hero-left {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 64px 80px 80px;
    max-width: 56%;
}

/* Eyebrow badge */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(196,30,58,.1);
    border: 1px solid rgba(196,30,58,.25);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 28px;
    width: fit-content;
}
.hero-live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .5; transform: scale(1.5); }
}

/* Hero Headline */
.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.02em;
    color: var(--white);
    margin-bottom: 20px;
}
.hero-headline em {
    font-style: italic;
    color: var(--red);
}

.hero-sub {
    font-size: clamp(14px, 1.4vw, 17px);
    font-weight: 400;
    color: rgba(255,255,255,.5);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 36px;
}

/* Inline subscribe form in hero */
.hero-subscribe {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 440px;
    margin-bottom: 14px;
}
.hero-subscribe .newsletter-message {
    flex-basis: 100%;
    font-size: 13px;
    font-weight: 500;
    min-height: 0;
}
.newsletter-message.success { color: #4ade80; }
.newsletter-message.error   { color: #f87171; }
.hero-subscribe input[type="email"] {
    flex: 1;
    padding: 13px 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--white);
    outline: none;
    font-family: var(--font-sans);
    transition: border-color var(--transition);
}
.hero-subscribe input[type="email"]::placeholder { color: rgba(255,255,255,.3); }
.hero-subscribe input[type="email"]:focus { border-color: rgba(196,30,58,.5); }
.hero-subscribe button {
    padding: 13px 22px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    font-family: var(--font-sans);
    transition: all var(--transition);
}
.hero-subscribe button:hover {
    background: #a51830;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(196,30,58,.35);
}
.hero-subscribe-note {
    font-size: 12px;
    color: rgba(255,255,255,.28);
    margin-bottom: 44px;
}

/* Hero stats row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.stat-num {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--white);
    letter-spacing: .02em;
}
.stat-label {
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}
.hero-stat-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,.1);
}

/* RIGHT column — feed */
.hero-right {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 80px 80px 64px;
    max-width: 44%;
}
.hero-feed-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-feed-label::before {
    content: '';
    width: 24px; height: 1px;
    background: rgba(255,255,255,.2);
    display: block;
}
.hero-feed-card {
    display: block;
    text-decoration: none;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    margin-bottom: 10px;
    transition: all var(--transition);
}
.hero-feed-card:hover {
    background: rgba(196,30,58,.07);
    border-color: rgba(196,30,58,.25);
    transform: translateX(-3px);
}
.feed-card-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 5px;
}
.feed-card-title {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 6px;
}
.feed-card-meta {
    font-size: 11px;
    color: rgba(255,255,255,.3);
    display: flex;
    align-items: center;
    gap: 7px;
}
.feed-dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    flex-shrink: 0;
}
.hero-feed-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.35);
    text-decoration: none;
    letter-spacing: .04em;
    margin-top: 4px;
    transition: color var(--transition);
}
.hero-feed-all:hover { color: var(--red); }

/* Stagger feed card entrance */
.hero-feed-card:nth-child(2) { animation: hero-card-in .5s ease both .1s; }
.hero-feed-card:nth-child(3) { animation: hero-card-in .5s ease both .2s; }
.hero-feed-card:nth-child(4) { animation: hero-card-in .5s ease both .3s; }
.hero-feed-card:nth-child(5) { animation: hero-card-in .5s ease both .4s; }
@keyframes hero-card-in {
    from { opacity: 0; transform: translateX(16px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ════════════════════════════════════════════════════
   SECTION LABELS + HEADERS
════════════════════════════════════════════════════ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}
.section-label span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--charcoal);
    position: relative;
    padding-left: var(--space-md);
}
.section-label span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 14px;
    background: var(--red);
    border-radius: 2px;
}
.section-label--cat span::before { background: var(--red); }

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border);
    padding-bottom: var(--space-md);
}
.section-header .section-label { margin-bottom: 0; }
.section-view-all {
    font-size: 13px;
    font-weight: 500;
    color: var(--red);
    transition: gap var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}
.section-view-all:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════
   FEATURED ARTICLE
════════════════════════════════════════════════════ */
.featured-section {
    padding: var(--space-3xl) 0;
    background: var(--bg);
}
.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-light);
    box-shadow: var(--shadow-md);
    transition: box-shadow var(--transition), transform var(--transition);
}
.featured-article:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.featured-image-wrap {
    position: relative;
    overflow: hidden;
    display: block;
}
.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform .6s ease;
}
.featured-article:hover .featured-image { transform: scale(1.03); }
.featured-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(245,241,235,.3));
}
.featured-body {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--space-lg);
}
.featured-meta-top {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}
.featured-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    border: 1px solid var(--red);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}
.featured-category:hover {
    background: var(--red);
    color: var(--white);
}
.featured-title {
    font-family: var(--font-serif);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--near-black);
}
.featured-title a {
    background-image: linear-gradient(var(--red), var(--red));
    background-size: 0 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size var(--transition);
}
.featured-title a:hover { background-size: 100% 2px; }
.featured-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: var(--mid-grey);
}
.featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}
.featured-author-block {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}
.author-avatar {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50%;
    border: 2px solid var(--border);
}
.author-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--near-black);
}
.article-date {
    display: block;
    font-size: 12px;
    color: var(--light-grey);
}

/* ════════════════════════════════════════════════════
   ARTICLE GRID + CARDS
════════════════════════════════════════════════════ */
.articles-section,
.more-articles-section,
.related-articles {
    padding: var(--space-3xl) 0;
    background: var(--bg);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}
.articles-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* Article Card */
.article-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
}
.article-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--border-dark);
}

.card-image-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--bg-dark);
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    aspect-ratio: 16/9;
}
.article-card:hover .card-image img { transform: scale(1.04); }
.card-image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Read Badge */
.read-badge {
    position: absolute;
    bottom: var(--space-sm);
    right: var(--space-sm);
    background: rgba(0,0,0,.7);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
}
.read-badge--red {
    position: static;
    background: var(--red);
    color: var(--white);
}

/* Card Body */
.card-body {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}
.card-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    display: inline-block;
}
.card-category:hover { text-decoration: underline; }

.card-title {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.25;
    color: var(--near-black);
    flex: 1;
}
.article-card--medium .card-title { font-size: clamp(16px, 2vw, 20px); }
.article-card--large .card-title { font-size: clamp(22px, 3vw, 30px); }
.article-card--small .card-title { font-size: 15px; }

.card-title a {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    background-image: linear-gradient(var(--red), var(--red));
    background-size: 0 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size var(--transition);
}
.article-card:hover .card-title a { background-size: 100% 1px; }

.card-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--mid-grey);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 12px;
    color: var(--light-grey);
    margin-top: auto;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border);
}
.card-sep { opacity: .5; }

/* ── Category Strip ── */
.category-strip {
    padding: var(--space-2xl) 0;
    background: var(--bg);
}
.category-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}
.category-strip-grid .article-card--small .card-body { padding: var(--space-md); }

/* Load More */
.load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: var(--space-2xl);
}

/* Pagination */
.pagination-wrap { padding: var(--space-2xl) 0; display: flex; justify-content: center; }
.pagination-wrap .page-numbers {
    display: inline-flex;
    gap: var(--space-sm);
    list-style: none;
}
.pagination-wrap .page-numbers li a,
.pagination-wrap .page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: all var(--transition);
}
.pagination-wrap .page-numbers li a:hover { border-color: var(--red); color: var(--red); }
.pagination-wrap .page-numbers li .current {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

/* ════════════════════════════════════════════════════
   NEWSLETTER
════════════════════════════════════════════════════ */
.newsletter-section {
    padding: var(--space-3xl) 0;
    background: var(--bg);
}
.newsletter-section--dark {
    background: var(--near-black);
}
.newsletter-inner {
    max-width: 600px;
    margin-inline: auto;
    text-align: center;
}
.newsletter-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    border: 1px solid rgba(196,30,58,.4);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}
.newsletter-section--dark .newsletter-badge { border-color: rgba(196,30,58,.5); }

.newsletter-headline {
    font-family: var(--font-serif);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--near-black);
    margin-bottom: var(--space-md);
}
.newsletter-section--dark .newsletter-headline { color: var(--white); }

.newsletter-sub {
    font-size: 16px;
    color: var(--mid-grey);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}
.newsletter-section--dark .newsletter-sub { color: rgba(255,255,255,.55); }

.newsletter-form-row {
    display: flex;
    gap: var(--space-sm);
}
.newsletter-input {
    flex: 1;
    height: 52px;
    padding: 0 var(--space-lg);
    font-size: 15px;
    border: 1.5px solid var(--border-dark);
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    color: var(--charcoal);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.newsletter-section--dark .newsletter-input {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.15);
    color: var(--white);
}
.newsletter-section--dark .newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(196,30,58,.12);
}
.newsletter-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    height: 52px;
    padding: 0 var(--space-xl);
    background: var(--red);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transition: all var(--transition);
    font-family: var(--font-sans);
}
.newsletter-btn:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-red);
}
.newsletter-btn .btn-arrow { flex-shrink: 0; transition: transform var(--transition); }
.newsletter-btn:hover .btn-arrow { transform: translateX(3px); }

.newsletter-note {
    font-size: 12px;
    color: var(--light-grey);
    margin-top: var(--space-md);
}
.newsletter-section--dark .newsletter-note { color: rgba(255,255,255,.3); }

.newsletter-message {
    margin-top: var(--space-md);
    font-size: 14px;
    font-weight: 500;
    min-height: 20px;
}
.newsletter-message.success { color: #22c55e; }
.newsletter-message.error { color: var(--red); }

/* Footer newsletter bar */
.footer-newsletter-bar {
    background: var(--red);
    padding: var(--space-lg) 0;
}
.footer-newsletter-bar .container {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    justify-content: space-between;
}
.footer-newsletter-text {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--white);
    letter-spacing: .04em;
    white-space: nowrap;
}
.footer-newsletter-form {
    display: flex;
    gap: var(--space-sm);
    flex: 1;
    max-width: 420px;
}
.footer-newsletter-form input {
    flex: 1;
    height: 44px;
    padding: 0 var(--space-md);
    font-size: 14px;
    border: none;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.15);
    color: var(--white);
    outline: none;
    transition: background var(--transition);
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,.55); }
.footer-newsletter-form input:focus { background: rgba(255,255,255,.25); }
.footer-newsletter-form button {
    height: 44px;
    padding: 0 var(--space-lg);
    background: var(--near-black);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    font-family: var(--font-sans);
    white-space: nowrap;
}
.footer-newsletter-form button:hover { background: rgba(0,0,0,.8); }

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.footer-main {
    background: var(--near-black);
    padding: var(--space-3xl) 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
}
.footer-logo {
    font-size: 26px;
    margin-bottom: var(--space-md);
    display: inline-flex;
}
.footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,.45);
    line-height: 1.6;
    max-width: 280px;
    margin-bottom: var(--space-xl);
}
.footer-social {
    display: flex;
    gap: var(--space-md);
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,.5);
    transition: all var(--transition);
}
.social-link:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(196,30,58,.08);
}
.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: var(--space-lg);
}
.footer-menu {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}
.footer-menu li a {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    transition: color var(--transition);
    display: block;
    padding-block: 3px;
}
.footer-menu li a:hover { color: var(--white); }
.footer-bottom {
    background: var(--black);
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255,255,255,.04);
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,.3);
}
.footer-bottom a {
    color: rgba(255,255,255,.4);
    transition: color var(--transition);
}
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ════════════════════════════════════════════════════
   SINGLE ARTICLE
════════════════════════════════════════════════════ */
.single-article { padding-top: var(--header-h); }

.article-header {
    background: var(--bg-light);
    padding: var(--space-3xl) 0 var(--space-2xl);
    border-bottom: 1px solid var(--border);
}
.article-container { max-width: calc(var(--article-w) + 160px); }

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 12px;
    color: var(--light-grey);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.article-breadcrumb a:hover { color: var(--red); }

.article-category-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    border: 1px solid var(--red);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    transition: all var(--transition);
}
.article-category-tag:hover { background: var(--red); color: var(--white); }

.article-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--near-black);
    margin-bottom: var(--space-xl);
    letter-spacing: -.01em;
}

.article-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}
.article-author-block {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}
.article-author-avatar {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    border: 2px solid var(--border);
}
.article-author-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
}
.article-pub-date {
    display: block;
    font-size: 13px;
    color: var(--light-grey);
}
.article-badges {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}
.word-count-badge {
    font-size: 12px;
    font-weight: 500;
    color: var(--mid-grey);
    background: var(--bg-dark);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

/* Article Hero Image */
.article-hero-image {
    width: 100%;
    max-height: 520px;
    overflow: hidden;
}
.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 520px;
}

/* Article Body Layout */
.article-body-wrap {
    padding: var(--space-3xl) 0;
    background: var(--bg);
}
.article-layout {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: var(--space-2xl);
    align-items: start;
    position: relative;
}

/* Share Sidebar */
.share-sidebar { position: relative; }
.share-sidebar-inner {
    position: sticky;
    top: calc(var(--header-h) + var(--space-xl));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}
.share-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--light-grey);
    writing-mode: vertical-lr;
    text-orientation: mixed;
    transform: rotate(180deg);
    margin-bottom: var(--space-sm);
}
.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--mid-grey);
    background: var(--bg-light);
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
}
.share-btn:hover { border-color: var(--red); color: var(--red); background: rgba(196,30,58,.06); }
.share-btn--copy.copied { background: var(--red); color: var(--white); border-color: var(--red); }

/* Article Content Typography */
.article-content {
    max-width: var(--article-w);
}
.article-content p {
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: var(--space-xl);
}
.article-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--near-black);
    margin: var(--space-3xl) 0 var(--space-lg);
    line-height: 1.25;
}
.article-content h3 {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    color: var(--near-black);
    margin: var(--space-xl) 0 var(--space-md);
}
.article-content blockquote {
    border-left: 4px solid var(--red);
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-xl) 0;
    background: var(--bg-light);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-content blockquote p {
    font-size: 20px;
    font-style: italic;
    color: var(--near-black);
    margin: 0;
}
.article-content img {
    width: 100%;
    border-radius: var(--radius-md);
    margin: var(--space-xl) 0;
}
.article-content ul, .article-content ol {
    margin-bottom: var(--space-xl);
    padding-left: var(--space-xl);
}
.article-content li {
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
    list-style: disc;
}
.article-content ol li { list-style: decimal; }
.article-content a {
    color: var(--red);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
.article-content strong { font-weight: 700; color: var(--near-black); }
.article-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: var(--space-2xl) 0;
}

/* Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
    margin-top: var(--space-xl);
}
.tag-pill {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--mid-grey);
    border: 1px solid var(--border);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}
.tag-pill:hover { border-color: var(--red); color: var(--red); }

/* Mobile Share Bar */
.mobile-share-bar {
    display: none;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
    margin-top: var(--space-xl);
    font-size: 13px;
    font-weight: 600;
    color: var(--light-grey);
}

/* ════════════════════════════════════════════════════
   ARCHIVE PAGE
════════════════════════════════════════════════════ */
.archive-main { padding-top: calc(var(--header-h) + var(--space-3xl)); padding-bottom: var(--space-3xl); }
.archive-header { margin-bottom: var(--space-3xl); }
.archive-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: var(--space-sm);
}
.archive-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 72px);
    color: var(--near-black);
    letter-spacing: .04em;
}
.archive-description { font-size: 16px; color: var(--mid-grey); margin-top: var(--space-sm); }
.no-results { font-size: 16px; color: var(--mid-grey); padding: var(--space-3xl) 0; text-align: center; }

/* ════════════════════════════════════════════════════
   STATIC PAGE (page.php)
════════════════════════════════════════════════════ */
.static-page {
    padding-top: var(--header-h);
    min-height: 80vh;
}

.page-header {
    background: var(--bg-light);
    padding: var(--space-3xl) 0 var(--space-2xl);
    border-bottom: 1px solid var(--border);
}

.page-container {
    max-width: calc(var(--article-w) + 160px);
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 12px;
    color: var(--light-grey);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.page-breadcrumb a:hover { color: var(--red); }
.page-breadcrumb span[aria-hidden] { opacity: .4; }

.page-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 80px);
    color: var(--near-black);
    letter-spacing: .04em;
    line-height: .95;
}

.page-body {
    padding: var(--space-3xl) 0;
    background: var(--bg);
}

.page-content {
    max-width: var(--article-w);
}

/* Inherit article content typography for pages */
.page-content p {
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: var(--space-xl);
}
.page-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--near-black);
    margin: var(--space-3xl) 0 var(--space-lg);
}
.page-content h3 {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    color: var(--near-black);
    margin: var(--space-xl) 0 var(--space-md);
}
.page-content ul, .page-content ol {
    margin-bottom: var(--space-xl);
    padding-left: var(--space-xl);
}
.page-content li {
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
    list-style: disc;
}
.page-content ol li { list-style: decimal; }
.page-content blockquote {
    border-left: 4px solid var(--red);
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-xl) 0;
    background: var(--bg-light);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.page-content blockquote p { font-size: 20px; font-style: italic; color: var(--near-black); margin: 0; }
.page-content a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.page-content strong { font-weight: 700; color: var(--near-black); }
.page-content img { width: 100%; border-radius: var(--radius-md); margin: var(--space-xl) 0; }
.page-content hr { border: none; border-top: 1px solid var(--border); margin: var(--space-2xl) 0; }

/* Page links (paginated pages) */
.page-links {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--mid-grey);
}
.page-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--charcoal);
    transition: all var(--transition);
}
.page-links a:hover { border-color: var(--red); color: var(--red); text-decoration: none; }

@media (max-width: 768px) {
    .page-title { font-size: clamp(36px, 10vw, 56px); }
    .page-content p, .page-content li { font-size: 16px; }
}

/* ════════════════════════════════════════════════════
   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-width: 0;
}

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .category-strip-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand-col { grid-column: 1 / -1; }
    .featured-article { grid-template-columns: 1fr; }
    .featured-image { aspect-ratio: 16/9; }
    .featured-image-overlay { display: none; }
}

@media (max-width: 768px) {
    :root { --header-h: 60px; --space-3xl: 60px; --space-2xl: 48px; }

    /* Nav */
    .primary-nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    .header-actions .btn-subscribe:not(.mobile-subscribe) { display: none; }
    .header-tagline { display: none; }

    /* Hero — stack vertically on mobile */
    .hero { flex-direction: column; min-height: auto; }
    .hero-left { max-width: 100%; padding: 100px 28px 40px; }
    .hero-right { max-width: 100%; padding: 0 28px 80px; }
    .hero-divider { display: none; }
    .hero-subscribe { flex-direction: column; }
    .hero-subscribe button { width: 100%; justify-content: center; }
    .hero-stats { gap: 20px; }
    .hero-headline { font-size: clamp(34px, 9vw, 52px); }

    /* Articles */
    .articles-grid, .articles-grid--3 { grid-template-columns: 1fr; }
    .category-strip-grid { grid-template-columns: repeat(2, 1fr); }

    /* Featured */
    .featured-body { padding: var(--space-lg); }
    .featured-footer { flex-direction: column; align-items: flex-start; gap: var(--space-md); }
    .featured-title { font-size: clamp(20px, 5vw, 28px); }

    /* Single article */
    .article-layout { grid-template-columns: 1fr; }
    .share-sidebar { display: none; }
    .mobile-share-bar { display: flex; }
    .article-meta-bar { flex-direction: column; align-items: flex-start; gap: var(--space-md); }
    .article-title { font-size: clamp(24px, 6vw, 38px); letter-spacing: 0; }
    .article-content p { font-size: 16px; line-height: 1.75; }
    .article-content h2 { font-size: clamp(20px, 5vw, 24px); }
    .article-content h3 { font-size: 18px; }
    .article-content blockquote p { font-size: 17px; }
    .article-content li { font-size: 16px; }
    .article-hero-image { max-height: 280px; }
    .article-hero-image img { max-height: 280px; }

    /* Touch targets — minimum 44px */
    .share-btn { width: 44px; height: 44px; }
    .nav-menu li a { min-height: 44px; display: flex; align-items: center; }
    .mobile-menu li a { min-height: 48px; }
    .tag-pill { padding: 8px 16px; }

    /* Newsletter */
    .newsletter-section { padding: 48px 0; }
    .newsletter-form-row { flex-direction: column; }
    .newsletter-input { height: 48px; font-size: 16px; } /* 16px prevents iOS zoom */
    .newsletter-btn { height: 48px; justify-content: center; font-size: 15px; }
    .newsletter-headline { font-size: clamp(22px, 5vw, 32px); }

    /* Footer */
    .footer-newsletter-bar .container { flex-direction: column; text-align: center; gap: var(--space-md); }
    .footer-newsletter-form { width: 100%; max-width: 100%; }
    .footer-newsletter-form input { font-size: 16px; } /* prevent iOS zoom */
    .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
    .footer-bottom .container { flex-direction: column; gap: var(--space-sm); text-align: center; }
    .footer-main { padding: var(--space-2xl) 0; }

    /* Archive */
    .archive-main { padding-top: calc(var(--header-h) + var(--space-2xl)); }
    .archive-title { font-size: clamp(36px, 10vw, 56px); }
}

@media (max-width: 480px) {
    .hero-headline { font-size: clamp(30px, 8vw, 42px); }
    .hero-eyebrow { font-size: 10px; padding: 6px 12px; }
    .category-strip-grid { grid-template-columns: 1fr; }
    .articles-grid { gap: var(--space-md); }
    .article-badges { flex-wrap: wrap; gap: var(--space-xs); }
    .featured-body { padding: var(--space-md); }
    .btn-read { width: 100%; justify-content: center; }
    .container { padding-inline: var(--space-md); }
    .site-logo-text { font-size: 20px; }
    .hero-stats { gap: 14px; }
    .stat-num { font-size: 18px; }
}

/* ── Animations ── */
@keyframes card-in {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
.article-card {
    animation: card-in 0.4s ease both;
}
.articles-grid .article-card:nth-child(2) { animation-delay: .06s; }
.articles-grid .article-card:nth-child(3) { animation-delay: .12s; }
.articles-grid .article-card:nth-child(4) { animation-delay: .18s; }
.articles-grid .article-card:nth-child(5) { animation-delay: .24s; }
.articles-grid .article-card:nth-child(6) { animation-delay: .30s; }
.category-strip-grid .article-card:nth-child(2) { animation-delay: .06s; }
.category-strip-grid .article-card:nth-child(3) { animation-delay: .12s; }
.category-strip-grid .article-card:nth-child(4) { animation-delay: .18s; }

@keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * {
    animation: fade-up .6s ease both;
}
.hero-eyebrow         { animation-delay: .05s; }
.hero-headline        { animation-delay: .2s; }
.hero-sub             { animation-delay: .35s; }
.hero-subscribe       { animation-delay: .45s; }
.hero-subscribe-note  { animation-delay: .5s; }
.hero-stats           { animation-delay: .55s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}
