/* ============================================
   HOMEPAGE — Editorial Magazine Layout
   ============================================ */

/* ─── HERO — asymmetric editorial ─── */
.hero-edit {
    padding: calc(var(--nav-h) + 60px) 0 80px;
    position: relative;
    overflow: hidden;
}
.hero-edit::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 88% 18%, var(--blush) 0, transparent 35%),
        radial-gradient(circle at 10% 85%, rgba(196,122,32,.08) 0, transparent 40%);
    pointer-events: none;
}

.hero-grid-edit {
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-display); font-style: italic;
    font-size: 16px; color: var(--ink-3);
    margin-bottom: 26px;
    background: var(--paper);
    padding: 8px 16px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    transform: rotate(-1.2deg);
}
.hero-eyebrow .dot {
    width: 8px; height: 8px; background: #22c55e; border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34,197,94,.2);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .55; } }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 8vw, 110px);
    font-weight: 400;
    line-height: .92;
    letter-spacing: -3px;
    color: var(--ink);
    margin-bottom: 32px;
    font-variation-settings: "SOFT" 60, "WONK" 1;
}
.hero-title .line { display: block; }
.hero-title .italic {
    font-style: italic;
    color: var(--red);
    font-weight: 300;
}
.hero-title .strike {
    position: relative; display: inline-block;
    color: var(--ink-4);
}
.hero-title .strike::after {
    content: ''; position: absolute; left: -4px; right: -4px; top: 52%; height: 5px;
    background: var(--red); transform: rotate(-2deg);
    border-radius: 3px;
}

.hero-sub {
    font-size: 19px; line-height: 1.7; color: var(--ink-3);
    max-width: 520px; margin-bottom: 36px;
}
.hero-sub strong { color: var(--ink); font-weight: 600; background: linear-gradient(transparent 60%, var(--blush) 60%); padding: 0 2px; }

.hero-ctas {
    display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
    margin-bottom: 40px;
}

.hero-proof {
    display: flex; gap: 32px; align-items: center;
    padding-top: 28px; border-top: 1.5px dashed var(--ink-3);
}
.proof-item {
    display: flex; align-items: baseline; gap: 8px;
}
.proof-num {
    font-family: var(--font-display); font-size: 28px;
    font-weight: 600; color: var(--ink); font-style: italic;
}
.proof-label {
    font-size: 13px; color: var(--ink-4); line-height: 1.3;
}

/* Hero right — portrait collage */
.hero-portrait {
    position: relative;
    aspect-ratio: .85;
    max-width: 440px;
    margin-left: auto;
}
.portrait-frame {
    position: relative;
    width: 100%; height: 100%;
    background: linear-gradient(160deg, var(--red) 0%, #b52a1f 100%);
    border: 3px solid var(--ink);
    border-radius: 24px;
    box-shadow: 10px 10px 0 var(--ink);
    transform: rotate(2deg);
    overflow: hidden;
}
.portrait-frame::before {
    content: 'WM'; position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 240px; font-weight: 300;
    color: rgba(255,253,247,.14); font-style: italic;
    letter-spacing: -8px;
}
.portrait-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,253,247,.12) 1.5px, transparent 2px);
    background-size: 20px 20px;
}
.portrait-caption {
    position: absolute; bottom: 24px; left: 24px; right: 24px;
    color: var(--paper); font-family: var(--font-display);
    font-style: italic; font-size: 17px; line-height: 1.35;
    z-index: 2;
}
.portrait-caption b {
    display: block; font-weight: 600; font-size: 13px;
    letter-spacing: 2px; text-transform: uppercase;
    font-style: normal; margin-bottom: 6px; opacity: .7;
}

