/* ============================================
   ZYBORN ART - Complete Stylesheet
   Version: 4.0 (Eleventy Compatible)
   ============================================ */

/* ============================================
   CSS VARIABLES (Design System Tokens)
   ============================================ */
:root {
    /* Core Colors */
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-orange: #F6931B;
    
    /* Steel Grays */
    --color-steel-100: #F2F2F2;
    --color-steel-300: #BDBDBD;
    --color-steel-600: #6F6F6F;
    --color-steel-900: #2A2A2A;
    
    /* Spacing */
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-6: 24px;
    --space-8: 32px;
    --space-12: 48px;
    --space-16: 64px;
    
    /* Typography */
    --font-primary: 'Space Grotesk', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    
    /* Type Scale */
    --h1: clamp(40px, 8vw, 96px);
    --h2: clamp(28px, 5vw, 56px);
    --h3: 24px;
    --body: 16px;
    --meta: 12px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--body);
    line-height: 1.6;
    color: var(--color-white);
    background: var(--color-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1 {
    font-size: var(--h1);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--h2);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--h3);
    font-weight: 500;
    line-height: 1.3;
}

.meta {
    font-family: var(--font-mono);
    font-size: var(--meta);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    body {
        font-size: 18px;
    }
    .meta {
        font-size: 14px;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-orange);
    color: var(--color-black);
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 16px 32px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.btn-primary:hover {
    filter: brightness(1.08);
    transform: scale(1.02);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--color-white);
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 16px 32px;
    border: 1px solid var(--color-steel-600);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--color-white);
}

.btn-secondary.btn-dark {
    color: var(--color-black);
    border-color: var(--color-steel-600);
}

.btn-secondary.btn-dark:hover {
    border-color: var(--color-black);
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 80px;
    }
}

/* ============================================
   SECTION 1: NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 64px;
    background: transparent;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .nav {
        height: 72px;
    }
}

@media (min-width: 1024px) {
    .nav {
        height: 80px;
    }
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo img {
    height: 32px;
    width: auto;
}

@media (min-width: 1024px) {
    .nav-logo img {
        height: 40px;
    }
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 32px;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-menu a {
    font-family: var(--font-mono);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-white);
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--color-orange);
}

/* Auction Button in Nav */
.nav-auction {
    background: var(--color-orange) !important;
    color: var(--color-black) !important;
    padding: 8px 16px !important;
    border-radius: 2px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.nav-auction:hover {
    color: var(--color-black) !important;
    filter: brightness(1.1);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(246, 147, 27, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(246, 147, 27, 0); }
}

.nav-cta {
    display: none;
}

@media (min-width: 1024px) {
    .nav-cta {
        display: block;
    }
    .nav-cta .btn-primary {
        padding: 12px 24px;
        font-size: 12px;
    }
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-black);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-overlay a {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-white);
    transition: color 0.2s ease;
}

.nav-overlay a:hover {
    color: var(--color-orange);
}

/* ============================================
   SECTION 2: HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-black);
    padding-top: 80px;
    padding-bottom: 40px;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .hero-inner {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
}

.hero-content {
    flex: 1;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .hero-content {
        flex: 0 0 55%;
        max-width: 55%;
    }
}

.hero-label {
    color: var(--color-orange);
    margin-bottom: var(--space-4);
    opacity: 0;
    animation: fadeInUp 0.4s ease forwards;
}

.hero-title {
    color: var(--color-white);
    margin-bottom: var(--space-6);
    opacity: 0;
    animation: fadeInUp 0.4s ease forwards 0.1s;
}

.hero-subtitle {
    color: var(--color-steel-300);
    max-width: 540px;
    margin-bottom: var(--space-8);
    opacity: 0;
    animation: fadeInUp 0.4s ease forwards 0.2s;
}

/* Hero Form */
.hero-form {
    margin-bottom: var(--space-6);
    opacity: 0;
    animation: fadeInUp 0.4s ease forwards 0.3s;
}

