/* =============================================
       SPINFLUENCE — Version 1 Styles
       ============================================= */
    
    *, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    :root {
        --black: #0a0a0a;
        --dark: #111111;
        --dark-2: #1a1a1a;
        --dark-3: #222222;
        --gold: #c9a84c;
        --gold-light: #d4a843;
        --white: #ffffff;
        --grey-light: #f5f5f5;
        --grey: #999999;
        --grey-dark: #444444;
        --font-serif: 'Inter', -apple-system, sans-serif;
        --font-sans: 'Inter', -apple-system, sans-serif;
    }
    
    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }
    
    body {
        background: var(--black);
        color: var(--white);
        font-family: var(--font-sans);
        font-weight: 300;
        line-height: 1.7;
        overflow-x: hidden;
    }
    
    /* ---- NAVIGATION ---- */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 28px 60px;
        transition: all 0.4s ease;
    }
    
    .nav.scrolled {
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        padding: 18px 60px;
        border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    }
    
    .nav-logo {
        font-family: var(--font-sans);
        font-weight: 500;
        font-size: 0.85rem;
        letter-spacing: 0.3em;
        color: var(--white);
        text-decoration: none;
        display: flex;
        align-items: center;
    }
    
    .nav-links {
        display: flex;
        list-style: none;
        gap: 40px;
    }
    
    .nav-links a {
        font-size: 0.72rem;
        letter-spacing: 0.2em;
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .nav-links a:hover {
        color: var(--gold);
    }
    
    .nav-hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }
    
    .nav-hamburger span {
        display: block;
        width: 24px;
        height: 1px;
        background: var(--white);
        transition: all 0.3s;
    }
    
    /* ---- HERO ---- */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 700px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .hero-bg {
        position: absolute;
        inset: 0;
        background-image: url('images/hero-bg.png');
        background-size: cover;
        background-position: center top;
    }
    
    .hero-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            rgba(5, 5, 5, 0.55) 0%,
            rgba(5, 5, 5, 0.60) 50%,
            rgba(5, 5, 5, 0.75) 100%
        );
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 900px;
        padding: 0 40px;
    }
    
    .hero-tagline {
        font-size: 0.68rem;
        font-weight: 500;
        letter-spacing: 0.35em;
        color: var(--gold);
        margin-bottom: 28px;
    }
    
    .hero-title {
        font-family: var(--font-sans);
        font-size: clamp(3.8rem, 9.5vw, 8rem);
        font-weight: 800;
        line-height: 1.0;
        margin-bottom: 28px;
        letter-spacing: -0.02em;
    }
    
    .hero-title span {
        display: block;
        color: var(--white);
    }

    .hero-title-gold {
        color: var(--gold) !important;
    }
    
    .hero-sub {
        font-size: 1rem;
        font-weight: 400;
        color: rgba(255,255,255,0.75);
        max-width: 500px;
        margin: 0 auto 44px;
        line-height: 1.8;
    }
    
    .hero-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: rgba(255,255,255,0.85);
        text-decoration: none;
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 0.25em;
        transition: color 0.3s;
    }

    .hero-cta-chevron {
        font-size: 1.1rem;
        line-height: 1;
        color: var(--gold);
        display: inline-block;
        transition: transform 0.3s;
    }
    
    .hero-cta:hover {
        color: var(--gold);
    }

    .hero-cta:hover .hero-cta-chevron {
        transform: translateY(3px);
    }
    
    .hero-scroll-indicator {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-scroll-indicator span {
        display: block;
        width: 1px;
        height: 60px;
        background: linear-gradient(to bottom, transparent, var(--gold));
        margin: 0 auto;
        animation: scrollPulse 2s ease-in-out infinite;
    }
    
    @keyframes scrollPulse {
        0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
        50% { opacity: 1; transform: scaleY(1); }
    }
    
    /* ---- SECTION COMMON ---- */
    section {
        padding: 120px 60px;
    }
    
    .section-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 80px;
    }
    
    .section-label {
        font-size: 0.68rem;
        font-weight: 500;
        letter-spacing: 0.35em;
        color: var(--gold);
        margin-bottom: 20px;
    }
    
    .section-header h2 {
        font-family: var(--font-sans);
        font-size: clamp(2.2rem, 4vw, 3.5rem);
        font-weight: 400;
        margin-bottom: 24px;
        line-height: 1.2;
    }

    /* Sans-serif heading variant used in Verticals/Three Pillars */
    .section-heading-sans {
        font-family: var(--font-sans) !important;
        font-weight: 400 !important;
        letter-spacing: -0.01em;
    }
    
    .section-intro {
        color: rgba(255,255,255,0.72);
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.8;
    }
    
    /* ---- PHILOSOPHY ---- */
    .philosophy {
        background: var(--dark);
    }
    
    .philosophy-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2px;
        max-width: 1400px;
        margin: 0 auto 80px;
    }
    
    .philosophy-card {
        background: var(--dark-2);
        padding: 48px 36px;
        transition: background 0.3s;
    }
    
    .philosophy-card:hover {
        background: var(--dark-3);
    }
    
    .philosophy-icon {
        font-size: 1.5rem;
        color: var(--gold);
        margin-bottom: 24px;
    }
    
    .philosophy-card h3 {
        font-family: var(--font-sans);
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    .philosophy-card p {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.72);
        line-height: 1.8;
    }
    
    .philosophy-quote {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
        padding: 60px 40px;
        border-top: 1px solid rgba(201, 169, 110, 0.2);
    }
    
    .philosophy-quote p {
        font-family: var(--font-sans);
        font-size: 1.3rem;
        font-weight: 300;
        color: rgba(255,255,255,0.80);
        line-height: 1.9;
        font-style: italic;
    }
    
    /* ---- VERTICALS ---- */
    .verticals {
        background: var(--black);
    }
    
    .verticals-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
        max-width: 1400px;
        margin: 0 auto 80px;
    }
    
    .vertical-card {
        background: var(--dark-2);
        padding: 56px 44px;
        position: relative;
        transition: transform 0.3s;
    }
    
    .vertical-card:hover {
        transform: translateY(-4px);
    }
    
    .vertical-card--featured {
        background: var(--dark-3);
        border-top: 2px solid var(--gold);
    }
    
    .vertical-number {
        display: none;
    }

    /* Icon + label row */
    .vertical-icon-label {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .vertical-icon-box {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border: 1px solid rgba(201, 168, 76, 0.5);
        border-radius: 6px;
        flex-shrink: 0;
    }

    .vertical-label {
        font-size: 0.68rem;
        font-weight: 600;
        letter-spacing: 0.2em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 0;
    }
    
    .vertical-card h3 {
        font-family: var(--font-sans);
        font-size: 1.65rem;
        font-weight: 700;
        margin-bottom: 16px;
        line-height: 1.25;
        color: var(--white);
    }
    
    .vertical-card p {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.72);
        line-height: 1.8;
        margin-bottom: 28px;
    }
    
    .vertical-features {
        list-style: none;
        margin-bottom: 36px;
    }
    
    .vertical-features li {
        font-size: 0.85rem;
        font-weight: 400;
        color: rgba(255,255,255,0.68);
        padding: 6px 0;
        padding-left: 16px;
        position: relative;
        border-bottom: none;
    }
    
    .vertical-features li::before {
        content: '\2022';
        position: absolute;
        left: 0;
        color: rgba(201,168,76,0.7);
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .vertical-link {
        font-size: 0.68rem;
        letter-spacing: 0.2em;
        color: var(--gold);
        text-decoration: none;
        transition: opacity 0.3s;
    }
    
    .vertical-link:hover {
        opacity: 0.7;
    }
    
    /* ---- STATS ---- */
    .stats-bar {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px;
        margin: 0 auto;
        border: 1px solid rgba(201, 169, 110, 0.15);
    }
    
    .stat-item {
        padding: 48px 36px;
        text-align: center;
        border-right: 1px solid rgba(201, 169, 110, 0.15);
    }
    
    .stat-item:last-child {
        border-right: none;
    }
    
    .stat-number {
        font-family: var(--font-serif);
        font-size: 3.5rem;
        font-weight: 300;
        color: var(--gold);
        line-height: 1;
    }
    
    .stat-suffix {
        font-family: var(--font-serif);
        font-size: 2rem;
        color: var(--gold);
    }
    
    .stat-item p {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
        color: rgba(255,255,255,0.6);
        margin-top: 12px;
    }
    
    /* ---- GALLERY ---- */
    .gallery {
        background: var(--dark);
        padding-bottom: 0;
    }
    
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 340px);
        gap: 2px;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .gallery-item {
        background: var(--dark-3);
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }
    
    .gallery-item--large {
        grid-row: span 2;
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    }
    
    .gallery-item--wide {
        grid-column: span 2;
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    }

    /* 6-item equal grid: all items are standard size */
    .gallery-grid .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
        grid-row: span 1;
        grid-column: span 1;
    }
    
    .gallery-item::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(201,169,110,0.05) 0%, transparent 60%);
        transition: opacity 0.4s;
    }
    
    .gallery-item:hover::before {
        opacity: 0;
    }
    
    .gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 28px 32px;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        transform: translateY(10px);
        opacity: 0.8;
        transition: all 0.3s;
    }
    
    .gallery-item:hover .gallery-overlay {
        transform: translateY(0);
        opacity: 1;
    }
    
    .gallery-location {
        font-size: 0.68rem;
        letter-spacing: 0.2em;
        color: var(--gold);
        margin-bottom: 6px;
        text-shadow: 0 1px 4px rgba(0,0,0,0.6);
    }
    
    .gallery-overlay h4 {
        font-family: var(--font-serif);
        font-size: 1.3rem;
        font-weight: 400;
    }
    
    /* ---- TESTIMONIAL ---- */
    .testimonial {
        background: var(--dark);
        padding: 100px 60px;
        border-top: 1px solid rgba(201,169,110,0.1);
    }
    
    .testimonial-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        position: relative;
    }
    
    .testimonial-quote-mark {
        font-family: var(--font-serif);
        font-size: 8rem;
        color: var(--gold);
        opacity: 0.3;
        line-height: 0.5;
        margin-bottom: 20px;
    }
    
    blockquote {
        font-family: var(--font-serif);
        font-size: 1.6rem;
        font-weight: 300;
        font-style: italic;
        line-height: 1.7;
        color: rgba(255,255,255,0.85);
        margin-bottom: 36px;
    }
    
    cite {
        font-style: normal;
    }
    
    cite strong {
        display: block;
        font-size: 0.75rem;
        letter-spacing: 0.25em;
        color: var(--gold);
        margin-bottom: 6px;
    }
    
    cite span {
        font-size: 0.68rem;
        letter-spacing: 0.15em;
        color: rgba(255,255,255,0.58);
    }
    
    /* ---- CONNECT ---- */
    .connect {
        background: var(--black);
    }
    
    .connect-inner {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .connect-grid {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 80px;
        align-items: start;
    }
    
    .connect-detail {
        margin-bottom: 40px;
    }
    
    .connect-label {
        font-size: 0.65rem;
        letter-spacing: 0.25em;
        color: var(--gold);
        margin-bottom: 8px;
    }
    
    .connect-info a, .connect-info p {
        font-size: 1rem;
        color: rgba(255,255,255,0.85);
        text-decoration: none;
    }
    
    .connect-info a:hover {
        color: var(--gold);
    }
    
    .connect-form {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .connect-form input,
    .connect-form select,
    .connect-form textarea {
        background: var(--dark-2);
        border: 1px solid rgba(255,255,255,0.08);
        color: var(--white);
        padding: 16px 20px;
        font-family: var(--font-sans);
        font-size: 0.8rem;
        letter-spacing: 0.1em;
        outline: none;
        transition: border-color 0.3s;
        width: 100%;
    }
    
    .connect-form select option {
        background: var(--dark-2);
    }
    
    .connect-form input:focus,
    .connect-form select:focus,
    .connect-form textarea:focus {
        border-color: var(--gold);
    }
    
    .connect-form textarea {
        resize: vertical;
        min-height: 120px;
    }
    
    .form-submit {
        background: transparent;
        border: 1px solid var(--gold);
        color: var(--gold);
        padding: 18px 40px;
        font-family: var(--font-sans);
        font-size: 0.72rem;
        letter-spacing: 0.25em;
        cursor: pointer;
        transition: all 0.3s;
        align-self: flex-start;
    }
    
    .form-submit:hover {
        background: var(--gold);
        color: var(--black);
    }
    
    /* ---- FOOTER ---- */
    .footer {
        background: var(--dark);
        border-top: 1px solid rgba(201,169,110,0.1);
    }
    
    .footer-inner {
        max-width: 1400px;
        margin: 0 auto;
        padding: 80px 60px 60px;
        display: grid;
        grid-template-columns: 2fr 3fr;
        gap: 80px;
    }
    
    .footer-logo {
        font-size: 1.1rem;
        letter-spacing: 0.3em;
        font-weight: 600;
        margin-bottom: 20px;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.62);
        line-height: 1.8;
        max-width: 300px;
        margin-bottom: 16px;
    }
    
    .footer-newsletter-label {
        font-size: 0.65rem !important;
        letter-spacing: 0.2em;
        color: var(--gold) !important;
        margin-top: 24px;
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .footer-col h5 {
        font-size: 0.65rem;
        letter-spacing: 0.25em;
        color: var(--gold);
        margin-bottom: 20px;
    }
    
    .footer-col a {
        display: block;
        font-size: 0.85rem;
        color: rgba(255,255,255,0.65);
        text-decoration: none;
        margin-bottom: 10px;
        transition: color 0.3s;
    }
    
    .footer-col a:hover {
        color: var(--white);
    }
    
    .footer-bottom {
        max-width: 1400px;
        margin: 0 auto;
        padding: 24px 60px;
        border-top: 1px solid rgba(255,255,255,0.06);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
        color: rgba(255,255,255,0.5);
        letter-spacing: 0.05em;
    }
    
    /* ---- ARTICLE / JOURNAL PAGES ---- */
    .article-hero {
        position: relative;
        height: 70vh;
        min-height: 480px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        overflow: hidden;
        background: #0a0a0a;
    }

    .article-hero-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        opacity: 0.5;
    }

    .article-hero-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.85) 100%);
    }

    .article-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0 2rem 4rem;
        max-width: 860px;
    }

    .article-tag {
        font-family: var(--font-sans);
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.25em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 1.2rem;
    }

    .article-hero-content h1 {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(2rem, 5vw, 4rem);
        font-weight: 300;
        color: #fff;
        letter-spacing: 0.02em;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .article-meta {
        font-family: var(--font-sans);
        font-size: 0.75rem;
        color: rgba(255,255,255,0.6);
        letter-spacing: 0.15em;
    }

    .article-body {
        max-width: 740px;
        margin: 0 auto;
        padding: 5rem 2rem 6rem;
    }

    .article-body p {
        font-family: var(--font-sans);
        font-size: 1.05rem;
        color: rgba(255,255,255,0.82);
        line-height: 1.9;
        margin-bottom: 1.8rem;
        font-weight: 300;
    }

    .article-body h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2rem;
        font-weight: 400;
        color: #f5f0e8;
        margin: 3rem 0 1.2rem;
        line-height: 1.3;
    }

    .article-body h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.5rem;
        font-weight: 400;
        color: var(--gold);
        margin: 2.5rem 0 1rem;
    }

    .article-pullquote {
        border-left: 2px solid var(--gold);
        padding: 1.5rem 0 1.5rem 2.5rem;
        margin: 3rem 0;
    }

    .article-pullquote p {
        font-family: 'Cormorant Garamond', serif !important;
        font-size: 1.6rem !important;
        font-weight: 300 !important;
        font-style: italic;
        color: rgba(255,255,255,0.90) !important;
        line-height: 1.6 !important;
        margin: 0 !important;
    }

    .article-divider {
        border: none;
        border-top: 1px solid rgba(201,163,88,0.2);
        margin: 3.5rem 0;
    }

    .article-published {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.5);
        letter-spacing: 0.05em;
    }

    .article-footer-nav {
        max-width: 740px;
        margin: 0 auto;
        padding: 3rem 2rem 5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid rgba(255,255,255,0.1);
        gap: 2rem;
        flex-wrap: wrap;
    }

    .article-footer-nav a {
        font-family: var(--font-sans);
        font-size: 0.72rem;
        letter-spacing: 0.2em;
        color: var(--gold);
        text-decoration: none;
        transition: opacity 0.3s;
    }

    .article-footer-nav a:hover { opacity: 0.7; }

    .article-footer-nav .nav-next {
        text-align: right;
        flex: 1;
    }

    .article-footer-nav .nav-next span {
        display: block;
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.2rem;
        color: #f5f0e8;
        margin-top: 0.4rem;
        font-weight: 300;
    }

    /* Design-principles card (game-room article) */
    .design-principles {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 2.5rem 0 3rem;
    }

    .design-principle-card {
        background: #1a1a1a;
        border: 1px solid rgba(201,163,88,0.2);
        padding: 1.8rem;
    }

    .design-principle-card h4 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.2rem;
        font-weight: 400;
        color: var(--gold);
        margin-bottom: 0.7rem;
    }

    .design-principle-card p {
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
        margin: 0 !important;
        color: rgba(255,255,255,0.75) !important;
    }

    /* Concept grid (billiards geometry article) */
    .concept-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: rgba(201,163,88,0.15);
        margin: 2.5rem 0 3rem;
    }

    .concept-item {
        background: #1a1a1a;
        padding: 1.8rem 1.5rem;
        text-align: center;
    }

    .concept-symbol {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.5rem;
        color: var(--gold);
        line-height: 1;
        margin-bottom: 0.8rem;
    }

    .concept-item h4 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.1rem;
        color: #f5f0e8;
        margin-bottom: 0.5rem;
        font-weight: 400;
    }

    .concept-item p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        margin: 0 !important;
        color: rgba(255,255,255,0.68) !important;
    }

    /* Stat callouts (shuffleboard article) */
    .stat-callouts {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: rgba(201,163,88,0.15);
        margin: 2.5rem 0 3rem;
        text-align: center;
    }

    .stat-callout {
        background: #1a1a1a;
        padding: 2rem 1rem;
    }

    .stat-callout-num {
        font-family: 'Cormorant Garamond', serif;
        font-size: 3rem;
        font-weight: 300;
        color: var(--gold);
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .stat-callout p {
        font-size: 0.82rem !important;
        line-height: 1.5 !important;
        margin: 0 !important;
        letter-spacing: 0.05em;
        color: rgba(255,255,255,0.72) !important;
    }

    /* Feature list (rackup article) */
    .feature-list {
        list-style: none;
        margin: 0 0 2.5rem;
        padding: 0;
        border: 1px solid rgba(201,163,88,0.2);
    }

    .feature-list li {
        padding: 1.2rem 1.8rem;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        font-family: var(--font-sans);
        font-size: 0.92rem;
        color: rgba(255,255,255,0.78);
        line-height: 1.6;
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

    .feature-list li:last-child { border-bottom: none; }

    .feature-list li::before {
        content: '—';
        color: var(--gold);
        font-size: 0.8rem;
        flex-shrink: 0;
        margin-top: 0.1rem;
    }

    /* RackUp CTA block (rackup article) */
    .rackup-cta-block {
        background: #1a1a1a;
        border: 1px solid rgba(201,163,88,0.25);
        padding: 2.5rem;
        text-align: center;
        margin: 3rem 0;
    }

    .rackup-cta-block h4 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.8rem;
        font-weight: 300;
        color: #f5f0e8;
        margin-bottom: 0.8rem;
    }

    .rackup-cta-block p {
        color: rgba(255,255,255,0.68) !important;
        font-size: 0.92rem !important;
        margin-bottom: 1.8rem !important;
    }

    .rackup-cta-link {
        display: inline-block;
        padding: 14px 36px;
        border: 1px solid var(--gold);
        color: var(--gold);
        font-family: var(--font-sans);
        font-size: 0.72rem;
        letter-spacing: 0.2em;
        text-decoration: none;
        transition: all 0.3s;
    }

    .rackup-cta-link:hover {
        background: var(--gold);
        color: var(--black);
    }

    .nav-links a.active { color: var(--gold); }

    @media (max-width: 600px) {
        .design-principles { grid-template-columns: 1fr; }
        .concept-grid { grid-template-columns: 1fr; }
        .stat-callouts { grid-template-columns: 1fr; }
    }

    /* ---- RESPONSIVE ---- */
    @media (max-width: 1100px) {
        .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
        .verticals-grid { grid-template-columns: 1fr; }
        .stats-bar { grid-template-columns: repeat(2, 1fr); }
        .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    }
    
    @media (max-width: 768px) {
        section { padding: 80px 24px; }
        .nav { padding: 20px 24px; }
        .nav.scrolled { padding: 16px 24px; }
        .nav-links { display: none; }
        .nav-hamburger { display: flex; }
        .philosophy-grid { grid-template-columns: 1fr; }
        .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
        .gallery-grid .gallery-item { min-height: 280px; }
        .gallery-item--large, .gallery-item--wide { grid-column: span 1; grid-row: span 1; }
        .connect-grid { grid-template-columns: 1fr; gap: 40px; }
        .form-row { grid-template-columns: 1fr; }
        .stats-bar { grid-template-columns: repeat(2, 1fr); }
        .footer-inner { padding: 60px 24px 40px; }
        .footer-links { grid-template-columns: repeat(2, 1fr); }
        .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 10px; }
    }

    /* ================================================================
       TAILWIND OVERRIDE — forces dark theme regardless of load order
       index-Dc0L5ADy.css sets :root { --background: 210 40% 98% }
       which makes body background near-white. We override it here.
    ================================================================ */
    :root {
        --background: 0 0% 4% !important;       /* #0a0a0a dark background */
        --foreground: 0 0% 96% !important;      /* near-white text */
    }

    html,
    body {
        background-color: #0a0a0a !important;
        color: #f5f0e8 !important;
    }

    /* Journal section — white background was showing here */
    .journal-section {
        background-color: #0a0a0a;
    }

    /* Section headers on dark background */
    .journal-section .section-header h2,
    .journal-section .section-label,
    .journal-section .section-intro {
        color: inherit;
    }
    