/* Floating stickers around portrait */
.sticker {
    position: absolute;
    background: var(--paper);
    border: 2px solid var(--ink);
    border-radius: 14px;
    padding: 10px 16px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 15px;
    font-weight: 500;
    box-shadow: var(--shadow);
    z-index: 3;
    display: flex; align-items: center; gap: 8px;
    white-space: nowrap;
}
.sticker-1 {
    top: -16px; left: -32px;
    transform: rotate(-6deg);
    background: var(--ochre); color: var(--paper);
    animation: float1 4s ease-in-out infinite;
}
.sticker-2 {
    top: 48%; right: -48px;
    transform: rotate(5deg);
    background: var(--leaf); color: var(--paper);
    animation: float2 5s ease-in-out infinite;
}
.sticker-3 {
    bottom: -18px; left: 12%;
    transform: rotate(-3deg);
    animation: float3 4.5s ease-in-out infinite;
}
@keyframes float1 { 0%,100% { transform: rotate(-6deg) translateY(0); } 50% { transform: rotate(-6deg) translateY(-8px); } }
@keyframes float2 { 0%,100% { transform: rotate(5deg) translateY(0); } 50% { transform: rotate(5deg) translateY(-6px); } }
@keyframes float3 { 0%,100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-7px); } }

/* ─── Marquee bar ─── */
.marquee {
    background: var(--ink);
    color: var(--cream);
    padding: 22px 0;
    overflow: hidden;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    white-space: nowrap;
    transform: rotate(-1.2deg);
    margin: 60px 0 40px;
    box-shadow: 0 8px 0 var(--red);
}
.marquee-track {
    display: inline-flex;
    gap: 48px;
    animation: scroll 28s linear infinite;
    font-family: var(--font-display);
    font-size: 30px;
    font-style: italic;
    font-weight: 400;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track svg { width: 22px; height: 22px; color: var(--red); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ─── "Now" section ─── */
.now-section {
    padding: 90px 0;
    background: var(--cream-2);
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    position: relative;
}
.now-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}
.now-header h2 {
    font-family: var(--font-display);
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--ink);
    margin-bottom: 18px;
}
.now-header h2 em { color: var(--red); font-weight: 300; }
.now-header p {
    font-size: 16px; color: var(--ink-4);
    font-family: var(--font-display); font-style: italic;
    margin-bottom: 4px;
}
.now-date { font-size: 13px; color: var(--ink-5); }

.now-list { display: flex; flex-direction: column; gap: 20px; }
.now-item {
    display: flex; gap: 18px;
    background: var(--paper);
    border: 2px solid var(--ink);
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: var(--shadow);
    transition: all .3s var(--ease-bounce);
}
.now-item:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-lg); }
.now-item:nth-child(2) { margin-left: 24px; }
.now-item:nth-child(4) { margin-left: 12px; }

.now-emoji {
    font-size: 32px; line-height: 1;
    flex-shrink: 0;
    width: 54px; height: 54px;
    background: var(--cream);
    border: 2px solid var(--ink);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
}
.now-body h4 {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 600;
    color: var(--ink); margin-bottom: 4px;
    line-height: 1.3;
}
.now-body p { font-size: 14.5px; color: var(--ink-4); line-height: 1.55; }

/* ─── About Teaser — magazine split ─── */
.about-teaser {
    padding: 120px 0;
    position: relative;
}
.about-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-teaser-img {
    position: relative;
    aspect-ratio: 1;
    background: var(--ink);
    border: 3px solid var(--ink);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: rotate(-2deg);
}
.about-teaser-img::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 30%, var(--red) 0, transparent 50%),
        radial-gradient(circle at 70% 70%, var(--ochre) 0, transparent 50%);
    opacity: .7;
}
.about-teaser-img::after {
    content: 'W'; position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 320px; font-weight: 200;
    color: rgba(255,253,247,.2); font-style: italic;
}
.about-teaser-badge {
    position: absolute; top: -20px; right: -20px; z-index: 5;
    background: var(--paper); border: 2px solid var(--ink);
    border-radius: 50%; width: 110px; height: 110px;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; text-align: center;
    font-family: var(--font-display); font-style: italic;
    box-shadow: var(--shadow);
    transform: rotate(8deg);
    animation: wiggle 6s ease-in-out infinite;
}
@keyframes wiggle { 0%,100% { transform: rotate(8deg); } 50% { transform: rotate(4deg); } }
.about-teaser-badge b { display: block; font-size: 22px; color: var(--red); }
.about-teaser-badge span { font-size: 11px; color: var(--ink-3); }

