/*
Theme Name: ErgoDeskSpecs
Theme URI: https://ergodeskspecs.com
Author: Kenny Nyhus Fadil
Author URI: https://ergodeskspecs.com
Description: Comfort You Can Measure - ergonomic desk setups in real numbers: desk heights, monitor distances, and chair geometry. A dark, neutral-modern design with measurement-readout UI accents.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ergodeskspecs
Tags: dark, custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES (Design Tokens from React)
   ========================================================================== */
:root {
    /* Colors */
    --color-ink: #0C0E10;
    --color-panel: #16191D;
    --color-sage: #8FBCA3;
    --color-steel: #7D8CA3;
    --color-paper: #F2F3F0;
    --color-graphite: #8A94A6;
    --color-clay: #D08770;
    
    /* Fonts */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --font-mono: 'Space Mono', monospace;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Container */
    --container-max: 80rem;
    --container-padding: 1.5rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-paper);
    background-color: var(--color-ink);
    overflow-x: hidden;
}

/* Selection */
::selection {
    background-color: rgba(143, 188, 163, 0.2);
    color: var(--color-sage);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-ink);
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-sage);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-paper);
    letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.875rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--color-graphite);
}

a {
    color: var(--color-sage);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-paper);
}

/* Mono text */
.font-mono {
    font-family: var(--font-mono);
}

.font-display {
    font-family: var(--font-display);
}

/* Text utilities */
.text-sage { color: var(--color-sage); }
.text-paper { color: var(--color-paper); }
.text-graphite { color: var(--color-graphite); }
.text-steel { color: var(--color-steel); }
.text-clay { color: var(--color-clay); }

.text-glow {
    text-shadow: 0 0 10px rgba(143, 188, 163, 0.5);
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.site-main {
    padding-bottom: 8rem;
}

/* Grid background pattern */
.bg-grid-pattern {
    background-image: 
        linear-gradient(to right, rgba(143, 188, 163, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(143, 188, 163, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ==========================================================================
   GLASS PANEL EFFECT
   ========================================================================== */
.glass-panel {
    background: rgba(22, 25, 29, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid;
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-primary {
    border-color: rgba(143, 188, 163, 0.5);
    color: var(--color-sage);
    background: rgba(143, 188, 163, 0.1);
}

.btn-primary:hover {
    background: rgba(143, 188, 163, 0.2);
    border-color: var(--color-sage);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-paper);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(143, 188, 163, 0.5);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(12, 14, 16, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-branding .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem;
    background: rgba(143, 188, 163, 0.1);
    border: 1px solid rgba(143, 188, 163, 0.3);
    border-radius: 2px;
    transition: background var(--transition-fast);
}

.site-branding:hover .logo-icon {
    background: rgba(143, 188, 163, 0.2);
}

.site-branding .logo-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-sage);
}

.site-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--color-paper);
}

.site-title span {
    color: var(--color-sage);
}

/* Main Navigation */
.main-navigation {
    display: none;
}

@media (min-width: 768px) {
    .main-navigation {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-graphite);
    transition: color var(--transition-fast);
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--color-sage);
}

.main-navigation .current-menu-item a {
    border-bottom: 1px solid var(--color-sage);
    padding-bottom: 2px;
}

/* Header CTA */
.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: block;
    }
}

.header-cta .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.6875rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-paper);
    cursor: pointer;
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--color-ink);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 4rem;
    padding-bottom: 8rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

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

.footer-brand {
    max-width: 20rem;
}

.footer-brand .site-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    color: var(--color-graphite);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    color: var(--color-sage);
    border-color: var(--color-sage);
}

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

/* Footer Menus */
.footer-menus {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.footer-menu-column h4 {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-sage);
    margin-bottom: 1.5rem;
}

.footer-menu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu-column li {
    margin-bottom: 0.75rem;
}

.footer-menu-column a {
    font-size: 0.875rem;
    color: var(--color-graphite);
    transition: all var(--transition-fast);
}

.footer-menu-column a:hover {
    color: var(--color-paper);
    transform: translateX(4px);
    display: inline-block;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--color-graphite);
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-links {
        gap: 2rem;
    }
}

.footer-links a {
    color: var(--color-graphite);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links a:hover {
    color: var(--color-sage);
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-status .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .hero-section {
        min-height: 100vh;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(to top, var(--color-ink), rgba(12, 14, 16, 0.5), transparent),
        radial-gradient(circle at center, transparent 0%, var(--color-ink) 100%);
}

/* HUD Container */
.hero-hud {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 64rem;
    margin: 0 1.5rem;
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(22, 25, 29, 0.1);
    backdrop-filter: blur(2px);
}

/* HUD Corners */
.hero-hud::before,
.hero-hud::after,
.hero-hud .corner-bl,
.hero-hud .corner-br {
    content: '';
    position: absolute;
    width: 2rem;
    height: 2rem;
}

.hero-hud::before {
    top: 0;
    left: 0;
    border-top: 1px solid rgba(143, 188, 163, 0.5);
    border-left: 1px solid rgba(143, 188, 163, 0.5);
}

.hero-hud::after {
    top: 0;
    right: 0;
    border-top: 1px solid rgba(143, 188, 163, 0.5);
    border-right: 1px solid rgba(143, 188, 163, 0.5);
}

.hero-hud .corner-bl {
    bottom: 0;
    left: 0;
    border-bottom: 1px solid rgba(143, 188, 163, 0.5);
    border-left: 1px solid rgba(143, 188, 163, 0.5);
}

.hero-hud .corner-br {
    bottom: 0;
    right: 0;
    border-bottom: 1px solid rgba(143, 188, 163, 0.5);
    border-right: 1px solid rgba(143, 188, 163, 0.5);
}

/* HUD Crosshairs */
.hero-crosshair-h,
.hero-crosshair-v {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(143, 188, 163, 0.2);
    pointer-events: none;
}

.hero-crosshair-h {
    width: 80vw;
    height: 1px;
}

.hero-crosshair-v {
    width: 1px;
    height: 50vh;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 40rem;
    padding: 2rem;
    background: rgba(12, 14, 16, 0.4);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 3rem;
    }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-sage);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.hero-tag svg {
    width: 16px;
    height: 16px;
    animation: spin 8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title .gradient-text {
    background: linear-gradient(to right, var(--color-sage), var(--color-steel));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-graphite);
    max-width: 28rem;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* HUD Data Ticks */
.hero-data {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(143, 188, 163, 0.6);
    line-height: 1.5;
}

.hero-data-left {
    top: 1rem;
    left: 1.5rem;
}

.hero-data-right {
    bottom: 1rem;
    right: 1.5rem;
    text-align: right;
}

/* ==========================================================================
   SPEC FINDER BAR
   ========================================================================== */
.spec-finder {
    position: sticky;
    top: 0;
    z-index: 40;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(12, 14, 16, 0.8);
    backdrop-filter: blur(12px);
}

.spec-finder .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.spec-finder-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-sage);
}

