/* ============================================
   OPUS 101 Pro Audio - Design System
   ============================================ */

/* ----- Fonts ----- */
@font-face {
    font-family: 'Lulo Clean';
    src: url('/fonts/Lulo Clean One Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ----- CSS Variables ----- */
:root {
    /* Colors - Dark Blue/Gold Scheme */
    --bg-main: #1A1F2C;
    --bg-darker: #141820;
    --bg-lighter: #232938;
    --bg-card: rgba(35, 41, 56, 0.9);

    /* Gold tones - accessible on dark backgrounds */
    --gold-primary: #C5A059;
    --gold-light: #F1D7A7;
    --gold-muted: #A08B4A;
    --gold-accent: #D4B87D;

    /* Text */
    --text-primary: #e5e7eb;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;

    /* Trust strip */
    --trust-bg: #f3f4f6;
    --trust-text: #374151;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout */
    --header-height: 100px;
    --max-width: 1200px;
    --border-radius: 8px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-main);
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

/* ----- Container ----- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-wrap: balance;
}

h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--gold-light);
}

h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--gold-primary);
}

h3 {
    font-size: 1rem;
    color: var(--gold-primary);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
}

/* ----- Buttons ----- */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-primary {
    background: var(--gold-primary);
    color: #1a1a1a;
    border-color: var(--gold-primary);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.btn-secondary {
    background: rgba(35, 41, 56, 0.8);
    color: var(--text-primary);
    border-color: rgba(197, 160, 89, 0.6);
}

.btn-secondary:hover {
    background: rgba(197, 160, 89, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.btn-header {
    background: var(--gold-primary);
    color: var(--bg-main);
    border: 1px solid var(--gold-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.6rem 1.4rem;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background: #D4B06A;
    border-color: #D4B06A;
    color: var(--bg-main);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(197, 160, 89, 0.5);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background:
        linear-gradient(to right, rgba(20, 24, 32, 0.4), rgba(20, 24, 32, 0.3)),
        url('/src/assets/images/rah-header.png') center/cover no-repeat;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--gold-muted);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

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

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--gold-primary);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-chevron {
    margin-left: 4px;
    vertical-align: middle;
    transition: transform var(--transition-fast);
}

.nav-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: rgba(20, 24, 32, 0.98);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 6px;
    padding: var(--space-xs) 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
    margin-top: var(--space-sm);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-link {
    display: block;
    padding: 0.625rem var(--space-md);
    font-size: 0.875rem;
    color: var(--text-primary);
    transition: background var(--transition-fast), color var(--transition-fast);
    white-space: nowrap;
}

.dropdown-link:hover {
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

/* Mobile Nav */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(20, 24, 32, 0.98);
        padding: var(--space-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        display: block;
        padding: var(--space-sm) 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        background: none;
        border: none;
        border-radius: 0;
        min-width: 0;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.open .dropdown-menu {
        max-height: 200px;
    }

    .nav-dropdown:hover .dropdown-menu {
        /* Disable hover on mobile — use tap instead */
        max-height: 0;
    }

    .nav-dropdown.open .dropdown-menu {
        max-height: 200px;
    }

    .dropdown-link {
        padding: 0.5rem 0 0.5rem var(--space-md);
        font-size: 0.8125rem;
        color: var(--text-secondary);
    }

    .dropdown-chevron {
        transition: transform 0.3s ease;
    }

    .nav-dropdown.open .dropdown-chevron {
        transform: rotate(180deg);
    }

    .btn-header {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
}

.hero {
    min-height: calc(100vh - 100px);
    /* Account for trust strip at bottom */
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    padding-bottom: var(--space-lg);
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.35) 30%, rgba(0, 0, 0, 0.35) 70%, rgba(0, 0, 0, 0.45) 100%),
        linear-gradient(135deg, rgba(26, 31, 44, 0.45) 0%, rgba(26, 31, 44, 0.35) 50%, rgba(26, 31, 44, 0.45) 100%),
        url('/src/assets/images/product-photos/virtuoso-hero-shot-1-xxl.jpg') center/cover no-repeat;
}

.hero-content {
    max-width: 650px;
}

.eyebrow {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-primary);
    margin-bottom: var(--space-sm);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: var(--space-md);
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* ============================================
   TRUST STRIP (DAW Logos)
   ============================================ */
.trust-strip {
    background: var(--bg-darker);
    padding: var(--space-md) 0;
    position: relative;
}

.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.trust-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    justify-content: center;
}

.daw-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-xs);
    min-height: 60px;
}

.daw-logo {
    height: 32px;
    width: auto;
    filter: grayscale(100%) invert(1) brightness(2) contrast(1.5);
    transition: all 0.3s ease;
    opacity: 0.9;
    object-fit: contain;
}

/* Specific sizing for Ableton Logo - scaling down via max-height */
img[src*="ableton"] {
    height: 20px;
    /* Slightly smaller to match visual weight of others */
    margin-bottom: 2px;
    /* Align text better */
}

.daw-item:hover .daw-logo {
    filter: grayscale(0%) invert(0) opacity(1);
    transform: scale(1.05);
}

.daw-name {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* ============================================
   MAIN CONTENT GRADIENT BACKGROUND
   ============================================ */
main {
    background: linear-gradient(180deg,
            var(--bg-main) 0%,
            var(--bg-darker) 20%,
            var(--bg-darker) 80%,
            var(--bg-main) 100%);
}

/* ============================================
   SERIES SECTION (Product Split)
   ============================================ */
.series-section {
    padding: var(--space-2xl) 0;
    background: transparent;
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .series-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .series-grid {
        grid-template-columns: 1fr;
    }
}

.series-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(196, 164, 106, 0.1);
    transition: border-color var(--transition-base), transform var(--transition-base);
    display: flex;
    flex-direction: column;
}

.series-card:hover {
    border-color: rgba(196, 164, 106, 0.3);
    transform: translateY(-4px);
}

.series-image {
    background: var(--bg-darker);
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.series-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 31, 44, 0.34);
    z-index: 1;
    pointer-events: none;
}

.series-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.series-info {
    padding: var(--space-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.series-name {
    margin-bottom: var(--space-xs);
}

.series-tagline {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

.series-best {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    flex-grow: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-sm);
}

.series-price {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: var(--space-md);
}

.series-price.poa {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gold-accent);
    letter-spacing: 0.05em;
}

.series-info .btn {
    margin-top: auto;
}

/* ============================================
   VALUE PROPOSITIONS
   ============================================ */
.value-section {
    padding: var(--space-2xl) 0;
    background: transparent;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

@media (max-width: 1024px) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .value-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

.value-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.value-item .value-title {
    min-height: 2.8em;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

@media (max-width: 600px) {
    .value-item .value-title {
        min-height: auto;
    }
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    color: var(--gold-primary);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-title {
    margin-bottom: var(--space-xs);
}

.value-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   FEATURED ARTICLE
   ============================================ */
.article-section {
    padding: var(--space-2xl) 0;
    background: transparent;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(196, 164, 106, 0.1);
    transition: border-color var(--transition-base);
}

.featured-article:hover {
    border-color: rgba(196, 164, 106, 0.3);
}

@media (max-width: 768px) {
    .featured-article {
        grid-template-columns: 1fr;
    }
}

.article-image {
    overflow: hidden;
}

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

.article-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}

.article-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-primary);
    margin-bottom: var(--space-xs);
}

.article-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.article-excerpt {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.article-link {
    font-weight: 600;
    color: var(--gold-primary);
    transition: color var(--transition-fast);
}

.featured-article:hover .article-link {
    color: var(--gold-light);
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial-section {
    padding: var(--space-2xl) 0;
    background: transparent;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(196, 164, 106, 0.15);
    overflow: hidden;
}

@media (max-width: 768px) {
    .testimonial-card {
        grid-template-columns: 1fr;
    }
}

.testimonial-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background:
        linear-gradient(135deg, rgba(26, 31, 44, 0.85) 0%, rgba(26, 31, 44, 0.7) 100%),
        url('/src/assets/images/moog-modular.png') center/cover no-repeat;
}

.testimonial-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-info {
    text-align: center;
}

.testimonial-name {
    font-style: normal;
    font-weight: 600;
    color: var(--gold-primary);
    display: block;
    font-size: 1.1rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: #cccccc;
}

.testimonial-right {
    position: relative;
    padding: var(--space-md) var(--space-lg);
    padding-left: var(--space-xl);
    display: flex;
    align-items: center;
    border-left: 3px solid var(--gold-muted);
}

@media (max-width: 768px) {
    .testimonial-right {
        border-left: none;
        border-top: 3px solid var(--gold-muted);
    }
}

.quote-mark {
    font-size: 4rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--gold-primary);
    line-height: 0.8;
    display: block;
    position: absolute;
    text-shadow: 0 2px 10px rgba(196, 164, 106, 0.3);
}

.quote-open {
    top: 0.75rem;
    left: 0.5rem;
}

.quote-close {
    bottom: 0.25rem;
    right: 0.5rem;
}

.testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.9;
    color: var(--text-primary);
    margin: 0;
    padding-left: 2rem;
}

.testimonial-heading {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-lg);
}

