/* ==========================================================================
   STORY PAGE — Black Craft Custom Tattoos
   Reuses the Baby Gorilla type/color system from styles.css.
   Standalone, vertically-scrolling long-form page (unlike the grid index).
   ========================================================================== */
:root {
    --bg-white: #FFFFFF;
    --text-dark: #0A0A0A;
    --accent-color: #E6FF00;
    /* Neon yellow/green — the brand accent */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
    --font-script: 'Caveat', cursive;

    --paper: #FAFAFA;
    --line-soft: rgba(10, 10, 10, 0.1);
    --line-soft-inv: rgba(255, 255, 255, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    cursor: none;
}

a,
button {
    cursor: none;
}

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

/* Custom cursor — matches the main site (styles.css) */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    background-color: var(--bg-white);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    /* Grow via width/height (not transform:scale) so the VIEW text stays crisp */
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, mix-blend-mode 0.3s ease;
    will-change: transform;
}

.cursor-text {
    opacity: 0;
    color: var(--text-dark);
    transition: opacity 0.3s ease;
}

.custom-cursor.is-view-mode {
    width: 96px;
    height: 96px;
    mix-blend-mode: normal;
    background-color: var(--accent-color);
}

.custom-cursor.is-view-mode .cursor-text {
    opacity: 1;
}

/* Film-grain overlay, matching the main site */
.grain-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.06;
    mix-blend-mode: overlay;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

.wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 7rem 0;
}

/* Reveal-on-scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.kicker {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-dark);
    opacity: 0.4;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 8rem 0 7rem;
    position: relative;
    overflow: hidden;
}

.hero::after {
    /* soft accent glow, top-right */
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 55vw;
    height: 55vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle, rgba(230, 255, 0, 0.14) 0%, rgba(230, 255, 0, 0) 62%);
    pointer-events: none;
}

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

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 3.5rem;
}

.brand-mark img {
    height: 30px;
    width: auto;
}

.brand-mark span {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bg-white);
    opacity: 0.5;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
    border: 1px solid rgba(230, 255, 0, 0.35);
    border-radius: 50px;
    padding: 0.5rem 1.1rem;
    margin-bottom: 2rem;
}

.hero-tag .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 0 0 rgba(230, 255, 0, 0.6);
    animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 255, 0, 0.55); }
    70% { box-shadow: 0 0 0 8px rgba(230, 255, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 255, 0, 0); }
}

.hero h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.6rem, 6.5vw, 6rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--bg-white);
    max-width: 15ch;
}

.hero .subhead {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    line-height: 1.65;
    color: var(--bg-white);
    opacity: 0.68;
    max-width: 52ch;
    margin-top: 2rem;
    font-weight: 400;
}

.hero .subhead em {
    font-style: normal;
    color: var(--accent-color);
    opacity: 1;
}

/* ==========================================================================
   BEFORE / AFTER
   ========================================================================== */
.beforeafter {
    background-color: var(--bg-white);
}

.ba-head {
    text-align: center;
    margin-bottom: 4rem;
}

.ba-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-top: 1rem;
}

.ba-head h2 em {
    font-style: italic;
    opacity: 0.35;
}

.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.ba-col {
    border-radius: 18px;
    padding: 2.5rem;
    border: 1px solid var(--line-soft);
}

.ba-col.before {
    background-color: var(--paper);
}

.ba-col.after {
    background-color: var(--text-dark);
    border-color: var(--text-dark);
}

.ba-col-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 1.8rem;
}

.ba-col.before .ba-col-label {
    color: var(--text-dark);
    opacity: 0.55;
    border: 1px solid var(--line-soft);
}

.ba-col.after .ba-col-label {
    color: var(--text-dark);
    background-color: var(--accent-color);
}

.ba-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.ba-list li {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.5;
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.ba-col.before .ba-list li {
    color: var(--text-dark);
    opacity: 0.72;
}

.ba-col.after .ba-list li {
    color: var(--bg-white);
}

.ba-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    font-size: 0.8rem;
    line-height: 20px;
    text-align: center;
}

.ba-col.before .ba-icon {
    color: var(--text-dark);
    opacity: 0.4;
}

.ba-col.after .ba-icon {
    color: var(--accent-color);
}