.hero-form form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .hero-form form {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.form-input {
    flex: 1;
    min-width: 200px;
    padding: 16px 20px;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--color-white);
    background: var(--color-steel-900);
    border: 1px solid var(--color-steel-600);
    border-radius: 2px;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-orange);
}

.form-input::placeholder {
    color: var(--color-steel-600);
}

.form-select {
    flex: 1;
    min-width: 200px;
    padding: 16px 20px;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--color-white);
    background: var(--color-steel-900);
    border: 1px solid var(--color-steel-600);
    border-radius: 2px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236F6F6F' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-select:focus {
    outline: none;
    border-color: var(--color-orange);
}

.hero-form .btn-primary {
    width: 100%;
}

@media (min-width: 768px) {
    .hero-form .btn-primary {
        width: auto;
    }
}

.hero-microcopy {
    color: var(--color-steel-300);
    margin-top: var(--space-3);
}

/* Hero Social */
.hero-social {
    display: flex;
    gap: var(--space-4);
    opacity: 0;
    animation: fadeInUp 0.4s ease forwards 0.35s;
}

.hero-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-steel-600);
    border-radius: 2px;
    color: var(--color-white);
    transition: all 0.2s ease;
}

.hero-social a:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
}

.hero-social svg {
    width: 18px;
    height: 18px;
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: slideInRight 0.4s ease forwards 0.4s;
    min-height: 300px;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-image {
        flex: 0 0 45%;
        max-width: 45%;
        min-height: auto;
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block !important;
    visibility: visible !important;
}

/* Mobile-specific hero layout */
@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding-top: 70px;
        padding-bottom: 24px;
    }
    
    .hero-inner {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .hero-content {
        display: contents;
    }
    
    .hero-label {
        order: 1;
        margin-bottom: 8px;
    }
    
    .hero-title {
        order: 2;
        margin-bottom: 12px;
        font-size: clamp(28px, 7vw, 40px);
    }
    
    .hero-image {
        order: 3;
        min-height: 180px;
        max-height: 35vh;
        padding: 0;
        margin: 8px 0 12px 0;
    }
    
    .hero-image img {
        max-height: 35vh;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        order: 4;
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 1.5;
    }
    
    .hero-form {
        order: 5;
        margin-bottom: 16px;
    }
    
    .hero-social {
        order: 6;
    }
}

/* ============================================
   SECTION 3: CURATOR
   ============================================ */
.curator {
    background: var(--color-steel-100);
    padding: 80px 0;
}

.curator-card {
    background: var(--color-white);
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px;
    border-radius: 2px;
}

@media (min-width: 768px) {
    .curator-card {
        padding: 60px;
    }
}

.curator-label {
    color: var(--color-steel-600);
    margin-bottom: var(--space-4);
}

.curator-name {
    color: var(--color-black);
    margin-bottom: var(--space-3);
}

.curator-title {
    color: var(--color-black);
    margin-bottom: var(--space-8);
}

.curator-text {
    color: var(--color-steel-900);
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.curator-text:last-of-type {
    margin-bottom: var(--space-8);
}

/* ============================================
   SECTION 4: ARTWORK DETAILS
   ============================================ */
.artwork {
    background: var(--color-steel-900);
    padding: 80px 0;
}

.artwork-header {
    margin-bottom: var(--space-12);
}

.artwork-label {
    color: var(--color-orange);
    margin-bottom: var(--space-4);
}

.artwork-title {
    color: var(--color-white);
}

.artwork-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .artwork-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.artwork-specs {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-steel-600);
}

.spec-label {
    color: var(--color-steel-300);
}

.spec-value {
    color: var(--color-white);
    font-weight: 500;
    text-align: right;
}

.artwork-inclusions h3 {
    color: var(--color-white);
    margin-bottom: var(--space-6);
}

.inclusion-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.inclusion-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    color: var(--color-steel-300);
}