.spec-finder-label svg {
    width: 18px;
    height: 18px;
}

.spec-finder-label span {
    display: none;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .spec-finder-label span {
        display: inline;
    }
}

.spec-finder-filters {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .spec-finder-filters {
        gap: 1rem;
    }
}

.filter-dropdown {
    position: relative;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-graphite);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all var(--transition-fast);
}

@media (min-width: 768px) {
    .filter-btn {
        font-size: 0.875rem;
    }
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--color-sage);
    border-color: var(--color-sage);
    background: rgba(143, 188, 163, 0.1);
}

.filter-btn svg {
    width: 12px;
    height: 12px;
    transition: transform var(--transition-fast);
}

.filter-btn.active svg {
    transform: rotate(180deg);
}

.filter-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    min-width: 12rem;
    background: var(--color-panel);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 0;
    display: none;
    animation: fadeSlideIn 0.2s ease;
}

.filter-menu.show {
    display: block;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-menu button {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    text-align: left;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-paper);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-menu button:hover {
    background: rgba(143, 188, 163, 0.1);
    color: var(--color-sage);
}

.spec-finder-search {
    display: none;
}

@media (min-width: 768px) {
    .spec-finder-search {
        display: block;
        position: relative;
    }
}

.spec-finder-search input {
    width: 12rem;
    padding: 0.375rem 1rem 0.375rem 2.5rem;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--color-paper);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
    transition: border-color var(--transition-fast);
}

.spec-finder-search input::placeholder {
    color: var(--color-graphite);
    text-transform: uppercase;
}

.spec-finder-search input:focus {
    border-color: var(--color-sage);
}

.spec-finder-search svg {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    color: var(--color-graphite);
}

.spec-finder-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(143, 188, 163, 0.5), transparent);
    opacity: 0.5;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.home-section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .home-section {
        padding: 6rem 0;
    }
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header h2 {
    margin: 0;
}

.section-header .section-tag {
    display: none;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-sage);
    opacity: 0.7;
}

@media (min-width: 768px) {
    .section-header .section-tag {
        display: block;
    }
}

.section-header-centered {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-header-centered .line {
    flex: 1;
    height: 1px;
    background: rgba(143, 188, 163, 0.3);
}

.section-header-centered h2 {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-sage);
    margin: 0;
}

.section-intro {
    margin-bottom: 2rem;
}

.section-intro h2 {
    margin-bottom: 0.5rem;
}

.section-intro p {
    max-width: 32rem;
}

/* ==========================================================================
   BENTO GRID (Mission Control)
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        height: 600px;
    }
}

.bento-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--color-panel);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    transition: border-color var(--transition-slow);
}

@media (min-width: 768px) {
    .bento-card {
        padding: 2rem;
    }
}

.bento-card:hover {
    border-color: rgba(143, 188, 163, 0.3);
}

.bento-card.large {
    grid-column: span 1;
    grid-row: span 1;
}

@media (min-width: 768px) {
    .bento-card.large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.bento-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bento-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: grayscale(100%);
    transition: all 0.7s ease;
}

.bento-card:hover .bento-card-bg img {
    opacity: 0.3;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.bento-card-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-panel), rgba(22, 25, 29, 0.8), transparent);
}

.bento-card-header {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.bento-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    backdrop-filter: blur(4px);
    color: var(--color-sage);
}

.bento-card-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.bento-card-arrow {
    color: var(--color-graphite);
    transition: color var(--transition-fast);
}

.bento-card:hover .bento-card-arrow {
    color: var(--color-sage);
}

.bento-card-arrow svg {
    width: 20px;
    height: 20px;
}

.bento-card-content {
    position: relative;
    z-index: 10;
    margin-top: 3rem;
}

.bento-card-subtitle {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-sage);
    margin-bottom: 0.5rem;
}

.bento-card-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-paper);
    transition: color var(--transition-fast);
    margin: 0;
}

.bento-card:hover .bento-card-title {
    color: white;
}

/* Corner accents */
.bento-card .corner-tr,
.bento-card .corner-bl {
    position: absolute;
    width: 8px;
    height: 8px;
    transition: border-color var(--transition-fast);
}

.bento-card .corner-tr {
    top: 0;
    right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.bento-card .corner-bl {
    bottom: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.bento-card:hover .corner-tr,
.bento-card:hover .corner-bl {
    border-color: rgba(143, 188, 163, 0.5);
}

/* ==========================================================================
   SCOPE SPOTLIGHT
   ========================================================================== */
.desk-spotlight {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(22, 25, 29, 0.5);
    backdrop-filter: blur(4px);
    padding: 4px;
    border-radius: 2px;
}

.desk-spotlight-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .desk-spotlight-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.desk-spotlight-image {
    position: relative;
    height: 24rem;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .desk-spotlight-image {
        height: auto;
    }
}

.desk-spotlight-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(143, 188, 163, 0.12) 0%, transparent 70%);
    opacity: 0.5;
}