/* Hide footer when configurator is active */
body.configurator-active .site-footer {
    display: none;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-2xl);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-primary);
    margin-bottom: var(--space-sm);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-col a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    margin-top: var(--space-xl);
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   MOBILE IMPROVEMENTS
   ============================================ */
@media (max-width: 768px) {

    /* Hero CTA buttons stay left-aligned */
    .hero-cta {
        justify-content: flex-start;
    }

    /* DAW strip: hide names, single row logos, full width */
    .daw-name {
        display: none;
    }

    .trust-logos {
        gap: var(--space-lg);
        flex-wrap: nowrap;
        width: 100%;
        justify-content: space-between;
    }

    .daw-item {
        min-height: auto;
    }

    .daw-logo {
        height: 28px;
    }

    img[src*="ableton"] {
        height: 18px;
        margin-bottom: 0;
    }

    /* Give value icons more breathing room */
    .value-icon {
        margin-bottom: var(--space-lg);
    }

    /* Testimonial: add L/R padding, larger avatar */
    .testimonial-right {
        padding: var(--space-lg) var(--space-xl);
        border-left: none;
        border-top: 3px solid var(--gold-muted);
    }

    .testimonial-avatar {
        width: 140px;
        height: 140px;
    }

    .quote-mark {
        font-size: 3rem;
    }

    .quote-open {
        top: 0.75rem;
        left: 0.75rem;
    }

    .quote-close {
        right: 0.75rem;
    }

    /* Ensure footer links are easy to tap */
    .footer-col ul {
        gap: var(--space-sm);
    }

    .footer-col a {
        display: block;
        padding: 0.5rem 0;
    }
}