/* ==========================================================================
   NARRATIVE
   ========================================================================== */
.narrative {
    background-color: var(--paper);
}

/* Arrow-line progress nav — mobile only (hidden on desktop) */
.narr-nav {
    display: none;
}

.narr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 5rem;
    margin-top: 3.5rem;
}

.narr-block {
    position: relative;
    padding-top: 2rem;
    border-top: 1px solid var(--line-soft);
}

.narr-block .num {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-dark);
    opacity: 0.4;
}

.narr-block h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0.6rem 0 1rem;
}

.narr-block h3 em {
    font-style: italic;
    color: var(--text-dark);
}

.narr-block.live h3 {
    color: var(--text-dark);
}

.narr-block.live .num {
    color: var(--text-dark);
    opacity: 1;
}

.narr-block.live .num::after {
    content: '● LIVE';
    color: #1f9d55;
    margin-left: 0.5rem;
    letter-spacing: 0.1em;
}

.narr-block p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-dark);
    opacity: 0.72;
}

.narr-block p strong {
    font-weight: 700;
    font-size: 1.12em;
    opacity: 1;
}

/* ==========================================================================
   THE LOOP — circular booking flow (enquire → approve → book)
   Lives in the dark features section; three steps sit around a ring.
   ========================================================================== */
.flow-strip {
    position: relative;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    margin: 2.5rem auto 0;
}

/* Loop track */
.flow-strip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68%;
    height: 68%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(10, 10, 10, 0.18);
    border-radius: 50%;
}

/* Center loop glyph */
.flow-strip::after {
    content: '↻';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.2rem;
    line-height: 1;
    color: var(--text-dark);
    opacity: 0.25;
}

.flow-arrow { display: none; }

.flow-step {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    width: 48%;
    text-align: center;
}

.flow-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
}

.flow-text h4 {
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Titles only inside the loop */
.flow-text p { display: none; }

/* Clockwise placement: 1 top · 2 bottom-right · 3 bottom-left */
.flow-step:nth-of-type(1) { top: 0; left: 50%; transform: translateX(-50%); }
.flow-step:nth-of-type(2) { bottom: 2%; right: 0; }
.flow-step:nth-of-type(3) { bottom: 2%; left: 0; }

/* ==========================================================================
   COMBINED SECTION — loop (left) + four things (right)
   ========================================================================== */
.features-combined {
    display: grid;
    grid-template-columns: 0.68fr 1.32fr;
    gap: 2rem;
    align-items: start;
}

/* Left panel — light, same as the site */
.flow-col {
    display: flex;
    flex-direction: column;
    background-color: var(--paper);
    border-radius: 22px;
    padding: 2.5rem 2rem;
}

/* Right panel — black */
.features-col {
    background-color: var(--text-dark);
    border-radius: 22px;
    padding: 3rem 2.8rem;
}

.features .flow-col-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--text-dark);
    margin-top: 1rem;
}

.features .flow-col .kicker {
    color: var(--text-dark);
    opacity: 0.4;
}

/* ==========================================================================
   FEATURE CALLOUTS
   ========================================================================== */
.features {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

/* This section goes full width instead of the centered 1100px wrap */
.features .wrap {
    max-width: none;
    padding: 0 2rem;
}

/* Right panel (four things) keeps the dark treatment */
.features-col .kicker {
    color: var(--bg-white);
    opacity: 0.4;
}

.features h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--bg-white);
    margin: 1rem 0 3.5rem;
    line-height: 1.05;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.feat-card {
    border: 1px solid var(--line-soft-inv);
    border-radius: 18px;
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.3s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feat-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-6px);
}

.feat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    line-height: 1;
}

.feat-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--bg-white);
}

.feat-card p {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--bg-white);
    opacity: 0.62;
}

/* ==========================================================================
   FEATURE DEPTH — what's actually in the system
   ========================================================================== */
.depth {
    background-color: var(--paper);
}

.depth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.depth-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.depth-col h3 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    padding-bottom: 0.9rem;
    margin-bottom: 1.1rem;
    border-bottom: 2px solid var(--accent-color);
}

.depth-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.depth-list li {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dark);
    opacity: 0.72;
    padding-left: 1rem;
    position: relative;
}

.depth-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--text-dark);
    opacity: 0.5;
}