.desk-spotlight-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

.desk-spotlight-image img {
    position: relative;
    z-index: 10;
    width: 75%;
    max-width: 20rem;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(143, 188, 163, 0.3));
    transition: transform 0.7s ease;
}

.desk-spotlight:hover .desk-spotlight-image img {
    transform: scale(1.05);
}

.desk-spotlight-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 20;
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--color-sage);
    color: var(--color-ink);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.desk-spotlight-details {
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(12, 14, 16, 0.5);
}

@media (min-width: 768px) {
    .desk-spotlight-details {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .desk-spotlight-details {
        border-top: none;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.desk-spotlight-tag {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-sage);
    margin-bottom: 0.5rem;
}

.desk-spotlight-name {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-paper);
    margin-bottom: 0.5rem;
}

.desk-spotlight-desc {
    color: var(--color-graphite);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.desk-specs-list {
    font-family: var(--font-mono);
    font-size: 0.875rem;
}

.desk-spec-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
    transition: border-color var(--transition-fast);
}

.desk-spec-row:hover {
    border-color: rgba(143, 188, 163, 0.3);
}

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

.desk-spec-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-graphite);
}

.desk-spec-value {
    color: var(--color-paper);
    transition: all var(--transition-fast);
}

.desk-spec-row:hover .desk-spec-value {
    color: var(--color-sage);
    text-shadow: 0 0 10px rgba(143, 188, 163, 0.5);
}

.desk-spotlight-cta {
    margin-top: 2.5rem;
    width: 100%;
    padding: 1rem;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-sage);
    background: transparent;
    border: 1px solid rgba(143, 188, 163, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.desk-spotlight-cta:hover {
    background: rgba(143, 188, 163, 0.1);
    border-color: var(--color-sage);
}

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */
.comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--color-panel);
    border-radius: 2px;
}

.comparison-table {
    min-width: 600px;
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    padding: 1rem;
    text-align: left;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-paper);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th:first-child {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-graphite);
    border-left: none;
}

.comparison-table th.highlight {
    background: rgba(143, 188, 163, 0.05);
}

.comparison-table th .top-pick {
    display: block;
    margin-top: 0.25rem;
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-sage);
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--transition-fast);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.comparison-table td {
    padding: 1rem;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-paper);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.comparison-table td:first-child {
    font-size: 0.6875rem;
    text-transform: uppercase;
    color: var(--color-graphite);
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    transition: color var(--transition-fast);
}

.comparison-table tbody tr:hover td:first-child {
    color: var(--color-sage);
}

.comparison-table td.highlight {
    background: rgba(143, 188, 163, 0.05);
    box-shadow: inset 0 0 20px rgba(143, 188, 163, 0.05);
}

.comparison-table tbody tr:hover td::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(143, 188, 163, 0.2);
}

/* ==========================================================================
   EDITORIAL STREAM (Field Reports)
   ========================================================================== */
.editorial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

.editorial-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.editorial-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 1rem;
}

.editorial-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 10;
    background: rgba(143, 188, 163, 0.1);
    opacity: 0;
    mix-blend-mode: overlay;
    transition: opacity var(--transition-slow);
}

.editorial-card:hover .editorial-card-image::before {
    opacity: 1;
}

.editorial-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.7s ease;
}

.editorial-card:hover .editorial-card-image img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.editorial-card-category {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 20;
    padding: 0.125rem 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-mono);
    font-size: 0.625rem;
    text-transform: uppercase;
    color: var(--color-sage);
}

.editorial-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.editorial-card-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-paper);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: color var(--transition-fast);
}

.editorial-card:hover .editorial-card-title {
    color: var(--color-sage);
}

.editorial-card-excerpt {
    font-size: 0.875rem;
    color: var(--color-graphite);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.editorial-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-mono);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-graphite);
}

.editorial-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.editorial-card-meta svg {
    width: 10px;
    height: 10px;
}

/* ==========================================================================
   WORDPRESS SPECIFIC
   ========================================================================== */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

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

/* WordPress Admin Bar Fix */
body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

/* ==========================================================================
   PART 2 STYLES: Blog, Single, Page, Archive, 404, Comments
   ========================================================================== */

/* ==========================================================================
   PAGE HEADER (Shared)
   ========================================================================== */
.page-header {
    padding-top: 8rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header-content {
    max-width: 48rem;
}

.page-header-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-sage);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.page-header-tag svg {
    width: 16px;
    height: 16px;
}

.page-header-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-header-desc {
    font-size: 1.125rem;
    color: var(--color-graphite);
    max-width: 36rem;
}

.page-header-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, var(--color-sage), transparent);
    opacity: 0.3;
    margin-top: 2rem;
}

/* ==========================================================================
   POSTS GRID (Index & Archive)
   ========================================================================== */
.posts-section {
    padding: 4rem 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Post Card */
.post-card {
    display: flex;
    flex-direction: column;
    background: var(--color-panel);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.post-card:hover {
    border-color: rgba(143, 188, 163, 0.3);
    transform: translateY(-4px);
}

.post-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
    opacity: 0.8;
    transition: all 0.6s ease;
}

.post-card:hover .post-card-image img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.post-card-category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-mono);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-sage);
}

.post-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-card-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.post-card-title a {
    color: var(--color-paper);
    transition: color var(--transition-fast);
}

.post-card:hover .post-card-title a {
    color: var(--color-sage);
}

.post-card-excerpt {
    font-size: 0.875rem;
    color: var(--color-graphite);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.post-card-excerpt p {
    margin: 0;
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-graphite);
}