.inclusion-list li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--color-orange);
    margin-top: 2px;
}

/* ============================================
   SECTION 5: EXHIBITION
   ============================================ */
.exhibition {
    background: var(--color-black);
    padding: 80px 0;
}

.exhibition-card {
    background: var(--color-steel-900);
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px;
    border-radius: 2px;
}

@media (min-width: 768px) {
    .exhibition-card {
        padding: 60px;
    }
}

.exhibition-label {
    color: var(--color-orange);
    margin-bottom: var(--space-4);
}

.exhibition-title {
    color: var(--color-white);
    margin-bottom: var(--space-6);
}

.exhibition-desc {
    color: var(--color-steel-300);
    margin-bottom: var(--space-12);
    max-width: 700px;
}

.exhibition-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
    .exhibition-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-item {
    display: flex;
    gap: var(--space-4);
}

.info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-black);
    border-radius: 2px;
}

.info-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-orange);
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    color: var(--color-steel-600);
    margin-bottom: 4px;
}

.info-value {
    color: var(--color-white);
    font-weight: 500;
}

.info-sub {
    color: var(--color-steel-300);
    font-size: 14px;
}

.exhibition-note {
    color: var(--color-steel-300);
    text-align: left;
}

/* ============================================
   SECTION 6: AUCTION
   ============================================ */
.auction {
    background: var(--color-steel-100);
    padding: 80px 0;
}

.auction-inner {
    max-width: 900px;
    margin: 0 auto;
}

.auction-label {
    color: var(--color-steel-600);
    margin-bottom: var(--space-4);
}

.auction-title {
    color: var(--color-black);
    margin-bottom: var(--space-6);
}

.auction-desc {
    color: var(--color-steel-900);
    margin-bottom: var(--space-12);
    max-width: 700px;
}

.auction-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: var(--space-12);
    padding: 32px;
    background: var(--color-white);
    border-radius: 2px;
}

@media (min-width: 768px) {
    .auction-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

.auction-item {
    text-align: left;
}

.auction-item-label {
    color: var(--color-steel-600);
    margin-bottom: var(--space-2);
}

.auction-item-value {
    color: var(--color-black);
    font-size: 28px;
    font-weight: 600;
}

.auction-item-sub {
    color: var(--color-steel-600);
    margin-top: 4px;
}

.auction-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
}

.auction-note {
    color: var(--color-steel-600);
}

/* ============================================
   SECTION 7: EMAIL CAPTURE
   ============================================ */
.email-capture {
    background: var(--color-black);
    padding: 80px 0;
}

.email-capture-card {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--color-steel-900);
    border-radius: 2px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .email-capture-card {
        flex-direction: row;
    }
}

.email-left {
    background: var(--color-orange);
    padding: 40px 24px;
    color: var(--color-black);
}

@media (min-width: 768px) {
    .email-left {
        flex: 0 0 45%;
        padding: 60px 40px;
    }
}

.email-left-date {
    font-family: var(--font-mono);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-2);
}

.email-left-headline {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: var(--space-6);
}