.about-teaser-content .kicker {
    display: inline-block;
    font-family: var(--font-hand);
    font-size: 26px; color: var(--red);
    transform: rotate(-3deg);
    margin-bottom: 8px;
}
.about-teaser-content h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--ink);
    margin-bottom: 24px;
}
.about-teaser-content h2 em { color: var(--red); font-weight: 300; }
.about-teaser-content p {
    font-size: 17px; line-height: 1.75;
    color: var(--ink-3); margin-bottom: 18px;
    font-family: var(--font-display);
}
.about-teaser-content p.drop-cap:first-letter {
    font-size: 60px; float: left; font-weight: 500;
    line-height: .85; padding: 4px 8px 0 0; color: var(--red);
    font-style: italic;
}
.about-teaser-content .btn { margin-top: 12px; }

/* ─── Featured Video — editorial ─── */
.featured-video {
    padding: 110px 0;
    background: var(--ink);
    color: var(--cream);
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    position: relative;
    overflow: hidden;
}
.featured-video::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 12px;
    background: repeating-linear-gradient(90deg, var(--red) 0 30px, var(--paper) 30px 60px);
}
.featured-video .section-label { background: var(--ink); border-color: var(--red); color: var(--red); }
.featured-video .section-title { color: var(--paper); }
.featured-video .section-title em { color: var(--red); }
.featured-video .section-subtitle { color: var(--ink-5); }

.video-featured-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 48px;
    align-items: center;
}
.video-main {
    position: relative;
    aspect-ratio: 16/9;
    border: 3px solid var(--paper);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 10px 10px 0 var(--red);
    transform: rotate(-.8deg);
}
.video-main iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-meta h3 {
    font-family: var(--font-display); font-size: 34px; font-weight: 500;
    line-height: 1.15; color: var(--paper); margin-bottom: 18px;
    letter-spacing: -1px;
}
.video-meta h3 em { color: var(--red); }
.video-meta .meta-row {
    display: flex; gap: 20px; align-items: center; margin-bottom: 24px;
    font-size: 14px; color: var(--ink-5);
}
.video-meta .meta-row .dot-sep { width: 4px; height: 4px; background: var(--red); border-radius: 50%; }
.video-meta p { color: var(--cream); line-height: 1.7; margin-bottom: 28px; font-family: var(--font-display); font-style: italic; }

/* ─── Learn Grid — mosaic ─── */
.learn-grid {
    padding: 120px 0;
    position: relative;
}
.mosaic {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}
.mosaic-card {
    background: var(--paper);
    border: 2.5px solid var(--ink);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: var(--shadow);
    transition: all .3s var(--ease-bounce);
    position: relative;
    overflow: hidden;
    display: flex; flex-direction: column;
}
.mosaic-card:hover { transform: translate(-3px,-3px) rotate(.5deg); box-shadow: var(--shadow-lg); }
.mosaic-card.big { grid-column: span 3; grid-row: span 2; padding: 44px 40px; }
.mosaic-card.wide { grid-column: span 3; }
.mosaic-card.tall { grid-column: span 2; grid-row: span 2; }
.mosaic-card.small { grid-column: span 2; }

.mosaic-card .emoji {
    font-size: 42px; margin-bottom: 18px; display: inline-block;
    transform: rotate(-4deg);
}
.mosaic-card h3 {
    font-family: var(--font-display); font-weight: 500;
    font-size: 26px; line-height: 1.15; letter-spacing: -.5px;
    color: var(--ink); margin-bottom: 12px;
}
.mosaic-card.big h3 { font-size: 38px; }
.mosaic-card p {
    font-size: 15px; color: var(--ink-3); line-height: 1.65;
    margin-bottom: 16px;
}
.mosaic-card .chip {
    display: inline-block; font-size: 12px; font-weight: 600;
    padding: 5px 12px; border-radius: 999px;
    background: var(--blush); color: var(--red-ink);
    border: 1.5px solid var(--red);
    margin-top: auto; align-self: flex-start;
}
.mosaic-card.red { background: var(--red); color: var(--paper); }
.mosaic-card.red h3, .mosaic-card.red p { color: var(--paper); }
.mosaic-card.red .chip { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.mosaic-card.ochre { background: var(--ochre); color: var(--paper); }
.mosaic-card.ochre h3, .mosaic-card.ochre p { color: var(--paper); }
.mosaic-card.ink { background: var(--ink); color: var(--cream); }
.mosaic-card.ink h3 { color: var(--paper); }
.mosaic-card.ink p { color: var(--cream); }

.mosaic-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-display); font-style: italic;
    font-size: 16px; font-weight: 600; color: inherit;
    border-bottom: 2px solid currentColor; padding-bottom: 2px;
    align-self: flex-start; margin-top: auto;
}