.post-card-date,
.post-card-reading-time {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.post-card-meta svg {
    width: 10px;
    height: 10px;
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.posts-pagination {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pagination-links a,
.pagination-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.pagination-links a {
    color: var(--color-graphite);
}

.pagination-links a:hover {
    color: var(--color-sage);
    border-color: var(--color-sage);
    background: rgba(143, 188, 163, 0.1);
}

.pagination-links .current {
    color: var(--color-sage);
    border-color: var(--color-sage);
    background: rgba(143, 188, 163, 0.1);
}

.pagination-links .dots {
    border: none;
    color: var(--color-graphite);
}

/* ==========================================================================
   NO POSTS STATE
   ========================================================================== */
.no-posts {
    text-align: center;
    padding: 6rem 2rem;
}

.no-posts-icon {
    color: var(--color-sage);
    opacity: 0.3;
    margin-bottom: 2rem;
}

.no-posts h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.no-posts p {
    max-width: 24rem;
    margin: 0 auto 2rem;
}

/* ==========================================================================
   SINGLE POST
   ========================================================================== */
.single-post-main {
    padding-bottom: 0;
}

/* Single Post Header */
.single-post-header {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    padding: 8rem 0 4rem;
}

.single-post-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.single-post-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.single-post-header-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-ink) 0%, rgba(12, 14, 16, 0.8) 50%, rgba(12, 14, 16, 0.4) 100%);
}

.single-post-header .container {
    position: relative;
    z-index: 10;
}

.single-post-header-content {
    max-width: 48rem;
}

.single-post-category {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(143, 188, 163, 0.1);
    border: 1px solid rgba(143, 188, 163, 0.3);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-sage);
    margin-bottom: 1.5rem;
    transition: all var(--transition-fast);
}

.single-post-category:hover {
    background: rgba(143, 188, 163, 0.2);
    color: var(--color-sage);
}

.single-post-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.single-post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-graphite);
}

.single-post-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.single-post-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(143, 188, 163, 0.3);
}

.single-post-date,
.single-post-reading-time {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.single-post-meta svg {
    width: 12px;
    height: 12px;
}

.meta-separator {
    color: rgba(255, 255, 255, 0.2);
}

/* Single Post Article */
.single-post-article {
    padding: 4rem 0;
}

.container-narrow {
    max-width: 48rem;
}

/* Prose Styles */
.prose {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-paper);
}

.prose h2,
.prose h3,
.prose h4 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.prose h2 {
    font-size: 1.75rem;
}

.prose h3 {
    font-size: 1.5rem;
}

.prose h4 {
    font-size: 1.25rem;
}

.prose p {
    margin-bottom: 1.5rem;
    color: var(--color-paper);
}

.prose a {
    color: var(--color-sage);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prose a:hover {
    color: var(--color-paper);
}

.prose ul,
.prose ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
    color: var(--color-paper);
}

.prose blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--color-sage);
    background: rgba(143, 188, 163, 0.05);
    font-style: italic;
}

.prose blockquote p:last-child {
    margin-bottom: 0;
}

.prose pre {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--color-panel);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow-x: auto;
    font-family: var(--font-mono);
    font-size: 0.875rem;
}

.prose code {
    font-family: var(--font-mono);
    font-size: 0.875em;
    padding: 0.125rem 0.375rem;
    background: rgba(143, 188, 163, 0.1);
    border-radius: 2px;
    color: var(--color-sage);
}

.prose pre code {
    padding: 0;
    background: none;
    color: var(--color-paper);
}

.prose img {
    margin: 2rem 0;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prose figure {
    margin: 2rem 0;
}

.prose figcaption {
    margin-top: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-align: center;
    color: var(--color-graphite);
}

/* Post Tags */
.single-post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tags-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-graphite);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-link {
    padding: 0.25rem 0.75rem;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-sage);
    background: rgba(143, 188, 163, 0.1);
    border: 1px solid rgba(143, 188, 163, 0.2);
    transition: all var(--transition-fast);
}

.tag-link:hover {
    background: rgba(143, 188, 163, 0.2);
    border-color: var(--color-sage);
    color: var(--color-sage);
}

/* Author Box */
.author-box {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 2rem;
}

.author-box-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(143, 188, 163, 0.3);
}

.author-box-content {
    flex: 1;
}

.author-box-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-sage);
}

.author-box-name {
    font-size: 1.25rem;
    margin: 0.25rem 0 0.75rem;
}

.author-box-bio {
    font-size: 0.875rem;
    color: var(--color-graphite);
    margin-bottom: 1rem;
}

.author-box-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-sage);
}

.author-box-link:hover {
    color: var(--color-paper);
}

/* Post Navigation */
.post-navigation {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-nav-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .post-nav-links {
        grid-template-columns: 1fr 1fr;
    }
}

.post-nav-link {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--color-panel);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.post-nav-link:hover {
    border-color: rgba(143, 188, 163, 0.3);
    background: rgba(143, 188, 163, 0.05);
}

.post-nav-prev {
    text-align: left;
}

.post-nav-prev .post-nav-label svg {
    transform: rotate(180deg);
}

.post-nav-next {
    text-align: right;
}

.post-nav-label {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-sage);
    margin-bottom: 0.5rem;
}

.post-nav-next .post-nav-label {
    justify-content: flex-end;
}

.post-nav-title {
    font-size: 1rem;
    color: var(--color-paper);
    line-height: 1.4;
}

.post-nav-link:hover .post-nav-title {
    color: var(--color-sage);
}

.post-nav-empty {
    display: none;
}

@media (min-width: 640px) {
    .post-nav-empty {
        display: block;
    }
}

/* ==========================================================================
   PAGE TEMPLATE
   ========================================================================== */
.page-main {
    padding-bottom: 0;
}