.depth-toggle {
    display: none;
}

.depth-trust {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.55;
    text-align: center;
    max-width: 60ch;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--line-soft);
}

/* ==========================================================================
   SOCIAL PROOF — Craig's Facebook announcement
   ========================================================================== */
.proof {
    background-color: var(--bg-white);
}

.post-shot {
    max-width: 620px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.post-shot img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(10, 10, 10, 0.1);
    box-shadow: 0 22px 55px rgba(10, 10, 10, 0.14);
}

.post-shot-tag {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    opacity: 0.4;
}

.proof-note {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.6;
    text-align: center;
    max-width: 46ch;
    margin: 2.5rem auto 0;
}

/* ==========================================================================
   FOUNDER PRESENCE
   ========================================================================== */
.founder {
    background-color: var(--text-dark);
    color: var(--bg-white);
}

.founder-wrap {
    display: flex;
    align-items: flex-start;
    gap: 2.2rem;
    max-width: 780px;
    margin: 0 auto;
}

.founder-avatar {
    flex-shrink: 0;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-color);
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-content {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.founder .kicker {
    color: var(--bg-white);
    opacity: 0.4;
}

.founder-lead {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    line-height: 1.2;
    color: var(--bg-white);
}

.founder-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.founder-list li {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--bg-white);
    opacity: 0.85;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.founder-icon {
    flex-shrink: 0;
    color: var(--accent-color);
    font-size: 0.8rem;
    line-height: 1.6;
}

.founder-name {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: var(--bg-white);
    opacity: 0.5;
}

@media (max-width: 640px) {
    .founder-wrap {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta {
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-align: center;
}

.cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    max-width: 18ch;
    margin: 0 auto;
}

.cta p {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.65;
    max-width: 56ch;
    margin: 1.8rem auto 2.5rem;
    color: rgba(10, 10, 10, 0.75);
}

.cta p em {
    font-style: italic;
    font-weight: 700;
    color: var(--text-dark);
}

/* Launch offer card — dark box on the accent section so it pops */
.cta-offer {
    width: 100%;
    margin: 0 auto 2.5rem;
    background-color: var(--text-dark);
    border-radius: 18px;
    padding: 2.6rem 2rem;
    box-shadow: 0 18px 45px rgba(10, 10, 10, 0.28);
}

.cta-offer-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.cta-offer-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-color);
    animation: cta-offer-pulse 2s ease-in-out infinite;
}

@keyframes cta-offer-pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 255, 0, 0.55); }
    70% { box-shadow: 0 0 0 8px rgba(230, 255, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 255, 0, 0); }
}

.cta p.cta-offer-head {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--bg-white);
    max-width: none;
    margin: 0 0 0.7rem;
}

.cta p.cta-offer-head strong {
    color: var(--accent-color);
    font-weight: 700;
}

.cta p.cta-offer-sub {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--bg-white);
    opacity: 0.62;
    max-width: none;
    margin: 0;
}

.cta-btn {
    display: inline-block;
    margin-top: 1.8rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-dark);
    background-color: var(--bg-white);
    padding: 1.15rem 2.6rem;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-4px);
    background-color: #f0f0f0;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.cta-signoff {
    margin-top: 2.5rem;
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--text-dark);
}

.cta-signoff a {
    color: var(--text-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0;
    text-align: center;
}

.footer p {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--bg-white);
    opacity: 0.45;
}