/* ─── Testimonial strip ─── */
.testi-strip {
    padding: 100px 0;
    background: var(--cream-3);
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    position: relative;
}
.testi-quote {
    max-width: 880px; margin: 0 auto; text-align: center;
    font-family: var(--font-display); font-style: italic;
    font-size: clamp(24px, 3.5vw, 40px);
    line-height: 1.35; color: var(--ink); font-weight: 400;
    letter-spacing: -.5px;
}
.testi-quote::before {
    content: '"'; display: block;
    font-size: 140px; line-height: .6; color: var(--red);
    margin-bottom: 20px; font-weight: 500;
}
.testi-author {
    display: block; margin-top: 32px;
    font-family: var(--font); font-style: normal;
    font-size: 15px; color: var(--ink-4); font-weight: 500;
}
.testi-author b { color: var(--ink); display: block; font-size: 17px; font-weight: 600; margin-bottom: 2px; }

/* ─── Inner Circle CTA — sticker collage ─── */
.ic-banner {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.ic-banner::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 18% 30%, var(--blush) 0, transparent 40%),
        radial-gradient(circle at 82% 70%, rgba(196,122,32,.12) 0, transparent 45%);
}
.ic-banner-inner {
    position: relative; z-index: 2;
    max-width: 820px; margin: 0 auto; text-align: center;
    padding: 72px 48px;
    background: var(--paper);
    border: 3px solid var(--ink);
    border-radius: 28px;
    box-shadow: 12px 12px 0 var(--red);
}
.ic-banner .kicker {
    display: inline-block;
    font-family: var(--font-hand);
    font-size: 30px; color: var(--red);
    transform: rotate(-3deg);
    margin-bottom: 8px;
}
.ic-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 400;
    line-height: 1; letter-spacing: -2px;
    color: var(--ink); margin-bottom: 20px;
}
.ic-banner h2 em { color: var(--red); font-weight: 300; }
.ic-banner p {
    font-size: 18px; color: var(--ink-3); line-height: 1.7;
    max-width: 560px; margin: 0 auto 32px;
    font-family: var(--font-display); font-style: italic;
}

/* ─── Newsletter teaser ─── */
.nl-home {
    padding: 90px 0;
    background: var(--ink);
    color: var(--cream);
}
.nl-home-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 56px; align-items: center;
}
.nl-home h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--paper);
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}
.nl-home h2 em { color: var(--red); }
.nl-home p { color: var(--ink-5); font-size: 16px; line-height: 1.7; font-family: var(--font-display); font-style: italic; }
.nl-home-form {
    display: flex; gap: 12px;
    background: var(--paper);
    border: 2px solid var(--paper);
    border-radius: 999px;
    padding: 6px 6px 6px 22px;
    box-shadow: var(--shadow-red);
}
.nl-home-form input {
    flex: 1; border: none; outline: none; background: transparent;
    font-family: var(--font); font-size: 15px; color: var(--ink);
    padding: 10px 0;
}
.nl-home-form input::placeholder { color: var(--ink-5); }
.nl-home-form button { border: none; background: var(--red); color: var(--paper); padding: 12px 24px; border-radius: 999px; font-weight: 600; cursor: pointer; font-family: var(--font); font-size: 14px; }
.nl-home-form button:hover { background: var(--red-2); }