.page-content-header {
    padding-top: 8rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-content-header-inner {
    max-width: 48rem;
}

.page-content-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-content-excerpt {
    font-size: 1.125rem;
    color: var(--color-graphite);
}

.page-article {
    padding: 4rem 0;
}

.page-featured-image {
    margin-bottom: 3rem;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-featured-image img {
    width: 100%;
    height: auto;
}

.page-content {
    /* Uses .prose styles */
}

.page-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-links-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-graphite);
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-graphite);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.page-link:hover {
    color: var(--color-sage);
    border-color: var(--color-sage);
}

/* ==========================================================================
   ARCHIVE TEMPLATE
   ========================================================================== */
.archive-header {
    padding-top: 8rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.archive-header-content {
    max-width: 48rem;
}

.archive-header-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-sage);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.archive-header-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.archive-header-desc {
    font-size: 1rem;
    color: var(--color-graphite);
    margin-bottom: 1.5rem;
}

.archive-header-desc p {
    margin: 0;
}

.archive-header-count {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-graphite);
}

.archive-header-count .count-number {
    color: var(--color-sage);
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */
.error-404-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.error-404-section {
    position: relative;
    width: 100%;
    padding: 8rem 0;
}

.error-404-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.error-404-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(143, 188, 163, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(143, 188, 163, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.error-404-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(143, 188, 163, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.error-404-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* HUD Frame */
.error-404-hud {
    position: relative;
    max-width: 32rem;
    padding: 3rem 2rem;
    background: rgba(22, 25, 29, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .error-404-hud {
        padding: 4rem 3rem;
    }
}

.hud-corner {
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
}

.hud-corner-tl {
    top: 0;
    left: 0;
    border-top: 2px solid var(--color-sage);
    border-left: 2px solid var(--color-sage);
}

.hud-corner-tr {
    top: 0;
    right: 0;
    border-top: 2px solid var(--color-sage);
    border-right: 2px solid var(--color-sage);
}

.hud-corner-bl {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid var(--color-sage);
    border-left: 2px solid var(--color-sage);
}

.hud-corner-br {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid var(--color-sage);
    border-right: 2px solid var(--color-sage);
}

.error-404-display {
    margin-bottom: 1.5rem;
}

.error-404-code {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.error-prefix {
    color: var(--color-graphite);
}

.error-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-sage);
    text-shadow: 0 0 30px rgba(143, 188, 163, 0.5);
    line-height: 1;
    display: block;
}

@media (min-width: 640px) {
    .error-number {
        font-size: 7rem;
    }
}

.error-404-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: rgba(208, 135, 112, 0.1);
    border: 1px solid rgba(208, 135, 112, 0.3);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-clay);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-clay);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.error-404-title {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

@media (min-width: 640px) {
    .error-404-title {
        font-size: 2rem;
    }
}

.error-404-message {
    font-size: 0.9375rem;
    color: var(--color-graphite);
    max-width: 24rem;
    margin: 0 auto 2rem;
}

.error-404-diagnostics {
    text-align: left;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
    font-size: 0.6875rem;
}

.diagnostic-row {
    display: flex;
    gap: 0.5rem;
    padding: 0.375rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.diagnostic-label {
    color: var(--color-graphite);
    min-width: 8rem;
}

.diagnostic-value {
    color: var(--color-paper);
    word-break: break-all;
}

.diagnostic-error {
    color: var(--color-clay);
}

.error-404-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 480px) {
    .error-404-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Search Section */
.error-404-search {
    margin-top: 3rem;
    width: 100%;
    max-width: 28rem;
}

.error-404-search-label {
    font-size: 0.75rem;
    color: var(--color-graphite);
    margin-bottom: 1rem;
}

.error-404-search-form {
    display: flex;
    gap: 0.5rem;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
}

.search-input-wrapper svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-graphite);
}

.search-input-wrapper input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-paper);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
    transition: border-color var(--transition-fast);
}

.search-input-wrapper input::placeholder {
    color: var(--color-graphite);
}

.search-input-wrapper input:focus {
    border-color: var(--color-sage);
}

/* Quick Links */
.error-404-links {
    margin-top: 3rem;
}

.error-404-links-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-graphite);
    margin-bottom: 1rem;
    display: block;
}

.error-404-links-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.quick-link {
    padding: 0.5rem 1rem;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-graphite);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.quick-link:hover {
    color: var(--color-sage);
    border-color: var(--color-sage);
    background: rgba(143, 188, 163, 0.1);
}

/* ==========================================================================
   COMMENTS
   ========================================================================== */
.comments-area {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comments-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.comments-header-line {
    flex: 1;
    height: 1px;
    background: rgba(143, 188, 163, 0.2);
}

.comments-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-sage);
    white-space: nowrap;
    margin: 0;
}

.comments-title svg {
    width: 16px;
    height: 16px;
}

.comment-count {
    color: var(--color-paper);
}

/* Comment List */
.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-list .comment {
    margin-bottom: 1.5rem;
}

.comment-list .children {
    list-style: none;
    margin: 1.5rem 0 0 1.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(143, 188, 163, 0.2);
}

@media (min-width: 640px) {
    .comment-list .children {
        margin-left: 3rem;
    }
}

.comment-body {
    padding: 1.5rem;
}

.comment-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comment-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(143, 188, 163, 0.3);
}

.comment-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.comment-author-name {
    font-size: 1rem;
    color: var(--color-paper);
}

.comment-author-name a {
    color: var(--color-paper);
}

.comment-author-name a:hover {
    color: var(--color-sage);
}

.comment-date {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-graphite);
}

.comment-date svg {
    width: 10px;
    height: 10px;
}

.comment-awaiting-moderation {
    font-size: 0.6875rem;
    color: var(--color-sage);
    padding: 0.25rem 0.75rem;
    background: rgba(143, 188, 163, 0.1);
    border: 1px solid rgba(143, 188, 163, 0.2);
}

.comment-content {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-paper);
}

.comment-content p {
    margin-bottom: 1rem;
    color: var(--color-paper);
}

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