/* ============================================
   PRODUCT PAGE - Hero (Split Layout)
   ============================================ */
.product-hero {
    padding-top: var(--header-height);
    background: var(--bg-darker);
}

.product-hero > .container {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    max-width: none;
    padding: 0;
    min-height: calc(100vh - var(--header-height) + 2px);
}

/* Studio: text first in DOM, image second — flip the ratio */
.product-hero-content:first-child ~ .product-hero-image {
    grid-column: 2;
}


.product-hero > .container:has(.product-hero-content:first-child) {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
}

.product-hero-image {
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--gold-muted);
    border-right: 2px solid var(--gold-muted);
}

/* Studio: image is on the right, so border on left instead of right */
.product-hero-content:first-child ~ .product-hero-image {
    border-right: none;
    border-left: 2px solid var(--gold-muted);
}

.product-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 31, 44, 0.34);
    z-index: 1;
    pointer-events: none;
}

.product-hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-hero-content {
    padding: var(--space-2xl);
    padding-bottom: var(--space-md);
    display: flex;
    flex-direction: column;
}

.product-hero-text {
    margin: auto 0;
    padding-top: var(--header-height);
    display: flex;
    flex-direction: column;
}

.product-hero-content--centered .product-hero-text {
    align-items: center;
}

/* Image left (Virtuoso): push text toward centre */
.product-hero-image:first-child ~ .product-hero-content {
    padding-left: var(--space-2xl);
}