.email-left-text {
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.email-left-signin {
    font-size: 14px;
}

.email-left-signin a {
    text-decoration: underline;
    font-weight: 500;
}

.email-right {
    padding: 40px 24px;
}

@media (min-width: 768px) {
    .email-right {
        flex: 0 0 55%;
        padding: 60px 40px;
    }
}

.email-right h2 {
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.email-right-subtitle {
    color: var(--color-steel-300);
    margin-bottom: var(--space-8);
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.checkbox-group-label {
    color: var(--color-white);
    font-size: 14px;
    margin-bottom: var(--space-2);
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    cursor: pointer;
}

.checkbox-item input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-orange);
}

.checkbox-item span {
    color: var(--color-steel-300);
    font-size: 14px;
}

.email-privacy {
    color: var(--color-steel-300);
    margin-top: var(--space-4);
}

.email-privacy a {
    text-decoration: underline;
}

/* ============================================
   SECTION 8: CHARITABLE IMPACT
   ============================================ */
.charity {
    background: var(--color-steel-100);
    padding: 80px 0;
}

.charity-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.charity-label {
    color: var(--color-steel-600);
    margin-bottom: var(--space-4);
}

.charity-title {
    color: var(--color-black);
    margin-bottom: var(--space-8);
    max-width: 800px;
}

.charity-text {
    color: var(--color-steel-900);
    line-height: 1.7;
    max-width: 800px;
}

.charity-text p {
    margin-bottom: var(--space-6);
}

.charity-text p:last-child {
    margin-bottom: 0;
}

/* ============================================
   SECTION 9: THANK YOU
   ============================================ */
.thanks {
    background: var(--color-white);
    padding: 64px 0;
    text-align: center;
}

.thanks p {
    color: var(--color-steel-900);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SECTION 10: FOOTER
   ============================================ */
.footer {
    background: var(--color-black);
    padding: 80px 0 40px;
}

.footer-divider {
    height: 1px;
    background: var(--color-steel-600);
    margin-bottom: var(--space-12);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-6);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-col a {
    color: var(--color-steel-300);
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-steel-600);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-copyright {
    color: var(--color-steel-300);
}

.footer-legal {
    display: flex;
    gap: var(--space-4);
}

.footer-legal a {
    color: var(--color-steel-300);
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--color-white);
}

.footer-legal span {
    color: var(--color-steel-300);
    font-size: 14px;
}

/* ============================================
   MODAL STYLES
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-white);
    max-width: 800px;
    max-height: 90vh;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-steel-300);
    background: var(--color-steel-100);
}

.modal-header h2 {
    color: var(--color-black);
    font-size: 20px;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-steel-600);
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--color-black);
}

.modal-close svg {
    width: 24px;
    height: 24px;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    color: var(--color-black);
    line-height: 1.7;
}

.modal-body h1 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--color-black);
}

.modal-body h2 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--color-black);
}

.modal-body p {
    margin-bottom: 16px;
    color: var(--color-steel-900);
}

.modal-body ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.modal-body li {
    margin-bottom: 8px;
    color: var(--color-steel-900);
}

.modal-body strong {
    color: var(--color-black);
}

.modal-body hr {
    border: none;
    border-top: 1px solid var(--color-steel-300);
    margin: 24px 0;
}

.modal-body em {
    font-style: italic;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   FOCUS STATES (Accessibility)
   ============================================ */
*:focus-visible {
    outline: 2px solid var(--color-orange);
    outline-offset: 2px;
}

/* ============================================
   FORM STATES
   ============================================ */
.form-success {
    display: none;
    padding: 20px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4CAF50;
    border-radius: 2px;
    color: #4CAF50;
    text-align: center;
}

.form-success.visible {
    display: block;
}

.form-error {
    display: none;
    padding: 12px;
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid #F44336;
    border-radius: 2px;
    color: #F44336;
    font-size: 14px;
}

.form-error.visible {
    display: block;
}

/* ============================================
   DYNAMIC SECTION STYLES
   Added for Phase B: Dynamic Sections
   ============================================ */

/* --- Generic Section Utilities --- */
.section-title {
    color: var(--color-white);
    font-size: var(--h2);
    margin-bottom: var(--space-6);
}

.section-subtitle {
    color: var(--color-steel-300);
    margin-bottom: var(--space-8);
    max-width: 700px;
}

/* Light backgrounds override */
.section-gallery,
.section-downloads,
.section-stats.stats--default,
.section-contact,
.section-key-facts {
    background: var(--color-steel-100);
    padding: 80px 0;
}

.section-gallery .section-title,
.section-downloads .section-title,
.section-stats.stats--default .section-title,
.section-contact .section-title,
.section-key-facts .section-title {
    color: var(--color-black);
}

.section-gallery .section-subtitle,
.section-downloads .section-subtitle,
.section-key-facts .section-subtitle {
    color: var(--color-steel-900);
}

/* --- GALLERY SECTION --- */
.gallery-grid {
    display: grid;
    gap: var(--space-6);
}

.gallery-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-grid.columns-3 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-grid.columns-4 {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .gallery-grid.columns-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .gallery-grid.columns-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background: var(--color-white);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.gallery-item figcaption {
    padding: var(--space-4);
    background: var(--color-white);
}

.gallery-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-orange);
    margin-bottom: 4px;
}