.comment-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.comment-actions {
    display: flex;
    gap: 1rem;
}

.comment-actions a {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-sage);
}

.comment-actions a:hover {
    color: var(--color-paper);
}

.comment-permalink {
    font-size: 0.6875rem;
    color: var(--color-graphite);
}

.comment-permalink:hover {
    color: var(--color-sage);
}

/* Comment Navigation */
.comment-navigation {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comment-navigation a {
    color: var(--color-sage);
}

.comment-navigation a:hover {
    color: var(--color-paper);
}

/* Comments Closed */
.comments-closed {
    padding: 1.5rem;
    text-align: center;
}

.comments-closed p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-graphite);
}

/* Comment Form */
.comment-respond {
    margin-top: 3rem;
}

.comment-reply-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.cancel-reply {
    margin-left: 1rem;
}

.cancel-reply a {
    font-size: 0.75rem;
    color: var(--color-clay);
}

.comment-notes {
    font-size: 0.75rem;
    color: var(--color-graphite);
    margin-bottom: 1.5rem;
}

.logged-in-as {
    font-size: 0.75rem;
    color: var(--color-graphite);
    margin-bottom: 1.5rem;
}

.logged-in-as a {
    color: var(--color-sage);
}

.comment-form-field {
    margin-bottom: 1.5rem;
}

.comment-form-field label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-graphite);
    margin-bottom: 0.5rem;
}

.comment-form-field .required {
    color: var(--color-clay);
}

.comment-form-field input,
.comment-form-field textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--color-paper);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
    transition: border-color var(--transition-fast);
}

.comment-form-field input::placeholder,
.comment-form-field textarea::placeholder {
    color: var(--color-graphite);
}

.comment-form-field input:focus,
.comment-form-field textarea:focus {
    border-color: var(--color-sage);
}

.comment-form-field textarea {
    resize: vertical;
    min-height: 150px;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.comment-form-cookies-consent input {
    width: auto;
    margin-top: 0.25rem;
    accent-color: var(--color-sage);
}

.comment-form-cookies-consent span {
    font-size: 0.75rem;
    color: var(--color-graphite);
    text-transform: none;
    letter-spacing: normal;
}

.form-submit {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.form-submit .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================================================
   PART 3 STYLES: Page Templates & Additional Components
   ========================================================================== */

/* ==========================================================================
   MOBILE MENU STYLES
   ========================================================================== */
@media (max-width: 767px) {
    .main-navigation {
        position: fixed;
        top: 4rem;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-ink);
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform var(--transition-base);
        z-index: 40;
        display: flex;
        flex-direction: column;
    }

    .main-navigation.is-open {
        transform: translateX(0);
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .main-navigation li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-navigation a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
    }

    body.menu-open {
        overflow: hidden;
    }

    .menu-toggle.is-active svg {
        color: var(--color-sage);
    }
}

.site-header.is-scrolled {
    background: rgba(12, 14, 16, 0.95);
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

.site-header {
    transition: transform var(--transition-base), background var(--transition-base);
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.about-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-ink), rgba(12, 14, 16, 0.7));
}

.about-hero .container {
    position: relative;
    z-index: 10;
}

.about-hero-content {
    max-width: 40rem;
}

.about-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-sage);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.about-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-hero-desc {
    font-size: 1.125rem;
    color: var(--color-graphite);
    line-height: 1.7;
}

.about-section {
    padding: 4rem 0;
}

/* Mission */
.about-mission {
    padding: 3rem;
    text-align: center;
}

.about-mission-icon {
    color: var(--color-sage);
    margin-bottom: 1.5rem;
}

.about-mission h2 {
    margin-bottom: 1.5rem;
}

.about-mission p {
    max-width: 36rem;
    margin: 0 auto 1rem;
    color: var(--color-paper);
}

/* Stats */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

.about-stat {
    padding: 2rem;
    text-align: center;
}

.about-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-sage);
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-graphite);
}

/* Team */
.about-team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-card {
    padding: 1.5rem;
    text-align: center;
}

.team-card-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(143, 188, 163, 0.3);
}

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

.team-card-name {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.team-card-role {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-sage);
    display: block;
    margin-bottom: 0.75rem;
}

.team-card-bio {
    font-size: 0.875rem;
    color: var(--color-graphite);
    margin: 0;
}

/* Values */
.about-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-card {
    padding: 2rem;
    background: var(--color-panel);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color var(--transition-fast);
}

.value-card:hover {
    border-color: rgba(143, 188, 163, 0.3);
}

.value-card-number {
    font-size: 0.75rem;
    color: var(--color-sage);
    margin-bottom: 1rem;
}

.value-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-card-desc {
    font-size: 0.9375rem;
    color: var(--color-graphite);
    margin: 0;
}

/* CTA */
.about-cta {
    padding: 3rem;
    text-align: center;
}

.about-cta h2 {
    margin-bottom: 1rem;
}

.about-cta p {
    max-width: 32rem;
    margin: 0 auto 2rem;
    color: var(--color-graphite);
}

.about-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 480px) {
    .about-cta-buttons {
        flex-direction: row;
    }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-header {
    padding-top: 8rem;
    padding-bottom: 3rem;
}

.contact-header-content {
    max-width: 40rem;
}

.contact-header-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-sage);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.contact-header-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-header-desc {
    font-size: 1.125rem;
    color: var(--color-graphite);
}

.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* Contact Form */
.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h2 {
    margin-bottom: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-graphite);
    margin-bottom: 0.5rem;
}

.form-field .required {
    color: var(--color-clay);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--color-paper);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--color-graphite);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--color-sage);
}

.form-field select {
    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 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-field textarea {
    resize: vertical;
    min-height: 150px;
}

.form-field-checkbox {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin-top: 0.25rem;
    accent-color: var(--color-sage);
}

.checkbox-label span {
    font-size: 0.875rem;
    color: var(--color-graphite);
}

.btn-large {
    padding: 1rem 2rem;
}

.form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    font-family: var(--font-mono);
    font-size: 0.875rem;
}