/* Text left (Studio): mirror Virtuoso padding */
.product-hero-content:first-child {
    padding-right: var(--space-2xl);
}

@media (max-width: 1024px) {
    .product-hero {
        min-height: auto;
        padding-top: var(--header-height);
    }

    .product-hero > .container,
    .product-hero > .container:has(.product-hero-content:first-child) {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .product-hero-image,
    .product-hero-content:first-child ~ .product-hero-image {
        position: relative;
        min-height: 50vh;
        order: -1;
        border-left: none;
        border-right: none;
        grid-column: 1;
    }

    .product-hero-image img {
        position: relative;
        inset: auto;
        min-height: 50vh;
    }

    .product-hero-content,
    .product-hero-image:first-child ~ .product-hero-content,
    .product-hero-content:first-child {
        max-width: none;
        margin: 0;
        padding: var(--space-xl) var(--space-md);
        text-align: center;
    }
}

.product-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-sm);
}

.product-tagline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-primary);
    font-weight: 300;
    margin-bottom: var(--space-md);
}

.product-hero-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.7;
    max-width: 540px;
}

.product-hero-price {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--gold-light);
    margin-bottom: var(--space-xs);
}

.product-hero-price strong {
    font-weight: 700;
}

.product-hero-includes {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.product-hero-content .btn {
    align-self: flex-start;
}

/* Centred hero text variant */
.product-hero-content--centered {
    text-align: center;
    align-items: center;
}

.product-hero-content--centered .btn {
    align-self: center;
}

/* Hero Spec Pills */
.hero-specs {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: auto;
    padding-top: var(--space-lg);
}

/* Horizontal specs bar along bottom of hero */
.hero-specs--horizontal {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-sm) var(--space-lg);
    margin-top: auto;
    flex-wrap: wrap;
}

.hero-specs--horizontal .hero-spec {
    gap: var(--space-xs);
}

.hero-specs--horizontal .hero-spec-icon {
    width: 24px;
    height: 24px;
}

.hero-specs--horizontal .hero-spec-value {
    font-size: 0.9375rem;
}

.hero-specs--horizontal .hero-spec-label {
    font-size: 0.75rem;
}

.hero-spec {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-spec-icon {
    width: 24px;
    height: 24px;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.hero-spec-value {
    display: block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    color: var(--gold-light);
    letter-spacing: 0.05em;
}

.hero-spec-label {
    display: block;
    font-size: 0.6875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
    .hero-specs {
        margin-top: var(--space-lg);
        align-items: center;
    }

    .hero-specs--horizontal {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   PRODUCT PAGE - Spec Strip
   ============================================ */
.spec-strip {
    background: var(--bg-darker);
    height: 100px;
    display: flex;
    align-items: center;
}

.spec-strip-inner {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 100px;
}

.spec-icon {
    width: 28px;
    height: 28px;
    color: var(--gold-primary);
    margin-bottom: var(--space-xs);
}

.spec-value {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold-light);
    letter-spacing: 0.05em;
}

.spec-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

/* ============================================
   PRODUCT PAGE - Feature Sections
   ============================================ */
.feature-section {
    padding: var(--space-xl) 0;
}

.product-hero + .feature-section {
    padding-top: 100px;
}

.feature-section--alt {
    background: var(--bg-darker);
}

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

.feature-split--reverse {
    direction: rtl;
}

.feature-split--reverse>* {
    direction: ltr;
}

@media (max-width: 768px) {

    .feature-split,
    .feature-split--reverse {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        direction: ltr;
    }
}

.feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    max-width: 550px;
    /* Constrain width */
    margin: 0 auto;
    /* Center in its column */
}

.feature-image img {
    border-radius: 8px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.6),
        /* Deep, clean shadow */
        0 0 0 1px rgba(255, 255, 255, 0.05);
    /* Very faint highlight rim for definition */
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    width: 100%;
}

.feature-image img:hover {
    transform: scale(1.02) translateY(-5px);
}

.feature-image--overlay {
    position: relative;
}

.feature-image--overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 31, 44, 0.25);
    border-radius: 8px;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-image--overlay:hover::after {
    transform: scale(1.02) translateY(-5px);
}