/* ═══ NEW SIGNATURE SECTIONS ═══ */

/* ─── Press/As-seen-on strip ─── */
.press-strip {
    padding: 56px 0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
}
.press-strip-label {
    text-align: center; font-size: 12px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--ink-4); margin-bottom: 28px;
    font-family: var(--font);
}
.press-row {
    display: flex; justify-content: space-around; align-items: center;
    gap: 40px; flex-wrap: wrap;
    opacity: .7;
}
.press-logo {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 600;
    color: var(--ink-3); letter-spacing: -.5px;
    font-style: italic;
    transition: var(--transition);
}
.press-logo:nth-child(2n) { transform: rotate(-2deg); }
.press-logo:nth-child(3n) { transform: rotate(1.5deg); }
.press-logo:hover { color: var(--red); }

/* ─── Manifesto / Things I Believe ─── */
.manifesto {
    padding: 140px 0;
    background: var(--cream-2);
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    position: relative;
    overflow: hidden;
}
.manifesto::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, var(--blush) 0, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(196,122,32,.12) 0, transparent 35%);
    pointer-events: none;
}
.manifesto-header {
    max-width: 880px; margin: 0 auto 64px; text-align: center;
    position: relative; z-index: 2;
}
.manifesto-header .kicker {
    font-family: var(--font-hand); font-size: 32px;
    color: var(--red); transform: rotate(-2deg); display: inline-block;
    margin-bottom: 6px;
}
.manifesto-header h2 {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 72px); font-weight: 400;
    line-height: 1.02; letter-spacing: -2.5px;
    color: var(--ink); margin-bottom: 18px;
}
.manifesto-header h2 em { color: var(--red); font-weight: 300; }
.manifesto-header p {
    font-size: 19px; color: var(--ink-4);
    font-family: var(--font-display); font-style: italic;
    max-width: 620px; margin: 0 auto;
}
.beliefs-list {
    max-width: 880px; margin: 0 auto;
    counter-reset: belief;
    position: relative; z-index: 2;
}
.belief {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 2px dashed var(--ink-3);
    align-items: start;
    counter-increment: belief;
}
.belief:last-child { border-bottom: none; }
.belief::before {
    content: counter(belief, decimal-leading-zero);
    font-family: var(--font-display); font-style: italic;
    font-size: 56px; font-weight: 400;
    color: var(--red); line-height: 1;
    transition: all .4s var(--ease-bounce);
}
.belief:hover::before { transform: translateX(-6px) rotate(-4deg); }
.belief-body h3 {
    font-family: var(--font-display);
    font-size: 26px; font-weight: 500; line-height: 1.15;
    color: var(--ink); margin-bottom: 8px; letter-spacing: -.4px;
}
.belief-body h3 em { color: var(--red); font-weight: 400; }
.belief-body p {
    font-size: 16px; line-height: 1.7; color: var(--ink-4);
    font-family: var(--font-display);
}