.form-status-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-status-error {
    background: rgba(208, 135, 112, 0.1);
    border: 1px solid rgba(208, 135, 112, 0.3);
    color: var(--color-clay);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    padding: 1.5rem;
}

.contact-info-card h3 {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-sage);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    margin-bottom: 1rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-label {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-graphite);
    margin-bottom: 0.25rem;
}

.contact-info-value {
    font-size: 0.9375rem;
    color: var(--color-paper);
}

a.contact-info-value:hover {
    color: var(--color-sage);
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-graphite);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.contact-social-link:hover {
    color: var(--color-sage);
    border-color: var(--color-sage);
    background: rgba(143, 188, 163, 0.1);
}

.contact-info-card .btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.6875rem;
    margin-top: 1rem;
}

.contact-status {
    padding: 1rem;
    text-align: center;
}

.contact-status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--color-graphite);
}

.status-dot-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s infinite;
}

/* ==========================================================================
   REVIEWS PAGE
   ========================================================================== */
.reviews-filter-bar {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--color-panel);
}

.reviews-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-graphite);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-buttons .filter-btn {
    padding: 0.375rem 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-graphite);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-buttons .filter-btn:hover,
.filter-buttons .filter-btn.active {
    color: var(--color-sage);
    border-color: var(--color-sage);
    background: rgba(143, 188, 163, 0.1);
}

.filter-select {
    padding: 0.375rem 2rem 0.375rem 0.75rem;
    font-size: 0.75rem;
    color: var(--color-paper);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    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 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
}

.reviews-section {
    padding: 3rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.review-card {
    background: var(--color-panel);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all var(--transition-base);
}

.review-card:hover {
    border-color: rgba(143, 188, 163, 0.3);
    transform: translateY(-4px);
}

.review-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    display: block;
}

.review-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.review-card:hover .review-card-image img {
    transform: scale(1.05);
}

.review-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(143, 188, 163, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.review-card:hover .review-card-overlay {
    opacity: 1;
}

.review-card-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-ink);
}

.review-card-content {
    padding: 1.5rem;
}

.review-card-category {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-sage);
    margin-bottom: 0.5rem;
    display: block;
}

.review-card-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.review-card-title a {
    color: var(--color-paper);
}

.review-card:hover .review-card-title a {
    color: var(--color-sage);
}

.review-card-excerpt {
    font-size: 0.875rem;
    color: var(--color-graphite);
    margin-bottom: 1rem;
}

.review-card-meta {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-graphite);
}

/* ==========================================================================
   GUIDES PAGE
   ========================================================================== */
.guides-featured {
    padding: 3rem 0;
}

.featured-guide {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
}

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

.featured-guide-image {
    aspect-ratio: 16 / 10;
}

@media (min-width: 768px) {
    .featured-guide-image {
        aspect-ratio: auto;
    }
}

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

.featured-guide-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .featured-guide-content {
        padding: 3rem;
    }
}

.featured-guide-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--color-sage);
    color: var(--color-ink);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 1rem;
    width: fit-content;
}

.featured-guide-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.featured-guide-desc {
    color: var(--color-graphite);
    margin-bottom: 1.5rem;
}

.featured-guide-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: var(--color-graphite);
    margin-bottom: 1.5rem;
}

.featured-guide-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

/* Guide Categories */
.guides-categories {
    padding: 3rem 0;
    background: var(--color-panel);
}

.guides-categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .guides-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .guides-categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.guide-category-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-ink);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.guide-category-card:hover {
    border-color: rgba(143, 188, 163, 0.3);
    background: rgba(143, 188, 163, 0.05);
}

.guide-category-icon {
    color: var(--color-sage);
    flex-shrink: 0;
}

.guide-category-content {
    flex: 1;
}

.guide-category-content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.guide-category-content p {
    font-size: 0.75rem;
    color: var(--color-graphite);
    margin: 0;
}

.guide-category-count {
    font-size: 0.625rem;
    color: var(--color-graphite);
    white-space: nowrap;
}

/* Guides Grid */
.guides-section {
    padding: 3rem 0;
}

.guides-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.guide-card {
    background: var(--color-panel);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all var(--transition-base);
}

.guide-card:hover {
    border-color: rgba(143, 188, 163, 0.3);
}

.guide-card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: block;
}

.guide-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
    transition: all 0.6s ease;
}

.guide-card:hover .guide-card-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.guide-card-content {
    padding: 1.25rem;
}

.guide-card-category {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-sage);
    margin-bottom: 0.5rem;
    display: block;
}

.guide-card-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.guide-card-title a {
    color: var(--color-paper);
}

.guide-card:hover .guide-card-title a {
    color: var(--color-sage);
}

.guide-card-meta {
    font-size: 0.625rem;
    color: var(--color-graphite);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

/* ==========================================================================
   GEAR DATABASE PAGE
   ========================================================================== */
.gear-filters-section {
    padding: 2rem 0;
}

.gear-filters {
    padding: 1.5rem;
}

.gear-filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.gear-filters-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-sage);
}

.gear-filters-reset {
    font-size: 0.75rem;
    color: var(--color-graphite);
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.gear-filters-reset:hover {
    color: var(--color-sage);
}

.gear-filters-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .gear-filters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gear-filters-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gear-filter-group label {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-graphite);
    margin-bottom: 0.5rem;
}

.gear-filter-select {
    width: 100%;
    padding: 0.625rem 2rem 0.625rem 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-paper);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    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 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    transition: border-color var(--transition-fast);
}

.gear-filter-select:focus {
    outline: none;
    border-color: var(--color-sage);
}

.gear-filters-actions {
    text-align: center;
}

.gear-section {
    padding: 2rem 0 4rem;
}