/* Fix for Noctua image background box */
img[src*="noctua"] {
    /* Slight contrast boost to push dark greys to black */
    filter: contrast(1.1) brightness(0.95);
    /* Soft edges to blend better */
    mask-image: radial-gradient(circle at center, black 85%, transparent 100%);
}

/* Fix for studio internals - subtle glow to hide jaggies */
img[src*="studio-series-internals"] {
    box-shadow: none;
    filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.15));
}



/* Fix for Mazurka/Compact Powerhouse image - Vignette effect */
img[src*="mazurka"] {
    /* Remove card styling */
    box-shadow: none !important;
    border-radius: 0 !important;
    /* Apply soft vignette mask */
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    /* Ensure it blends firmly */
    opacity: 0.9;
}

/* Tighter vignette for the chip to hide edges completely */
img[src*="amd-chip-in-socket"] {
    box-shadow: none !important;
    border-radius: 0 !important;
    /* Much tighter mask to kill the edges */
    mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
    opacity: 0.9;
    /* Constrain size */
    max-width: 400px;
    margin: 0 auto;
    /* Ensure centering since img is display: block */
}



.feature-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
    margin-bottom: var(--space-md);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

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

/* Centered feature section (for Performance) */
.feature-section--centered {
    text-align: center;
}

.feature-centered-content {
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.feature-centered-content h2 {
    margin-bottom: var(--space-md);
}

.feature-centered-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
}

.feature-wide-image {
    max-width: 800px;
    margin: 0 auto;
}

.feature-wide-image img {
    border-radius: var(--border-radius);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* ============================================
   PRODUCT PAGE - Tech Specs Grid
   ============================================ */
.specs-section {
    padding: var(--space-2xl) 0;
    background: var(--bg-darker);
}


.specs-grid {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(197, 160, 89, 0.15);
    overflow: hidden;
}

.spec-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-row:last-child {
    border-bottom: none;
}

@media (max-width: 600px) {
    .spec-row {
        grid-template-columns: 1fr;
        gap: var(--space-xs);
    }
}

.spec-row-label {
    font-weight: 600;
    color: var(--gold-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spec-row-value {
    color: var(--text-primary);
}

/* ============================================
   PRODUCT PAGE - CTA Section
   ============================================ */
.cta-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-lighter) 100%);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: var(--space-sm);
}

.cta-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: var(--space-lg);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ============================================
   PRODUCT PAGE - Warranty Section
   ============================================ */
.warranty-section {
    padding: var(--space-xl) 0;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.warranty-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.warranty-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
}

.warranty-icon {
    width: 24px;
    height: 24px;
    color: var(--gold-primary);
}