.gallery-caption {
    display: block;
    color: var(--color-steel-900);
    font-size: 14px;
}

/* --- DOWNLOADS SECTION --- */
.download-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    max-width: 800px;
}

.download-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-6);
    background: var(--color-white);
    border-radius: 2px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.download-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-steel-100);
    border-radius: 2px;
    color: var(--color-orange);
}

.download-icon svg {
    width: 24px;
    height: 24px;
}

.download-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.download-label {
    color: var(--color-black);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.download-label:hover {
    color: var(--color-orange);
}

.download-description {
    color: var(--color-steel-600);
    font-size: 14px;
}

.download-format {
    color: var(--color-steel-600);
    font-size: 12px;
}

/* --- STATS SECTION --- */
.section-stats {
    padding: 80px 0;
}

.section-stats.stats--dark {
    background: var(--color-steel-900);
}

.section-stats.stats--dark .section-title {
    color: var(--color-white);
}

.section-stats.stats--accent {
    background: var(--color-orange);
}

.section-stats.stats--accent .section-title,
.section-stats.stats--accent .stat-value,
.section-stats.stats--accent .stat-label {
    color: var(--color-black);
}

.stats-grid {
    display: grid;
    gap: var(--space-8);
    text-align: center;
}

.stats-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.stats-grid.columns-3 {
    grid-template-columns: repeat(2, 1fr);
}

.stats-grid.columns-4 {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .stats-grid.columns-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .stats-grid.columns-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.stat-value {
    font-size: clamp(36px, 8vw, 56px);
    font-weight: 700;
    color: var(--color-black);
    line-height: 1;
}

.section-stats.stats--dark .stat-value {
    color: var(--color-orange);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-steel-600);
}

.section-stats.stats--dark .stat-label {
    color: var(--color-steel-300);
}

/* --- SPACER --- */
.spacer {
    display: block;
}

.spacer--small {
    height: 32px;
}

.spacer--medium {
    height: 64px;
}

.spacer--large {
    height: 96px;
}

.spacer--xlarge {
    height: 128px;
}

@media (min-width: 768px) {
    .spacer--small {
        height: 48px;
    }
    .spacer--medium {
        height: 80px;
    }
    .spacer--large {
        height: 120px;
    }
    .spacer--xlarge {
        height: 160px;
    }
}

/* --- VIDEO SECTION --- */
.section-video {
    background: var(--color-black);
    padding: 80px 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--color-steel-900);
    border-radius: 2px;
    overflow: hidden;
}

.video-wrapper.aspect-16-9 {
    padding-bottom: 56.25%;
}

.video-wrapper.aspect-4-3 {
    padding-bottom: 75%;
}

.video-wrapper.aspect-1-1 {
    padding-bottom: 100%;
}

.video-wrapper.aspect-9-16 {
    padding-bottom: 177.78%;
    max-width: 400px;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    margin-top: var(--space-4);
    text-align: center;
    color: var(--color-steel-300);
}

/* --- QUOTE SECTION --- */
.section-quote {
    padding: 80px 0;
    background: var(--color-black);
}

.quote-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--space-8);
}

.quote-text {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-white);
    margin-bottom: var(--space-8);
}

.quote-footer {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    align-items: center;
}

.quote-attribution {
    font-style: normal;
    font-weight: 600;
    color: var(--color-orange);
}