/* ─── Writing / Recent Essays ─── */
.writing-section {
    padding: 120px 0;
    background: var(--paper);
}
.writing-header {
    display: grid; grid-template-columns: 2fr 1fr;
    gap: 48px; align-items: end; margin-bottom: 56px;
    padding-bottom: 24px; border-bottom: 2px solid var(--ink);
}
.writing-header h2 {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 62px); font-weight: 400;
    line-height: 1; letter-spacing: -1.8px; color: var(--ink);
}
.writing-header h2 em { color: var(--red); font-weight: 300; }
.writing-header .sub {
    font-size: 16px; color: var(--ink-4);
    font-family: var(--font-display); font-style: italic;
    text-align: right;
}
.writing-header .sub a { text-decoration: underline; text-decoration-color: var(--red); text-decoration-thickness: 2px; text-underline-offset: 4px; font-weight: 500; color: var(--ink); }
.essays-list { display: flex; flex-direction: column; }
.essay-row {
    display: grid;
    grid-template-columns: 60px 1fr 160px 180px 40px;
    gap: 24px;
    padding: 28px 4px;
    border-bottom: 1.5px dashed var(--ink-3);
    align-items: center;
    transition: all .3s var(--ease);
    position: relative;
}
.essay-row:last-child { border-bottom: none; }
.essay-row::before {
    content: ''; position: absolute; inset: 0 -16px;
    background: var(--blush); opacity: 0; border-radius: 14px;
    transition: opacity .3s; z-index: 0;
}
.essay-row:hover::before { opacity: 1; }
.essay-row > * { position: relative; z-index: 1; }
.essay-num {
    font-family: var(--font-display); font-style: italic;
    font-size: 26px; color: var(--ink-5); font-weight: 400;
}
.essay-title {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 500; line-height: 1.25;
    color: var(--ink); letter-spacing: -.4px;
}
.essay-title em { color: var(--red); font-weight: 400; }
.essay-cat {
    font-size: 11px; font-weight: 700;
    padding: 5px 11px; border-radius: 999px;
    background: var(--blush); color: var(--red-ink);
    border: 1.5px solid var(--red);
    text-transform: uppercase; letter-spacing: .5px;
    justify-self: start;
}
.essay-read {
    font-size: 13px; color: var(--ink-4);
    font-family: var(--font-display); font-style: italic;
}
.essay-arrow {
    width: 38px; height: 38px;
    border: 2px solid var(--ink); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--ink); transition: all .3s var(--ease-bounce);
    background: var(--paper);
}
.essay-row:hover .essay-arrow { background: var(--red); color: var(--paper); border-color: var(--red); transform: rotate(-45deg) scale(1.1); }

/* ─── Stack / Tools I Use preview ─── */
.stack-preview {
    padding: 120px 0;
    background: var(--cream);
    border-top: 2px solid var(--ink);
    position: relative;
    overflow: hidden;
}
.stack-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 72px;
    align-items: center;
}
.stack-left .kicker {
    font-family: var(--font-hand); font-size: 30px;
    color: var(--red); transform: rotate(-3deg);
    display: inline-block; margin-bottom: 6px;
}
.stack-left h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 64px); font-weight: 400;
    line-height: 1; letter-spacing: -2px; color: var(--ink);
    margin-bottom: 22px;
}
.stack-left h2 em { color: var(--red); font-weight: 300; }
.stack-left p {
    font-size: 17px; line-height: 1.75; color: var(--ink-3);
    font-family: var(--font-display); margin-bottom: 14px;
}
.stack-left .btn { margin-top: 18px; }
.stack-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.stack-chip {
    aspect-ratio: 1;
    background: var(--paper);
    border: 2.5px solid var(--ink);
    border-radius: 18px;
    padding: 18px 14px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all .3s var(--ease-bounce);
    gap: 8px;
}
.stack-chip:hover { transform: translate(-3px,-3px) rotate(-2deg); box-shadow: var(--shadow); }
.stack-chip:nth-child(even) { transform: rotate(1deg); }
.stack-chip:nth-child(3n) { transform: rotate(-.8deg); }
.stack-chip-emoji { font-size: 32px; line-height: 1; }
.stack-chip-name {
    font-family: var(--font-display); font-weight: 600;
    font-size: 14px; color: var(--ink); letter-spacing: -.2px;
    line-height: 1.15;
}
.stack-chip-use {
    font-size: 10px; color: var(--ink-5); font-style: italic;
    font-family: var(--font-display); text-transform: uppercase;
    letter-spacing: .5px;
}

/* ─── Numbers strip ─── */
.numbers-strip {
    padding: 80px 0;
    background: var(--ink);
    color: var(--cream);
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    position: relative;
    overflow: hidden;
}
.numbers-strip::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
    background: repeating-linear-gradient(-45deg, var(--red) 0 20px, var(--ink) 20px 40px);
}
.numbers-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.number-item {
    text-align: center; padding: 0 20px;
    position: relative;
}
.number-item:not(:last-child)::after {
    content: ''; position: absolute; right: -20px; top: 50%;
    transform: translateY(-50%);
    width: 1.5px; height: 60%;
    background: repeating-linear-gradient(to bottom, var(--ink-5) 0 4px, transparent 4px 8px);
}
.number-big {
    display: block;
    font-family: var(--font-display); font-style: italic;
    font-size: clamp(56px, 7vw, 92px); font-weight: 300;
    color: var(--red); line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -3px;
}
.number-label {
    font-size: 14px; color: var(--cream);
    font-family: var(--font-display); font-style: italic;
    line-height: 1.35;
}

