        /* ================================================================
           FELDROY — The Atelier
           ================================================================
           Exhibition-style plates that stack via position:sticky.
           Hero uses mix-blend-mode text cutout over animated gradient.
           Typography contrasts geometric sans with italic serif.
           Color: warm off-white, deep teal, coral, near-black.
           Nothing like a developer homepage. Everything like a gallery.
           ================================================================ */

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

        :root {
            --canvas: #F4F0EB;
            --ink: #111111;
            --teal: #0D3B3E;
            --coral: #E8705A;
            --peach: #F5C4A1;
            --sage: #8FA89A;
            --cream: #FAF7F2;
            --slate: #3A3A3A;

            --sans: 'Space Grotesk', sans-serif;
            --serif: 'Instrument Serif', serif;
            --mono: 'JetBrains Mono', monospace;
        }

        html {
            scroll-behavior: smooth;
            scroll-snap-type: y proximity;
        }

        body {
            font-family: var(--sans);
            background: var(--ink);
            color: var(--ink);
            line-height: 1.55;
            font-size: 17px;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a { color: inherit; text-decoration: none; }
        img { display: block; max-width: 100%; }

        /* ================================================================
           NAV — Floating over everything
           ================================================================ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            mix-blend-mode: difference;
            color: white;
        }

        .nav-wordmark svg {
            width: 120px;
            height: auto;
            display: block;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.02em;
        }

        .nav-links a {
            transition: opacity 0.2s;
        }

        .nav-links a:hover {
            opacity: 0.6;
        }

        .nav-cta {
            border: 1px solid currentColor;
            padding: 6px 18px;
            border-radius: 100px;
            font-weight: 600;
        }

        /* ================================================================
           PLATE SYSTEM — Sticky stacking cards
           ================================================================ */
        .plate-container {
            position: relative;
        }

        .plate {
            position: sticky;
            top: 0;
            min-height: 100vh;
            overflow: hidden;
        }

        .plate-inner {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 120px 60px 80px;
        }

        /* ================================================================
           PLATE 1 — HERO
           Text cutout over animated gradient field
           ================================================================ */
        .plate-hero {
            background: var(--teal);
            z-index: 10;
        }

        .hero-gradient {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 80% 60% at 20% 30%, var(--coral) 0%, transparent 60%),
                radial-gradient(ellipse 70% 50% at 80% 70%, var(--peach) 0%, transparent 50%),
                radial-gradient(ellipse 60% 80% at 50% 50%, var(--sage) 0%, transparent 60%),
                var(--teal);
            animation: gradientDrift 12s ease-in-out infinite alternate;
        }

        @keyframes gradientDrift {
            0% {
                background: 
                    radial-gradient(ellipse 80% 60% at 20% 30%, var(--coral) 0%, transparent 60%),
                    radial-gradient(ellipse 70% 50% at 80% 70%, var(--peach) 0%, transparent 50%),
                    radial-gradient(ellipse 60% 80% at 50% 50%, var(--sage) 0%, transparent 60%),
                    var(--teal);
            }
            33% {
                background: 
                    radial-gradient(ellipse 90% 50% at 70% 20%, var(--coral) 0%, transparent 55%),
                    radial-gradient(ellipse 60% 70% at 30% 80%, var(--peach) 0%, transparent 55%),
                    radial-gradient(ellipse 80% 60% at 60% 40%, var(--sage) 0%, transparent 50%),
                    var(--teal);
            }
            66% {
                background: 
                    radial-gradient(ellipse 70% 70% at 50% 60%, var(--coral) 0%, transparent 50%),
                    radial-gradient(ellipse 80% 40% at 20% 20%, var(--peach) 0%, transparent 60%),
                    radial-gradient(ellipse 50% 90% at 80% 50%, var(--sage) 0%, transparent 55%),
                    var(--teal);
            }
            100% {
                background: 
                    radial-gradient(ellipse 60% 80% at 40% 70%, var(--coral) 0%, transparent 55%),
                    radial-gradient(ellipse 90% 50% at 60% 30%, var(--peach) 0%, transparent 50%),
                    radial-gradient(ellipse 70% 60% at 30% 40%, var(--sage) 0%, transparent 60%),
                    var(--teal);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 0 40px;
            text-align: center;
        }

        .hero-wordmark {
            margin-bottom: 40px;
        }

        .hero-wordmark svg {
            width: min(700px, 80vw);
            height: auto;
            color: var(--canvas);
            filter: drop-shadow(0 2px 60px rgba(0,0,0,0.15));
        }

        .hero-statement {
            font-family: var(--serif);
            font-style: italic;
            font-size: clamp(24px, 4vw, 48px);
            line-height: 1.2;
            color: var(--canvas);
            max-width: 700px;
            margin-bottom: 48px;
            font-weight: 400;
        }

        .hero-statement strong {
            font-family: var(--sans);
            font-style: normal;
            font-weight: 700;
            color: var(--peach);
        }

        .hero-meta {
            color: rgba(244, 240, 235, 0.7);
            font-size: 15px;
            letter-spacing: 0.01em;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--canvas);
            color: var(--teal);
            padding: 16px 40px;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 0.02em;
            border-radius: 0;
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            overflow: hidden;
        }

        .hero-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--coral);
            transform: translateX(-101%);
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .hero-cta:hover::before {
            transform: translateX(0);
        }

        .hero-cta span, .hero-cta svg {
            position: relative;
            z-index: 1;
        }

        .hero-cta:hover {
            color: var(--canvas);
        }

        .hero-cta svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s;
        }

        .hero-cta:hover svg {
            transform: translateX(4px);
        }

        .hero-scroll-hint {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(244, 240, 235, 0.4);
            font-size: 12px;
            font-family: var(--mono);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            animation: scrollPulse 2s ease-in-out infinite;
        }

        @keyframes scrollPulse {
            0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
            50% { opacity: 0.8; transform: translateX(-50%) translateY(6px); }
        }

        /* ================================================================
           PLATE 2 — AIR FRAMEWORK
           Split screen: left coral, right code
           ================================================================ */
        .plate-air {
            background: var(--canvas);
            z-index: 20;
            box-shadow: 0 -40px 80px rgba(0,0,0,0.2);
        }

        .plate-air .plate-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            padding: 0;
            min-height: 100vh;
        }

        .air-left {
            background: var(--coral);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 60px;
            position: relative;
            overflow: hidden;
        }

        .air-left::before {
            content: 'Air';
            position: absolute;
            font-family: var(--serif);
            font-style: italic;
            font-size: 40vw;
            line-height: 0.8;
            color: rgba(255,255,255,0.08);
            bottom: -10%;
            right: -10%;
            pointer-events: none;
        }

        .air-label {
            font-family: var(--mono);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--teal);
            margin-bottom: 24px;
            font-weight: 500;
        }

        .air-title {
            font-size: clamp(36px, 5vw, 72px);
            font-weight: 700;
            line-height: 1.05;
            color: var(--canvas);
            margin-bottom: 24px;
        }

        .air-title em {
            font-family: var(--serif);
            font-style: italic;
            font-weight: 400;
        }

        .air-desc {
            font-size: 18px;
            line-height: 1.65;
            color: rgba(244, 240, 235, 0.85);
            max-width: 480px;
            margin-bottom: 32px;
        }

        .air-links {
            display: flex;
            gap: 24px;
        }

        .air-links a {
            font-weight: 600;
            font-size: 15px;
            color: var(--canvas);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border-bottom: 2px solid rgba(244, 240, 235, 0.4);
            padding-bottom: 4px;
            transition: border-color 0.2s;
        }

        .air-links a:hover {
            border-color: var(--canvas);
        }

        .air-links a svg {
            width: 14px;
            height: 14px;
        }

        .air-right {
            background: var(--ink);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 48px;
            position: relative;
        }

        .air-right::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            width: 3px;
            height: 60%;
            background: var(--coral);
        }

        .code-block {
            width: 100%;
            max-width: 520px;
        }

        .code-header {
            font-family: var(--mono);
            font-size: 11px;
            color: rgba(244, 240, 235, 0.35);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .code-block pre {
            font-family: var(--mono);
            font-size: 14px;
            line-height: 1.8;
            color: var(--canvas);
            overflow-x: auto;
            white-space: pre;
        }

        .code-block .kw { color: var(--coral); }
        .code-block .fn { color: var(--peach); }
        .code-block .st { color: var(--sage); }
        .code-block .cm { color: rgba(244, 240, 235, 0.3); }
        .code-block .dc { color: #8B9FCA; }
        .code-block .op { color: rgba(244, 240, 235, 0.5); }

        /* ================================================================
           PLATE 3 — OPEN SOURCE
           Full-width with giant numbers
           ================================================================ */
        .plate-oss {
            background: var(--teal);
            color: var(--canvas);
            z-index: 30;
            box-shadow: 0 -40px 80px rgba(0,0,0,0.3);
        }

        .plate-oss .plate-inner {
            padding: 120px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .oss-label {
            font-family: var(--mono);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--sage);
            margin-bottom: 48px;
        }

        .oss-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }

        .oss-project {
            position: relative;
        }

        .oss-number {
            font-size: clamp(80px, 12vw, 180px);
            font-weight: 700;
            line-height: 0.85;
            color: var(--coral);
            margin-bottom: 16px;
            letter-spacing: -0.04em;
        }

        .oss-unit {
            font-family: var(--serif);
            font-style: italic;
            font-size: 0.35em;
            color: var(--peach);
            vertical-align: super;
            margin-left: 4px;
        }

        .oss-name {
            font-size: clamp(28px, 3vw, 44px);
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.1;
        }

        .oss-desc {
            font-size: 16px;
            line-height: 1.65;
            color: rgba(244, 240, 235, 0.7);
            max-width: 440px;
            margin-bottom: 20px;
        }

        .oss-link {
            font-family: var(--mono);
            font-size: 13px;
            color: var(--coral);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.2s;
        }

        .oss-link:hover {
            gap: 14px;
        }

        .oss-link svg {
            width: 14px;
            height: 14px;
        }

        /* ================================================================
           PLATE 4 — BOOKNAUT
           Dramatic typography with shape-outside text wrap
           ================================================================ */
        .plate-booknaut {
            background: var(--ink);
            color: var(--canvas);
            z-index: 40;
            box-shadow: 0 -40px 80px rgba(0,0,0,0.4);
        }

        .plate-booknaut .plate-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 60px;
            position: relative;
        }

        .booknaut-bg-text {
            position: absolute;
            font-family: var(--sans);
            font-size: clamp(120px, 20vw, 300px);
            font-weight: 700;
            color: rgba(255, 255, 255, 0.025);
            letter-spacing: -0.04em;
            white-space: nowrap;
            pointer-events: none;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .booknaut-label {
            font-family: var(--mono);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--coral);
            margin-bottom: 32px;
        }

        .booknaut-title {
            font-family: var(--serif);
            font-style: italic;
            font-size: clamp(48px, 8vw, 120px);
            line-height: 0.95;
            font-weight: 400;
            margin-bottom: 32px;
            max-width: 900px;
        }

        .booknaut-title strong {
            font-family: var(--sans);
            font-style: normal;
            font-weight: 700;
            color: var(--coral);
        }

        .booknaut-desc {
            font-size: 20px;
            line-height: 1.65;
            color: rgba(244, 240, 235, 0.6);
            max-width: 560px;
            margin-bottom: 12px;
        }

        .booknaut-coming {
            font-family: var(--mono);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--sage);
        }

        /* ================================================================
           PLATE 5 — BOOKS + PRODUCTS
           Magazine grid with mixed-scale typography
           ================================================================ */
        .plate-books {
            background: var(--canvas);
            z-index: 50;
            box-shadow: 0 -40px 80px rgba(0,0,0,0.2);
        }

        .plate-books .plate-inner {
            padding: 120px 60px;
        }

        .books-header {
            display: flex;
            align-items: baseline;
            gap: 24px;
            margin-bottom: 64px;
        }

        .books-title {
            font-size: clamp(48px, 6vw, 96px);
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.03em;
        }

        .books-title-accent {
            font-family: var(--serif);
            font-style: italic;
            font-weight: 400;
            color: var(--coral);
        }

        .books-subtitle {
            font-size: 16px;
            color: var(--slate);
            max-width: 300px;
            line-height: 1.5;
        }

        .books-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 64px;
        }

        .book-card {
            display: flex;
            flex-direction: column;
            transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .book-card:hover {
            transform: translateY(-8px);
        }

        .book-cover {
            aspect-ratio: 3/4;
            overflow: hidden;
            margin-bottom: 20px;
            position: relative;
            background: var(--cream);
        }

        .book-cover img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 20px;
        }

        .book-cover-solid {
            background: var(--teal);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .book-cover-solid img {
            padding: 24px;
        }

        .book-tag {
            font-family: var(--mono);
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--slate);
            margin-bottom: 8px;
        }

        .book-name {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 8px;
        }

        .book-price {
            font-family: var(--mono);
            font-size: 14px;
            color: var(--coral);
            font-weight: 500;
        }

        .books-secondary {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            padding-top: 48px;
            border-top: 1px solid rgba(17, 17, 17, 0.1);
        }

        .secondary-item {
            display: flex;
            gap: 24px;
            align-items: flex-start;
        }

        .secondary-icon {
            width: 64px;
            height: 64px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
            background: var(--cream);
        }

        .secondary-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .secondary-content {
            flex: 1;
        }

        .secondary-tag {
            font-family: var(--mono);
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--slate);
            margin-bottom: 6px;
        }

        .secondary-name {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .secondary-desc {
            font-size: 14px;
            color: var(--slate);
            line-height: 1.5;
        }

        /* ================================================================
           PLATE 6 — ABOUT
           Portraits side by side with bio text, warm tone
           ================================================================ */
        .plate-about {
            background: var(--peach);
            z-index: 60;
            box-shadow: 0 -40px 80px rgba(0,0,0,0.15);
        }

        .plate-about .plate-inner {
            padding: 120px 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text {
            max-width: 520px;
        }

        .about-label {
            font-family: var(--mono);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--teal);
            margin-bottom: 24px;
        }

        .about-title {
            font-size: clamp(36px, 4vw, 60px);
            font-weight: 700;
            line-height: 1.05;
            color: var(--ink);
            margin-bottom: 24px;
        }

        .about-title em {
            font-family: var(--serif);
            font-style: italic;
            font-weight: 400;
        }

        .about-desc {
            font-size: 18px;
            line-height: 1.7;
            color: var(--ink);
            opacity: 0.8;
            margin-bottom: 24px;
        }

        .about-highlight {
            display: inline-block;
            background: var(--teal);
            color: var(--canvas);
            padding: 10px 20px;
            font-weight: 700;
            font-size: 15px;
            margin-bottom: 20px;
        }

        .about-links {
            display: flex;
            gap: 20px;
        }

        .about-links a {
            font-weight: 600;
            font-size: 14px;
            color: var(--teal);
            border-bottom: 2px solid var(--teal);
            padding-bottom: 2px;
            transition: opacity 0.2s;
        }

        .about-links a:hover {
            opacity: 0.6;
        }

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

        .portrait {
            position: relative;
        }

        .portrait img {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            filter: grayscale(20%) contrast(1.05);
        }

        .portrait-name {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 16px;
            background: linear-gradient(transparent, rgba(17, 17, 17, 0.7));
            color: var(--canvas);
            font-weight: 600;
            font-size: 14px;
        }

        /* ================================================================
           FOOTER
           ================================================================ */
        .footer {
            background: var(--ink);
            color: var(--canvas);
            position: relative;
            z-index: 70;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 60px 40px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand svg {
            width: 140px;
            height: auto;
            color: var(--canvas);
            margin-bottom: 20px;
        }

        .footer-tagline {
            font-size: 14px;
            color: rgba(244, 240, 235, 0.5);
            line-height: 1.6;
            max-width: 280px;
        }

        .footer-col-title {
            font-family: var(--mono);
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: rgba(244, 240, 235, 0.35);
            margin-bottom: 16px;
        }

        .footer-col a {
            display: block;
            font-size: 14px;
            color: rgba(244, 240, 235, 0.7);
            padding: 4px 0;
            transition: color 0.2s;
        }

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

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: rgba(244, 240, 235, 0.3);
        }

        .footer-sponsor {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-sponsor a {
            color: rgba(244, 240, 235, 0.5);
            transition: color 0.2s;
        }

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

        /* ================================================================
           CSS-ONLY GENERATIVE ELEMENT
           Rotating circles in the hero
           ================================================================ */
        .generative-ring {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(244, 240, 235, 0.06);
            animation: ringRotate linear infinite;
            pointer-events: none;
        }

        .ring-1 {
            width: 600px;
            height: 600px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-duration: 30s;
        }

        .ring-2 {
            width: 800px;
            height: 800px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-duration: 45s;
            animation-direction: reverse;
        }

        .ring-3 {
            width: 400px;
            height: 400px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-duration: 20s;
        }

        .ring-dot {
            position: absolute;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--coral);
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .ring-dot-2 {
            background: var(--peach);
            top: auto;
            bottom: 0;
        }

        .ring-dot-3 {
            background: var(--sage);
            top: 50%;
            left: 0;
        }

        @keyframes ringRotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* ================================================================
           SCROLL-DRIVEN REVEAL ANIMATIONS
           ================================================================ */
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .reveal {
            animation: slideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
            animation-timeline: view();
            animation-range: entry 0% entry 40%;
        }

        .reveal-delay { animation-delay: 0.1s; }

        /* ================================================================
           RESPONSIVE
           ================================================================ */
        @media (max-width: 1024px) {
            .plate-air .plate-inner {
                grid-template-columns: 1fr;
            }
            .air-right { min-height: 50vh; }
            .oss-grid { gap: 48px; }
            .plate-about .plate-inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .nav { padding: 16px 24px; }
            .nav-links { gap: 16px; font-size: 12px; }
            .plate-inner { padding: 80px 24px 60px; }
            .air-left { padding: 60px 24px; }
            .air-right { padding: 60px 24px; }
            .oss-grid { grid-template-columns: 1fr; gap: 64px; }
            .books-grid { grid-template-columns: 1fr; }
            .books-secondary { grid-template-columns: 1fr; }
            .books-header { flex-direction: column; gap: 12px; }
            .about-portraits { gap: 16px; }
            .footer-top { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
            .plate-books .plate-inner { padding: 80px 24px; }
            .plate-oss .plate-inner { padding: 80px 24px; }
            .plate-booknaut .plate-inner { padding: 80px 24px; }
            .plate-about .plate-inner { padding: 80px 24px; }
            .footer-inner { padding: 60px 24px 32px; }
        }

        @media (max-width: 480px) {
            .nav-links a:not(.nav-cta) { display: none; }
            .hero-wordmark svg { width: 85vw; }
        }