.footer a {
    color: var(--accent-color);
    text-decoration: none;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 860px) {
    body { cursor: auto; }
    a,
    button { cursor: pointer; }
    .custom-cursor { display: none !important; }
    .section { padding: 4rem 0; }
    .wrap { padding: 0 1.5rem; }
    .hero { padding: 5.5rem 0 5rem; }
    .feat-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
    /* Combined loop + features stacks vertically */
    .features-combined {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .flow-col { align-items: center; text-align: center; }
    .flow-col-title { margin-bottom: 0.5rem; }
    .brand-mark { margin-bottom: 2.5rem; }

    /* Feature depth: stack columns, keep only 2 points visible, icons carry the rest */
    .depth-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    .depth-col {
        background-color: var(--bg-white);
        border-radius: 16px;
        padding: 1.5rem 1.4rem;
    }
    .depth-icon {
        width: 34px;
        height: 34px;
        border-radius: 9px;
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    .depth-col h3 {
        font-size: 0.8rem;
        padding-bottom: 0.7rem;
        margin-bottom: 0.85rem;
    }
    .depth-list li { font-size: 1rem; line-height: 1.6; }
    .depth-list li:nth-child(n+3) { display: none; }
    .depth-col.is-expanded .depth-list li { display: block; }
    .depth-toggle {
        display: inline-block;
        margin-top: 0.9rem;
        background: none;
        border: none;
        padding: 0;
        font-family: var(--font-body);
        font-size: 0.88rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        color: var(--text-dark);
        opacity: 0.45;
        cursor: pointer;
    }
    .depth-col.is-expanded .depth-toggle { display: none; }
    .depth-trust {
        font-size: 0.9rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    /* Swipeable cards must never stay hidden behind the reveal animation */
    .ba-col.reveal,
    .narr-block.reveal {
        opacity: 1;
        transform: none;
    }

    /* ---- Before / After: horizontal swipe ---- */
    .ba-grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -1.5rem;
        padding: 0 1.5rem;
    }
    .ba-grid::-webkit-scrollbar { display: none; }
    .ba-col {
        flex: 0 0 83%;
        aspect-ratio: 1 / 1;
        scroll-snap-align: center;
        padding: 1.6rem;
        overflow-y: auto;
        scrollbar-width: none;
    }
    .ba-col::-webkit-scrollbar { display: none; }
    .ba-col-label { margin-bottom: 1.2rem; }
    .ba-list { gap: 0.85rem; }
    .ba-list li { font-size: 0.9rem; }

    /* ---- Narrative: horizontal swipe with arrow-line nav ---- */
    .narr-nav {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        overflow-x: auto;
        scrollbar-width: none;
        margin: 2rem -1.5rem 1rem;
        padding: 0 1.5rem;
    }
    .narr-nav::-webkit-scrollbar { display: none; }
    .narr-nav-item {
        flex: 0 0 auto;
        background: none;
        border: none;
        border-bottom: 2px solid transparent;
        font-family: var(--font-body);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--text-dark);
        opacity: 0.3;
        padding: 0.25rem 0;
        white-space: nowrap;
        transition: opacity 0.3s ease, border-color 0.3s ease;
    }
    .narr-nav-item.is-active {
        opacity: 1;
        border-bottom-color: var(--text-dark);
    }
    .narr-nav-arrow {
        flex: 0 0 auto;
        font-size: 0.85rem;
        color: var(--text-dark);
        opacity: 0.3;
    }

    .narr-grid {
        display: flex;
        position: relative;
        gap: 1rem;
        margin: 0 -1.5rem;
        padding: 0 1.5rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .narr-grid::-webkit-scrollbar { display: none; }
    .narr-block {
        flex: 0 0 85%;
        aspect-ratio: 1 / 1;
        scroll-snap-align: center;
        border: 1px solid var(--line-soft);
        border-top: 1px solid var(--line-soft);
        border-radius: 16px;
        background: #fff;
        padding: 1.6rem;
        overflow-y: auto;
        scrollbar-width: none;
    }
    .narr-block::-webkit-scrollbar { display: none; }
    .narr-block h3 { font-size: 1.3rem; margin: 0.5rem 0 0.8rem; }
    .narr-block p { font-size: 0.92rem; line-height: 1.6; }

    /* ---- Why it holds up: tap to expand each card ---- */
    .feat-card {
        gap: 0;
        padding: 1.25rem 1.4rem;
        cursor: pointer;
    }
    .feat-card:hover { transform: none; }
    .feat-card .feat-icon { display: none; }
    .feat-card h3 {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }
    .feat-card h3::after {
        content: '+';
        font-family: var(--font-body);
        font-weight: 400;
        font-size: 1.5rem;
        line-height: 1;
        color: var(--accent-color);
        flex-shrink: 0;
    }
    .feat-card.is-open h3::after { content: '–'; }
    .feat-card p {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        margin-top: 0;
        transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease;
    }
    .feat-card.is-open p {
        max-height: 240px;
        opacity: 0.62;
        margin-top: 0.9rem;
    }
}