.warranty-item span {
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

@media (max-width: 600px) {
    .warranty-grid {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
}

/* ============================================
   PRODUCT PAGE - Model Comparison Cards
   ============================================ */
.model-comparison {
    padding: var(--space-2xl) 0;
    background: var(--bg-main);
}

.model-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.model-card {
    position: relative;
    background: var(--bg-lighter);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: var(--space-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border-color 0.2s;
}

.model-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.model-card--featured {
    border-color: var(--gold-primary);
}

.model-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: var(--bg-main);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.model-card-image {
    width: 100%;
    max-width: 240px;
    aspect-ratio: 1;
    object-fit: contain;
    margin-bottom: var(--space-md);
}

.model-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.model-card-desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: var(--space-md);
    flex: 1;
}

.model-card-price {
    font-size: 1.125rem;
    color: var(--gold-accent);
    margin-bottom: var(--space-md);
}

.model-card-price strong {
    font-size: 1.375rem;
}

@media (max-width: 900px) {
    .model-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================
   ARTICLE LISTING PAGE
   ============================================ */
.articles-hero {
    padding: calc(var(--space-2xl) + 60px) 0 var(--space-xl);
    text-align: center;
}

.articles-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.04em;
}

.articles-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto;
}

.articles-filter {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0 var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.articles-filter-btn {
    background: transparent;
    border: 1px solid rgba(196, 164, 106, 0.2);
    color: var(--text-secondary);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.articles-filter-btn:hover {
    border-color: rgba(196, 164, 106, 0.4);
    color: var(--text-primary);
}

.articles-filter-btn.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--bg-main);
    font-weight: 600;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (max-width: 900px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .articles-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.article-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(196, 164, 106, 0.08);
    overflow: hidden;
    transition: transform var(--transition-base), border-color var(--transition-base);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 164, 106, 0.25);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.article-card-image {
    background: var(--bg-darker);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) saturate(0.55);
    transition: filter 0.4s ease;
}

.article-card:hover .article-card-image img {
    filter: brightness(0.9) saturate(0.8);
}

.article-card-body {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-card-body .badge {
    align-self: flex-start;
    margin-bottom: var(--space-xs);
}

.article-card-body .article-title {
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.article-card-body .article-excerpt {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
    flex: 1;
}

.article-card-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    gap: var(--space-xs);
}

/* Category Badges */
.badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
}

.badge-article {
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold-primary);
}

.badge-faq {
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
}

.badge-primer {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
}

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

.article-hero {
    padding: var(--space-2xl) 0 var(--space-lg);
}

.article-hero .container {
    max-width: 780px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--gold-primary);
}

.breadcrumb span {
    color: var(--text-muted);
}

.article-hero .badge {
    margin-bottom: var(--space-sm);
}

.article-hero h1 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
    text-transform: none;
    color: var(--text-primary);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.article-meta .separator {
    color: var(--text-muted);
    opacity: 0.5;
}

.article-hero-image {
    margin-bottom: var(--space-xl);
}

.article-hero-image .container {
    max-width: 780px;
}

.article-hero-image img {
    width: 100%;
    border-radius: var(--border-radius);
    display: block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    filter: brightness(0.82) saturate(0.6);
    transition: filter 0.4s ease;
}

.article-hero-image img:hover {
    filter: brightness(0.92) saturate(0.85);
}

/* Article Body Typography */
.article-body {
    padding-bottom: var(--space-2xl);
}

.article-body .container {
    max-width: 720px;
}

/* Lead paragraph — first <p> after TOC or start of body */
.article-body .container > p:first-of-type {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-body h2 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.25rem;
    margin-top: 3rem;
    margin-bottom: var(--space-md);
    color: var(--gold-light);
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.35;
}

.article-body h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.0625rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.4;
}

.article-body p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.article-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.article-body a {
    color: var(--gold-primary);
    text-decoration: underline;
    text-decoration-color: rgba(197, 160, 89, 0.35);
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: all var(--transition-fast);
}

.article-body a:hover {
    color: var(--gold-light);
    text-decoration-color: var(--gold-light);
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 0;
    list-style: none;
    color: var(--text-secondary);
}

.article-body ol {
    counter-reset: article-ol;
}

.article-body ul > li {
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-size: 1.0625rem;
}

.article-body ul > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-primary);
}

.article-body ol > li {
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-size: 1.0625rem;
    counter-increment: article-ol;
}

.article-body ol > li::before {
    content: counter(article-ol) '.';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.9375rem;
}

.article-body li strong {
    color: var(--text-primary);
}

.article-body blockquote {
    border-left: 3px solid var(--gold-primary);
    padding: var(--space-md) var(--space-lg);
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.06), rgba(35, 41, 56, 0.5));
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.article-body blockquote p {
    color: var(--text-primary);
    font-style: italic;
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.article-body figure {
    margin: 2.5rem -2rem;
}

@media (max-width: 768px) {
    .article-body figure {
        margin-left: 0;
        margin-right: 0;
    }
}

.article-body figure img {
    width: 100%;
    border-radius: var(--border-radius);
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    filter: brightness(0.82) saturate(0.6);
    transition: filter 0.4s ease;
}

.article-body figure img:hover {
    filter: brightness(0.92) saturate(0.85);
}

.article-body figcaption {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-sm);
    font-style: italic;
    padding: 0 2rem;
}