.quote-title {
    font-size: 14px;
    color: var(--color-steel-300);
}

.quote-link {
    display: inline-block;
    margin-top: var(--space-6);
    font-family: var(--font-mono);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-white);
    border-bottom: 1px solid var(--color-steel-600);
    transition: all 0.2s ease;
}

.quote-link:hover {
    color: var(--color-orange);
    border-color: var(--color-orange);
}

/* Quote Style Variants */
.section-quote.quote--large .quote-text {
    font-size: clamp(32px, 5vw, 48px);
}

.section-quote.quote--card {
    background: var(--color-steel-100);
}

.section-quote.quote--card .quote-block {
    background: var(--color-white);
    padding: var(--space-12);
    border-radius: 2px;
}

.section-quote.quote--card .quote-text {
    color: var(--color-black);
}

.section-quote.quote--minimal {
    padding: 40px 0;
}

.section-quote.quote--minimal .quote-text {
    font-size: clamp(20px, 3vw, 28px);
}

/* --- SPLIT SECTION --- */
.section-split {
    padding: 80px 0;
    background: var(--color-black);
}

.split-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
}

@media (min-width: 768px) {
    .split-container {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
    }
}

.split-content {
    color: var(--color-white);
}

.split-content h2 {
    color: var(--color-white);
    margin-bottom: var(--space-6);
}

.split-content p {
    color: var(--color-steel-300);
    margin-bottom: var(--space-4);
}

.split-content p:last-child {
    margin-bottom: 0;
}

.split-image {
    width: 100%;
    border-radius: 2px;
}

/* Image positioning */
.section-split.image-left .split-left {
    order: 2;
}

.section-split.image-left .split-right {
    order: 1;
}

@media (max-width: 767px) {
    .section-split.reverse-mobile .split-left {
        order: 2;
    }
    .section-split.reverse-mobile .split-right {
        order: 1;
    }
}

/* --- CONTACT SECTION --- */
.section-contact {
    text-align: center;
}

.section-contact .section-title {
    color: var(--color-black);
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    margin-bottom: var(--space-4);
}

.contact-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-steel-600);
    margin-bottom: var(--space-2);
}

.contact-value {
    display: block;
    font-size: 24px;
    font-weight: 500;
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-value:hover {
    color: var(--color-orange);
}

.contact-note {
    color: var(--color-steel-600);
    margin-top: var(--space-4);
    margin-bottom: var(--space-8);
}

/* --- KEY FACTS SECTION --- */
.facts-list {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.fact-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-steel-300);
}

.fact-label {
    color: var(--color-steel-600);
}

.fact-value {
    color: var(--color-black);
    font-weight: 500;
    text-align: right;
}

/* --- CUSTOM SECTION --- */
.section-custom {
    /* No default styling - allows full custom control */
}

/* --- TEXT BLOCK SECTION (Dark/Light Variants) --- */
.section-text-block {
    padding: 80px 0;
}

.section-text-block.text-block--default {
    background: var(--color-black);
}

.section-text-block.text-block--light {
    background: var(--color-steel-100);
}

.section-text-block.text-block--dark {
    background: var(--color-steel-900);
}

.section-text-block.text-block--accent {
    background: var(--color-orange);
}

.section-text-block.text-block--light .section-title,
.section-text-block.text-block--accent .section-title {
    color: var(--color-black);
}

.section-text-block.text-block--light .text-content p,
.section-text-block.text-block--accent .text-content p {
    color: var(--color-steel-900);
}

/* Max width variants */
.section-text-block.max-width--narrow .text-content {
    max-width: 600px;
}

.section-text-block.max-width--medium .text-content {
    max-width: 800px;
}

.section-text-block.max-width--wide .text-content {
    max-width: 1000px;
}

.section-text-block.max-width--full .text-content {
    max-width: none;
}

.text-content {
    max-width: 800px;
}

