
        :root {
            --paper: #F6F3EA;
            --paper-2: #F0F2E9;
            --surface: #FBFAF6;
            --ink: #20251F;
            --muted: #62685F;
            --hairline: rgba(32,37,31,.16);
            --green: #315B43;
            --green-soft: #DDE7D9;
            --terracotta: #9A4D37;
            --champagne: #D6BE96;
            --hero-ink: #213128;
            --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
            --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, Helvetica, sans-serif;
            --ease-editorial: cubic-bezier(.2,.7,.2,1);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { background: var(--paper); }
        body {
            background: var(--paper);
            color: var(--ink);
            font-family: var(--sans);
            line-height: 1.65;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }
        ::selection { background: #DDE7D9; color: #172019; }

        /* ======================= HERO / OPENING ======================= */
        #hero-section {
            position: relative;
            width: 100%;
            height: 400svh;
            min-height: 2560px;
            overflow: visible;
            background: var(--paper);
        }
        .hero-sticky {
            position: sticky;
            top: 0;
            width: 100%;
            height: 100svh;
            min-height: 640px;
            display: grid;
            place-items: center;
            overflow: hidden;
            isolation: isolate;
            background:
                radial-gradient(ellipse at 72% 18%, rgba(205,220,194,.86) 0%, rgba(205,220,194,.32) 28%, rgba(205,220,194,0) 55%),
                radial-gradient(ellipse at 18% 80%, rgba(232,213,178,.54) 0%, rgba(232,213,178,.18) 30%, rgba(232,213,178,0) 58%),
                linear-gradient(135deg, #FAF7EF 0%, #F1F1E8 52%, #F7F0E5 100%);
            border-bottom: 1px solid rgba(32,37,31,.08);
        }
        .hero-sticky::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background: linear-gradient(90deg, rgba(255,255,255,.18), transparent 32%, transparent 70%, rgba(255,255,255,.12));
        }
        .hero-sticky::after {
            content: '';
            position: absolute;
            left: 6vw;
            right: 6vw;
            bottom: 34px;
            height: 1px;
            z-index: 4;
            background: linear-gradient(90deg, transparent, rgba(49,91,67,.24) 18%, rgba(49,91,67,.24) 82%, transparent);
            pointer-events: none;
        }
        .hero-image-stage {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            display: grid;
            place-items: center;
            will-change: transform;
        }
        .hero-floor {
            position: absolute;
            left: 50%;
            bottom: 11%;
            transform: translateX(-50%);
            width: min(42vw, 540px);
            height: min(7vw, 86px);
            border-radius: 50%;
            background: radial-gradient(ellipse at center, rgba(126,110,85,.18) 0%, rgba(126,110,85,.10) 42%, rgba(126,110,85,0) 76%);
            filter: blur(22px);
            opacity: .72;
        }
        .hero-frame-wrap {
            position: relative;
            width: min(72vmin, 860px);
            aspect-ratio: 1/1;
            transform-origin: center center;
            will-change: transform;
        }
        .hero-frame {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center center;
            opacity: 0;
            transform: scale(.985);
            will-change: opacity, transform;
            filter: drop-shadow(0 26px 42px rgba(118,102,78,.16));
            user-select: none;
            pointer-events: none;
        }
        .hero-frame.frame-2 {
            filter: drop-shadow(0 24px 42px rgba(118,102,78,.10));
        }
        .hero-frame:first-child { opacity: 1; transform: scale(1); }
        .hero-content {
            position: absolute;
            left: 50%;
            top: calc(50% + 3cm);
            transform: translate(-50%, -46%);
            z-index: 5;
            width: min(1120px, 90vw);
            text-align: center;
            opacity: 0;
            pointer-events: none;
            color: var(--hero-ink);
            will-change: opacity, transform;
        }
        .hero-title {
            margin: 0;
            text-shadow: none;
            text-transform: none;
            font-family: var(--serif);
            font-weight: 500;
            letter-spacing: -.025em;
            line-height: .98;
        }
        .hero-title .hero-family {
            display: block;
            margin: 0 auto 22px;
            max-width: 980px;
            font-family: var(--sans);
            font-size: clamp(.72rem, 1.18vw, .94rem);
            line-height: 1.45;
            font-weight: 600;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: rgba(33,49,40,.68);
        }
        .hero-title .hero-main {
            display: block;
            font-size: clamp(3.25rem, 8.1vw, 8.3rem);
            color: var(--hero-ink);
        }
        .hero-title .hero-line {
            display: block;
            word-break: normal !important;
            overflow-wrap: normal !important;
            hyphens: none !important;
        }
        .hero-title .hero-line-1 {
            white-space: nowrap;
        }
        .hero-title .hero-rule {
            display: block;
            width: 64px;
            height: 2px;
            margin: 28px auto 0;
            background: var(--green);
            opacity: .74;
        }
        .scroll-indicator {
            position: absolute;
            left: 50%;
            bottom: 52px;
            transform: translateX(-50%);
            z-index: 6;
            color: rgba(33,49,40,.56);
            font-family: var(--sans);
            font-size: .68rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .22em;
            white-space: nowrap;
            animation: heroPulse 2.6s var(--ease-editorial) infinite;
            transition: opacity .45s ease;
        }
        .scroll-indicator::before {
            content: '';
            position: absolute;
            left: 50%;
            top: -28px;
            width: 1px;
            height: 18px;
            background: rgba(49,91,67,.38);
        }
        @keyframes heroPulse {
            0%,100% { opacity:.46; transform:translate(-50%,0); }
            50% { opacity:.9; transform:translate(-50%,5px); }
        }

        /* ======================= EDITORIAL BODY ======================= */
        .article-body {
            position: relative;
            z-index: 2;
            background: var(--paper);
            padding: clamp(72px, 9vw, 126px) 24px 72px;
        }
        .article-dek {
            max-width: 820px;
            margin: 0 auto clamp(64px, 8vw, 105px);
            font-family: var(--serif);
            font-size: clamp(1.45rem, 2.25vw, 2rem);
            line-height: 1.42;
            letter-spacing: -.015em;
            color: #30362F;
            font-weight: 500;
            text-align: center;
        }
        .prose { max-width: 700px; margin: 0 auto; }
        .prose p {
            margin-bottom: 27px;
            font-family: var(--sans);
            font-size: clamp(1.04rem, 1.25vw, 1.16rem);
            line-height: 1.82;
            letter-spacing: -.006em;
            color: #262B25;
        }
        .prose h2 {
            position: relative;
            margin: clamp(84px, 10vw, 126px) 0 34px;
            padding-top: 19px;
            font-family: var(--serif);
            font-size: clamp(2.15rem, 4.1vw, 3.35rem);
            line-height: 1.08;
            letter-spacing: -.018em;
            font-weight: 600;
            color: var(--ink);
            word-break: normal !important;
            overflow-wrap: normal !important;
            hyphens: none !important;
            font-variant-ligatures: none;
            font-feature-settings: "liga" 0, "clig" 0;
        }
        .prose h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 44px;
            height: 2px;
            background: var(--green);
        }
        .dropcap::first-letter {
            float: left;
            margin: .08em .12em 0 0;
            font-family: var(--serif);
            font-size: 5.2rem;
            line-height: .68;
            font-weight: 600;
            color: var(--green);
        }

        /* ======================= PHOTOGRAPHY ======================= */
        .art-frame {
            width: min(900px, calc(100vw - 48px));
            max-width: 900px;
            margin: clamp(66px, 8vw, 102px) auto;
            padding: 0;
            background: transparent;
            box-shadow: none;
        }
        .art-frame.wide { max-width: 1120px; width: min(1120px, calc(100vw - 48px)); }
        .art-frame img {
            display: block;
            width: 100%;
            height: auto;
            border: 0;
            border-radius: 2px;
            background: #EAE8E0;
        }
        .duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--paper); }
        .duo-grid img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
        .figcaption {
            max-width: 700px;
            margin: 12px 0 0 auto;
            padding: 0;
            border: 0;
            font-family: var(--sans);
            font-size: .76rem;
            line-height: 1.5;
            color: #747A71;
            text-align: right;
        }

        /* ======================= FAMILY TREE ======================= */

        .interactive-break {
            width: calc(100% + 48px);
            margin: clamp(100px, 12vw, 155px) -24px;
            padding: clamp(74px, 8vw, 104px) 0 clamp(78px, 9vw, 112px);
            background:
                radial-gradient(circle at 50% 0%, rgba(210,221,203,.38), transparent 34%),
                linear-gradient(180deg, #F4F6EF 0%, #F8F7F2 100%);
            border-top: 1px solid rgba(49,91,67,.11);
            border-bottom: 1px solid rgba(49,91,67,.11);
            overflow: hidden;
        }
        .story-header {
            max-width: 1100px;
            margin: 0 auto 48px;
            padding: 0 32px;
            text-align: center;
        }
        .story-category {
            display: block;
            margin-bottom: 15px;
            font-family: var(--sans);
            font-size: .64rem;
            line-height: 1;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .2em;
            color: var(--green);
        }
        .story-header h3 {
            max-width: 900px;
            margin: 0 auto 17px;
            font-family: var(--serif);
            font-size: clamp(2.2rem, 4.2vw, 3.85rem);
            line-height: 1.04;
            letter-spacing: -.03em;
            font-weight: 600;
            color: var(--ink);
        }
        .story-instruction {
            display: inline-block;
            font-family: var(--sans);
            font-size: .67rem;
            line-height: 1.4;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: .105em;
            color: #767D73;
        }

        .tree-wrapper {
            position: relative;
            width: 100%;
            overflow-x: hidden;
            overflow-y: visible;
            padding: 18px 32px 50px;
            scrollbar-width: none;
            overscroll-behavior-inline: contain;
        }
        .tree-wrapper::-webkit-scrollbar { display:none; }
        .tree-container {
            position: relative;
            width: 100%;
            max-width: 1240px;
            min-width: 0;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        #story-svg-canvas {
            position:absolute;
            inset:0;
            width:100%;
            height:100%;
            pointer-events:none;
            z-index:1;
            overflow:visible;
        }
        .connection-path {
            fill:none;
            stroke: rgba(63,105,78,.48);
            stroke-width: 1.3px;
            vector-effect: non-scaling-stroke;
            shape-rendering: geometricPrecision;
            opacity:0;
            animation: lineReveal .36s ease forwards;
        }
        .connection-node {
            fill:#F8F7F2;
            stroke:rgba(63,105,78,.54);
            stroke-width:1.2px;
        }
        @keyframes lineReveal { to { opacity:1; } }

        .node-wrapper {
            position:relative;
            min-width:0;
            display:flex;
            flex-direction:column;
            align-items:center;
        }
        .node-row {
            position:relative;
            z-index:2;
            width:100%;
            display:flex;
            justify-content:center;
            align-items:stretch;
            margin:0;
        }

        /* Founder pair: editorial profile strips instead of portrait-like cards */
        .root-wrapper { width:100%; }
        .root-couple-container {
            position:relative;
            z-index:3;
            width:min(760px, calc(100vw - 80px));
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:54px;
            align-items:stretch;
            margin:0 auto 64px;
        }
        .root-couple-container::before {
            content:'';
            position:absolute;
            left:50%;
            top:50%;
            width:54px;
            height:1px;
            transform:translate(-50%,-50%);
            background:rgba(63,105,78,.46);
        }
        .root-couple-container::after {
            content:'';
            position:absolute;
            left:50%;
            top:100%;
            width:1px;
            height:38px;
            background:rgba(63,105,78,.46);
        }

        .story-card {
            position:relative;
            width:100%;
            min-width:0;
            padding:18px 17px 17px;
            background:rgba(255,255,255,.72);
            border:1px solid rgba(31,38,31,.12);
            border-top:2px solid rgba(63,105,78,.5);
            border-radius:2px;
            box-shadow:none;
            text-align:left;
            opacity:0;
            transform:translateY(6px);
            animation:cardReveal .48s var(--ease-editorial) forwards;
            transition:
                transform .24s var(--ease-editorial),
                border-color .24s ease,
                background .24s ease;
            contain:layout style;
        }
        .story-card:hover {
            transform:translateY(-1px);
            border-color:rgba(63,105,78,.28);
            border-top-color:rgba(63,105,78,.72);
            background:rgba(255,255,255,.9);
        }
        .story-card:not(.is-root)::before { display:none; }
        @keyframes cardReveal { to { opacity:1; transform:translateY(0); } }

        .root-couple-container .story-card.is-root {
            min-height:118px;
            padding:14px 17px;
            display:grid;
            grid-template-columns:76px 1fr;
            column-gap:16px;
            align-items:center;
            border-top-color:var(--terracotta);
            background:rgba(255,255,255,.8);
        }
        .root-couple-container .story-card.is-root:nth-child(2) {
            border-top-color:var(--green);
        }
        .avatar-img {
            display:block;
            width:76px;
            height:88px;
            margin:0;
            border-radius:5px;
            object-fit:cover;
            object-position:center 18%;
            border:0;
            box-shadow:none;
            background:#EAE9E2;
        }
        .root-couple-container .story-card.is-root .avatar-img {
            width:76px;
            height:88px;
        }
        .card-info { min-width:0; }
        .card-name {
            margin-bottom:6px;
            font-family:var(--serif);
            font-size:1.02rem;
            line-height:1.12;
            letter-spacing:-.012em;
            font-weight:650;
            color:var(--ink);
        }
        .story-card.is-root .card-name {
            font-size:1.18rem;
            line-height:1.08;
        }
        .card-spouse {
            margin-bottom:8px;
            font-family:var(--sans);
            font-size:.67rem;
            line-height:1.35;
            font-style:normal;
            color:var(--terracotta);
        }
        .card-spouse-role {
            margin:-3px 0 7px;
            font-family:var(--sans);
            font-size:.64rem;
            line-height:1.35;
            color:var(--muted);
        }
        .card-role {
            font-family:var(--sans);
            font-size:.67rem;
            line-height:1.43;
            color:var(--muted);
        }
        .role-bullets {
            display:block;
            text-align:left;
            line-height:1.5;
        }

        .expand-btn {
            position:absolute;
            left:50%;
            bottom:-37px;
            transform:translateX(-50%);
            width:25px;
            height:25px;
            display:flex;
            align-items:center;
            justify-content:center;
            border:1px solid rgba(63,105,78,.34);
            border-radius:50%;
            background:#F8F7F2;
            color:var(--green);
            font:300 15px/1 var(--sans);
            cursor:pointer;
            z-index:5;
            transition:
                transform .24s var(--ease-editorial),
                background .2s ease,
                color .2s ease,
                border-color .2s ease;
        }
        .expand-btn:hover {
            background:var(--green);
            color:#fff;
            border-color:var(--green);
        }
        .expand-btn.is-open {
            transform:translateX(-50%) rotate(45deg);
        }
        .root-couple-container > .expand-btn {
            bottom:-50px;
        }

        /* F2 = four fixed columns. No horizontal overflow on desktop. */
        .children-container {
            opacity:0;
            visibility:hidden;
            max-height:0;
            transform:translateY(-6px);
            overflow:hidden;
            pointer-events:none;
            transition:
                opacity .32s ease,
                transform .42s var(--ease-editorial),
                max-height .5s var(--ease-editorial),
                visibility 0s linear .48s;
        }
        .children-container.active {
            opacity:1 !important;
            visibility:visible;
            max-height:1800px;
            transform:translateY(0);
            overflow:visible;
            pointer-events:auto;
            transition-delay:0s;
        }

        .root-wrapper > .children-container {
            width:min(1180px, calc(100vw - 76px));
            display:grid;
            grid-template-columns:repeat(4, minmax(0, 1fr));
            gap:22px;
            align-items:start;
        }
        .root-wrapper > .children-container > .node-wrapper {
            width:100%;
            min-width:0;
        }
        .root-wrapper > .children-container > .node-wrapper > .node-row {
            width:100%;
        }
        .root-wrapper > .children-container > .node-wrapper > .node-row > .story-card {
            width:100%;
            min-height:172px;
        }

        /* F3 stays inside its parent's column instead of expanding the whole tree */
        .root-wrapper > .children-container > .node-wrapper > .children-container {
            width:100%;
            display:flex;
            flex-direction:column;
            gap:7px;
            margin-top:43px;
            padding:12px 0 0 14px;
            border-left:1px solid rgba(63,105,78,.26);
        }
        .root-wrapper > .children-container > .node-wrapper > .children-container > .node-wrapper {
            width:100%;
        }
        .root-wrapper > .children-container > .node-wrapper > .children-container .node-row {
            width:100%;
            justify-content:flex-start;
        }
        .root-wrapper > .children-container > .node-wrapper > .children-container .story-card {
            width:100%;
            min-height:0;
            margin:0;
            padding:10px 12px 9px;
            border:0;
            border-bottom:1px solid rgba(31,38,31,.12);
            border-radius:0;
            background:transparent;
        }
        .root-wrapper > .children-container > .node-wrapper > .children-container .story-card:hover {
            transform:none;
            background:rgba(255,255,255,.42);
        }
        .root-wrapper > .children-container > .node-wrapper > .children-container .card-name {
            margin:0 0 2px;
            font-family:var(--sans);
            font-size:.78rem;
            line-height:1.25;
            font-weight:650;
            letter-spacing:0;
        }
        .root-wrapper > .children-container > .node-wrapper > .children-container .card-role {
            font-size:.61rem;
            line-height:1.25;
        }

        @media (min-width: 769px) and (max-width: 1080px) {
            .root-wrapper > .children-container {
                grid-template-columns:repeat(2, minmax(0, 1fr));
                width:min(760px, calc(100vw - 56px));
                row-gap:58px;
            }
        }

        footer {
            max-width:700px !important;
            margin:100px auto 0 !important;
            padding-top:20px !important;
            border-top:1px solid var(--hairline) !important;
            font-family:var(--sans) !important;
            font-size:.75rem !important;
            color:#747A71 !important;
        }

        @media (max-width: 768px) {
            #hero-section { height: 360svh; min-height: 2200px; }
            .hero-sticky { min-height: 560px; }
            #hero-section { min-height: 590px; }
            #hero-section::after { left:20px; right:20px; bottom:24px; }
            .hero-content { width: calc(100vw - 36px); }
            .hero-title .hero-family { font-size:.62rem; letter-spacing:.105em; line-height:1.55; margin-bottom:17px; max-width: 88vw; }
            .hero-title .hero-main { font-size:clamp(3rem, 15vw, 4.7rem); line-height:.94; }
            .hero-title .hero-rule { margin-top:22px; width:44px; }
            .hero-frame-wrap { width:min(94vw, 74vh); }
            .scroll-indicator { bottom:40px; font-size:.61rem; letter-spacing:.16em; }

            .article-body { padding:62px 18px 54px; }
            .article-dek { text-align:left; font-size:1.3rem; line-height:1.46; margin-bottom:60px; }
            .prose { max-width:100%; }
            .prose p { font-size:1.04rem; line-height:1.78; margin-bottom:24px; }
            .prose h2 { margin-top:78px; font-size:2.25rem; }
            .dropcap::first-letter { font-size:4.45rem; }
            .art-frame, .art-frame.wide { width:calc(100vw - 36px); margin:58px auto; }
            .figcaption { font-size:.71rem; text-align:left; margin-top:10px; }
            .duo-grid { grid-template-columns:1fr; gap:2px; }
            .duo-grid img { min-height:0; }

            .interactive-break {
                width:calc(100% + 36px);
                margin:90px -18px;
                padding:68px 0 76px;
            }
            .story-header {
                padding:0 20px;
                margin-bottom:36px;
                text-align:left;
            }
            .story-header h3 {
                margin-left:0;
                font-size:2.35rem;
            }
            .story-instruction { font-size:.62rem; }

            .tree-wrapper {
                padding:8px 14px 24px;
                overflow-x:hidden;
            }
            .tree-container {
                width:100%;
                min-width:0;
                align-items:stretch;
            }
            #story-svg-canvas { display:none !important; }

            .root-couple-container {
                width:100%;
                grid-template-columns:1fr 1fr;
                gap:8px;
                margin:0 0 48px;
            }
            .root-couple-container::before { width:8px; }
            .root-couple-container::after { height:33px; }
            .root-couple-container .story-card.is-root {
                min-height:0;
                padding:10px;
                grid-template-columns:44px 1fr;
                column-gap:8px;
            }
            .root-couple-container .story-card.is-root .avatar-img {
                width:44px;
                height:58px;
                border-radius:4px;
            }
            .root-couple-container .story-card.is-root .card-name {
                font-size:.84rem;
                line-height:1.08;
            }
            .root-couple-container .story-card.is-root .card-role {
                font-size:.57rem;
                line-height:1.32;
            }
            .root-couple-container > .expand-btn {
                bottom:-43px;
            }

            .root-wrapper > .children-container {
                width:100%;
                display:grid;
                grid-template-columns:1fr;
                gap:13px;
            }
            .root-wrapper > .children-container > .node-wrapper > .node-row > .story-card {
                min-height:0;
                padding:14px 15px 13px;
            }
            .story-card {
                text-align:left;
            }
            .story-card:hover { transform:none; }
            .card-name { font-size:1rem; }
            .card-role,.card-spouse,.card-spouse-role { text-align:left; }

            .expand-btn {
                left:auto;
                right:12px;
                bottom:12px;
                transform:none;
                width:27px;
                height:27px;
            }
            .expand-btn.is-open { transform:rotate(45deg); }

            .root-wrapper > .children-container > .node-wrapper > .children-container {
                margin-top:8px;
                padding:3px 0 4px 12px;
                gap:2px;
            }
            .root-wrapper > .children-container > .node-wrapper > .children-container .story-card {
                padding:9px 10px 8px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .scroll-indicator, .story-card, .connection-path { animation:none !important; }
            * { scroll-behavior:auto !important; }
        }
    

/* CMS typography hardening + original editorial fonts. */
.hero-title,
.prose h2,
.story-header h3 {
    font-family: 'Newsreader', Georgia, 'Times New Roman', serif !important;
    font-optical-sizing: auto;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
    font-variant-ligatures: normal;
    font-feature-settings: normal;
}
.hero-title .hero-family,
.story-category,
.story-instruction,
.article-dek,
.figcaption,
.credit-block,
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, Helvetica, sans-serif;
}

@media (max-width: 768px) {
    .hero-title .hero-main { font-size: clamp(2.45rem, 12.2vw, 4.25rem); }
    .hero-title .hero-line-1 { white-space: nowrap; }
}