/* ─── Social proof carousel strip ─── */
.proof-carousel {
    padding: 100px 0;
    background: var(--cream-3);
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    overflow: hidden;
}
.proof-header { text-align: center; margin-bottom: 56px; }
.proof-header h2 {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.5vw, 52px); font-weight: 400;
    color: var(--ink); letter-spacing: -1.5px;
    line-height: 1.05;
}
.proof-header h2 em { color: var(--red); font-weight: 300; }
.proof-track-wrap { position: relative; }
.proof-track-wrap::before,
.proof-track-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 3;
    pointer-events: none;
}
.proof-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--cream-3), transparent); }
.proof-track-wrap::after { right: 0; background: linear-gradient(-90deg, var(--cream-3), transparent); }
.proof-track {
    display: flex; gap: 24px;
    animation: proofScroll 45s linear infinite;
    width: max-content;
}
.proof-track:hover { animation-play-state: paused; }
.proof-card {
    flex-shrink: 0;
    width: 360px;
    padding: 28px 30px;
    background: var(--paper);
    border: 2.5px solid var(--ink);
    border-radius: 18px;
    box-shadow: var(--shadow);
}
.proof-card:nth-child(even) { transform: rotate(.8deg); }
.proof-card:nth-child(odd) { transform: rotate(-.6deg); }
.proof-card .stars {
    display: flex; gap: 2px; margin-bottom: 12px;
    color: var(--ochre);
}
.proof-card p {
    font-size: 16px; line-height: 1.55;
    color: var(--ink-2); font-family: var(--font-display);
    font-style: italic; margin-bottom: 18px;
}
.proof-person {
    display: flex; align-items: center; gap: 12px;
    padding-top: 14px; border-top: 1.5px dashed var(--ink-3);
}
.proof-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    border: 2px solid var(--ink);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 600; font-size: 16px;
    color: var(--paper);
    flex-shrink: 0;
}
.proof-person-info b {
    display: block; font-size: 14px; color: var(--ink);
    font-weight: 600;
}
.proof-person-info span { font-size: 12px; color: var(--ink-4); }
@keyframes proofScroll { to { transform: translateX(calc(-50% - 12px)); } }

/* ─── Inline FAQ / "Honest questions" ─── */
.inline-faq {
    padding: 120px 0;
    background: var(--paper);
}
.inline-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 72px;
    align-items: start;
}
.inline-faq-left h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 64px); font-weight: 400;
    line-height: 1; letter-spacing: -2px; color: var(--ink);
    margin-bottom: 18px;
}
.inline-faq-left h2 em { color: var(--red); font-weight: 300; }
.inline-faq-left p {
    font-size: 17px; color: var(--ink-3); line-height: 1.7;
    font-family: var(--font-display); margin-bottom: 24px;
}
.inline-faq-list { display: flex; flex-direction: column; gap: 14px; }
.inline-faq-list details {
    background: var(--paper);
    border: 2.5px solid var(--ink);
    border-radius: 16px;
    padding: 0;
    box-shadow: var(--shadow-sm);
    transition: all .3s var(--ease);
    overflow: hidden;
}
.inline-faq-list details:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow); }
.inline-faq-list details[open] { box-shadow: var(--shadow); background: var(--cream); }
.inline-faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 28px;
    font-family: var(--font-display);
    font-size: 19px; font-weight: 500;
    color: var(--ink);
    letter-spacing: -.3px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
}
.inline-faq-list summary::-webkit-details-marker { display: none; }
.inline-faq-list summary::after {
    content: '+'; font-size: 28px; color: var(--red);
    font-weight: 300; line-height: 0; transition: transform .3s;
}
.inline-faq-list details[open] summary::after { content: '−'; }
.inline-faq-list details p {
    padding: 0 28px 24px;
    font-size: 15.5px; line-height: 1.75; color: var(--ink-3);
    font-family: var(--font-display);
}