.text-content p {
    color: var(--color-steel-300);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.text-content p:last-child {
    margin-bottom: 0;
}

.text-content h2,
.text-content h3 {
    color: var(--color-white);
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
}

.section-text-block.text-block--light .text-content h2,
.section-text-block.text-block--light .text-content h3 {
    color: var(--color-black);
}

.text-content ul,
.text-content ol {
    color: var(--color-steel-300);
    margin-bottom: var(--space-6);
    padding-left: var(--space-6);
}

.text-content li {
    margin-bottom: var(--space-2);
}

.text-content a {
    color: var(--color-orange);
    text-decoration: underline;
}

.text-content a:hover {
    text-decoration: none;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-orange);
    margin-bottom: var(--space-4);
}

/* ============================================
   ARTICLE PAGE STYLES
   ============================================ */
.article-page {
    padding-top: 80px;
}

.article-hero {
    background: var(--color-black);
    padding: 80px 0 60px;
}

.article-type {
    color: var(--color-orange);
    margin-bottom: var(--space-4);
}

.article-title {
    color: var(--color-white);
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: var(--space-6);
    max-width: 900px;
}

.article-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    color: var(--color-steel-300);
    font-size: 14px;
}

.article-divider {
    color: var(--color-steel-600);
}

.article-featured-image {
    background: var(--color-steel-900);
}

.article-featured-image img {
    width: 100%;
    max-height: 60vh;
    object-fit: cover;
}

.article-featured-image figcaption {
    padding: var(--space-4) 0;
    color: var(--color-steel-300);
    font-size: 14px;
}

.article-body {
    background: var(--color-white);
    padding: 80px 0;
}

.article-content {
    max-width: 700px;
}

.article-content p {
    color: var(--color-steel-900);
    line-height: 1.8;
    margin-bottom: var(--space-6);
    font-size: 18px;
}

.article-content p:last-child {
    margin-bottom: 0;
}

.article-content em {
    font-style: italic;
}

.article-content strong {
    font-weight: 600;
}

.article-pull-quote {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-black);
    border-left: 4px solid var(--color-orange);
    padding-left: var(--space-6);
    margin: var(--space-8) 0 var(--space-12);
}

.curator-bio {
    margin-top: var(--space-16);
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-steel-300);
    max-width: 700px;
}