.gear-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.gear-results-count {
    font-size: 0.75rem;
    color: var(--color-graphite);
}

.gear-results-count strong {
    color: var(--color-sage);
}

.gear-view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-graphite);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.view-btn:hover,
.view-btn.active {
    color: var(--color-sage);
    border-color: var(--color-sage);
}

.gear-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .gear-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.gear-grid.view-list {
    grid-template-columns: 1fr;
}

.gear-card {
    background: var(--color-panel);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all var(--transition-base);
}

.gear-card:hover {
    border-color: rgba(143, 188, 163, 0.3);
    transform: translateY(-4px);
}

.gear-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--color-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gear-card-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.gear-card:hover .gear-card-image img {
    transform: scale(1.05);
}

.gear-card-brand {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-sage);
}

.gear-card-content {
    padding: 1.25rem;
}

.gear-card-name {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.gear-card-specs {
    font-size: 0.6875rem;
    color: var(--color-graphite);
    margin-bottom: 1rem;
}

.spec-separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.gear-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gear-card-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-sage);
}

.gear-card-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-graphite);
    transition: color var(--transition-fast);
}

.gear-card-link:hover {
    color: var(--color-sage);
}

.gear-load-more {
    text-align: center;
    margin-top: 3rem;
}

/* ==========================================================================
   SETUP GALLERY PAGE
   ========================================================================== */
.setup-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
}

.setup-hero-bg {
    position: absolute;
    inset: 0;
}

.setup-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.setup-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-ink), rgba(12, 14, 16, 0.6));
}

.setup-hero .container {
    position: relative;
    z-index: 10;
}

.setup-hero-content {
    max-width: 40rem;
}

.setup-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-sage);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.setup-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.setup-hero-desc {
    font-size: 1.125rem;
    color: var(--color-graphite);
    line-height: 1.7;
}

/* Quick Links */
.setup-quicklinks {
    padding: 2rem 0;
    background: var(--color-panel);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.setup-quicklinks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

.setup-quicklink {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    transition: all var(--transition-fast);
}

.setup-quicklink:hover {
    background: rgba(143, 188, 163, 0.1);
    border-color: rgba(143, 188, 163, 0.3);
}

.setup-quicklink-icon {
    color: var(--color-sage);
    margin-bottom: 0.75rem;
}

.setup-quicklink-title {
    font-size: 1rem;
    color: var(--color-paper);
    margin-bottom: 0.25rem;
}

.setup-quicklink-desc {
    font-size: 0.75rem;
    color: var(--color-graphite);
}

/* Setup Section */
.setup-section {
    padding: 3rem 0;
}

.setup-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.setup-card {
    background: var(--color-panel);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all var(--transition-base);
}

.setup-card:hover {
    border-color: rgba(143, 188, 163, 0.3);
}

.setup-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    display: block;
}

.setup-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
    transition: all 0.6s ease;
}

.setup-card:hover .setup-card-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.setup-card-category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-sage);
}

.setup-card-content {
    padding: 1.25rem;
}

.setup-card-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.setup-card-title a {
    color: var(--color-paper);
}

.setup-card:hover .setup-card-title a {
    color: var(--color-sage);
}

.setup-card-excerpt {
    font-size: 0.875rem;
    color: var(--color-graphite);
    margin: 0;
}

/* Techniques */
.setup-techniques-section {
    background: var(--color-panel);
}

.setup-techniques-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .setup-techniques-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.technique-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    transition: all var(--transition-fast);
}

.technique-card:hover {
    background: rgba(143, 188, 163, 0.1);
    border-color: rgba(143, 188, 163, 0.3);
}

.technique-card-title {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.technique-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.625rem;
    color: var(--color-graphite);
}

.technique-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.technique-level {
    padding: 0.125rem 0.5rem;
    border-radius: 2px;
}

.technique-level-beginner {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.technique-level-intermediate {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
}

.technique-level-advanced {
    background: rgba(208, 135, 112, 0.2);
    color: var(--color-clay);
}

.technique-card-arrow {
    color: var(--color-graphite);
    transition: all var(--transition-fast);
}

.technique-card:hover .technique-card-arrow {
    color: var(--color-sage);
    transform: translateX(4px);
}

/* Gallery CTA */
.setup-gallery-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .setup-gallery-cta {
        grid-template-columns: 1fr 1fr;
        padding: 3rem;
    }
}

.setup-gallery-content h2 {
    margin-bottom: 1rem;
}

.setup-gallery-content p {
    color: var(--color-graphite);
    margin-bottom: 1.5rem;
}

.setup-gallery-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.setup-gallery-preview img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 2px;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.setup-gallery-preview img:hover {
    opacity: 1;
}

/* 2026-06-13 fix: force dark text inside builder light-bg callout boxes (invisible on dark themes) */
[style*="background:#f3faf6"],[style*="background:#fbf8f0"],[style*="background:#fff"]{color:#1a1a1a !important}

/* SF_ALIGN_FIX 2026-06-13 */
.single-post-content{margin-left:auto !important;margin-right:auto !important}
.single-post-featured-image{margin-left:auto !important;margin-right:auto !important;max-width:48rem !important}

/* SF_DISCLOSURE_NORMAL 2026-06-14 — affiliate disclosures render as NORMAL body text: no box, no border/background/padding, no fade, normal size & colour. */
.affiliate-disclosure,
[style*="#f7f7f7"]{ color: var(--color-text-secondary, inherit) !important; background: none !important; border: none !important; padding: 0 !important; margin: 1rem 0 !important; font-size: inherit !important; opacity: 1 !important; border-radius: 0 !important; }
.affiliate-disclosure *,
[style*="#f7f7f7"] *{ color: var(--color-text-secondary, inherit) !important; opacity: 1 !important; }
.affiliate-disclosure a,
[style*="#f7f7f7"] a{ color: #58a6ff !important; text-decoration: underline; }