.article-body pre {
    background: var(--bg-darker);
    border: 1px solid rgba(196, 164, 106, 0.12);
    border-radius: var(--border-radius);
    padding: var(--space-md) var(--space-lg);
    margin: 2rem 0;
    overflow-x: auto;
    font-size: 0.875rem;
    line-height: 1.6;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.article-body code {
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
    font-size: 0.875em;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.12);
    padding: 0.15em 0.45em;
    border-radius: 4px;
    color: var(--gold-light);
}

.article-body pre code {
    background: none;
    border: none;
    padding: 0;
    font-size: inherit;
    color: var(--text-primary);
}

/* Table of Contents */
.article-toc {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: var(--space-md) 0;
    margin-bottom: 2rem;
}

.article-toc h2 {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin: 0 0 var(--space-sm) 0;
    padding: 0;
    border: none;
    font-weight: 500;
}

.article-toc ol {
    margin: 0;
    padding-left: 0;
    list-style: none;
    counter-reset: toc;
}

.article-toc li {
    margin-bottom: 0.25rem;
    line-height: 1.6;
    counter-increment: toc;
    padding-left: 0;
    position: relative;
}

.article-toc li::before {
    content: counter(toc) '. ';
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 400;
}

.article-toc a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color var(--transition-fast);
}

.article-toc a:hover {
    color: var(--gold-primary);
}

/* Article Navigation (Prev/Next) */
.article-nav {
    border-top: 1px solid rgba(196, 164, 106, 0.1);
    padding: var(--space-xl) 0;
}

.article-nav .container {
    max-width: 720px;
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
}

.article-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all var(--transition-base);
    max-width: 48%;
    padding: var(--space-md);
    border-radius: var(--border-radius);
    border: 1px solid rgba(196, 164, 106, 0.08);
    background: rgba(35, 41, 56, 0.3);
}

.article-nav a:hover {
    color: var(--gold-primary);
    border-color: rgba(196, 164, 106, 0.2);
    background: rgba(35, 41, 56, 0.6);
}

.article-nav-next {
    margin-left: auto;
    text-align: right;
}

/* Article Bottom CTA */
.article-bottom-cta {
    text-align: center;
    padding: var(--space-2xl) var(--space-md);
    background: linear-gradient(180deg, transparent 0%, rgba(197, 160, 89, 0.04) 40%, rgba(197, 160, 89, 0.06) 100%);
    border-top: 1px solid rgba(196, 164, 106, 0.08);
}

.article-bottom-cta h2 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
    text-transform: none;
}

.article-bottom-cta p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto var(--space-lg);
    font-size: 1.0625rem;
    line-height: 1.6;
}

/* ============================================
   Contact / Bespoke Form
   ============================================ */

.contact-form {
    margin-top: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.form-group .required {
    color: var(--gold-primary);
}

.form-group .optional {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.875rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-darker);
    border: 1px solid var(--bg-lighter);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239ca3af' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-success {
    text-align: center;
    padding: var(--space-2xl) 0;
}

.form-success h2 {
    color: var(--gold-primary);
    margin-bottom: var(--space-sm);
}

.form-success p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    font-size: 1.05rem;
}

.form-success .btn {
    text-decoration: none;
}

/* ============================================
   Warranty Summary Cards
   ============================================ */

.warranty-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.warranty-card {
    background: var(--bg-darker);
    border: 1px solid var(--bg-lighter);
    border-radius: 8px;
    padding: var(--space-lg);
}

.warranty-card h3 {
    color: var(--gold-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.warranty-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.warranty-card p:last-child {
    margin-bottom: 0;
}

.warranty-card strong {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .warranty-summary {
        grid-template-columns: 1fr;
    }
}