/* ─── Giant CTA footer-above ─── */
.giant-cta {
    padding: 140px 0;
    background: var(--red);
    color: var(--paper);
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.giant-cta::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,253,247,.08) 1.5px, transparent 2px);
    background-size: 30px 30px;
}
.giant-cta > .container { position: relative; z-index: 2; }
.giant-cta .kicker {
    font-family: var(--font-hand); font-size: 36px;
    color: var(--paper); transform: rotate(-2deg); display: inline-block;
    margin-bottom: 6px; opacity: .85;
}
.giant-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(54px, 9vw, 130px); font-weight: 300;
    line-height: .9; letter-spacing: -4px;
    color: var(--paper); margin-bottom: 28px;
    font-style: italic;
}
.giant-cta h2 span { font-style: normal; font-weight: 400; }
.giant-cta p {
    font-size: 20px; color: var(--blush); line-height: 1.5;
    max-width: 620px; margin: 0 auto 40px;
    font-family: var(--font-display); font-style: italic;
}
.giant-cta .btn-group {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.giant-cta .btn-primary { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.giant-cta .btn-primary:hover { background: var(--paper); color: var(--ink); }
.giant-cta .btn-ghost { border-color: var(--paper); color: var(--paper); box-shadow: 0 2px 0 var(--ink); }
.giant-cta .btn-ghost:hover { background: var(--paper); color: var(--ink); }

/* ─── Responsive ─── */
@media (max-width: 960px) {
    .hero-grid-edit { grid-template-columns: 1fr; gap: 72px; }
    .hero-portrait { max-width: 360px; margin: 0 auto; }
    .now-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-teaser-grid { grid-template-columns: 1fr; gap: 56px; }
    .video-featured-grid { grid-template-columns: 1fr; gap: 32px; }
    .mosaic { grid-template-columns: repeat(2, 1fr); }
    .mosaic-card.big, .mosaic-card.wide, .mosaic-card.tall, .mosaic-card.small { grid-column: span 2; grid-row: auto; }
    .nl-home-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 960px) {
    .writing-header { grid-template-columns: 1fr; gap: 20px; align-items: start; }
    .writing-header .sub { text-align: left; }
    .essay-row { grid-template-columns: 40px 1fr 36px; grid-template-rows: auto auto; gap: 12px 16px; }
    .essay-cat, .essay-read { grid-column: 2; }
    .essay-read { font-size: 12px; }
    .stack-grid { grid-template-columns: 1fr; gap: 48px; }
    .inline-faq-grid { grid-template-columns: 1fr; gap: 40px; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 56px 16px; }
    .number-item:not(:last-child)::after { display: none; }
    .belief { grid-template-columns: 50px 1fr; gap: 20px; padding: 28px 0; }
    .belief::before { font-size: 40px; }
}
@media (max-width: 560px) {
    .hero-title { font-size: 52px; letter-spacing: -1.5px; }
    .hero-proof { flex-direction: column; gap: 16px; align-items: flex-start; }
    .sticker { display: none; }
    .sticker-3 { display: flex; bottom: -20px; left: 50%; transform: translateX(-50%) rotate(-3deg); }
    .mosaic { grid-template-columns: 1fr; }
    .mosaic-card.big, .mosaic-card.wide, .mosaic-card.tall, .mosaic-card.small { grid-column: span 1; }
    .ic-banner-inner { padding: 48px 24px; }
    .nl-home-form { flex-direction: column; border-radius: 20px; padding: 14px; }
    .nl-home-form input { padding: 10px 14px; }
    .nl-home-form button { padding: 14px; }
    .stack-right { grid-template-columns: repeat(2, 1fr); }
    .giant-cta h2 { font-size: 56px; letter-spacing: -2px; }
    .proof-card { width: 300px; padding: 24px; }
    .essay-title { font-size: 18px; }
}
