        :root {
            --bg: #090a0d;
            --panel: rgba(16, 19, 26, .88);
            --panel-strong: rgba(10, 11, 15, .96);
            --border: rgba(255, 255, 255, .08);
            --text: #f7f1e6;
            --muted: #b9b1a4;
            --gold: #c5a95e;
            --gold-soft: #ead8ac;
            --sage: #8fd3c7;
            --shadow: 0 24px 80px rgba(0, 0, 0, .42);
            --gutter: 1.25rem;
        }

        .reveal-btn {
            background: rgba(197, 169, 94, 0.1);
            border: 1px solid var(--gold);
            color: var(--gold);
            padding: 0.4rem 0.8rem;
            border-radius: 99px;
            font-size: 0.75rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-top: 0.5rem;
            display: inline-block;
        }

        .reveal-btn:hover {
            background: var(--gold);
            color: #000;
        }

        .contact-value {
            filter: blur(4px);
            transition: filter 0.3s ease;
            cursor: pointer;
            user-select: none;
        }

        .contact-value.revealed {
            filter: blur(0);
            user-select: text;
            cursor: pointer;
        }

        html {
            scroll-behavior: smooth;
        }

        section[id] {
            scroll-margin-top: 120px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        html {
            scroll-behavior: smooth;
            background-color: #090a0d;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            min-height: 100vh;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background:
                radial-gradient(circle at top right, rgba(197, 169, 94, .16), transparent 28%),
                radial-gradient(circle at 18% 12%, rgba(143, 211, 199, .12), transparent 24%),
                radial-gradient(circle at 82% 72%, rgba(197, 169, 94, .09), transparent 20%),
                linear-gradient(160deg, #090a0d 0%, #10131a 48%, #07080b 100%);
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            background:
                linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
            background-size: 72px 72px;
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .45), transparent 72%);
            opacity: .32;
            z-index: 1;
        }

        .glow-blob {
            position: fixed;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(197, 169, 94, 0.08), transparent 70%);
            top: -10%;
            right: -10%;
            pointer-events: none;
            z-index: 0;
            filter: blur(80px);
            animation: pulse-glow 15s infinite alternate;
        }

        @keyframes pulse-glow {
            0% {
                transform: translate(0, 0) scale(1);
                opacity: 0.5;
            }

            100% {
                transform: translate(-100px, 50px) scale(1.1);
                opacity: 0.8;
            }
        }

        .reveal {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .page {
            width: min(1380px, calc(100% - (var(--gutter) * 2)));
            margin: 0 auto;
            padding: 1rem 0 2rem;
        }

        .topbar {
            position: sticky;
            top: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: .75rem 1.5rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--gold);
            background: #000000;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        }

        .topbar-logos {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .rog-logo a,
        .hbtn-banner-logo a {
            display: block;
            text-decoration: none;
        }

        .hbtn-banner-logo {
            display: flex;
            align-items: center;
            height: 60px;
        }

        .topbar-divider {
            width: 1px;
            height: 30px;
            background: rgba(197, 169, 94, 0.4);
            align-self: center;
            flex: 0 0 auto;
        }

        .rog-logo img {
            height: 38px;
            width: auto;
            display: block;
        }

        .hbtn-banner-logo img {
            height: 120px;
            width: auto;
            display: block;
            transform: translateY(8px);
        }

        .topbar .actions {
            display: flex;
            align-items: center;
        }

        @media (max-width: 600px) {
            .topbar {
                padding: 0.75rem 1rem;
            }

            .rog-logo img {
                height: 32px;
            }

            .hbtn-banner-logo {
                height: 32px;
            }

            .hbtn-banner-logo img {
                height: 44px;
                transform: translateY(9px);
            }
        }

        .layout {
            display: grid;
            grid-template-columns: 170px minmax(0, 1fr);
            gap: 1rem;
            align-items: start;
        }

        aside {
            position: sticky;
            top: 5.1rem;
            display: grid;
            gap: .75rem;
        }

        .card {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: 24px;
            box-shadow: var(--shadow);
            backdrop-filter: blur(18px);
        }

        .nav-card {
            padding: 1rem
        }

        .section {
            padding: clamp(1.4rem, 2.5vw, 2rem);
            border-radius: 24px;
            background: var(--panel);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            scroll-margin-top: 120px;
            overflow: hidden;
            /* Prevent background number bleed */
        }

        .nav-label,
        .section-kicker,
        .brand-kicker,
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: .45rem;
            color: var(--gold-soft);
            font-size: .72rem;
            font-weight: 800;
            letter-spacing: .18em;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .nav-label::before,
        .section-kicker::before,
        .brand-kicker::before,
        .eyebrow::before {
            content: "";
            width: 1.8rem;
            height: 1px;
            background: linear-gradient(90deg, var(--gold), transparent);
        }

        .nav-list {
            list-style: none;
            display: grid;
            gap: .25rem;
            margin-top: .75rem;
        }

        .nav-list a {
            display: block;
            padding: .45rem .05rem;
            border-radius: 12px;
            color: var(--text);
            text-decoration: none;
            font-size: .95rem;
            font-weight: 600;
            letter-spacing: .01em;
            transition: transform 160ms ease, color 160ms ease, opacity 160ms ease;
        }

        .nav-list a:hover {
            transform: translateX(4px);
            color: var(--gold-soft);
        }

        @media (max-width: 1280px) and (min-width: 1041px) {
            .layout {
                grid-template-columns: 145px minmax(0, 1fr);
            }

            .nav-card {
                padding: .75rem;
            }

            .nav-label {
                font-size: .62rem;
                letter-spacing: .14em;
            }

            .nav-label::before {
                width: 1.2rem;
            }

            .nav-list a {
                font-size: .82rem;
                line-height: 1.25;
                padding: .38rem 0;
            }
        }

        main {
            display: grid;
            gap: 1.5rem
        }

        main p {
            color: var(--muted);
            line-height: 1.78;
            letter-spacing: 0.003em;
        }

        .section p {
            max-width: 68ch;
        }

        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            /* Default balanced grid */
            gap: 1.5rem;
            padding: clamp(1.5rem, 2.7vw, 2.15rem);
            border-radius: 28px;
            background:
                radial-gradient(circle at top right, rgba(197, 169, 94, .12), transparent 32%),
                linear-gradient(180deg, rgba(17, 19, 27, .94), rgba(9, 10, 13, .96));
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            transition: transform 220ms ease, box-shadow 220ms ease;
        }

        .hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 28px 90px rgba(0, 0, 0, .5);
        }

        .hero-copy {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: .95rem;
            padding: .25rem;
        }

        h1,
        h2 {
            font-family: 'Fraunces', serif;
            letter-spacing: -.04em;
        }

        h1 {
            font-family: 'Fraunces', serif;
            font-size: clamp(1.8rem, 7vw, 5.2rem);
            line-height: 1.05;
            max-width: 15ch;
            letter-spacing: -.04em;
            word-wrap: break-word;
            /* Ensure wrapping on mobile */
            overflow-wrap: break-word;
        }

        .lede {
            max-width: 54ch;
            font-size: 1.03rem;
            line-height: 1.8;
            color: var(--muted);
        }

        .actions {
            display: flex;
            flex-wrap: wrap;
            gap: .8rem;
            margin-top: .1rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: .92rem 1.2rem;
            min-height: 56px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 800;
            white-space: nowrap;
            transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
        }

        .btn:hover {
            transform: translateY(-2px)
        }

        .hero .actions .btn {
            min-height: 60px;
        }

        .hero .actions {
            gap: 1.1rem;
        }

        .btn-primary {
            color: #1a140b;
            background: linear-gradient(135deg, #ead8ac, #c5a95e);
            box-shadow: 0 16px 36px rgba(197, 169, 94, .18);
        }

        .btn-secondary {
            color: var(--text);
            background: rgba(255, 255, 255, .03);
            border: 1px solid var(--border);
        }

        .hero-panel {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            gap: .75rem;
        }

        .hero-mark {
            padding: .5rem;
            border-radius: 24px;
            background: #050505;
            border: 1px solid rgba(255, 255, 255, .18);
        }

        .hero-mark img {
            display: block;
            width: 100%;
            height: auto;
            border-radius: 18px;
        }

        .hero-note {
            padding: .95rem 1.5rem;
            border-radius: 18px;
            background: rgba(143, 211, 199, .08);
            border: 1px solid rgba(143, 211, 199, .14);
            color: var(--gold-soft);
            line-height: 1.65;
            font-size: .94rem;
            min-height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: left;
            align-items: flex-start;
        }

        .hero-note span {
            display: block;
            width: 100%;
            text-align: right;
            margin-top: auto;
        }

        .section-head {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            align-items: flex-end;
            margin-bottom: 1.1rem;
        }

        .section-heading-stack {
            display: grid;
            gap: 0.95rem;
            align-content: start;
        }

        .section-heading-stack-roomy {
            gap: 1.15rem;
        }

        .section-heading-stack > .section-kicker,
        .section-heading-stack > h2 {
            margin: 0 !important;
        }

        .section-heading-stack > .ticker-wrap {
            margin-top: 0.1rem;
        }

        .section h2 {
            font-size: clamp(1.45rem, 5vw, 1.95rem);
            line-height: 1.14;
            letter-spacing: -0.02em;
            word-wrap: break-word;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: .85rem;
        }

        .feature,
        .panel {
            padding: .95rem;
            border-radius: 18px;
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .06);
            transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
        }

        .feature:hover,
        .panel:hover {
            transform: translateY(-2px);
            border-color: rgba(197, 169, 94, .2);
            background: rgba(255, 255, 255, .045);
        }

        .feature strong,
        .panel strong {
            display: block;
            margin-bottom: .25rem;
            color: var(--text);
            font-size: 1rem;
        }

        .feature .btn-link {
            display: inline-flex;
            margin-top: .7rem;
            color: var(--gold-soft);
            text-decoration: none;
            font-weight: 700;
            transition: transform 160ms ease, color 160ms ease;
        }

        .feature .btn-link:hover {
            transform: translateX(4px);
            color: #fff;
        }

        .calculator-grid,
        .editorial-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .bio-wrap {
            display: grid;
            grid-template-columns: minmax(92px, 110px) minmax(0, 1fr);
            gap: 1rem;
            align-items: start;
        }

        .bio-photo {
            flex: 1 1 450px;
            max-width: 100%;
            height: auto;
            min-height: 400px;
            background: #000;
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border);
        }

        .bio-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.9;
        }

        .portrait-photo {
            box-shadow: 0 32px 90px rgba(0,0,0,0.55), 0 0 0 1px rgba(247, 235, 207, 0.08) inset;
        }

        .portrait-photo img {
            filter: contrast(1.04) saturate(0.92);
        }

        #bio-toggle-btn:hover {
            background: var(--gold);
            color: #090a0d !important;
        }

        @media (max-width: 1040px) {
            .editorial-row {
                flex-direction: column;
                gap: 3rem;
            }

            .bio-photo {
                flex: none;
                width: 100%;
                height: 400px;
            }
        }

        /* Decorative icons in sections */
        .ghost-icon {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 120px;
            height: 120px;
            opacity: 0.05;
            pointer-events: none;
            color: var(--gold);
        }

        /* Global bio-portrait sizing fixed (resolves tiny picture bug) */
        .bio-wrap .bio-photo img {
            border-radius: 12px;
            width: 100%;
            height: auto;
            display: block;
        }

        .bio-text {
            display: grid;
            gap: .65rem;
            padding-top: .2rem;
        }

        .quote {
            margin-top: .85rem;
            padding: .95rem 1rem;
            border-left: 3px solid var(--gold);
            border-radius: 0 16px 16px 0;
            background: rgba(255, 255, 255, .03);
            color: var(--gold-soft);
            line-height: 1.75;
        }

        .footer {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
            padding: .2rem .25rem;
            color: rgba(185, 177, 164, .72);
            font-size: .92rem;
        }

        .footer a {
            text-decoration: none;
            color: var(--gold-soft);
        }

        .footer a:hover {
            text-decoration: underline
        }

        .footer-logos {
            display: flex;
            align-items: center;
            gap: .7rem;
            flex-wrap: wrap;
        }

        .footer-logos img {
            display: block;
            height: 26px;
            width: auto;
        }

        @media (max-width:1040px) {
            .layout {
                grid-template-columns: 1fr
            }

            aside {
                position: static
            }

            .hero {
                grid-template-columns: 1fr
            }

            .grid-3 {
                grid-template-columns: 1fr 1fr
            }
        }

        @media (max-width:760px) {
            :root {
                --gutter: 1rem;
            }

            .page {
                width: 100%;
                padding: 0;
            }

            aside {
                display: none;
                /* Hidden on mobile in favor of hamburger menu */
            }

            .layout {
                grid-template-columns: 1fr;
            }

            .card,
            .section,
            .hero {
                border-radius: 0;
                border-left: 0;
                border-right: 0;
                padding: 1.5rem 1rem;
                /* Explicit padding for mobile */
            }

            .hero {
                gap: 1.25rem;
            }

            .hero-copy {
                gap: 0.75rem;
            }

            .calculator-grid,
            .editorial-row,
            .door-grid,
            .grid-3 {
                display: grid;
                grid-template-columns: 1fr !important;
                gap: 2rem;
            }

            .hero h1 {
                font-size: clamp(2rem, 13vw, 2.85rem);
                line-height: 1.04;
                max-width: 11ch;
                margin-bottom: 0.9rem !important;
                /* Keep the hero statement bold on mobile while avoiding awkward overflow. */
            }

            .lede {
                font-size: 1rem;
                line-height: 1.75;
            }

            .grid-3,
            .bio-wrap {
                grid-template-columns: 1fr
            }

            .actions {
                display: grid
            }

            .btn {
                width: 100%
            }

            .topbar {
                padding: 0.75rem var(--gutter);
                margin: 0;
                width: 100%;
                border-radius: 0;
                gap: 0.75rem;
            }

            .hbtn-banner-logo img {
                height: 34px !important;
                transform: translateY(7px);
                /* Keep the mobile logo readable without reintroducing desktop-style header height. */
            }

            .hbtn-banner-logo {
                height: 24px !important;
            }

            .rog-logo img {
                height: 24px !important;
                /* Keep the brand readable while staying inside the mobile header band. */
            }

            .topbar-logos {
                gap: 0.65rem;
                flex-shrink: 1;
                min-width: 0;
            }

            .topbar-logos div[style*="width: 1px"] {
                height: 18px !important;
            }

            .topbar .actions {
                display: none !important;
                /* Managed by mobile nav */
            }

            .mobile-nav-toggle {
                display: flex !important;
                padding: 0.45rem;
                margin-right: -0.2rem;
            }

            h1,
            h2,
            h3 {
                word-break: break-word !important;
                overflow-wrap: break-word !important;
            }

            body,
            .page,
            main,
            .section {
                overflow-x: hidden !important;
                max-width: 100vw !important;
                box-sizing: border-box !important;
            }

            .section {
                padding: 2.5rem 1rem !important;
                /* Keep the mobile sections breathable without making the scroll feel overly stretched. */
            }

            .hero-panel {
                gap: 1rem;
            }

            .hero-note {
                min-height: auto;
                padding: 1rem 1rem 0.95rem;
            }

            .hero-note span {
                margin-top: 0.5rem;
            }

            .hero-mark {
                max-width: min(100%, 280px) !important;
                margin: 0 auto !important;
            }

            .calculator-box {
                padding: 1.25rem !important;
                border-radius: 20px !important;
            }

            #addressInput {
                padding: 1rem !important;
                font-size: 1rem !important;
            }

            #vibrationResult {
                padding: 2.25rem 1rem 1.5rem !important;
                border-radius: 24px !important;
            }

            #vibrationResult button[aria-label="Close result"] {
                top: 0.75rem !important;
                right: 0.75rem !important;
            }

            #vibFormula {
                font-size: 0.78rem !important;
                line-height: 1.55 !important;
            }

            #vibNumber {
                font-size: 4rem !important;
            }

            #vibTitle {
                font-size: 1.75rem !important;
                margin-bottom: 1rem !important;
            }

            #vibText {
                font-size: 1rem !important;
            }

            #vibKarmic {
                display: block !important;
                width: 100%;
            }

            .door {
                min-height: 0;
                padding: 2.15rem 1.35rem 1.65rem;
            }

            .door::before {
                top: 14px;
                left: 14px;
                right: 14px;
            }

            .door-knob {
                left: 14px;
            }

            .door-number {
                top: 14px;
                right: 14px;
                font-size: 5.5rem;
            }

            .door h3 {
                font-size: 1.6rem;
            }

            .footer {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.25rem;
            }

            .footer > :last-child {
                text-align: left !important;
            }
        }

        /* Mobile Nav Overhaul */
        .mobile-nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: 0;
            cursor: pointer;
            z-index: 1001;
            padding: 5px;
        }

        .mobile-nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s ease;
        }

        .mobile-nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(9, 10, 13, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            display: none;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 1.4rem;
            padding: 6rem 1.5rem 2rem;
            transform: translateY(-100%);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-nav-overlay.active {
            transform: translateY(0);
        }

        @media (max-width: 760px) {
            .mobile-nav-overlay {
                display: flex;
            }
        }

        .mobile-nav-overlay a {
            font-family: 'Fraunces', serif;
            font-size: clamp(1.45rem, 8vw, 2rem);
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .mobile-nav-overlay a:hover {
            color: var(--gold);
        }

        .mobile-nav-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .mobile-nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-nav-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        @media (prefers-reduced-motion:reduce) {
            html {
                scroll-behavior: auto
            }

            .btn,
            .nav-list a,
            .feature,
            .panel,
            .hero,
            .bio-photo,
            .mobile-nav-overlay {
                transition: none
            }
        }

        /* Flip Cards */
        .flip-section {
            perspective: 1000px;
        }

        .flip-card {
            position: relative;
            width: 100%;
            height: 380px;
            text-align: center;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
            cursor: pointer;
        }

        .flip-card.flipped {
            transform: rotateY(180deg);
        }

        .flip-card-front,
        .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 1.5rem 1.35rem 1.35rem;
            /* Refined padding */
            -webkit-transform: translateZ(1px);
            transform: translateZ(1px);
            box-sizing: border-box;
        }

        .flip-card-front p,
        .flip-card-back p {
            line-height: 1.72;
        }

        .flip-card-front h3,
        .flip-card-back h3 {
            font-size: 1.3rem;
            line-height: 1.2;
            word-wrap: break-word;
        }

        /* Door UI */
        .door-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .approach-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .ticker-wrap {
            width: 100%;
            overflow: hidden;
            background: transparent;
            padding: 0;
            border-radius: 0;
            border: 0;
            margin: 0 0 1.6rem 0;
        }

        .approach-helper-line {
            white-space: normal;
            display: block;
            font-size: 1.05rem;
            color: var(--gold-soft);
            padding: 0;
            text-align: left;
            margin: 0;
        }

        @media (max-width: 850px) {
            .approach-grid {
                grid-template-columns: 1fr;
            }
        }

        .door {
            position: relative;
            background: #000;
            border: 2px solid rgba(197, 169, 94, 0.45);
            border-radius: 12px 12px 0 0;
            min-height: 450px;
            height: auto;
            padding-bottom: 2rem;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            padding: 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            transition: all 0.3s ease;
            text-decoration: none;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(197, 169, 94, 0.08);
            margin: 0 auto;
            width: 100%;
        }

        .door-trigger {
            font: inherit;
            color: inherit;
            text-align: left;
            cursor: pointer;
        }

        .door-knob {
            position: absolute;
            left: 20px;
            top: 60%;
            width: 18px;
            height: 18px;
            background: var(--gold);
            border-radius: 50%;
            box-shadow:
                inset -2px -2px 4px rgba(0, 0, 0, 0.5),
                2px 2px 5px rgba(197, 169, 94, 0.4);
            z-index: 10;
        }

        .door h3,
        .door p,
        .door .action {
            padding-right: 3.25rem;
        }

        .door:hover {
            border-color: var(--gold);
            transform: translateY(-8px);
            box-shadow: 0 0 35px rgba(197, 169, 94, 0.18);
        }

        .door-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-family: 'Fraunces', serif;
            font-size: 8rem;
            color: rgba(197, 169, 94, 0.08);
            line-height: 1;
            font-weight: 700;
            pointer-events: none;
        }

        .door::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 0;
            border: 1px solid rgba(197, 169, 94, 0.2);
            border-bottom: 0;
            border-radius: 6px 6px 0 0;
            pointer-events: none;
        }

        .door h3 {
            font-family: 'Fraunces', serif;
            font-size: 1.8rem;
            color: var(--gold-soft);
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .door p {
            color: var(--muted);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            min-height: calc(1.6em * 4);
        }

        .door .action {
            font-weight: 800;
            font-size: 0.8rem;
            color: var(--gold);
            text-transform: uppercase;
        }

        .alignment-modal-backdrop {
            display: none;
        }

        .alignment-modal-backdrop:not([hidden]) {
            position: fixed;
            inset: 0;
            z-index: 1200;
            display: grid;
            place-items: center;
            padding: 1.5rem;
            overflow-y: auto;
        }

        .alignment-modal-shell {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.72);
            backdrop-filter: blur(6px);
        }

        .alignment-modal-panel {
            position: relative;
            width: min(100%, 560px);
            max-height: calc(100vh - 3rem);
            overflow-y: auto;
            padding: 2rem;
            border: 1px solid rgba(197, 169, 94, 0.35);
            border-radius: 24px;
            background: linear-gradient(180deg, rgba(12, 12, 12, 0.98), rgba(22, 22, 22, 0.96));
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
            z-index: 1;
        }

        .alignment-modal-panel h2 {
            margin-bottom: 1rem;
        }

        .alignment-modal-panel p {
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .alignment-form-feedback {
            font-size: 0.875rem;
            color: var(--gold-soft);
            margin: 0 0 0.25rem;
        }

        .alignment-modal-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 0.7rem;
        }

        .alignment-request-form {
            display: grid;
            gap: 1rem;
        }

        .alignment-request-fieldset {
            border: 1px solid rgba(197, 169, 94, 0.2);
            border-radius: 14px;
            padding: 0.9rem 1rem 1rem;
        }

        .alignment-request-fieldset.is-invalid {
            border-color: rgba(224, 110, 110, 0.9);
            box-shadow: 0 0 0 1px rgba(224, 110, 110, 0.28);
        }

        .alignment-request-fieldset legend {
            padding: 0 0.45rem;
            color: var(--gold-soft);
            font-size: 0.85rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .alignment-request-fieldset.is-invalid legend {
            color: #f0b2b2;
        }

        .alignment-request-radio-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.65rem;
        }

        .alignment-request-radio-grid label {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            color: var(--muted);
            font-size: 0.95rem;
        }

        .alignment-request-radio-grid label input[type="radio"] {
            flex-shrink: 0;
            margin-top: 0.2em;
        }

        .alignment-form-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.9rem;
        }

        .alignment-form-field {
            display: grid;
            gap: 0.4rem;
            color: var(--gold-soft);
            font-size: 0.88rem;
            letter-spacing: 0.02em;
        }

        .alignment-form-field input,
        .alignment-form-field select,
        .alignment-form-field textarea {
            width: 100%;
            border: 1px solid rgba(197, 169, 94, 0.24);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.04);
            color: #fff;
            font: inherit;
            padding: 0.72rem 0.8rem;
        }

        .alignment-form-field textarea {
            resize: vertical;
            min-height: 96px;
        }

        .alignment-form-field input:-webkit-autofill,
        .alignment-form-field input:-webkit-autofill:hover,
        .alignment-form-field input:-webkit-autofill:focus,
        .alignment-form-field textarea:-webkit-autofill,
        .alignment-form-field textarea:-webkit-autofill:hover,
        .alignment-form-field textarea:-webkit-autofill:focus {
            -webkit-text-fill-color: #fff;
            box-shadow: 0 0 0 1000px #1a1a1a inset;
            caret-color: #fff;
            transition: background-color 9999s ease-in-out 0s;
        }

        .alignment-form-field select option {
            color: #e0e0e0;
            background: #1a1a1a;
        }

        .alignment-form-field select option[value=""] {
            color: rgba(255, 255, 255, 0.38);
        }

        .alignment-form-field input:focus-visible,
        .alignment-form-field select:focus-visible,
        .alignment-form-field textarea:focus-visible {
            outline: 2px solid rgba(197, 169, 94, 0.5);
            outline-offset: 1px;
            border-color: var(--gold);
        }

        .alignment-request-meta {
            color: var(--muted);
            font-size: 0.85rem;
            line-height: 1.5;
            padding: 0.25rem 0;
        }

        .alignment-form-status {
            border: 1px solid rgba(197, 169, 94, 0.3);
            border-radius: 12px;
            background: rgba(197, 169, 94, 0.08);
            color: var(--gold-soft);
            line-height: 1.5;
            margin-bottom: 1rem;
            padding: 0.85rem 0.95rem;
        }

        .alignment-form-success {
            position: relative;
            margin-top: 0.65rem;
            margin-bottom: 1rem;
            color: #f5e7c2;
            padding: 1.2rem 1rem 1rem;
        }

        .alignment-form-success p {
            margin: 0.6rem 0 1rem;
        }

        .alignment-success-close {
            position: absolute;
            top: 0.55rem;
            right: 0.55rem;
            width: 2rem;
            height: 2rem;
            border: 1px solid rgba(197, 169, 94, 0.28);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.04);
            color: var(--gold-soft);
            font-size: 1.1rem;
            line-height: 1;
            cursor: pointer;
        }

        .alignment-success-close:hover,
        .alignment-success-close:focus-visible {
            border-color: var(--gold);
            outline: none;
        }

        .alignment-modal-close {
            position: sticky;
            top: 0.65rem;
            margin-left: auto;
            margin-bottom: 0.35rem;
            z-index: 2;
            width: 2.5rem;
            height: 2.5rem;
            border: 1px solid rgba(197, 169, 94, 0.28);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.04);
            color: var(--gold-soft);
            font-size: 1.25rem;
            cursor: pointer;
        }

        .alignment-modal-close:hover,
        .alignment-modal-close:focus-visible {
            border-color: var(--gold);
            outline: none;
        }

        @media (max-width: 900px) {
            .door-grid {
                grid-template-columns: 1fr;
            }

            .door {
                height: 350px;
            }

            .alignment-request-radio-grid,
            .alignment-form-grid {
                grid-template-columns: 1fr;
            }

            .alignment-modal-panel {
                padding: 1.5rem;
            }
        }

        /* Editorial Layout */
        .editorial-row {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
            text-align: left !important;
        }

        @media (max-width: 800px) {
            .editorial-row {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .flip-card-front {
            background: var(--panel);
            border: 1px solid var(--border);
        }

        .flip-card-back {
            background: var(--panel-strong);
            border: 2px solid var(--gold-soft);
            transform: rotateY(180deg);
        }

        .flip-card-back ul {
            list-style: disc;
            display: grid;
            gap: 0.8rem;
            text-align: left;
            font-size: 1rem;
            padding-left: 1.5rem;
        }

        .contact-panel-link {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .contact-panel-link.contact-value {
            color: var(--gold-soft);
        }

        .contact-panel-link+.contact-panel-link {
            margin-top: 0.35rem;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .ghost-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 80%;
            opacity: 0.05;
            pointer-events: none;
            z-index: 1;
        }
