        @font-face {
            font-family: "IBM Plex Sans";
            font-style: normal;
            font-weight: 300;
            font-display: swap;
            src: url("assets/vendor/fonts/ibm-plex-sans-300.ttf") format("truetype");
        }

        @font-face {
            font-family: "IBM Plex Sans";
            font-style: normal;
            font-weight: 400;
            font-display: swap;
            src: url("assets/vendor/fonts/ibm-plex-sans-400.ttf") format("truetype");
        }

        @font-face {
            font-family: "IBM Plex Sans";
            font-style: normal;
            font-weight: 500;
            font-display: swap;
            src: url("assets/vendor/fonts/ibm-plex-sans-500.ttf") format("truetype");
        }

        @font-face {
            font-family: "IBM Plex Sans";
            font-style: normal;
            font-weight: 600;
            font-display: swap;
            src: url("assets/vendor/fonts/ibm-plex-sans-600.ttf") format("truetype");
        }

        @font-face {
            font-family: "Playfair Display";
            font-style: normal;
            font-weight: 400;
            font-display: swap;
            src: url("assets/vendor/fonts/playfair-display-400.ttf") format("truetype");
        }

        @font-face {
            font-family: "Playfair Display";
            font-style: italic;
            font-weight: 400;
            font-display: swap;
            src: url("assets/vendor/fonts/playfair-display-400-italic.ttf") format("truetype");
        }

        @font-face {
            font-family: "Playfair Display";
            font-style: normal;
            font-weight: 600;
            font-display: swap;
            src: url("assets/vendor/fonts/playfair-display-600.ttf") format("truetype");
        }

        @font-face {
            font-family: "Material Symbols Outlined";
            font-style: normal;
            font-weight: 300;
            font-display: swap;
            src: url("assets/vendor/material-symbols/material-symbols-outlined-300.ttf") format("truetype");
        }

        :root {
            --rose-accent: #f1dadc;
            --rose-checkbox: #e3b7bb;
            --light-bg: #f8f8f8;
            --light-ink: #121716;
            --light-ink-soft: rgba(18, 23, 22, 0.78);
            --light-ink-muted: rgba(18, 23, 22, 0.56);
            --light-line: rgba(18, 23, 22, 0.12);
            --light-card: rgba(255, 255, 255, 0.28);
            --forest-dark: #2f2f2f;
            --forest-deep: #262626;
            --forest-ink: #1f1f1f;
            --forest-line: rgba(238, 183, 188, 0.24);
            --forest-soft-line: rgba(238, 183, 188, 0.14);
            --forest-text-strong: #f1dadc;
            --forest-text: rgba(241, 218, 220, 0.84);
            --forest-text-muted: rgba(241, 218, 220, 0.68);
        }

        html,
        body {
            overflow-x: clip;
            overscroll-behavior-x: none;
        }

        body.page-home {
            background: var(--rose-accent);
        }

        body,
        .font-sans,
        button,
        input,
        textarea,
        select {
            font-size-adjust: 0.54;
        }

        ::selection {
            background: #d2b7b9;
        }

        ::-moz-selection {
            background: #d2b7b9;
        }

        .material-symbols-outlined {
            font-family: "Material Symbols Outlined";
            font-weight: 300;
            font-style: normal;
            font-size: 28px;
            line-height: 1;
            letter-spacing: normal;
            text-transform: none;
            display: inline-block;
            white-space: nowrap;
            word-wrap: normal;
            direction: ltr;
            -webkit-font-smoothing: antialiased;
            font-feature-settings: "liga";
        }
        
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #fcfaf8;
        }
        ::-webkit-scrollbar-thumb {
            background: #e5d5b5;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #d69c52;
        }

        
        .glossary-term {
            position: relative;
            text-decoration: underline;
            text-decoration-style: dotted;
            text-decoration-color: #d69c52;
            text-underline-offset: 4px;
            cursor: help;
            font-weight: 500;
            transition: color 0.2s;
            -webkit-tap-highlight-color: transparent;
        }
        .glossary-term:hover {
            color: #d69c52;
        }
        .glossary-term::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-8px);
            background-color: #2c241b;
            color: #fcfaf8;
            padding: 0.75rem 1rem;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            font-family: "IBM Plex Sans", sans-serif;
            font-weight: 400;
            line-height: 1.4;
            white-space: normal;
            width: max-content;
            max-width: 240px;
            text-align: center;
            opacity: 0;
            pointer-events: none;
            transition: all 0.2s ease;
            z-index: 50;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        .glossary-term::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(0px);
            border-width: 6px;
            border-style: solid;
            border-color: #2c241b transparent transparent transparent;
            opacity: 0;
            pointer-events: none;
            transition: all 0.2s ease;
            z-index: 50;
        }
        .glossary-term:hover::after,
        .glossary-term:hover::before,
        .glossary-term.is-tooltip-open::after,
        .glossary-term.is-tooltip-open::before,
        .glossary-term:focus-visible::after,
        .glossary-term:focus-visible::before {
            opacity: 1;
            transform: translateX(-50%) translateY(-4px);
        }
        .glossary-term:hover::before,
        .glossary-term.is-tooltip-open::before,
        .glossary-term:focus-visible::before {
            transform: translateX(-50%) translateY(4px);
        }

        #extraction.forest-section .glossary-term {
            text-decoration-color: var(--rose-accent);
        }

        #extraction.forest-section .glossary-term:hover {
            color: var(--forest-text-strong);
        }

        #extraction.forest-section .glossary-term::after {
            background-color: var(--light-bg);
            color: var(--light-ink);
            box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
        }

        #extraction.forest-section .glossary-term::before {
            border-color: var(--light-bg) transparent transparent transparent;
        }

        
        .reveal-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal-up.active {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-up.has-sequence {
            opacity: 1;
            transform: none;
            transition: none;
        }
        .reveal-sequence-item {
            opacity: 0;
            transform: translateY(28px);
            filter: blur(6px);
            transition:
                opacity 820ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 820ms cubic-bezier(0.16, 1, 0.3, 1),
                filter 820ms cubic-bezier(0.16, 1, 0.3, 1);
            transition-delay: var(--reveal-delay, 0ms);
            will-change: opacity, transform, filter;
        }
        .reveal-up.active .reveal-sequence-item {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }

        @media (prefers-reduced-motion: reduce) {
            .reveal-sequence-item {
                opacity: 1;
                transform: none;
                filter: none;
                transition: none;
                transition-delay: 0ms;
            }
        }

        
        input[type=range] {
            -webkit-appearance: none;
            width: 100%;
            background: var(--light-bg);
        }
        input[type=range]::-webkit-slider-thumb {
            -webkit-appearance: none;
            height: 24px;
            width: 24px;
            border-radius: 50%;
            background: #d69c52;
            cursor: pointer;
            margin-top: -10px;
            box-shadow: 0 0 0 4px #2c241b, 0 0 0 6px #d69c52;
            transition: transform 0.1s;
        }
        input[type=range]::-webkit-slider-thumb:active {
            transform: scale(1.1);
        }
        input[type=range]::-webkit-slider-runnable-track {
            width: 100%;
            height: 4px;
            cursor: pointer;
            background: #4a382e;
            border-radius: 2px;
        }

        
        @keyframes floatUp {
            0% { transform: translateY(120%) scale(0.9); opacity: 0; }
            18% { opacity: 1; }
            100% { transform: translateY(-185%) scale(1); opacity: 0; }
        }
        @keyframes spinSlow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        @keyframes subtlePulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.015); }
            100% { transform: scale(1); }
        }
        .milk-illustration {
            --milk-base: #d9d3cb;
            --milk-dot: #2f2f2f;
            --milk-dot-soft: rgba(47, 47, 47, 0.35);
            --milk-dot-light: #f4efe8;
            background-color: transparent !important;
            border: 1px solid var(--light-line);
            box-shadow: none !important;
        }

        .milk-illustration::before {
            display: none;
        }

        .milk-illustration::after {
            display: none;
        }

        .milk-illustration--stretch {
            background-color: transparent !important;
        }

        .milk-illustration--stretch .milk-pixel-surface {
            display: none;
        }

        .milk-pixel-surface {
            position: absolute;
            left: 24px;
            right: 24px;
            bottom: 28px;
            height: 20px;
            background-image: radial-gradient(circle, var(--milk-dot) 0 1px, transparent 1.5px);
            background-size: 6px 6px;
            background-position: center bottom;
            opacity: 1;
        }

        .milk-pixel-surface::before {
            content: "";
            position: absolute;
            left: 10px;
            right: 10px;
            top: -10px;
            height: 10px;
            background-image: radial-gradient(circle, var(--milk-dot-soft) 0 1px, transparent 1.4px);
            background-size: 7px 7px;
            background-position: center;
        }

        .milk-pixel-bubble {
            position: absolute;
            width: 16px;
            height: 16px;
            border-radius: 999px;
            background-image: radial-gradient(circle, var(--milk-dot) 0 0.9px, transparent 1.3px);
            background-size: 4px 4px;
            animation: floatUp 2.45s infinite steps(5, end);
            opacity: 0;
        }

        .milk-pixel-bubble--1 {
            left: 28px;
            bottom: 14px;
            animation-delay: 0s;
        }

        .milk-pixel-bubble--2 {
            left: 50px;
            bottom: 8px;
            animation-delay: 0.45s;
        }

        .milk-pixel-bubble--3 {
            right: 34px;
            bottom: 16px;
            animation-delay: 0.9s;
        }

        .milk-pixel-bubble--4 {
            right: 20px;
            bottom: 6px;
            animation-delay: 1.35s;
        }

        .milk-illustration--texture {
            background-color: transparent !important;
        }

        .milk-pixel-vortex {
            position: absolute;
            inset: 22px;
            border-radius: 999px;
            background-image: radial-gradient(circle, var(--milk-dot) 0 1px, transparent 1.5px);
            background-size: 6px 6px;
            -webkit-mask: radial-gradient(circle at center, transparent 0 22%, #000 23% 70%, transparent 71%);
            mask: radial-gradient(circle at center, transparent 0 22%, #000 23% 70%, transparent 71%);
            animation: spinSlow 7s infinite steps(18, end);
        }

        .milk-pixel-vortex::before {
            display: none;
        }

        .milk-illustration--finish {
            background-color: transparent !important;
        }

        .milk-pixel-finish {
            position: absolute;
            inset: 16px;
            border-radius: 999px;
            background: none;
            opacity: 1;
            animation: subtlePulse 3s infinite steps(3, end);
        }

        .milk-heart-canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            display: block;
            image-rendering: pixelated;
        }

        .milk-pixel-finish.is-canvas-ready::before {
            display: none;
        }

        .milk-pixel-finish::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 999px;
            background-image: radial-gradient(circle, var(--milk-dot) 0 1px, transparent 1.45px);
            background-size: 6px 6px;
            background-position: center center;
            background-repeat: repeat;
            opacity: 0.82;
        }

        .milk-pixel-finish::after {
            display: none;
        }

        .hero-shell {
            min-height: 100svh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            background: #f1dadc;
        }
        .site-chrome {
            position: fixed;
            top: clamp(1rem, 2vw, 1.75rem);
            left: clamp(1rem, 2vw, 1.75rem);
            right: clamp(1rem, 2vw, 1.75rem);
            z-index: 60;
            display: flex;
            align-items: center;
            justify-content: space-between;
            pointer-events: none;
            mix-blend-mode: difference;
            color: #ffffff;
        }
        .site-logo {
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            white-space: nowrap;
        }
        .site-locale {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            font-size: 0.76rem;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            white-space: nowrap;
            pointer-events: auto;
        }
        .site-locale-current,
        .site-locale-option,
        .site-locale-divider {
            opacity: 0.96;
        }
        .site-locale-option {
            opacity: 0.58;
            pointer-events: auto;
        }
        .hero-stage {
            width: 100%;
            min-height: 100svh;
        }
        .hero-panel {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 100svh;
            overflow: hidden;
            border-radius: 0;
            background: #f1dadc;
            box-shadow: none;
        }
        .hero-intro-overlay,
        .organic-reveal-overlay {
            position: absolute;
            inset: 0;
            z-index: 4;
            pointer-events: none;
            overflow: hidden;
            opacity: 1;
            transition: opacity 700ms ease;
        }
        .hero-intro-overlay,
        .organic-reveal-overlay {
            background: transparent;
        }
        .hero-intro-overlay.is-complete,
        .organic-reveal-overlay.is-complete {
            opacity: 0;
        }
        .hero-intro-overlay.is-hidden,
        .organic-reveal-overlay.is-hidden {
            display: none;
        }
        .hero-intro-canvas,
        .organic-reveal-canvas {
            display: block;
            width: 100%;
            height: 100%;
        }
        .hero-intro-canvas {
            background: var(--rose-accent);
        }
        .hero-panel.reveal-up,
        .hero-panel.reveal-up.active {
            opacity: 1;
            transform: none;
            transition: none;
        }
        .hero-panel::after {
            display: none;
        }
        .hero-copy {
            position: relative;
            z-index: 1;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: min(100%, 760px);
            margin: 0 auto;
            padding: clamp(3rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 3rem) 2rem;
            text-align: center;
        }
        .hero-emblem-wrap {
            display: flex;
            justify-content: center;
            margin-bottom: 1rem;
            pointer-events: none;
        }
        .hero-emblem {
            width: clamp(240px, 22vw, 320px);
            aspect-ratio: 1.08 / 1;
            pointer-events: none;
        }
        .hero-emblem canvas {
            display: block;
            width: 100% !important;
            height: 100% !important;
        }
        .hero-kicker {
            margin-bottom: 1.25rem;
            color: rgba(60, 38, 30, 0.72);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.32em;
            text-transform: uppercase;
        }
        .hero-title {
            font-size: clamp(4.75rem, 11vw, 8.2rem) !important;
            line-height: 0.92 !important;
            margin-bottom: 1rem !important;
        }
        .hero-pronunciation {
            font-size: clamp(1rem, 2vw, 1.2rem) !important;
            margin-bottom: 2.2rem !important;
        }
        .hero-divider {
            width: 3rem;
            height: 1px;
            margin: 0 auto 2.5rem;
            background: rgba(60, 38, 30, 0.18);
        }
        .hero-quote {
            font-size: clamp(2rem, 4vw, 3.1rem) !important;
            line-height: 1.08 !important;
        }
        .hero-intro {
            font-size: clamp(1rem, 1.6vw, 1.1rem) !important;
            max-width: 38rem;
        }
        .hero-begin {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.35rem;
            width: fit-content;
            margin: 2.25rem auto 0;
            padding: 0;
            border: 0;
            border-radius: 0;
            background: transparent;
            color: #2c241b;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            transition: opacity 0.25s ease;
        }
        .hero-begin:hover {
            opacity: 0.66;
        }
        .hero-gallery-region {
            position: relative;
            z-index: 1;
            margin-top: auto;
            padding: 0;
            width: 100%;
            align-self: center;
        }
        .hero-gallery-shell {
            position: relative;
            overflow: hidden;
            border-radius: 0;
            background: transparent;
            border: 0;
        }
        @media (max-height: 960px) and (min-width: 641px) {
            .hero-copy {
                width: min(100%, 700px);
                padding: 2rem clamp(1.5rem, 4vw, 2.5rem) 1.5rem;
            }

            .hero-emblem-wrap {
                margin-bottom: 0.75rem;
            }

            .hero-emblem {
                width: clamp(200px, 19vh, 280px);
            }

            .hero-kicker {
                margin-bottom: 0.95rem;
                font-size: 0.68rem;
                letter-spacing: 0.28em;
            }

            .hero-title {
                font-size: clamp(4.2rem, 10.5vh, 7rem) !important;
                margin-bottom: 0.7rem !important;
            }

            .hero-pronunciation {
                font-size: clamp(0.92rem, 1.85vh, 1.08rem) !important;
                margin-bottom: 1.45rem !important;
            }

            .hero-divider {
                width: 2.6rem;
                margin-bottom: 1.55rem;
            }

            .hero-quote {
                font-size: clamp(1.75rem, 4.7vh, 2.65rem) !important;
                line-height: 1.08 !important;
                margin-bottom: 1rem !important;
            }

            .hero-intro {
                max-width: 34rem;
                font-size: clamp(0.95rem, 1.55vh, 1.02rem) !important;
                line-height: 1.5 !important;
            }

            .hero-begin {
                margin-top: 1.5rem;
                font-size: 0.66rem;
                letter-spacing: 0.22em;
            }
        }

        @media (max-height: 820px) and (min-width: 641px) {
            .hero-copy {
                width: min(100%, 660px);
                padding-top: 1.5rem;
                padding-bottom: 1.2rem;
            }

            .hero-emblem {
                width: clamp(172px, 17vh, 236px);
            }

            .hero-kicker {
                margin-bottom: 0.7rem;
                font-size: 0.64rem;
            }

            .hero-title {
                font-size: clamp(3.7rem, 9.2vh, 5.9rem) !important;
            }

            .hero-pronunciation {
                margin-bottom: 1.15rem !important;
            }

            .hero-divider {
                margin-bottom: 1.2rem;
            }

            .hero-quote {
                font-size: clamp(1.45rem, 4vh, 2.15rem) !important;
                margin-bottom: 0.8rem !important;
            }

            .hero-intro {
                font-size: 0.94rem !important;
                line-height: 1.45 !important;
            }

            .hero-begin {
                margin-top: 1.15rem;
            }
        }
        .hero-gallery-shell::before,
        .hero-gallery-shell::after {
            display: none;
        }
        .hero-gallery {
            display: flex;
            align-items: flex-end;
            gap: var(--hero-gallery-gap, 6px);
            overflow-x: auto;
            overflow-y: hidden;
            padding: 0;
            scroll-snap-type: x proximity;
            cursor: grab;
            user-select: none;
            width: 100%;
            touch-action: pan-x pan-y;
            -webkit-overflow-scrolling: touch;
            overscroll-behavior-x: contain;
        }
        .hero-gallery.is-dragging {
            cursor: grabbing;
            scroll-snap-type: none;
        }
        .hero-gallery-card {
            flex: 0 0 var(--hero-card-width, 160px);
            width: var(--hero-card-width, 160px);
            height: clamp(232px, 31vh, 348px);
            overflow: hidden;
            border-radius: 0;
            scroll-snap-align: center;
            background: transparent;
            box-shadow: none;
            position: relative;
            isolation: isolate;
        }
        .hero-gallery.is-enhanced .hero-gallery-card {
            opacity: 0;
            transform: translateX(52px);
            transition:
                opacity 900ms cubic-bezier(0.21, 1.02, 0.73, 1),
                transform 900ms cubic-bezier(0.21, 1.02, 0.73, 1);
            transition-delay: var(--gallery-reveal-delay, 0ms);
            will-change: opacity, transform;
        }
        .hero-gallery.is-enhanced.is-revealed .hero-gallery-card {
            opacity: 1;
            transform: translateX(0);
        }
        .hero-gallery-card--wide {
            flex-basis: var(--hero-card-width, 160px);
            width: var(--hero-card-width, 160px);
        }
        .hero-gallery-card img,
        .hero-gallery-image,
        .dither-source {
            display: block;
            width: 100%;
            height: 100%;
        }

        .hero-gallery-card img,
        .hero-gallery-image,
        .dither-source {
            object-fit: cover;
            object-position: center;
        }

        .hero-gallery-image {
            position: absolute;
            inset: 0;
            pointer-events: none;
            transition: opacity 220ms ease, transform 420ms ease;
        }

        .hero-gallery-image--rendered {
            opacity: 1;
            z-index: 2;
        }

        .hero-gallery-image--original {
            opacity: 1;
            z-index: 1;
        }

        .dither-hover-card {
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }

        .dither-reveal-card {
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }

        .dither-hover-image {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .dither-reveal-image {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .dither-hover-image--rendered,
        .dither-hover-image--original {
            position: absolute;
            inset: 0;
            transition: opacity 220ms ease, transform 420ms ease;
        }

        .dither-hover-image--rendered {
            opacity: 1;
            z-index: 1;
        }

        .dither-hover-image--original {
            opacity: 0;
            z-index: 2;
        }

        @media (hover: hover) and (pointer: fine) {
            .hero-gallery-card.has-original-loaded:hover .hero-gallery-image--rendered,
            .hero-gallery-card.has-original-loaded:focus-within .hero-gallery-image--rendered {
                opacity: 0;
                transform: scale(1.018);
            }

            .hero-gallery-card.has-original-loaded:hover .hero-gallery-image--original,
            .hero-gallery-card.has-original-loaded:focus-within .hero-gallery-image--original {
                transform: scale(1.018);
            }

            .dither-hover-card.has-original-loaded:hover .dither-hover-image--rendered,
            .dither-hover-card.has-original-loaded:focus-within .dither-hover-image--rendered {
                opacity: 0;
                transform: scale(1.012);
            }

            .dither-hover-card.has-original-loaded:hover .dither-hover-image--original,
            .dither-hover-card.has-original-loaded:focus-within .dither-hover-image--original {
                opacity: 1;
                transform: scale(1.012);
            }
        }

        .espresso-cup-shell {
            background: rgba(239, 239, 240, 1);
        }

        .espresso-cup-handle {
            right: 1.5rem;
            top: 138px;
        }

        .hero-gallery-meta {
            display: none;
        }

        .photo-strip-section {
            height: 50svh;
            min-height: 320px;
            padding: 0;
            overflow: hidden;
            background: var(--rose-accent);
        }

        .photo-strip-section .hero-gallery-region {
            width: 100%;
            margin-top: 0;
            height: 100%;
            background: var(--rose-accent);
        }

        .photo-strip-section .hero-gallery-shell,
        .photo-strip-section .hero-gallery {
            height: 100%;
            background: var(--rose-accent);
        }

        .photo-strip-section .hero-gallery {
            align-items: stretch;
            gap: 0 !important;
        }

        .photo-strip-section .hero-gallery-card,
        .photo-strip-section .hero-gallery-card--wide {
            height: 100%;
            background: var(--rose-accent);
        }

        .photo-strip-section .hero-gallery-image--rendered,
        .photo-strip-section .hero-gallery-image--original {
            background: var(--rose-accent);
        }

        #extraction.forest-section,
        #pouring.forest-section,
        #knowledge .forest-card {
            background-color: var(--forest-dark);
            color: var(--forest-text);
        }

        #knowledge .forest-card {
            background-color: var(--forest-deep);
            border-color: var(--forest-line);
            box-shadow: none;
        }

        #extraction.forest-section .forest-panel,
        #extraction.forest-section .forest-surface {
            background-color: transparent;
            box-shadow: none;
        }

        #extraction.forest-section .extraction-layout {
            position: relative;
            border: 0 !important;
            border-radius: 0 !important;
            padding: 0 !important;
            margin-top: 0.75rem;
        }

        #extraction.forest-section .extraction-controls {
            padding-right: clamp(0rem, 2vw, 1rem);
        }

        #extraction.forest-section .extraction-simulator-title {
            margin-bottom: 0.8rem;
            font-size: clamp(1.8rem, 2.1vw, 2.1rem);
            line-height: 0.98;
            letter-spacing: -0.02em;
        }

        #extraction.forest-section .tamp-copy h3,
        #extraction.forest-section .phase-copy h3 {
            font-size: clamp(1.8rem, 2.1vw, 2.1rem);
            line-height: 0.98;
            letter-spacing: -0.02em;
        }

        #extraction.forest-section .extraction-simulator-intro {
            max-width: 31rem;
            margin-bottom: 2.5rem;
            font-size: 0.98rem;
            line-height: 1.72;
        }

        #extraction.forest-section .grind-scale-labels {
            margin-bottom: 1rem;
            font-size: 0.72rem;
            letter-spacing: 0.18em;
        }

        #extraction.forest-section .grind-scale-current {
            margin-top: 1rem;
            font-size: 1.45rem;
            line-height: 1.05;
        }

        #extraction.forest-section .extraction-visual {
            border: 0 !important;
            border-radius: 0 !important;
            min-height: auto !important;
            padding: 0 clamp(2rem, 3.4vw, 2.9rem) 0 clamp(2.25rem, 4vw, 3.5rem) !important;
            border-left: 1px solid var(--forest-line) !important;
        }

        #extraction.forest-section .extraction-readout {
            left: clamp(2.25rem, 4vw, 3.5rem) !important;
            right: clamp(2rem, 3.4vw, 2.9rem) !important;
        }

        #extraction.forest-section .extraction-readout > div,
        #extraction.forest-section .tamp-readout > div {
            display: flex;
            flex-direction: column;
        }

        #extraction.forest-section .extraction-readout > div:last-child,
        #extraction.forest-section .tamp-readout > div:last-child {
            align-items: flex-end;
            text-align: right;
        }

        #extraction.forest-section .extraction-readout .sim-readout-right,
        #extraction.forest-section .tamp-readout .sim-readout-right {
            transform: translateX(0.5rem);
        }

        #extraction.forest-section .sim-readout-label,
        #extraction.forest-section .tamp-readout-label {
            color: var(--forest-text);
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.16em;
        }

        #extraction.forest-section .sim-readout-value,
        #extraction.forest-section .tamp-readout-value {
            color: var(--forest-text-strong);
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
            font-weight: 400;
            letter-spacing: -0.03em;
        }

        #extraction.forest-section .espresso-grouphead {
            background: var(--rose-accent);
            border-bottom-color: rgba(241, 218, 220, 0.78);
        }

        #extraction.forest-section .extraction-targets {
            margin-top: 3rem !important;
        }

        @media (min-width: 1024px) {
            #extraction.forest-section .extraction-layout {
                grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr) !important;
                gap: clamp(2.25rem, 5vw, 5rem) !important;
                align-items: start !important;
            }

            #extraction.forest-section .extraction-controls {
                padding-right: 0;
            }
        }

        #extraction.forest-section .forest-pattern {
            opacity: 0.11;
            background-image: radial-gradient(rgba(238, 183, 188, 0.34) 1px, transparent 1px) !important;
            background-size: 32px 32px;
        }

        #extraction.forest-section h2,
        #extraction.forest-section h3,
        #pouring.forest-section h2,
        #pouring.forest-section h3,
        #knowledge .forest-card h3,
        #extraction.forest-section .text-white,
        #pouring.forest-section .text-white,
        #knowledge .forest-card .text-white {
            color: var(--forest-text-strong) !important;
        }

        #extraction.forest-section .text-espresso-50,
        #extraction.forest-section .text-espresso-100,
        #extraction.forest-section .text-espresso-200,
        #pouring.forest-section .text-espresso-50,
        #pouring.forest-section .text-espresso-100,
        #pouring.forest-section .text-espresso-200,
        #knowledge .forest-card .text-espresso-50,
        #knowledge .forest-card .text-espresso-100,
        #knowledge .forest-card .text-espresso-200,
        #knowledge .forest-card p {
            color: var(--forest-text);
        }

        #extraction.forest-section .text-espresso-300,
        #pouring.forest-section .text-espresso-300,
        #knowledge .forest-card .text-espresso-300 {
            color: var(--rose-accent);
        }

        #extraction.forest-section .text-espresso-400,
        #pouring.forest-section .text-espresso-400,
        #knowledge .forest-card .text-espresso-400 {
            color: var(--forest-text-muted);
        }

        #extraction.forest-section .border-espresso-700,
        #pouring.forest-section .border-espresso-700,
        #knowledge .forest-card .border-espresso-700 {
            border-color: var(--forest-line);
        }

        #extraction.forest-section .bg-espresso-700,
        #pouring.forest-section .bg-espresso-700,
        #knowledge .forest-card .bg-espresso-700 {
            background-color: var(--forest-line);
        }

        #pouring.forest-section .forest-marker {
            background-color: var(--rose-accent);
            outline-color: var(--forest-dark);
        }

        #pouring.forest-section .border-l {
            border-color: var(--forest-line);
        }

        #pouring {
            padding: 0 !important;
        }

        .pour-split {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            align-items: stretch;
        }

        .pour-copy {
            display: block;
            padding: clamp(4.5rem, 7vw, 6rem) clamp(4rem, 7vw, 6rem);
        }

        .pour-copy-inner {
            width: min(100%, 34rem);
            margin: 0 auto;
        }

        .pour-steps {
            display: grid;
            gap: 1.75rem;
            margin-top: 2.5rem;
        }

        .pour-step h3 {
            margin-bottom: 0.55rem;
        }

        .pour-step p {
            max-width: 32rem;
        }

        .pour-image {
            position: relative;
            display: block;
            align-self: stretch;
            min-height: 0;
        }

        .pour-image > .dither-reveal-image,
        .pour-image > .organic-reveal-overlay {
            position: absolute;
            inset: 0;
        }

        .pour-image img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .media-reveal-overlay {
            z-index: 3;
            background: var(--forest-dark);
        }

        #extraction.forest-section input[type=range]::-webkit-slider-thumb {
            background: var(--rose-accent);
            box-shadow: 0 0 0 4px var(--forest-deep), 0 0 0 6px var(--rose-accent);
        }

        #extraction.forest-section input[type=range]::-webkit-slider-runnable-track {
            background: rgba(238, 183, 188, 0.58);
        }

        #extraction.forest-section .forest-primary-btn {
            background-color: var(--rose-accent);
            color: var(--forest-ink);
            border: 1px solid transparent;
            white-space: nowrap;
            flex-wrap: nowrap;
        }

        #extraction.forest-section .forest-primary-btn:hover {
            background-color: #f4c8cd;
        }

        #extraction.forest-section .forest-secondary-btn {
            background-color: rgba(238, 183, 188, 0.05);
            border-color: var(--forest-line);
            color: var(--forest-text-strong);
        }

        #extraction.forest-section .forest-secondary-btn:hover {
            background-color: rgba(238, 183, 188, 0.1);
        }

        #extraction.forest-section #feedbackPanel > p,
        #pouring.forest-section p {
            color: var(--forest-text);
        }

        #feedbackPanel .feedback-card {
            width: 100%;
            padding: 1rem;
            border-radius: 0.5rem;
            border: 1px solid rgba(238, 183, 188, 0.18);
            background: rgba(18, 23, 22, 0.18);
            text-align: left;
        }

        #feedbackPanel .feedback-title {
            margin: 0 0 0.35rem;
            font-size: 0.875rem;
            font-weight: 700;
            letter-spacing: 0.01em;
        }

        #feedbackPanel .feedback-copy {
            margin: 0;
            font-size: 0.875rem;
            line-height: 1.55;
        }

        #feedbackPanel .feedback-card--fine {
            background: rgba(127, 29, 29, 0.22);
            border-color: rgba(248, 113, 113, 0.38);
        }

        #feedbackPanel .feedback-card--fine .feedback-title,
        #feedbackPanel .feedback-card--fine .feedback-copy,
        #feedbackPanel .feedback-copy--fine {
            color: rgb(248 113 113);
        }

        #feedbackPanel .feedback-card--ideal {
            background: rgba(20, 83, 45, 0.24);
            border-color: rgba(74, 222, 128, 0.38);
        }

        #feedbackPanel .feedback-card--ideal .feedback-title,
        #feedbackPanel .feedback-card--ideal .feedback-copy,
        #feedbackPanel .feedback-copy--ideal {
            color: rgb(74 222 128);
        }

        #feedbackPanel .feedback-card--coarse {
            background: rgba(133, 77, 14, 0.22);
            border-color: rgba(250, 204, 21, 0.38);
        }

        #feedbackPanel .feedback-card--coarse .feedback-title,
        #feedbackPanel .feedback-card--coarse .feedback-copy,
        #feedbackPanel .feedback-copy--coarse {
            color: rgb(250 204 21);
        }

        .phase-module {
            margin-top: clamp(5rem, 7.5vw, 6rem);
            padding-top: clamp(3.5rem, 4.8vw, 4.2rem);
            border-top: 1px solid var(--forest-line);
        }

        .phase-copy {
            max-width: 48rem;
            margin-bottom: 2rem;
        }

        .phase-copy .phase-kicker {
            color: var(--forest-text-muted);
        }

        .phase-copy h3 {
            color: var(--forest-text-strong);
        }

        .phase-copy > p {
            margin: 0;
            color: var(--forest-text);
            line-height: 1.72;
        }

        .phase-cards {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.75rem;
            margin-top: 2.5rem;
        }

        .phase-card {
            display: grid;
            grid-template-rows: auto auto auto auto auto;
            align-items: start;
            height: 100%;
            padding-top: 1rem;
            border-top: 1px solid var(--forest-line);
            opacity: 1;
        }

        .phase-card-stage {
            display: block;
            margin-bottom: 0.6rem;
            color: var(--forest-text-muted);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        .phase-card h4 {
            margin: 0 0 0.55rem;
            color: var(--forest-text-strong);
            font-family: "Playfair Display", serif;
            font-size: 1.6rem;
            line-height: 1;
        }

        .phase-card p {
            margin: 0;
            color: var(--forest-text);
            line-height: 1.68;
        }

        .phase-card > p {
            min-height: 8rem;
        }

        .phase-card-detail {
            display: flex;
            flex-direction: column;
            justify-content: start;
            margin-top: 1.1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(241, 218, 220, 0.16);
        }

        .phase-card-detail p {
            min-height: 6.9rem;
        }

        .phase-card-detail strong {
            display: block;
            margin-bottom: 0.35rem;
            color: var(--forest-text-muted);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }

        #extraction.forest-section .tamp-module {
            border-top-color: var(--forest-line);
        }

        #extraction.forest-section .tamp-kicker {
            color: var(--forest-text-muted);
        }

        #extraction.forest-section .tamp-copy h3,
        #extraction.forest-section .tamp-copy strong,
        #extraction.forest-section .tamp-control-group label {
            color: var(--forest-text-strong);
        }

        #extraction.forest-section .tamp-copy > p,
        #extraction.forest-section .tamp-guidelines span,
        #extraction.forest-section .tamp-status {
            color: var(--forest-text);
        }

        #extraction.forest-section .tamp-guidelines li,
        #extraction.forest-section .tamp-status {
            border-color: var(--forest-line);
        }

        #extraction.forest-section .tamp-readout {
            left: 0;
            right: 0;
        }

        #extraction.forest-section .tamp-interactive {
            border-left: 1px solid var(--forest-line);
            padding: 0 clamp(2rem, 3.4vw, 2.9rem) 0 clamp(2.25rem, 4vw, 3.5rem);
        }

        #extraction.forest-section .tamp-visual {
            border-color: transparent;
            background: transparent;
        }

        #extraction.forest-section .tamp-handle,
        #extraction.forest-section .tamp-stem,
        #extraction.forest-section .tamp-head {
            background: var(--rose-accent);
        }

        #extraction.forest-section .tamp-basket {
            border-color: var(--forest-line);
            background: rgba(241, 218, 220, 0.03);
        }

        #extraction.forest-section .tamp-bed {
            background: linear-gradient(180deg, rgba(241, 218, 220, 0.32), rgba(241, 218, 220, 0.64));
        }

        #extraction.forest-section .tamp-surface {
            background: var(--rose-accent);
        }

        #extraction.forest-section .tamp-basket.is-uneven::before,
        #extraction.forest-section .tamp-basket.is-uneven::after {
            background: rgba(241, 218, 220, 0.92);
        }

        #extraction.forest-section #tampPressure::-webkit-slider-thumb {
            background: var(--rose-accent);
            box-shadow: 0 0 0 4px var(--forest-deep), 0 0 0 6px var(--rose-accent);
        }

        #extraction.forest-section #tampPressure::-webkit-slider-runnable-track {
            background: rgba(241, 218, 220, 0.46);
        }

        #extraction.forest-section .tamp-angle-btn {
            border-color: var(--forest-line);
            color: var(--forest-text);
        }

        #extraction.forest-section .tamp-angle-btn:hover,
        #extraction.forest-section .tamp-angle-btn:focus-visible {
            border-color: rgba(241, 218, 220, 0.38);
            background: rgba(241, 218, 220, 0.08);
            color: var(--forest-text-strong);
        }

        #extraction.forest-section .tamp-angle-btn.is-active {
            border-color: var(--rose-accent);
            background: rgba(241, 218, 220, 0.14);
            color: var(--forest-text-strong);
        }

        #knowledge .knowledge-card,
        #knowledge .forest-card {
            background: transparent !important;
            border: 0 !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            padding: 0 !important;
        }

        #knowledge .knowledge-card h3,
        #knowledge .knowledge-card p,
        #knowledge .knowledge-card li,
        #knowledge .knowledge-card .text-white,
        #knowledge .knowledge-card .text-espresso-50,
        #knowledge .knowledge-card .text-espresso-100,
        #knowledge .knowledge-card .text-espresso-200,
        #knowledge .knowledge-card .text-espresso-700,
        #knowledge .knowledge-card .text-espresso-800,
        #knowledge .knowledge-card .text-espresso-900,
        #knowledge .forest-card h3,
        #knowledge .forest-card p,
        #knowledge .forest-card li,
        #knowledge .forest-card .text-white,
        #knowledge .forest-card .text-espresso-50,
        #knowledge .forest-card .text-espresso-100,
        #knowledge .forest-card .text-espresso-200,
        #knowledge .forest-card .text-espresso-700,
        #knowledge .forest-card .text-espresso-800,
        #knowledge .forest-card .text-espresso-900 {
            color: var(--light-ink) !important;
        }

        #knowledge .knowledge-card p,
        #knowledge .knowledge-card li,
        #knowledge .forest-card p,
        #knowledge .forest-card li {
            color: var(--light-ink-soft) !important;
        }

        #knowledge .knowledge-icon {
            width: auto !important;
            height: auto !important;
            display: inline-flex;
            margin-bottom: 0.9rem;
            padding: 0 !important;
            background: transparent !important;
            border-radius: 0 !important;
            color: var(--light-ink) !important;
        }

        #knowledge .knowledge-icon .material-symbols-outlined {
            color: var(--light-ink) !important;
        }

        #knowledge .knowledge-card .bg-espresso-300,
        #knowledge .knowledge-card .bg-espresso-400,
        #knowledge .forest-card .bg-espresso-300,
        #knowledge .forest-card .bg-espresso-400 {
            background-color: var(--rose-checkbox) !important;
        }

        #composition {
            background: var(--light-bg);
            color: var(--light-ink);
            padding: clamp(7rem, 10vw, 9rem) 0;
            overflow: hidden;
            border-top: 1px solid var(--light-line);
        }

        .composition-shell {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 clamp(1.5rem, 4vw, 2.75rem);
        }

        .composition-header {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2.75rem;
        }

        .composition-copy {
            max-width: 45rem;
        }

        .composition-kicker {
            display: block;
            margin-bottom: 0.9rem;
            color: var(--light-ink-muted);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.24em;
            text-transform: uppercase;
        }

        .composition-title {
            margin: 0 0 1.1rem;
            font-family: "Playfair Display", serif;
            font-size: clamp(2.8rem, 5vw, 4.6rem);
            line-height: 0.95;
            color: var(--light-ink);
        }

        .composition-intro {
            max-width: 41rem;
            margin: 0;
            color: var(--light-ink-soft);
            font-size: clamp(1rem, 1.35vw, 1.1rem);
            line-height: 1.7;
        }

        .composition-footnote {
            max-width: 41rem;
            margin: 1rem 0 0;
            color: var(--light-ink-muted);
            font-size: 0.84rem;
            letter-spacing: 0.02em;
            line-height: 1.65;
        }

        .composition-toolbar {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-shrink: 0;
        }

        .composition-progress {
            display: flex;
            align-items: center;
            gap: 0.55rem;
        }

        .composition-progress-dot {
            width: 0.65rem;
            height: 0.65rem;
            padding: 0;
            border: 0;
            border-radius: 999px;
            background: rgba(18, 23, 22, 0.16);
            transition: background-color 0.25s ease, transform 0.25s ease;
        }

        .composition-progress-dot:hover,
        .composition-progress-dot:focus-visible {
            background: rgba(18, 23, 22, 0.34);
            outline: none;
        }

        .composition-progress-dot.is-active {
            background: rgba(18, 23, 22, 0.78);
        }

        .composition-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .composition-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2.9rem;
            height: 2.9rem;
            border: 1px solid var(--light-line);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.32);
            color: var(--light-ink);
            transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
        }

        .composition-action:hover,
        .composition-action:focus-visible {
            background: rgba(255, 255, 255, 0.58);
            border-color: rgba(18, 23, 22, 0.18);
            outline: none;
            transform: translateY(-1px);
        }

        .composition-action:disabled {
            opacity: 0.38;
            cursor: default;
            transform: none;
        }

        .composition-track-shell {
            position: relative;
        }

        .composition-track {
            display: flex;
            gap: 1.25rem;
            overflow-x: auto;
            overflow-y: hidden;
            padding: 0 clamp(1.5rem, 4vw, 2.75rem);
            scroll-snap-type: x mandatory;
            scroll-padding-inline: clamp(1.5rem, 4vw, 2.75rem);
            cursor: grab;
            user-select: none;
            touch-action: pan-y;
        }

        .composition-track.is-dragging {
            cursor: grabbing;
            scroll-snap-type: none;
        }

        .composition-card {
            --composition-accent: var(--rose-checkbox);
            flex: 0 0 min(78vw, 40rem);
            min-width: min(78vw, 40rem);
            min-height: 30rem;
            display: grid;
            grid-template-columns: minmax(15rem, 0.92fr) 1.12fr;
            gap: clamp(1.5rem, 2vw, 2rem);
            padding: clamp(1.5rem, 2vw, 2rem);
            border: 1px solid var(--light-line);
            background: rgba(255, 255, 255, 0.28);
            scroll-snap-align: start;
            opacity: 0;
            transform: translateY(28px);
            transition:
                opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.72s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.28s ease,
                background-color 0.28s ease,
                box-shadow 0.28s ease;
            transition-delay: calc(var(--card-index, 0) * 70ms);
            box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        }

        .composition-card--0 { --card-index: 0; }
        .composition-card--1 { --card-index: 1; }
        .composition-card--2 { --card-index: 2; }
        .composition-card--3 { --card-index: 3; }
        .composition-card--4 { --card-index: 4; }
        .composition-card--5 { --card-index: 5; }
        .composition-card--6 { --card-index: 6; }
        .composition-card--7 { --card-index: 7; }

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

        .composition-card:hover,
        .composition-card:focus-within,
        .composition-card.is-active {
            background: rgba(255, 255, 255, 0.52);
            border-color: rgba(18, 23, 22, 0.18);
            box-shadow: 0 22px 42px rgba(18, 23, 22, 0.08);
        }

        .composition-card-figure {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100%;
            padding-right: clamp(1rem, 1.8vw, 1.5rem);
            border-right: 1px solid var(--light-line);
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.04));
        }

        .composition-card-figure::after {
            content: "";
            position: absolute;
            inset: 1.15rem;
            background-image: radial-gradient(rgba(18, 23, 22, 0.08) 0.8px, transparent 0.8px);
            background-size: 18px 18px;
            opacity: 0.42;
            pointer-events: none;
        }

        .composition-card-copy {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1rem;
            min-width: 0;
        }

        .composition-card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding-bottom: 0.9rem;
            border-bottom: 1px solid var(--light-line);
        }

        .composition-card-index {
            color: var(--light-ink-muted);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.24em;
            text-transform: uppercase;
        }

        .composition-card-range {
            color: var(--light-ink);
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .composition-card-copy h3 {
            margin: 0;
            font-family: "Playfair Display", serif;
            font-size: clamp(2rem, 2.4vw, 2.55rem);
            line-height: 0.98;
            color: var(--light-ink);
        }

        .composition-card-copy p {
            margin: 0;
            color: var(--light-ink-soft);
            line-height: 1.72;
        }

        .composition-note {
            padding-top: 1rem;
            border-top: 1px solid var(--light-line);
            color: var(--light-ink) !important;
            font-size: 0.94rem;
            line-height: 1.6;
        }

        .composition-note span {
            color: var(--light-ink-muted);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            margin-right: 0.7rem;
        }

        .component-diagram {
            position: relative;
            width: min(100%, 14rem);
            aspect-ratio: 1;
            color: rgba(18, 23, 22, 0.7);
            transition: transform 0.35s ease, color 0.35s ease;
            z-index: 1;
        }

        .composition-card:hover .component-diagram,
        .composition-card:focus-within .component-diagram,
        .composition-card.is-active .component-diagram {
            color: rgba(18, 23, 22, 0.88);
            transform: scale(1.02);
        }

        .component-diagram svg {
            display: block;
            width: 100%;
            height: 100%;
            overflow: visible;
        }

        .component-diagram .diagram-stroke {
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            opacity: 0.26;
            vector-effect: non-scaling-stroke;
        }

        .component-diagram .diagram-fill {
            fill: currentColor;
            opacity: 0.08;
        }

        .component-diagram .diagram-accent {
            fill: var(--composition-accent);
            stroke: var(--composition-accent);
            stroke-width: 2;
            opacity: 0.94;
            vector-effect: non-scaling-stroke;
            transition: fill 0.3s ease, stroke 0.3s ease, opacity 0.3s ease;
        }

        .composition-card:hover .diagram-accent,
        .composition-card:focus-within .diagram-accent,
        .composition-card.is-active .diagram-accent {
            fill: rgba(18, 23, 22, 0.82);
            stroke: rgba(18, 23, 22, 0.82);
        }

        .component-diagram .diagram-accent-soft {
            fill: var(--composition-accent);
            opacity: 0.18;
        }

        .component-diagram .diagram-grid-line {
            stroke: currentColor;
            stroke-width: 1;
            opacity: 0.08;
            vector-effect: non-scaling-stroke;
        }

        .component-diagram .anim-pulse {
            transform-origin: center;
            animation: compositionPulse 5s ease-in-out infinite;
        }

        .component-diagram .anim-drift {
            transform-origin: center;
            animation: compositionDrift 8s ease-in-out infinite alternate;
        }

        .component-diagram .anim-rotate {
            transform-origin: center;
            animation: compositionRotate 14s linear infinite;
        }

        .component-diagram .anim-float {
            transform-origin: center;
            animation: compositionFloat 6.5s ease-in-out infinite;
        }

        @keyframes compositionPulse {
            0%, 100% { transform: scale(1); opacity: 0.92; }
            50% { transform: scale(1.04); opacity: 1; }
        }

        @keyframes compositionDrift {
            0% { transform: translate3d(-4px, 2px, 0); }
            100% { transform: translate3d(5px, -4px, 0); }
        }

        @keyframes compositionRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes compositionFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        @media (max-width: 1023px) {
            #extraction.forest-section .extraction-visual {
                border-left: 0 !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
                padding-top: 2.25rem !important;
                margin-top: 0.5rem;
            }

            #extraction.forest-section .extraction-readout {
                left: 0.35rem !important;
                right: 0.35rem !important;
            }

            #extraction.forest-section .tamp-interactive {
                border-left: 0;
                padding: 0;
            }

            .phase-cards {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .phase-card {
                grid-template-rows: auto;
                height: auto;
            }

            .phase-card > p,
            .phase-card-detail p {
                min-height: 0;
            }

            .pour-split {
                grid-template-columns: 1fr;
            }

            .pour-copy,
            .pour-image {
                min-height: auto;
            }

            .pour-copy {
                padding: 6rem 1.5rem 2.75rem;
            }

            .pour-image {
                height: 56svh;
            }
        }

        @media (max-width: 900px) {
            .tamp-layout {
                grid-template-columns: 1fr;
            }

            .tamp-visual {
                min-height: 21rem;
            }

            .tamp-guidelines li {
                grid-template-columns: 1fr;
                gap: 0.4rem;
            }

            #composition {
                padding: 6.5rem 0;
            }

            .composition-header {
                display: block;
                margin-bottom: 2rem;
            }

            .composition-toolbar {
                display: none;
            }

            .composition-track {
                display: grid;
                gap: 1rem;
                padding: 0 clamp(1.25rem, 5vw, 1.5rem);
                overflow: visible;
                cursor: default;
            }

            .composition-card {
                min-width: 0;
                min-height: auto;
                grid-template-columns: 1fr;
            }

            .composition-card-figure {
                min-height: 15rem;
                padding: 0 0 1.25rem;
                border-right: 0;
                border-bottom: 1px solid var(--light-line);
            }

            .composition-card-copy {
                padding-top: 0.2rem;
            }
        }

        #prep,
        #cleaning,
        #milk,
        #knowledge,
        footer {
            background-color: var(--light-bg) !important;
            color: var(--light-ink);
        }

        #prep,
        #extraction,
        #cleaning,
        #milk {
            padding-top: clamp(7.5rem, 10vw, 10rem) !important;
            padding-bottom: clamp(7.5rem, 10vw, 10rem) !important;
        }

        #cleaning {
            padding-bottom: clamp(2.8rem, 4.2vw, 3.5rem) !important;
        }

        #milk {
            padding-top: 6rem !important;
        }

        #prep h2,
        #prep h3,
        #prep h4,
        #cleaning h2,
        #cleaning h4,
        #milk h2,
        #milk h3,
        #knowledge h2,
        #knowledge h3,
        #prep .text-espresso-900,
        #prep .text-espresso-800,
        #prep .text-espresso-700,
        #cleaning .text-espresso-900,
        #cleaning .text-espresso-800,
        #cleaning .text-espresso-700,
        #milk .text-espresso-900,
        #milk .text-espresso-800,
        #milk .text-espresso-700,
        #knowledge .text-espresso-900,
        #knowledge .text-espresso-800,
        #knowledge .text-espresso-700,
        footer .text-espresso-800,
        footer .text-espresso-700 {
            color: var(--light-ink) !important;
        }

        #prep .text-espresso-300,
        #prep .text-espresso-400,
        #cleaning .text-espresso-300,
        #cleaning .text-espresso-400,
        #milk .text-espresso-300,
        #milk .text-espresso-400,
        #knowledge .text-espresso-300,
        #knowledge .text-espresso-400,
        footer .text-espresso-400 {
            color: var(--light-ink-muted) !important;
        }

        #prep p,
        #cleaning p,
        #milk p,
        #knowledge p,
        #knowledge li,
        footer p {
            color: var(--light-ink-soft);
        }

        #prep label,
        #cleaning .bg-white,
        #milk .bg-espresso-50,
        #knowledge .bg-white {
            background-color: var(--light-card) !important;
            border-color: var(--light-line) !important;
            box-shadow: none !important;
        }

        #prep label {
            background-color: #ffffff !important;
        }

        #prep .border-espresso-100,
        #cleaning .border-espresso-100,
        #milk .border-espresso-100,
        #knowledge .border-espresso-100,
        footer .border-espresso-200 {
            border-color: var(--light-line) !important;
        }

        .milk-interlude {
            background-color: var(--light-bg);
            padding-bottom: clamp(4rem, 5.8vw, 4.75rem);
        }

        .milk-froth-band {
            position: relative;
            width: 100%;
            height: clamp(15.5rem, 30vw, 22rem);
            overflow: hidden;
            background: var(--light-bg);
        }

        .milk-froth-canvas {
            display: block;
            width: 100%;
            height: 100%;
            image-rendering: pixelated;
            image-rendering: crisp-edges;
        }

        .milk-froth-fade {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                linear-gradient(
                    180deg,
                    rgba(248, 248, 248, 1) 0%,
                    rgba(248, 248, 248, 0.99) 16%,
                    rgba(248, 248, 248, 0.94) 30%,
                    rgba(248, 248, 248, 0.78) 44%,
                    rgba(248, 248, 248, 0.38) 60%,
                    rgba(248, 248, 248, 0.12) 76%,
                    rgba(248, 248, 248, 0) 100%
                );
            mix-blend-mode: normal;
        }

        .support-callout {
            max-width: 32rem;
            margin: 0 auto 2.5rem;
            padding: 0 1rem;
        }

        .support-callout-label {
            margin: 0 0 0.55rem;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--light-ink-muted);
        }

        .support-callout-copy {
            margin: 0 0 1.35rem;
            color: var(--light-ink-soft);
            line-height: 1.7;
        }

        .support-callout-button {
            display: flex;
            justify-content: center;
        }

        .support-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 12rem;
            padding: 0.9rem 1.45rem;
            border: 1px solid var(--light-ink);
            border-radius: 999px;
            background: var(--light-ink);
            color: var(--light-bg);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            text-decoration: none;
            transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
        }

        .support-link:hover,
        .support-link:focus-visible {
            background: #262626;
            border-color: #262626;
            color: var(--light-bg);
            transform: translateY(-1px);
        }

        .site-footer {
            background: #eeeeee !important;
            padding-top: 5rem;
            padding-bottom: 2rem;
            padding-inline: clamp(1.5rem, 4vw, 3rem);
        }

        .footer-meta {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
            width: min(100%, 34rem);
            margin-inline: auto;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.85rem 1.2rem;
            width: 100%;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: none;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .footer-links a {
            color: var(--light-ink-muted);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-links a:hover,
        .footer-links a:focus-visible {
            color: var(--light-ink);
        }

        #prep input.peer:checked + div {
            background-color: var(--light-ink) !important;
            border-color: var(--light-ink) !important;
        }

        #prep input.peer:checked + div .material-symbols-outlined {
            color: var(--light-bg) !important;
        }

        #prep input.peer:checked ~ div h3 {
            color: var(--light-ink) !important;
        }

        #prep .foundation-list {
            display: flex !important;
            flex-direction: column;
            gap: 0;
            max-width: 52rem;
        }

        #prep .foundation-item {
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem 0 !important;
            margin: 0;
            border: 0 !important;
            border-top: 1px solid var(--light-line) !important;
            border-radius: 0 !important;
            background: transparent !important;
            box-shadow: none !important;
        }

        #prep .foundation-item:last-child {
            border-bottom: 1px solid var(--light-line) !important;
        }

        #prep .foundation-item:hover {
            border-color: var(--light-line) !important;
            background: transparent !important;
        }

        #prep .foundation-check {
            position: relative;
            width: 1.4rem;
            height: 1.4rem;
            margin-top: 0.2rem;
            border-radius: 0 !important;
            border-color: var(--forest-dark) !important;
            background: var(--rose-checkbox) !important;
        }

        #prep .foundation-check .material-symbols-outlined {
            display: none !important;
        }

        #prep .foundation-check::after {
            content: "";
            position: absolute;
            inset: 0.22rem;
            background: var(--forest-dark);
            opacity: 0;
            transition: opacity 0.18s ease;
        }

        #prep input.peer:checked + .foundation-check {
            background-color: var(--rose-checkbox) !important;
            border-color: var(--forest-dark) !important;
        }

        #prep input.peer:checked + .foundation-check::after {
            opacity: 1;
        }

        #prep .foundation-copy {
            max-width: 44rem;
        }

        #prep .foundation-item h3 {
            margin-bottom: 0;
        }

        #prep .foundation-item p {
            color: var(--light-ink-soft);
        }

        #prep input[type=range]::-webkit-slider-thumb {
            background: var(--rose-checkbox);
            box-shadow: 0 0 0 4px var(--light-bg), 0 0 0 6px var(--rose-checkbox);
        }

        #prep input[type=range]::-webkit-slider-runnable-track {
            background: rgba(18, 23, 22, 0.2);
        }

        .tamp-module {
            margin-top: clamp(5rem, 7.5vw, 6rem);
            padding-top: clamp(3.5rem, 4.8vw, 4.2rem);
            border-top: 1px solid var(--light-line);
        }

        .tamp-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
            gap: clamp(2.25rem, 5vw, 5rem);
            align-items: start;
        }

        .tamp-kicker,
        .phase-kicker {
            display: block;
            margin-bottom: 0.85rem;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
        }

        .tamp-kicker {
            color: var(--light-ink-muted);
        }

        .tamp-copy h3,
        .phase-copy h3 {
            margin: 0 0 1rem;
            font-family: "Playfair Display", serif;
            font-size: clamp(2rem, 3vw, 3rem);
            line-height: 0.98;
        }

        .tamp-copy h3 {
            color: var(--light-ink);
        }

        .tamp-copy > p {
            max-width: 38rem;
            margin: 0;
            color: var(--light-ink-soft);
            line-height: 1.72;
        }

        .tamp-guidelines {
            display: grid;
            gap: 1rem;
            margin: 2rem 0 0;
            padding: 0;
            list-style: none;
        }

        .tamp-guidelines li {
            display: grid;
            grid-template-columns: minmax(0, 8rem) minmax(0, 1fr);
            gap: 1rem;
            align-items: start;
            padding-top: 0.95rem;
            border-top: 1px solid var(--light-line);
        }

        .tamp-guidelines strong {
            color: var(--light-ink);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        .tamp-guidelines span {
            color: var(--light-ink-soft);
            line-height: 1.68;
        }

        .tamp-interactive {
            position: relative;
            display: grid;
            gap: 1.5rem;
        }

        .tamp-visual {
            position: relative;
            min-height: auto;
            padding: 0 0 0.5rem;
            border: 0;
            background: transparent;
            --tamp-angle: 0deg;
            --tamp-depth: 55%;
        }

        .tamp-visual::after {
            display: none;
        }

        .tamp-rig {
            position: relative;
            z-index: 1;
            height: 17rem;
            width: 100%;
            margin-top: clamp(4.5rem, 5vw, 5rem);
        }

        .tamp-tool {
            position: absolute;
            top: calc(var(--tamp-depth) - 8.6rem);
            left: 50%;
            width: 8.5rem;
            height: 8.6rem;
            transform: translateX(-50%) rotate(var(--tamp-angle));
            transform-origin: center bottom;
            transition: top 0.28s ease, transform 0.28s ease;
        }

        .tamp-handle {
            position: absolute;
            top: 0;
            left: 50%;
            width: 5.25rem;
            height: 2.6rem;
            border-radius: 999px 999px 0.85rem 0.85rem;
            background: #2f2f2f;
            transform: translateX(-50%);
        }

        .tamp-stem {
            position: absolute;
            top: 2.3rem;
            left: 50%;
            width: 0.45rem;
            height: 5.2rem;
            background: #2f2f2f;
            transform: translateX(-50%);
        }

        .tamp-head {
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 8.5rem;
            height: 1rem;
            background: #2f2f2f;
            transform: translateX(-50%);
        }

        .tamp-basket {
            position: absolute;
            left: 50%;
            bottom: 1.2rem;
            width: min(16rem, 100%);
            height: 8.8rem;
            border: 1px solid var(--light-line);
            border-bottom-width: 0.3rem;
            border-radius: 0 0 2.2rem 2.2rem;
            transform: translateX(-50%);
            overflow: hidden;
            background: rgba(255, 255, 255, 0.18);
        }

        .tamp-bed {
            position: absolute;
            inset-inline: 1rem;
            bottom: 0.9rem;
            height: calc(100% - var(--tamp-depth));
            background: linear-gradient(180deg, rgba(47, 47, 47, 0.72), rgba(47, 47, 47, 0.92));
            transition: height 0.28s ease;
        }

        .tamp-surface {
            position: absolute;
            left: 1rem;
            right: 1rem;
            top: var(--tamp-depth);
            height: 2px;
            background: var(--rose-checkbox);
            transform: rotate(var(--tamp-angle));
            transform-origin: center;
            transition: top 0.28s ease, transform 0.28s ease;
        }

        .tamp-basket.is-uneven::before,
        .tamp-basket.is-uneven::after {
            content: "";
            position: absolute;
            bottom: 1.2rem;
            width: 0.45rem;
            background: rgba(241, 218, 220, 0.8);
            filter: blur(0.2px);
        }

        .tamp-basket.is-uneven::before {
            left: 2rem;
            height: 2.2rem;
        }

        .tamp-basket.is-uneven::after {
            right: 2.4rem;
            height: 1.3rem;
        }

        .tamp-readout {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1;
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            margin-top: 0;
            padding-top: 0;
            border-top: 0;
        }

        .tamp-readout-label {
            display: block;
            margin-bottom: 0.35rem;
            color: var(--light-ink-muted);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
        }

        .tamp-readout-value {
            color: var(--light-ink);
            font-family: inherit;
            font-size: 1.5rem;
            font-weight: 500;
            letter-spacing: -0.02em;
            line-height: 1.05;
        }

        .tamp-controls {
            display: grid;
            gap: 1rem;
        }

        .tamp-control-group label {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 0.75rem;
            color: var(--light-ink);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }

        .tamp-pressure-value {
            font-family: inherit;
            font-size: 1.45rem;
            font-weight: 500;
            letter-spacing: -0.02em;
            line-height: 1.05;
            text-transform: none;
        }

        .tamp-angle-group {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }

        .tamp-angle-btn {
            padding: 0.7rem 1rem;
            border: 1px solid var(--light-line);
            background: transparent;
            color: var(--light-ink-soft);
            font-size: 0.82rem;
            font-weight: 500;
            transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease;
        }

        .tamp-angle-btn:hover,
        .tamp-angle-btn:focus-visible {
            border-color: rgba(18, 23, 22, 0.22);
            background: rgba(255, 255, 255, 0.32);
            color: var(--light-ink);
            outline: none;
        }

        .tamp-angle-btn.is-active {
            border-color: var(--rose-checkbox);
            background: rgba(241, 218, 220, 0.3);
            color: var(--light-ink);
        }

        .tamp-status {
            margin: 0;
            padding-top: 1rem;
            border-top: 1px solid var(--light-line);
            color: var(--light-ink-soft);
            line-height: 1.72;
        }

        #prep .bg-espresso-50,
        #milk .bg-espresso-100:not(.milk-illustration),
        #knowledge .bg-espresso-100 {
            background-color: rgba(18, 23, 22, 0.06) !important;
        }

        #prep .foundation-item.bg-espresso-50,
        #prep .foundation-item.bg-espresso-50:hover {
            background-color: transparent !important;
        }

        #cleaning .cleaning-list {
            display: flex !important;
            flex-direction: column;
            gap: 0;
            max-width: 52rem;
            margin: 0 auto;
        }

        #cleaning .cleaning-item {
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem 0 !important;
            margin: 0;
            border: 0 !important;
            border-top: 1px solid var(--light-line) !important;
            border-radius: 0 !important;
            background: transparent !important;
            box-shadow: none !important;
        }

        #cleaning .cleaning-item:last-child {
            border-bottom: 1px solid var(--light-line) !important;
        }

        #cleaning .cleaning-item .material-symbols-outlined {
            margin-top: 0.15rem;
            color: var(--light-ink-muted) !important;
        }

        #cleaning .cleaning-copy {
            max-width: 42rem;
        }

        #cleaning .cleaning-copy p {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        #milk .milk-phase-card {
            background: transparent !important;
            border: 0 !important;
            border-radius: 0 !important;
            box-shadow: none !important;
        }

        #milk .milk-phase-card p {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        #milk .swirl-bg {
            background: conic-gradient(from 0deg, #d9d5cf, #f0ede8, #d9d5cf) !important;
        }

        #milk .glossy-finish {
            background: radial-gradient(circle at 30% 30%, #f7f6f3 0%, #e3ded7 45%, #d9d5cf 100%) !important;
        }

        #cleaning .material-symbols-outlined,
        #knowledge .material-symbols-outlined,
        #milk .material-symbols-outlined {
            color: var(--light-ink-muted);
        }

        @media (min-width: 768px) {
            #prep .foundation-list,
            #cleaning .cleaning-list {
                display: grid !important;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                column-gap: 2.5rem;
                row-gap: 0;
                max-width: 64rem;
            }

            #prep .foundation-item,
            #cleaning .cleaning-item {
                min-height: 100%;
            }

            #cleaning .cleaning-item {
                min-height: auto;
                align-self: start;
            }

            #prep .foundation-item:nth-child(1),
            #cleaning .cleaning-item:nth-child(1) {
                order: 1;
            }

            #prep .foundation-item:nth-child(2),
            #cleaning .cleaning-item:nth-child(2) {
                order: 3;
            }

            #prep .foundation-item:nth-child(3),
            #cleaning .cleaning-item:nth-child(3) {
                order: 2;
            }

            #prep .foundation-item:nth-child(4),
            #cleaning .cleaning-item:nth-child(4) {
                order: 4;
            }

            #prep .foundation-item:nth-child(2),
            #prep .foundation-item:nth-child(4),
            #cleaning .cleaning-item:nth-child(2),
            #cleaning .cleaning-item:nth-child(4) {
                border-bottom: 1px solid var(--light-line) !important;
            }
        }

        @media (max-width: 900px) {
            .hero-panel {
                min-height: 100svh;
            }
            .hero-copy {
                width: min(100%, 680px);
                padding-top: 2.75rem;
            }
            .tamp-layout {
                grid-template-columns: 1fr;
            }
            .tamp-visual {
                min-height: 21rem;
            }
            .tamp-guidelines li {
                grid-template-columns: 1fr;
                gap: 0.4rem;
            }
            #prep,
            #extraction,
            #cleaning,
            #milk {
                padding-top: 6.5rem !important;
                padding-bottom: 6.5rem !important;
            }

            #cleaning {
                padding-bottom: 3rem !important;
            }

            #milk {
                padding-top: 6rem !important;
            }

            .milk-interlude {
                padding-bottom: 4rem;
            }

            .milk-froth-band {
                height: clamp(13.75rem, 48vw, 18rem);
            }
            .hero-gallery-card,
            .hero-gallery-card--wide {
                height: clamp(210px, 27vh, 280px);
            }
        }

        @media (max-width: 640px) {
            #extraction.forest-section .extraction-targets {
                gap: 1rem !important;
            }

            .espresso-cup-handle {
                right: 0.85rem;
                top: 141px;
                width: 1.25rem;
                height: 2.35rem;
                border-width: 3px;
                border-top-right-radius: 1rem;
                border-bottom-right-radius: 1rem;
            }

            .hero-shell {
                padding: 0;
            }
            .site-chrome {
                top: 0.9rem;
                left: 1rem;
                right: 1rem;
            }
            .site-logo {
                font-size: 0.72rem;
                letter-spacing: 0.14em;
            }
            .site-locale {
                gap: 0.4rem;
                font-size: 0.68rem;
                letter-spacing: 0.14em;
            }
            .hero-panel {
                min-height: 100svh;
            }
            .hero-copy {
                width: 100%;
                padding: 1.7rem 1rem 1.1rem;
            }
            .hero-emblem-wrap {
                margin-bottom: 0.8rem;
            }
            .hero-emblem {
                width: 188px;
            }
            .hero-kicker {
                margin-bottom: 0.9rem;
                font-size: 0.64rem;
                letter-spacing: 0.24em;
            }
            .hero-title {
                font-size: 4.25rem !important;
                margin-bottom: 0.6rem !important;
            }
            .hero-pronunciation {
                font-size: 0.92rem !important;
                margin-bottom: 1.35rem !important;
            }
            .hero-divider {
                margin-bottom: 1.4rem;
            }
            .hero-quote {
                font-size: 1.38rem !important;
                line-height: 1.18 !important;
                margin-bottom: 1rem !important;
            }
            .hero-intro {
                max-width: none;
                font-size: 0.95rem !important;
                line-height: 1.55 !important;
            }
            .hero-begin {
                margin-top: 1.35rem;
                font-size: 0.62rem;
                letter-spacing: 0.2em;
            }
            .hero-gallery-region {
                padding: 0;
            }
            .hero-gallery-card,
            .hero-gallery-card--wide {
                height: 198px;
            }

        }
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  font-family: "IBM Plex Sans", sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none {
  pointer-events: none;
}
.invisible {
  visibility: hidden;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0 {
  inset: 0px;
}
.-bottom-2 {
  bottom: -0.5rem;
}
.-bottom-28 {
  bottom: -7rem;
}
.-left-\[37px\] {
  left: -37px;
}
.-right-20 {
  right: -5rem;
}
.-top-20 {
  top: -5rem;
}
.-top-28 {
  top: -7rem;
}
.bottom-1 {
  bottom: 0.25rem;
}
.bottom-12 {
  bottom: 3rem;
}
.bottom-2 {
  bottom: 0.5rem;
}
.bottom-4 {
  bottom: 1rem;
}
.bottom-6 {
  bottom: 1.5rem;
}
.left-0 {
  left: 0px;
}
.left-1\/2 {
  left: 50%;
}
.left-1\/4 {
  left: 25%;
}
.left-6 {
  left: 1.5rem;
}
.left-\[calc\(50\%-6px\)\] {
  left: calc(50% - 6px);
}
.right-1\/3 {
  right: 33.333333%;
}
.right-1\/4 {
  right: 25%;
}
.right-6 {
  right: 1.5rem;
}
.right-\[calc\(50\%-6px\)\] {
  right: calc(50% - 6px);
}
.top-0 {
  top: 0px;
}
.top-1 {
  top: 0.25rem;
}
.top-1\/2 {
  top: 50%;
}
.top-4 {
  top: 1rem;
}
.top-6 {
  top: 1.5rem;
}
.top-9 {
  top: 2.25rem;
}
.top-\[138px\] {
  top: 138px;
}
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.z-50 {
  z-index: 50;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-4 {
  margin-left: 1rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-\[88px\] {
  margin-top: 88px;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.h-0 {
  height: 0px;
}
.h-1 {
  height: 0.25rem;
}
.h-1\.5 {
  height: 0.375rem;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-2 {
  height: 0.5rem;
}
.h-20 {
  height: 5rem;
}
.h-24 {
  height: 6rem;
}
.h-3 {
  height: 0.75rem;
}
.h-32 {
  height: 8rem;
}
.h-4 {
  height: 1rem;
}
.h-56 {
  height: 14rem;
}
.h-6 {
  height: 1.5rem;
}
.h-8 {
  height: 2rem;
}
.h-\[0\%\] {
  height: 0%;
}
.h-\[1px\] {
  height: 1px;
}
.h-full {
  height: 100%;
}
.min-h-\[400px\] {
  min-height: 400px;
}
.min-h-\[60px\] {
  min-height: 60px;
}
.min-h-screen {
  min-height: 100vh;
}
.w-1 {
  width: 0.25rem;
}
.w-1\.5 {
  width: 0.375rem;
}
.w-12 {
  width: 3rem;
}
.w-2 {
  width: 0.5rem;
}
.w-28 {
  width: 7rem;
}
.w-3 {
  width: 0.75rem;
}
.w-32 {
  width: 8rem;
}
.w-4 {
  width: 1rem;
}
.w-48 {
  width: 12rem;
}
.w-6 {
  width: 1.5rem;
}
.w-\[1px\] {
  width: 1px;
}
.w-\[3px\] {
  width: 3px;
}
.w-full {
  width: 100%;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-xl {
  max-width: 36rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-150 {
  --tw-scale-x: 1.5;
  --tw-scale-y: 1.5;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes bounce {

  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}
.animate-bounce {
  animation: bounce 1s infinite;
}
@keyframes pulse {

  50% {
    opacity: .5;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-pointer {
  cursor: pointer;
}
.select-none {
  user-select: none;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-evenly {
  justify-content: space-evenly;
}
.gap-16 {
  gap: 4rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.space-y-12 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(3rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.scroll-smooth {
  scroll-behavior: smooth;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-b-\[2\.5rem\] {
  border-bottom-right-radius: 2.5rem;
  border-bottom-left-radius: 2.5rem;
}
.rounded-b-full {
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
}
.rounded-b-xl {
  border-bottom-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}
.rounded-r-2xl {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-4 {
  border-width: 4px;
}
.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-l {
  border-left-width: 1px;
}
.border-l-0 {
  border-left-width: 0px;
}
.border-t {
  border-top-width: 1px;
}
.border-espresso-100 {
  --tw-border-opacity: 1;
  border-color: rgb(244 236 216 / var(--tw-border-opacity, 1));
}
.border-espresso-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 213 181 / var(--tw-border-opacity, 1));
}
.border-espresso-300 {
  --tw-border-opacity: 1;
  border-color: rgb(214 156 82 / var(--tw-border-opacity, 1));
}
.border-espresso-700 {
  --tw-border-opacity: 1;
  border-color: rgb(74 56 46 / var(--tw-border-opacity, 1));
}
.border-green-500\/50 {
  border-color: rgb(34 197 94 / 0.5);
}
.border-red-500\/50 {
  border-color: rgb(239 68 68 / 0.5);
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-yellow-500\/50 {
  border-color: rgb(234 179 8 / 0.5);
}
.border-zinc-400 {
  --tw-border-opacity: 1;
  border-color: rgb(161 161 170 / var(--tw-border-opacity, 1));
}
.border-zinc-700 {
  --tw-border-opacity: 1;
  border-color: rgb(63 63 70 / var(--tw-border-opacity, 1));
}
.bg-\[\#f4ecd8\] {
  --tw-bg-opacity: 1;
  background-color: rgb(244 236 216 / var(--tw-bg-opacity, 1));
}
.bg-espresso-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(244 236 216 / var(--tw-bg-opacity, 1));
}
.bg-espresso-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(214 156 82 / var(--tw-bg-opacity, 1));
}
.bg-espresso-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(184 124 59 / var(--tw-bg-opacity, 1));
}
.bg-espresso-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(252 250 248 / var(--tw-bg-opacity, 1));
}
.bg-espresso-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(74 56 46 / var(--tw-bg-opacity, 1));
}
.bg-espresso-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(44 36 27 / var(--tw-bg-opacity, 1));
}
.bg-espresso-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(26 21 18 / var(--tw-bg-opacity, 1));
}
.bg-green-900\/30 {
  background-color: rgb(20 83 45 / 0.3);
}
.bg-red-900\/30 {
  background-color: rgb(127 29 29 / 0.3);
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/20 {
  background-color: rgb(255 255 255 / 0.2);
}
.bg-white\/40 {
  background-color: rgb(255 255 255 / 0.4);
}
.bg-yellow-900\/30 {
  background-color: rgb(113 63 18 / 0.3);
}
.bg-zinc-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(212 212 216 / var(--tw-bg-opacity, 1));
}
.bg-zinc-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(161 161 170 / var(--tw-bg-opacity, 1));
}
.bg-zinc-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(82 82 91 / var(--tw-bg-opacity, 1));
}
.bg-zinc-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(39 39 42 / var(--tw-bg-opacity, 1));
}
.p-10 {
  padding: 2.5rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.px-0\.5 {
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pl-8 {
  padding-left: 2rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.font-sans {
  font-family: "IBM Plex Sans", sans-serif;
}
.font-serif {
  font-family: "Playfair Display", serif;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}
.text-\[400px\] {
  font-size: 400px;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.italic {
  font-style: italic;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-snug {
  line-height: 1.375;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.text-espresso-100 {
  --tw-text-opacity: 1;
  color: rgb(244 236 216 / var(--tw-text-opacity, 1));
}
.text-espresso-200 {
  --tw-text-opacity: 1;
  color: rgb(229 213 181 / var(--tw-text-opacity, 1));
}
.text-espresso-300 {
  --tw-text-opacity: 1;
  color: rgb(214 156 82 / var(--tw-text-opacity, 1));
}
.text-espresso-400 {
  --tw-text-opacity: 1;
  color: rgb(184 124 59 / var(--tw-text-opacity, 1));
}
.text-espresso-50 {
  --tw-text-opacity: 1;
  color: rgb(252 250 248 / var(--tw-text-opacity, 1));
}
.text-espresso-700 {
  --tw-text-opacity: 1;
  color: rgb(74 56 46 / var(--tw-text-opacity, 1));
}
.text-espresso-800 {
  --tw-text-opacity: 1;
  color: rgb(44 36 27 / var(--tw-text-opacity, 1));
}
.text-espresso-900 {
  --tw-text-opacity: 1;
  color: rgb(26 21 18 / var(--tw-text-opacity, 1));
}
.text-green-400 {
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}
.text-red-400 {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-yellow-400 {
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity, 1));
}
.underline {
  text-decoration-line: underline;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.opacity-0 {
  opacity: 0;
}
.opacity-30 {
  opacity: 0.3;
}
.opacity-5 {
  opacity: 0.05;
}
.opacity-50 {
  opacity: 0.5;
}
.mix-blend-difference {
  mix-blend-mode: difference;
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_0_8px_rgba\(0\2c 0\2c 0\2c 0\.5\)\] {
  --tw-shadow: 0 0 8px rgba(0,0,0,0.5);
  --tw-shadow-colored: 0 0 8px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[inset_0_8px_16px_rgba\(0\2c 0\2c 0\2c 0\.1\)\] {
  --tw-shadow: inset 0 8px 16px rgba(0,0,0,0.1);
  --tw-shadow-colored: inset 0 8px 16px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-inner {
  --tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-black\/50 {
  --tw-shadow-color: rgb(0 0 0 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.outline {
  outline-style: solid;
}
.outline-4 {
  outline-width: 4px;
}
.outline-espresso-900 {
  outline-color: #1a1512;
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-1000 {
  transition-duration: 1000ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-\[100ms\] {
  transition-duration: 100ms;
}
.ease-linear {
  transition-timing-function: linear;
}
.selection\:bg-espresso-300 *::selection {
  --tw-bg-opacity: 1;
  background-color: rgb(214 156 82 / var(--tw-bg-opacity, 1));
}
.selection\:text-white *::selection {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.selection\:bg-espresso-300::selection {
  --tw-bg-opacity: 1;
  background-color: rgb(214 156 82 / var(--tw-bg-opacity, 1));
}
.selection\:text-white::selection {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:border-espresso-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(214 156 82 / var(--tw-border-opacity, 1));
}
.hover\:bg-espresso-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(184 124 59 / var(--tw-bg-opacity, 1));
}
.hover\:bg-espresso-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(74 56 46 / var(--tw-bg-opacity, 1));
}
.hover\:bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.hover\:shadow-lg:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-md:hover {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.active\:scale-95:active {
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.peer:checked ~ .peer-checked\:mt-2 {
  margin-top: 0.5rem;
}
.peer:checked ~ .peer-checked\:h-auto {
  height: auto;
}
.peer:checked ~ .peer-checked\:border-espresso-300 {
  --tw-border-opacity: 1;
  border-color: rgb(214 156 82 / var(--tw-border-opacity, 1));
}
.peer:checked ~ .peer-checked\:bg-espresso-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(214 156 82 / var(--tw-bg-opacity, 1));
}
.peer:checked ~ .peer-checked\:text-espresso-400 {
  --tw-text-opacity: 1;
  color: rgb(184 124 59 / var(--tw-text-opacity, 1));
}
.peer:checked ~ .peer-checked\:opacity-100 {
  opacity: 1;
}
@media (min-width: 640px) {

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {

  .md\:-left-\[53px\] {
    left: -53px;
  }

  .md\:ml-8 {
    margin-left: 2rem;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:p-12 {
    padding: 3rem;
  }

  .md\:pl-12 {
    padding-left: 3rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .md\:text-9xl {
    font-size: 8rem;
    line-height: 1;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1024px) {

  .lg\:flex {
    display: flex;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}* {
      -ms-overflow-style: none !important;
      scrollbar-width: none !important;
    }

    *::-webkit-scrollbar {
      display: none !important;
      width: 0 !important;
      height: 0 !important;
    }

.legal-body {
  min-height: 100vh;
  background: var(--light-bg);
  color: var(--light-ink);
}

.legal-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.25rem, 3vw, 2rem);
  background: rgba(238, 235, 228, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--light-line);
}

.legal-brand {
  color: var(--light-ink);
  text-decoration: none;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.legal-toplinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-toplinks a {
  color: var(--light-ink-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-toplinks a:hover,
.legal-toplinks a:focus-visible,
.legal-toplinks a[aria-current="page"] {
  color: var(--light-ink);
}

.legal-page {
  padding: clamp(4.5rem, 8vw, 6.5rem) 1.5rem clamp(4rem, 8vw, 6rem);
}

.legal-shell {
  max-width: 54rem;
  margin: 0 auto;
}

.legal-eyebrow {
  margin-bottom: 0.9rem;
  color: var(--light-ink-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-title {
  margin-bottom: 1.35rem;
  color: var(--light-ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.legal-intro {
  max-width: 40rem;
  color: var(--light-ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.legal-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-line);
}

.legal-section h2 {
  margin-bottom: 0.85rem;
  color: var(--light-ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  line-height: 1.1;
}

.legal-section p,
.legal-section li {
  color: var(--light-ink-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.legal-section p + p,
.legal-section ul + p {
  margin-top: 0.9rem;
}

.legal-section a {
  color: var(--light-ink);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 0.2em;
}

.legal-address {
  font-style: normal;
}

.legal-list {
  margin: 0;
  padding-left: 1.15rem;
}

.legal-list li + li {
  margin-top: 0.65rem;
}

.legal-note {
  margin-top: 0.9rem;
  color: var(--light-ink-muted);
  font-size: 0.92rem;
}

.legal-source-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-source-list li {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--light-line);
}

.legal-source-file {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--light-ink);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.legal-source-meta {
  color: var(--light-ink-soft);
  font-size: 0.95rem;
}

.legal-footer {
  padding: 0 1.5rem 2.5rem;
}

@media (max-width: 720px) {
  .legal-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-toplinks {
    justify-content: flex-start;
  }

  .support-link {
    min-width: 0;
    width: 100%;
  }
}