.curator-bio h3 {
    color: var(--color-black);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.curator-name {
    color: var(--color-black);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.curator-title {
    color: var(--color-steel-600);
    margin-bottom: var(--space-4);
}

.curator-links {
    display: flex;
    gap: var(--space-4);
}

.curator-links a {
    color: var(--color-orange);
    font-size: 14px;
    text-decoration: underline;
}

.curator-links a:hover {
    text-decoration: none;
}

.article-cta {
    background: var(--color-steel-100);
    padding: 60px 0;
    text-align: center;
}

/* ============================================
   PRESS PAGE STYLES
   ============================================ */
.press-page {
    padding-top: 80px;
}

.press-hero {
    background: var(--color-black);
    padding: 80px 0 60px;
}

.press-label {
    color: var(--color-orange);
    margin-bottom: var(--space-4);
}

.press-title {
    color: var(--color-white);
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: var(--space-6);
}

.press-subtitle {
    color: var(--color-steel-300);
    max-width: 700px;
    line-height: 1.6;
}

.press-cta {
    background: var(--color-black);
    padding: 60px 0;
    text-align: center;
}

/* ============================================
   FOOTER SUBSCRIBE SECTION
   Pre-footer email subscription with Turnstile
   ============================================ */
.footer-subscribe {
    background: #0a0a0a;
    padding: 3rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-subscribe__container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-subscribe__header {
    text-align: center;
}

.footer-subscribe__heading {
    margin: 0 0 0.5rem 0;
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 600;
    color: #FFFFFF;
}

.footer-subscribe__subheading {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-subscribe__form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.footer-subscribe__input {
    flex: 1;
    min-width: 220px;
    max-width: 360px;
    padding: 0.75rem 1rem;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: #FFFFFF;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.footer-subscribe__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-subscribe__input:focus {
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-subscribe__input.error {
    border-color: #FF4444;
}

/* Honeypot - hidden from humans */
.footer-subscribe__honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}

.footer-subscribe__button {
    padding: 0.75rem 1.75rem;
    background: var(--color-orange);
    color: #000000;
    border: none;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.footer-subscribe__button:hover {
    background: #FF6B00;
}

.footer-subscribe__button:active {
    transform: scale(0.98);
}

.footer-subscribe__button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.footer-subscribe__button--loading {
    opacity: 0.7;
}

.footer-subscribe__error {
    width: 100%;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: #FF4444;
    margin: 0;
    text-align: center;
}

.footer-subscribe__success {
    text-align: center;
}

.footer-subscribe__success p {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-orange);
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .footer-subscribe__input {
        max-width: 100%;
        width: 100%;
    }
    
    .footer-subscribe__button {
        width: 100%;
    }
}

/* ============================================
   TYPOGRAPHY PRESETS
   Brand-compliant text styles for CMS
   ============================================ */

/* --- HEADLINE PRESETS --- */
.typo-headline-hero {
    font-family: var(--font-primary);
    font-size: var(--h1);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.typo-headline-accent {
    font-family: var(--font-primary);
    font-size: var(--h1);
    font-weight: 700;
    color: var(--color-orange);
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.typo-section-title {
    font-family: var(--font-primary);
    font-size: var(--h2);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.typo-section-title-accent {
    font-family: var(--font-primary);
    font-size: var(--h2);
    font-weight: 600;
    color: var(--color-orange);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.typo-subsection {
    font-family: var(--font-primary);
    font-size: var(--h3);
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.3;
}

.typo-subsection-accent {
    font-family: var(--font-primary);
    font-size: var(--h3);
    font-weight: 500;
    color: var(--color-orange);
    line-height: 1.3;
}

/* --- LABEL PRESETS --- */
.typo-label-primary {
    font-family: var(--font-mono);
    font-size: var(--meta);
    font-weight: 500;
    color: var(--color-orange);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.typo-label-secondary {
    font-family: var(--font-mono);
    font-size: var(--meta);
    font-weight: 400;
    color: var(--color-steel-300);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.typo-label-white {
    font-family: var(--font-mono);
    font-size: var(--meta);
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* --- BODY TEXT PRESETS --- */
.typo-body-standard {
    font-family: var(--font-primary);
    font-size: var(--body);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.6;
}

.typo-body-large {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.5;
}

.typo-body-muted {
    font-family: var(--font-primary);
    font-size: var(--body);
    font-weight: 400;
    color: var(--color-steel-300);
    line-height: 1.6;
}

/* --- MONO/DATA PRESETS --- */
.typo-mono-data {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 0.02em;
}

.typo-mono-accent {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-orange);
    letter-spacing: 0.02em;
}

.typo-mono-muted {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-steel-600);
    letter-spacing: 0.02em;
}

/* --- SPECIAL PRESETS --- */
.typo-quote {
    font-family: var(--font-primary);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.4;
    font-style: normal;
}

.typo-stat-value {
    font-family: var(--font-primary);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: var(--color-orange);
    line-height: 1;
}

.typo-stat-label {
    font-family: var(--font-mono);
    font-size: var(--meta);
    font-weight: 400;
    color: var(--color-steel-300);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Desktop adjustments for typography presets */
@media (min-width: 1024px) {
    .typo-body-standard {
        font-size: 18px;
    }
    
    .typo-body-large {
        font-size: 24px;
    }
    
    .typo-label-primary,
    .typo-label-secondary,
    .typo-label-white {
        font-size: 14px;
    }
    
    .typo-mono-data,
    .typo-mono-accent,
    .typo-mono-muted {
        font-size: 16px;
    }
}
