:root {
    --gold-base: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-accent: #C5A059;
    --gold-muted: rgba(212, 175, 55, 0.2);
    --deep-sapphire: #0E1726;
    --slate-graphite: #1A2332;
    --rich-anthracite: #121824;
    --muted-platinum: #94A3B8;
    --dark-primary: #080C14;
    --dark-surface: #0F1622;
    --dark-elevated: #162030;
    --dark-card-backdrop: rgba(15, 22, 34, 0.85);
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-tertiary: #64748B;
    --text-accent: #E5C158;
    --border-subtle: rgba(212, 175, 55, 0.15);
    --border-standard: rgba(212, 175, 55, 0.35);
    --border-focus: #D4AF37;
    --border-dark-divider: rgba(148, 163, 184, 0.12);
    --font-headings: 'Cormorant Garamond', 'Cinzel', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.luxury-dark-theme {
    margin: 0;
    padding: 0;
    background-color: var(--dark-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.text-muted {
    color: #94A3B8 !important;
}

a {
    color: var(--gold-base);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--gold-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: 0.01em;
}

code,
pre,
.font-mono {
    font-family: var(--font-mono);
}

::selection {
    background-color: var(--gold-muted);
    color: var(--gold-light);
}

/* ===== header ===== */
.header-block {
    background-color: #080C14;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    z-index: 1030;
    position: sticky;
    top: 0;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.header-block .header-block__navbar {
    background-color: #080C14;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.header-block .header-block__container {
    max-width: 1280px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.header-block .header-block__brand {
    text-decoration: none;
}

.header-block .header-block__logo-img {
    max-width: 42px;
    height: auto;
    object-fit: contain;
}

.header-block .header-block__brand-text {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #F8FAFC;
    line-height: 1.1;
    letter-spacing: 0.03em;
}

.header-block .header-block__brand-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #D4AF37;
    letter-spacing: 0.18em;
    margin-top: 2px;
}

.header-block .header-block__toggler {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 4px;
}

.header-block .header-block__toggler:focus {
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.4);
    outline: none;
}

.header-block .header-block__toggler-icon {
    stroke: #D4AF37;
}

.header-block .header-block__collapse {
    background-color: #080C14;
}

.header-block .header-block__nav-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-block .header-block__nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 0.85rem;
    border-radius: 2px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.header-block .header-block__nav-link:hover,
.header-block .header-block__nav-link:focus {
    color: #F3E5AB;
    background-color: rgba(212, 175, 55, 0.08);
}

.header-block .header-block__nav-link.active,
.header-block .header-block__nav-link.active:hover,
.header-block .header-block__nav-link.active:focus {
    color: #D4AF37 !important;
    background-color: transparent !important;
    border-bottom: 2px solid #D4AF37;
}

.header-block .header-block__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #080C14;
    border: 1px solid #F3E5AB;
    padding: 0.6rem 1.4rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.header-block .header-block__cta-btn:hover {
    background: #F3E5AB;
    color: #080C14;
    border-color: #D4AF37;
}

@media (max-width: 991.98px) {
    .header-block .header-block__collapse {
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-top: 1px solid rgba(212, 175, 55, 0.15);
        margin-top: 0.75rem;
    }

    .header-block .header-block__nav-list {
        align-items: flex-start;
        gap: 0.25rem;
        margin-bottom: 1rem;
    }

    .header-block .header-block__nav-link {
        font-size: 0.775rem;
        padding: 0.5rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(148, 163, 184, 0.08);
    }

    .header-block .header-block__actions {
        width: 100%;
    }

    .header-block .header-block__cta-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== choose-orientation-around-the-parts-real-priorities ===== */
.hero-orientation-editorial {
    background-color: #F8FAFC;
    color: #0B0F17;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-orientation-editorial .hero-image-composition {
    max-width: 540px;
    min-height: 420px;
    padding-bottom: 2rem;
}

.hero-orientation-editorial .image-layer-main {
    width: 82%;
    height: 380px;
    background-color: #E2E8F0;
    border: 1px solid rgba(14, 23, 38, 0.12);
}

.hero-orientation-editorial .image-layer-overlap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58%;
    height: 250px;
    background-color: #CBD5E1;
    border: 4px solid #F8FAFC;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.hero-orientation-editorial .grayscale-img {
    filter: grayscale(100%) contrast(108%);
    transition: filter 0.3s ease;
}

.hero-orientation-editorial .grayscale-img:hover {
    filter: grayscale(40%) contrast(105%);
}

.hero-orientation-editorial .circular-badge {
    position: absolute;
    top: 24px;
    right: 12%;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background-color: #080C14;
    border: 1px solid #D4AF37;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 3;
}

.hero-orientation-editorial .badge-kicker {
    font-size: 0.55rem;
    letter-spacing: 0.14em;
    color: #D4AF37;
    font-family: 'JetBrains Mono', monospace;
}

.hero-orientation-editorial .badge-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #F8FAFC;
}

.hero-orientation-editorial .badge-subtitle {
    font-size: 0.65rem;
    color: #94A3B8;
    font-family: 'JetBrains Mono', monospace;
}

.hero-orientation-editorial .metric-callout-pill {
    bottom: 25px;
    left: -10px;
    background-color: rgba(8, 12, 20, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(8px);
    z-index: 3;
    max-width: 240px;
}

.hero-orientation-editorial .callout-icon {
    width: 18px;
    height: 18px;
    color: #D4AF37;
}

.hero-orientation-editorial .callout-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #D4AF37;
    font-family: 'JetBrains Mono', monospace;
}

.hero-orientation-editorial .callout-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: #F8FAFC;
}

.hero-orientation-editorial .gold-divider {
    width: 28px;
    height: 1px;
    background-color: #C5A059;
    display: inline-block;
}

.hero-orientation-editorial .hero-eyebrow {
    font-size: 0.8125rem;
    letter-spacing: 0.16em;
    font-weight: 600;
    color: #997314;
}

.hero-orientation-editorial .hero-heading {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 2.75rem;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #080C14;
}

.hero-orientation-editorial .hero-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
    font-weight: 400;
}

.hero-orientation-editorial .factor-selector-container {
    background-color: #FFFFFF;
    border: 1px solid rgba(14, 23, 38, 0.12);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.hero-orientation-editorial .factor-btn {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.45rem 0.85rem;
    background-color: #F1F5F9;
    color: #475569;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-orientation-editorial .factor-btn:hover {
    background-color: #E2E8F0;
    color: #0B0F17;
}

.hero-orientation-editorial .factor-btn.active {
    background-color: #0E1726;
    color: #F3E5AB;
    border-color: #D4AF37;
}

.hero-orientation-editorial .factor-panel {
    display: none;
    padding-top: 0.25rem;
}

.hero-orientation-editorial .factor-panel.show {
    display: block;
}

.hero-orientation-editorial .factor-title {
    font-weight: 600;
    font-size: 0.92rem;
    color: #0B0F17;
}

.hero-orientation-editorial .factor-metric {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: #997314;
    background-color: rgba(212, 175, 55, 0.12);
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
}

.hero-orientation-editorial .factor-description {
    font-size: 0.88rem;
    line-height: 1.55;
    color: #64748B;
}

.hero-orientation-editorial .hero-btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #080C14;
    border: 1px solid #F3E5AB;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.82rem;
    border-radius: 2px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.hero-orientation-editorial .hero-btn-primary:hover {
    background: #080C14;
    color: #F3E5AB;
    border-color: #D4AF37;
}

.hero-orientation-editorial .hero-btn-secondary {
    background-color: #FFFFFF;
    color: #0B0F17;
    border: 1px solid rgba(14, 23, 38, 0.25);
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.82rem;
    border-radius: 2px;
    text-decoration: none;
}

.hero-orientation-editorial .hero-btn-secondary:hover {
    background-color: #0E1726;
    color: #F8FAFC;
    border-color: #0E1726;
}

.hero-orientation-editorial .btn-icon {
    width: 16px;
    height: 16px;
}

@media (max-width: 991.98px) {
    .hero-orientation-editorial .hero-heading {
        font-size: 2.15rem;
    }

    .hero-orientation-editorial .hero-image-composition {
        min-height: 360px;
        margin-bottom: 1.5rem;
    }

    .hero-orientation-editorial .image-layer-main {
        height: 300px;
    }

    .hero-orientation-editorial .image-layer-overlap {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .hero-orientation-editorial .hero-heading {
        font-size: 1.55rem;
        hyphens: auto;
    }

    .hero-orientation-editorial .hero-eyebrow {
        font-size: 0.72rem;
    }

    .hero-orientation-editorial .hero-lead {
        font-size: 0.95rem;
    }

    .hero-orientation-editorial .metric-callout-pill {
        left: 10px;
        bottom: 10px;
        padding: 0.65rem 0.85rem !important;
    }
}

/* ===== orientation-principles ===== */
.principles-grid-section {
    background-color: #080C14;
    background-image: radial-gradient(circle at top center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    color: #94A3B8;
    position: relative;
    overflow: hidden
}

.principles-grid-section .principles-eyebrow {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #D4AF37
}

.principles-grid-section .principles-heading {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: #F8FAFC
}

.principles-grid-section .principles-lead {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #94A3B8;
    font-weight: 300
}

.principles-grid-section .principles-card {
    background: linear-gradient(145deg, rgba(22, 32, 48, 0.7) 0%, rgba(15, 22, 34, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 4px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    transition: border-color 0.25s ease, background-color 0.25s ease;
    overflow: hidden
}

.principles-grid-section .principles-card:hover {
    border-color: rgba(212, 175, 55, 0.55);
    background: linear-gradient(145deg, rgba(26, 38, 58, 0.85) 0%, rgba(14, 23, 38, 0.98) 100%)
}

.principles-grid-section .principles-card-media {
    width: 100%;
    height: 220px;
    background-color: #0E1726;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15)
}

.principles-grid-section .principles-media-link {
    width: 100%;
    height: 100%
}

.principles-grid-section .principles-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block
}

.principles-grid-section .principles-badge {
    top: 12px;
    right: 12px;
    background: rgba(8, 12, 20, 0.85);
    color: #D4AF37;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    padding: 4px 10px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 2px;
    letter-spacing: 0.08em;
    text-transform: uppercase
}

.principles-grid-section .principles-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #C5A059;
    display: inline-block
}

.principles-grid-section .principles-card-title {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.625rem;
    line-height: 1.3;
    font-weight: 600;
    margin: 0
}

.principles-grid-section .principles-title-link {
    color: #F8FAFC;
    text-decoration: none;
    transition: color 0.2s ease
}

.principles-grid-section .principles-title-link:hover {
    color: #F3E5AB
}

.principles-grid-section .principles-card-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #94A3B8
}

.principles-grid-section .principles-btn {
    background: rgba(22, 32, 48, 0.6);
    color: #F8FAFC;
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 0.75rem 1.25rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    min-height: 44px;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease
}

.principles-grid-section .principles-btn:hover {
    background: #0E1726;
    border-color: #D4AF37;
    color: #F3E5AB
}

.principles-grid-section .principles-btn-icon {
    width: 16px;
    height: 16px
}

.principles-grid-section .principles-cta-banner {
    background: linear-gradient(135deg, rgba(14, 23, 38, 0.95) 0%, rgba(8, 12, 20, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5)
}

.principles-grid-section .principles-cta-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    color: #D4AF37;
    letter-spacing: 0.12em;
    text-transform: uppercase
}

.principles-grid-section .principles-cta-heading {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.625rem;
    font-weight: 600;
    line-height: 1.3;
    color: #F8FAFC
}

.principles-grid-section .principles-action-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #080C14;
    border: 1px solid #F3E5AB;
    padding: 0.85rem 1.75rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    min-height: 44px;
    transition: opacity 0.2s ease
}

.principles-grid-section .principles-action-btn:hover {
    opacity: 0.9;
    color: #080C14
}

@media (max-width:767.98px) {
    .principles-grid-section .principles-heading {
        font-size: 16px;
        line-height: 1.3;
        hyphens: auto
    }

    .principles-grid-section .principles-card-title {
        font-size: 14px;
        line-height: 1.3;
        hyphens: auto
    }

    .principles-grid-section .principles-cta-heading {
        font-size: 14px;
        line-height: 1.3;
        hyphens: auto
    }

    .principles-grid-section .principles-card-media {
        height: 190px
    }

    .principles-grid-section .principles-lead {
        font-size: 0.875rem;
        line-height: 1.6
    }
}

/* ===== practical-cases ===== */
.cases-grid-section {
    background: #080C14;
    color: #F8FAFC;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.cases-grid-section .cases-eyebrow {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #D4AF37;
}

.cases-grid-section .cases-main-heading {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1.25;
    color: #F8FAFC;
    letter-spacing: 0.01em;
}

.cases-grid-section .cases-lead-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: #94A3B8;
    max-width: 680px;
}

.cases-grid-section .case-card {
    background: linear-gradient(145deg, rgba(22, 32, 48, 0.7) 0%, rgba(15, 22, 34, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cases-grid-section .case-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: linear-gradient(145deg, rgba(26, 38, 56, 0.85) 0%, rgba(15, 22, 34, 0.95) 100%);
}

.cases-grid-section .case-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0E1726;
}

.cases-grid-section .case-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.cases-grid-section .case-tag {
    top: 12px;
    left: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    color: #D4AF37;
    background: rgba(8, 12, 20, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 3px 8px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cases-grid-section .case-meta-row {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #94A3B8;
}

.cases-grid-section .case-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cases-grid-section .case-meta-icon {
    width: 14px;
    height: 14px;
    color: #D4AF37;
    flex-shrink: 0;
}

.cases-grid-section .case-author-item {
    color: #64748B;
}

.cases-grid-section .case-title {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    color: #F8FAFC;
}

.cases-grid-section .case-title-link {
    color: #F8FAFC;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cases-grid-section .case-title-link:hover {
    color: #F3E5AB;
}

.cases-grid-section .case-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #94A3B8;
}

.cases-grid-section .case-card-footer {
    border-color: rgba(148, 163, 184, 0.12) !important;
}

.cases-grid-section .case-action-btn {
    background: rgba(22, 32, 48, 0.85);
    color: #F8FAFC;
    border: 1px solid rgba(212, 175, 55, 0.35);
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.65rem 1rem;
    border-radius: 2px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cases-grid-section .case-action-btn:hover {
    background: #D4AF37;
    color: #080C14;
    border-color: #F3E5AB;
}

.cases-grid-section .case-btn-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.cases-grid-section .cases-browse-all-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #080C14;
    border: 1px solid #F3E5AB;
    padding: 0.85rem 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.cases-grid-section .cases-browse-all-btn:hover {
    background: #F3E5AB;
    color: #080C14;
    border-color: #D4AF37;
}

@media (max-width: 767.98px) {
    .cases-grid-section .cases-main-heading {
        font-size: 1.5rem;
        hyphens: auto;
    }

    .cases-grid-section .case-title {
        font-size: 1.2rem;
    }

    .cases-grid-section .cases-eyebrow {
        font-size: 0.75rem;
    }
}

/* ===== questions-to-ask-any-contractor ===== */
.contractor-audit-section {
    background-color: #080C14;
    color: #F8FAFC;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

.contractor-audit-section__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #D4AF37;
}

.contractor-audit-section__title {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1.25;
    color: #F8FAFC;
    letter-spacing: 0.01em;
}

@media (max-width: 767.98px) {
    .contractor-audit-section__title {
        font-size: 16px;
        hyphens: auto;
    }
}

.contractor-audit-section__lead {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.65;
    color: #94A3B8;
    max-width: 820px;
    margin: 0 auto;
}

.contractor-audit-section__filter-bar {
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 1rem;
}

.contractor-audit-section__filter-btn {
    background: rgba(22, 32, 48, 0.5);
    color: #94A3B8;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 2px;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.contractor-audit-section__filter-btn:hover {
    color: #F8FAFC;
    border-color: rgba(212, 175, 55, 0.45);
    background: rgba(22, 32, 48, 0.85);
}

.contractor-audit-section__filter-btn.active {
    color: #080C14;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    border-color: #F3E5AB;
}

.contractor-audit-section__card {
    background: linear-gradient(145deg, rgba(22, 32, 48, 0.7) 0%, rgba(15, 22, 34, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    padding: 1.5rem;
    transition: border-color 0.2s ease;
}

.contractor-audit-section__card:hover {
    border-color: rgba(212, 175, 55, 0.45);
}

.contractor-audit-section__num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.15rem;
    font-weight: 600;
    color: #D4AF37;
}

.contractor-audit-section__badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #F3E5AB;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    letter-spacing: 0.04em;
}

.contractor-audit-section__card-title {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    color: #F8FAFC;
}

@media (max-width: 767.98px) {
    .contractor-audit-section__card-title {
        font-size: 14px;
        hyphens: auto;
    }
}

.contractor-audit-section__card-desc {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #94A3B8;
}

.contractor-audit-section__criteria {
    background: rgba(8, 12, 20, 0.65);
    border-left: 2px solid #D4AF37;
    padding: 0.75rem 0.85rem;
    border-radius: 0 2px 2px 0;
}

.contractor-audit-section__criteria-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #E5C158;
    letter-spacing: 0.06em;
    margin-bottom: 0.25rem;
}

.contractor-audit-section__criteria-text {
    font-size: 0.825rem;
    line-height: 1.45;
    color: #F8FAFC;
}

.contractor-audit-section__cta-banner {
    background: linear-gradient(145deg, rgba(14, 23, 38, 0.95) 0%, rgba(8, 12, 20, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 4px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
}

.contractor-audit-section__cta-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #D4AF37;
}

.contractor-audit-section__cta-title {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #F8FAFC;
    line-height: 1.25;
}

@media (max-width: 767.98px) {
    .contractor-audit-section__cta-title {
        font-size: 14px;
        hyphens: auto;
    }
}

.contractor-audit-section__cta-desc {
    font-size: 0.9rem;
    color: #94A3B8;
    line-height: 1.5;
}

.contractor-audit-section__btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #080C14;
    border: 1px solid #F3E5AB;
    padding: 0.75rem 1.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.contractor-audit-section__btn-gold:hover {
    color: #080C14;
    background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 100%);
    border-color: #FFFFFF;
}

/* ===== support-and-response-times ===== */
.support-response-section {
    background: linear-gradient(180deg, #080C14 0%, #0E1726 100%);
    padding: 5rem 0;
    color: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.support-response-section .support-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 2px;
    color: #D4AF37;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    margin-bottom: 1.25rem;
}

.support-response-section .eyebrow-icon {
    width: 1rem;
    height: 1rem;
    stroke: #D4AF37;
}

.support-response-section .support-heading {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 2.25rem;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #F8FAFC;
    margin-bottom: 1.25rem;
}

.support-response-section .support-lead {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
    color: #94A3B8;
    max-width: 800px;
    margin: 0 auto;
}

.support-response-section .support-card {
    background: linear-gradient(145deg, rgba(22, 32, 48, 0.7) 0%, rgba(15, 22, 34, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    padding: 1.75rem;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.support-response-section .support-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: linear-gradient(145deg, rgba(26, 38, 58, 0.85) 0%, rgba(18, 26, 40, 0.95) 100%);
}

.support-response-section .support-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.support-response-section .card-icon-wrapper {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}

.support-response-section .card-icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke: #D4AF37;
}

.support-response-section .tier-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    color: #C5A059;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-transform: uppercase;
}

.support-response-section .support-card-title {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 500;
    color: #F8FAFC;
    margin-bottom: 0.75rem;
}

.support-response-section .support-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #94A3B8;
    margin-bottom: 1.5rem;
}

.support-response-section .support-metrics-box {
    background: rgba(8, 12, 20, 0.6);
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    padding: 1rem 0 0 0;
}

.support-response-section .metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.support-response-section .metric-row:last-child {
    margin-bottom: 0;
}

.support-response-section .metric-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.support-response-section .metric-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    color: #D4AF37;
}

.support-response-section .metric-channel-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    color: #F3E5AB;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.2s ease;
}

.support-response-section .metric-channel-link:hover {
    color: #D4AF37;
    text-decoration: underline;
}

.support-response-section .metric-address-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #94A3B8;
    text-align: right;
}

.support-response-section .sla-panel {
    background: linear-gradient(145deg, rgba(14, 23, 38, 0.95) 0%, rgba(8, 12, 20, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 4px;
    padding: 2.25rem 2rem;
    margin-top: 1.5rem;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
}

.support-response-section .sla-title-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: #D4AF37;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.support-response-section .sla-title {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.65rem;
    line-height: 1.2;
    color: #F8FAFC;
    margin-bottom: 0.35rem;
}

.support-response-section .sla-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #94A3B8;
    margin-bottom: 0;
}

.support-response-section .sla-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.support-response-section .sla-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(22, 32, 48, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 2px;
    gap: 0.5rem;
}

.support-response-section .sla-day {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #F8FAFC;
    min-width: 140px;
}

.support-response-section .sla-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    color: #D4AF37;
}

.support-response-section .sla-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    letter-spacing: 0.05em;
}

.support-response-section .sla-status-active {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.support-response-section .sla-status-limited {
    background: rgba(234, 179, 8, 0.15);
    color: #facc15;
    border: 1px solid rgba(250, 204, 21, 0.3);
}

.support-response-section .sla-status-standby {
    background: rgba(148, 163, 184, 0.15);
    color: #94A3B8;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.support-response-section .sla-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.support-response-section .sla-guarantee-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #94A3B8;
    line-height: 1.5;
}

.support-response-section .support-primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #080C14;
    border: 1px solid #F3E5AB;
    padding: 0.75rem 1.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    white-space: nowrap;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.support-response-section .support-primary-action:hover {
    background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 100%);
    color: #080C14;
}

@media (max-width: 767.98px) {
    .support-response-section {
        padding: 3.5rem 0;
    }

    .support-response-section .support-heading {
        font-size: 1.6rem;
        hyphens: auto;
    }

    .support-response-section .support-card-title {
        font-size: 1.25rem;
    }

    .support-response-section .sla-panel {
        padding: 1.5rem 1rem;
    }

    .support-response-section .sla-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .support-response-section .metric-address-text {
        text-align: left;
    }
}

/* ===== glossary-for-beginners ===== */
.glossary-section {
    background-color: #080C14;
    color: #F8FAFC;
    padding: 4.5rem 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

.glossary-section .glossary-eyebrow {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.08);
    border-radius: 2px;
}

.glossary-section .glossary-badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #D4AF37;
}

.glossary-section .glossary-heading {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.25;
    color: #F8FAFC;
    letter-spacing: 0.01em;
}

.glossary-section .glossary-lead {
    color: #94A3B8;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
    font-weight: 300;
}

.glossary-section .glossary-filter-wrapper {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(15, 22, 34, 0.8);
    padding: 0.35rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.glossary-section .glossary-filter-btn {
    background: transparent;
    border: 1px solid transparent;
    color: #94A3B8;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.45rem 1rem;
    border-radius: 2px;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.glossary-section .glossary-filter-btn:hover {
    color: #F8FAFC;
    background-color: rgba(212, 175, 55, 0.1);
}

.glossary-section .glossary-filter-btn.active {
    color: #080C14;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    border-color: #F3E5AB;
    font-weight: 600;
}

.glossary-section .glossary-card {
    background: linear-gradient(145deg, rgba(22, 32, 48, 0.7) 0%, rgba(15, 22, 34, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.glossary-section .glossary-card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    background: linear-gradient(145deg, rgba(26, 38, 56, 0.8) 0%, rgba(18, 26, 40, 0.95) 100%);
}

.glossary-section .glossary-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.85rem;
}

.glossary-section .glossary-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #D4AF37;
    letter-spacing: 0.05em;
}

.glossary-section .glossary-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(148, 163, 184, 0.12);
    color: #94A3B8;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    font-weight: 500;
}

.glossary-section .glossary-term-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #F8FAFC;
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.glossary-section .glossary-def-text {
    font-size: 0.925rem;
    line-height: 1.6;
    color: #94A3B8;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.glossary-section .glossary-card-footer {
    padding-top: 0.85rem;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.glossary-section .glossary-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #D4AF37;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.glossary-section .glossary-inline-link:hover {
    color: #F3E5AB;
    text-decoration: underline;
}

.glossary-section .glossary-link-icon {
    width: 14px;
    height: 14px;
    stroke-width: 1.75;
}

.glossary-section .glossary-action-card {
    background: rgba(14, 23, 38, 0.65);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 4px;
    max-width: 820px;
    margin: 0 auto;
}

.glossary-section .glossary-action-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #F8FAFC;
}

.glossary-section .glossary-action-desc {
    color: #94A3B8;
    font-size: 0.95rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.glossary-section .glossary-btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #080C14;
    border: 1px solid #F3E5AB;
    padding: 0.75rem 1.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.glossary-section .glossary-btn-primary:hover {
    color: #080C14;
    background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 100%);
}

.glossary-section .glossary-btn-secondary {
    background: rgba(22, 32, 48, 0.6);
    color: #F8FAFC;
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 0.75rem 1.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.glossary-section .glossary-btn-secondary:hover {
    color: #F8FAFC;
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.15);
}

@media (max-width: 767.98px) {
    .glossary-section {
        padding: 3rem 0;
    }

    .glossary-section .glossary-heading {
        font-size: 1.5rem;
    }

    .glossary-section .glossary-term-title {
        font-size: 1.15rem;
    }

    .glossary-section .glossary-action-title {
        font-size: 1.25rem;
    }

    .glossary-section .glossary-filter-wrapper {
        width: 100%;
        flex-direction: column;
    }

    .glossary-section .glossary-filter-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== short-request-form ===== */
.short-request-section {
    background-color: #080C14;
    color: #F8FAFC;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15)
}

.short-request-section .request-card {
    background: linear-gradient(145deg, rgba(22, 32, 48, 0.7) 0%, rgba(15, 22, 34, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7)
}

.short-request-section .badge-eyebrow {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 2px;
    padding: 0.35rem 0.85rem
}

.short-request-section .request-heading {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.25;
    color: #F8FAFC;
    letter-spacing: 0.01em
}

.short-request-section .request-subheading {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
    color: #94A3B8
}

.short-request-section .field-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #F8FAFC;
    margin-bottom: 0.4rem;
    display: block
}

.short-request-section .text-gold {
    color: #D4AF37
}

.short-request-section .field-input,
.short-request-section .field-textarea {
    background-color: #162030;
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: #F8FAFC;
    border-radius: 2px;
    padding: 0.75rem 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease
}

.short-request-section .field-input:focus,
.short-request-section .field-textarea:focus {
    background-color: #1A2332;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    color: #F8FAFC;
    outline: none
}

.short-request-section .field-input::placeholder,
.short-request-section .field-textarea::placeholder {
    color: #64748B;
    font-weight: 400;
    opacity: 1
}

.short-request-section .field-textarea {
    resize: vertical;
    min-height: 90px
}

.short-request-section .submit-action-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #080C14;
    border: 1px solid #F3E5AB;
    padding: 0.85rem 2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease
}

.short-request-section .submit-action-btn:hover {
    background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 100%);
    border-color: #F3E5AB;
    color: #080C14
}

.short-request-section .post-submission-notice {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(148, 163, 184, 0.12)
}

.short-request-section .notice-icon {
    width: 18px;
    height: 18px;
    color: #D4AF37
}

.short-request-section .notice-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #94A3B8;
    text-align: left
}

@media (max-width:767.98px) {
    .short-request-section .request-card {
        padding: 1.75rem 1.25rem
    }

    .short-request-section .request-heading {
        font-size: 1.5rem;
        hyphens: auto
    }

    .short-request-section .request-subheading {
        font-size: 0.875rem
    }

    .short-request-section .notice-text {
        font-size: 0.75rem;
        text-align: left
    }
}

/* ===== footer ===== */
.site-footer {
    position: relative;
    background-color: #080C14;
    color: #F8FAFC;
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    overflow: hidden;
}

.site-footer-top-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
}

.site-footer-container {
    max-width: 1280px;
}

.site-footer-brand {
    text-decoration: none;
}

.site-footer-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.site-footer-title {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #F3E5AB;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.site-footer-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #94A3B8;
    margin-bottom: 1.5rem;
}

.site-footer-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    background-color: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 2px;
}

.site-footer-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #D4AF37;
    display: inline-block;
}

.site-footer-pill-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #E5C158;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.site-footer-heading {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #F8FAFC;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 0.5rem;
}

.site-footer-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.site-footer-list-item {
    margin-bottom: 0.75rem;
}

.site-footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #94A3B8;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
    line-height: 1.5;
}

.site-footer-link:hover,
.site-footer-link:focus {
    color: #F3E5AB;
    text-decoration: underline;
}

.site-footer-contact-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.site-footer-contact-item {
    margin-bottom: 0.85rem;
}

.site-footer-contact-label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    color: #E5C158;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
}

.site-footer-contact-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #F8FAFC;
    font-style: normal;
    line-height: 1.4;
}

.site-footer-contact-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    color: #F8FAFC;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-contact-link:hover,
.site-footer-contact-link:focus {
    color: #D4AF37;
    text-decoration: underline;
}

.site-footer-wa-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #080C14;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    border: 1px solid #F3E5AB;
    padding: 0.4rem 0.85rem;
    border-radius: 2px;
    text-decoration: none;
    margin-top: 0.25rem;
    transition: background-color 0.2s ease;
}

.site-footer-wa-badge:hover,
.site-footer-wa-badge:focus {
    background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 100%);
    color: #080C14;
}

.site-footer-divider {
    height: 1px;
    background-color: rgba(148, 163, 184, 0.12);
    border: none;
}

.site-footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #94A3B8;
}

.site-footer-domain {
    color: #F3E5AB;
    font-weight: 500;
}

.site-footer-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #64748B;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 767.98px) {
    .site-footer {
        padding-top: 3.5rem;
        padding-bottom: 2rem;
    }

    .site-footer-title {
        font-size: 1.15rem;
    }

    .site-footer-heading {
        font-size: 1rem;
        margin-top: 0.5rem;
    }
}

/* ===== PAGE: prusaslicer-guide ===== */
.ps-guide-section { background-color: #080C14; color: #F8FAFC; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
.ps-guide-section .ps-guide-badge { background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.3); }
.ps-guide-section .ps-guide-badge-dot { width: 6px; height: 6px; border-radius: 50%; background-color: #D4AF37; display: inline-block; }
.ps-guide-section .ps-guide-eyebrow { font-size: 0.75rem; letter-spacing: 0.15em; font-weight: 600; color: #D4AF37; text-transform: uppercase; }
.ps-guide-section .ps-guide-main-title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; color: #F8FAFC; letter-spacing: -0.01em; }
.ps-guide-section .ps-guide-lead { font-size: 1.05rem; line-height: 1.7; max-width: 780px; }
.ps-guide-section .ps-guide-card { background: linear-gradient(145deg, rgba(22, 32, 48, 0.7) 0%, rgba(15, 22, 34, 0.9) 100%); border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 4px; }
.ps-guide-section .ps-version-tag { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; font-weight: 600; color: #080C14; background: #D4AF37; padding: 2px 8px; border-radius: 2px; text-transform: uppercase; }
.ps-guide-section .ps-date-tag { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: #94A3B8; }
.ps-guide-section .ps-guide-interactive-hub { background: #0E1726; border: 1px solid rgba(212, 175, 55, 0.25); border-radius: 4px; }
.ps-guide-section .ps-hub-border { border-color: rgba(148, 163, 184, 0.15) !important; }
.ps-guide-section .ps-filter-btn { background: rgba(22, 32, 48, 0.6); color: #94A3B8; border: 1px solid rgba(148, 163, 184, 0.2); padding: 8px 16px; font-size: 0.8125rem; font-weight: 500; border-radius: 2px; cursor: pointer; }
.ps-guide-section .ps-filter-btn:hover, .ps-guide-section .ps-filter-btn.active { background: #D4AF37; color: #080C14; border-color: #F3E5AB; font-weight: 600; }
.ps-guide-section .ps-checklist { list-style: none; padding-left: 0; }
.ps-guide-section .ps-checklist li { position: relative; padding-left: 18px; line-height: 1.5; }
.ps-guide-section .ps-checklist li::before { content: '■'; position: absolute; left: 0; color: #D4AF37; font-size: 0.65rem; top: 2px; }
.ps-guide-section .ps-data-box { background: rgba(8, 12, 20, 0.7); border: 1px solid rgba(212, 175, 55, 0.15); border-radius: 3px; }
.ps-guide-section .ps-data-title { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: #D4AF37; font-weight: 600; }
.ps-guide-section .ps-data-row { border-color: rgba(148, 163, 184, 0.1) !important; }
.ps-guide-section .ps-step-card { background: #0F1622; border: 1px solid rgba(212, 175, 55, 0.15); border-radius: 4px; }
.ps-guide-section .ps-step-num { font-family: 'JetBrains Mono', monospace; font-size: 1.5rem; font-weight: 700; color: #D4AF37; }
.ps-guide-section .ps-cta-banner { background: radial-gradient(circle at center, rgba(22, 32, 48, 0.9) 0%, #080C14 100%); border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 4px; }
.ps-guide-section .max-w-700 { max-width: 700px; }
.ps-guide-section .ps-btn-primary { background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%); color: #080C14; font-weight: 600; font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 12px 24px; border: 1px solid #F3E5AB; border-radius: 2px; text-align: center; }
.ps-guide-section .ps-btn-primary:hover { background: #F3E5AB; color: #080C14; }
.ps-guide-section .ps-btn-secondary { background: rgba(22, 32, 48, 0.7); color: #F8FAFC; font-weight: 500; font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 12px 24px; border: 1px solid rgba(212, 175, 55, 0.4); border-radius: 2px; text-align: center; }
.ps-guide-section .ps-btn-secondary:hover { border-color: #D4AF37; color: #D4AF37; background: #0E1726; }
.ps-guide-section .ps-btn-outline { background: transparent; color: #94A3B8; font-weight: 500; font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 12px 24px; border: 1px solid rgba(148, 163, 184, 0.3); border-radius: 2px; text-align: center; }
.ps-guide-section .ps-btn-outline:hover { color: #F8FAFC; border-color: #F8FAFC; }
@media (max-width: 767.98px) { .ps-guide-section .ps-guide-main-title { font-size: 1.125rem; hyphens: auto; } .ps-guide-section h2 { font-size: 1rem; hyphens: auto; } .ps-guide-section h3 { font-size: 0.875rem; hyphens: auto; } }

/* ===== PAGE: orientation-principles ===== */
.principles-page-wrapper { background-color: #080C14; color: #F8FAFC; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
.principles-page-wrapper .principles-intro-section { background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, rgba(8, 12, 20, 0) 70%), linear-gradient(180deg, #0E1726 0%, #080C14 100%); border-bottom: 1px solid rgba(212, 175, 55, 0.15); }
.principles-page-wrapper .principles-badge { display: inline-block; font-family: 'Inter', sans-serif; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #D4AF37; background: rgba(212, 175, 55, 0.08); border: 1px solid rgba(212, 175, 55, 0.35); padding: 0.4rem 1.25rem; border-radius: 2px; }
.principles-page-wrapper .principles-main-title { font-family: 'Cormorant Garamond', 'Cinzel', serif; font-size: 2.75rem; line-height: 1.2; font-weight: 600; color: #F8FAFC; letter-spacing: -0.01em; }
.principles-page-wrapper .principles-lead-text { font-size: 1.125rem; line-height: 1.75; font-weight: 300; color: #94A3B8; }
.principles-page-wrapper .principles-meta-rule { background: rgba(22, 32, 48, 0.6); border: 1px solid rgba(148, 163, 184, 0.15); border-radius: 2px; }
.principles-page-wrapper .principles-rule-icon { width: 1.25rem; height: 1.25rem; color: #D4AF37; flex-shrink: 0; }
.principles-page-wrapper .principles-rule-text { font-family: 'JetBrains Mono', monospace; font-size: 0.8125rem; color: #E5C158; letter-spacing: 0.05em; }
.principles-page-wrapper .principles-grid-heading { font-family: 'Cormorant Garamond', 'Cinzel', serif; font-size: 2rem; line-height: 1.25; font-weight: 500; color: #F8FAFC; }
.principles-page-wrapper .principles-count-badge { font-family: 'JetBrains Mono', monospace; font-size: 0.875rem; color: #94A3B8; background: rgba(22, 32, 48, 0.7); border: 1px solid rgba(212, 175, 55, 0.2); padding: 0.4rem 1rem; border-radius: 2px; display: inline-block; }
.principles-page-wrapper .text-gold { color: #D4AF37; }
.principles-page-wrapper .principle-card { background: linear-gradient(145deg, rgba(22, 32, 48, 0.7) 0%, rgba(15, 22, 34, 0.95) 100%); border: 1px solid rgba(212, 175, 55, 0.18); border-radius: 4px; overflow: hidden; box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5); transition: border-color 0.2s ease, background 0.2s ease; }
.principles-page-wrapper .principle-card:hover { border-color: rgba(212, 175, 55, 0.5); background: linear-gradient(145deg, rgba(22, 32, 48, 0.9) 0%, rgba(14, 23, 38, 1) 100%); }
.principles-page-wrapper .principle-card-media { overflow: hidden; aspect-ratio: 16 / 9; background: #080C14; }
.principles-page-wrapper .principle-img-link { width: 100%; height: 100%; display: block; }
.principles-page-wrapper .principle-thumb { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.principles-page-wrapper .principle-number-tag { position: absolute; top: 0.75rem; right: 0.75rem; background: rgba(8, 12, 20, 0.85); font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; font-weight: 600; color: #D4AF37; border: 1px solid rgba(212, 175, 55, 0.4); padding: 0.2rem 0.55rem; border-radius: 2px; }
.principles-page-wrapper .principle-author { font-size: 0.8125rem; font-weight: 500; color: #94A3B8; }
.principles-page-wrapper .principle-date { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: #64748B; }
.principles-page-wrapper .principle-card-title { font-family: 'Cormorant Garamond', 'Cinzel', serif; font-size: 1.5rem; line-height: 1.3; font-weight: 600; color: #F8FAFC; margin-bottom: 0.75rem; }
.principles-page-wrapper .principle-title-link { color: #F8FAFC; text-decoration: none; transition: color 0.2s ease; }
.principles-page-wrapper .principle-title-link:hover { color: #D4AF37; }
.principles-page-wrapper .principle-excerpt { font-size: 0.925rem; line-height: 1.6; color: #94A3B8; font-weight: 300; }
.principles-page-wrapper .principle-footer-action { border-top: 1px solid rgba(148, 163, 184, 0.12); }
.principles-page-wrapper .principle-cta-btn { display: inline-block; width: 100%; text-align: center; background: rgba(22, 32, 48, 0.5); color: #F8FAFC; border: 1px solid rgba(212, 175, 55, 0.4); padding: 0.65rem 1.25rem; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease; }
.principles-page-wrapper .principle-cta-btn:hover { background: #D4AF37; border-color: #F3E5AB; color: #080C14; }
@media (max-width: 767.98px) { .principles-page-wrapper .principles-main-title { font-size: 1.125rem; } .principles-page-wrapper .principles-grid-heading { font-size: 1rem; } .principles-page-wrapper .principle-card-title { font-size: 0.875rem; } .principles-page-wrapper .principles-lead-text { font-size: 0.95rem; } }

/* ===== PAGE: practical-cases ===== */
.practical-cases-main { background-color: #080C14 !important; color: #F8FAFC; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; min-height: 100vh; }
.practical-cases-main .practical-cases-eyebrow { font-size: 0.8125rem; letter-spacing: 0.18em; color: #D4AF37; }
.practical-cases-main .practical-cases-title { font-family: 'Cormorant Garamond', 'Cinzel', serif; font-weight: 600; color: #D4AF37; }
.practical-cases-main .text-gold { color: #D4AF37 !important; }
.practical-cases-main .text-slate { color: #94A3B8 !important; }
.practical-cases-main .bg-surface { background: #0F1622; }
.practical-cases-main .bg-gold-subtle { background-color: rgba(212, 175, 55, 0.15); }
.practical-cases-main .bg-gold-muted { background-color: rgba(212, 175, 55, 0.08); }
.practical-cases-main .border-gold-subtle { border-color: rgba(212, 175, 55, 0.25) !important; }
.practical-cases-main .practical-cases-featured { transition: border-color 0.2s ease-in-out; }
.practical-cases-main .practical-cases-featured:hover { border-color: rgba(212, 175, 55, 0.45) !important; }
.practical-cases-main .practical-cases-featured-img-wrap { max-height: 320px; background: #080C14; }
.practical-cases-main .practical-cases-featured-img { width: 100%; height: 320px; object-fit: contain; object-position: center; transition: transform 0.3s ease; }
.practical-cases-main .practical-cases-featured:hover .practical-cases-featured-img { transform: scale(1.02); }
.practical-cases-main .practical-cases-featured-heading { font-family: 'Cormorant Garamond', 'Cinzel', serif; font-weight: 600; }
.practical-cases-main .hover-gold:hover { color: #D4AF37 !important; }
.practical-cases-main .practical-cases-btn-gold { background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%); color: #080C14; font-weight: 600; font-size: 0.875rem; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; border: 1px solid #F3E5AB; }
.practical-cases-main .practical-cases-btn-gold:hover { color: #000000; background: #D4AF37; }
.practical-cases-main .practical-cases-input { font-family: 'Inter', sans-serif; font-size: 0.875rem; border-color: rgba(212, 175, 55, 0.35) !important; color: #F8FAFC !important; background-color: #0F1622 !important; }
.practical-cases-main .practical-cases-input::placeholder { color: #64748B !important; opacity: 1; }
.practical-cases-main .practical-cases-card { transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.practical-cases-main .practical-cases-card:hover { border-color: rgba(212, 175, 55, 0.45) !important; box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5); }
.practical-cases-main .practical-cases-card-media { height: 190px; background: #080C14; }
.practical-cases-main .practical-cases-card-img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform 0.3s ease; }
.practical-cases-main .practical-cases-card:hover .practical-cases-card-img { transform: scale(1.03); }
.practical-cases-main .practical-cases-card-title { font-family: 'Cormorant Garamond', 'Cinzel', serif; font-weight: 600; }
.practical-cases-main .practical-cases-link-gold { color: #D4AF37; text-decoration: none; border-bottom: 1px solid rgba(212, 175, 55, 0.5); }
.practical-cases-main .practical-cases-link-gold:hover { color: #F3E5AB; border-bottom-color: #F3E5AB; }
.practical-cases-main .practical-cases-page-btn { background-color: #0F1622; color: #94A3B8; border: 1px solid rgba(212, 175, 55, 0.3); font-size: 0.875rem; border-radius: 2px; padding: 0.5rem 1rem; }
.practical-cases-main .practical-cases-page-btn:hover:not(:disabled) { background-color: rgba(212, 175, 55, 0.15); color: #D4AF37; border-color: #D4AF37; }
.practical-cases-main .practical-cases-page-btn.active { background-color: #D4AF37; color: #080C14; font-weight: 600; border-color: #D4AF37; }
.practical-cases-main .practical-cases-page-btn:disabled { opacity: 0.4; cursor: not-allowed; }
@media (max-width: 767.98px) { .practical-cases-main .practical-cases-title { font-size: 1.125rem; hyphens: auto; } .practical-cases-main .practical-cases-featured-heading { font-size: 1rem; hyphens: auto; } .practical-cases-main .practical-cases-card-title { font-size: 0.875rem; hyphens: auto; } }

/* ===== PAGE: contacts ===== */
.contact-section-wrapper {
  background-color: #080C14;
  color: #94A3B8;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-section-wrapper__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4AF37;
  display: inline-block;
}

.contact-section-wrapper__title {
  font-family: 'Cormorant Garamond', 'Cinzel', serif;
  font-size: 2.75rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: #F8FAFC;
}

.contact-section-wrapper__lead {
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 300;
  color: #94A3B8;
}

.contact-section-wrapper__card {
  background: linear-gradient(145deg, rgba(22, 32, 48, 0.7) 0%, rgba(15, 22, 34, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 4px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-section-wrapper__card:hover {
  border-color: rgba(212, 175, 55, 0.45);
}

.contact-section-wrapper__badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
}

.contact-section-wrapper__card-title {
  font-family: 'Cormorant Garamond', 'Cinzel', serif;
  font-size: 1.75rem;
  line-height: 1.3;
  letter-spacing: 0.01em;
  font-weight: 500;
  color: #F8FAFC;
}

.contact-section-wrapper__card-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #94A3B8;
}

.contact-section-wrapper__icon-box {
  width: 42px;
  height: 42px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-section-wrapper__icon {
  width: 20px;
  height: 20px;
  color: #D4AF37;
}

.contact-section-wrapper__info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748B;
  margin-bottom: 0.2rem;
}

.contact-section-wrapper__info-value {
  font-size: 0.95rem;
  color: #F8FAFC;
  line-height: 1.5;
  display: block;
}

.contact-section-wrapper__info-link {
  font-size: 0.95rem;
  color: #D4AF37;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-section-wrapper__info-link:hover {
  color: #F3E5AB;
  text-decoration: underline;
}

.contact-section-wrapper__btn-wa {
  width: 100%;
  background: rgba(22, 32, 48, 0.8);
  color: #F8FAFC;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.8rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.contact-section-wrapper__btn-wa:hover {
  background: #0E1726;
  border-color: #D4AF37;
  color: #D4AF37;
}

.contact-section-wrapper__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #94A3B8;
  display: block;
}

.contact-section-wrapper__input,
.contact-section-wrapper__select,
.contact-section-wrapper__textarea {
  background-color: #0F1622;
  color: #F8FAFC;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.contact-section-wrapper__input:focus,
.contact-section-wrapper__select:focus,
.contact-section-wrapper__textarea:focus {
  background-color: #121824;
  color: #F8FAFC;
  border-color: #D4AF37;
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
}

.contact-section-wrapper__input::placeholder,
.contact-section-wrapper__textarea::placeholder {
  color: #475569;
  opacity: 1;
}

.contact-section-wrapper__select option {
  background-color: #0F1622;
  color: #F8FAFC;
}

.contact-section-wrapper__btn-submit {
  background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
  color: #080C14;
  border: 1px solid #F3E5AB;
  padding: 0.9rem 2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.contact-section-wrapper__btn-submit:hover {
  filter: brightness(1.08);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  color: #080C14;
}

.contact-section-wrapper__btn-icon {
  width: 18px;
  height: 18px;
}

@media (max-width: 767.98px) {
  .contact-section-wrapper__title {
    font-size: 1.75rem;
    hyphens: auto;
  }
  .contact-section-wrapper__card-title {
    font-size: 1.35rem;
    hyphens: auto;
  }
  .contact-section-wrapper__lead {
    font-size: 1rem;
  }
}

/* ===== PAGE: privacy ===== */
.fieldbook-legal-section { background: #080C14; color: #94A3B8; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; min-height: 100vh; position: relative; } .fieldbook-legal-section .legal-document-card { background: linear-gradient(145deg, rgba(22, 32, 48, 0.8) 0%, rgba(15, 22, 34, 0.95) 100%); border: 1px solid rgba(212, 175, 55, 0.25); border-radius: 4px; box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7); } .fieldbook-legal-section .border-bottom { border-color: rgba(212, 175, 55, 0.2) !important; } .fieldbook-legal-section .legal-eyebrow-badge { display: inline-block; font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: #D4AF37; background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.3); padding: 0.25rem 0.75rem; border-radius: 2px; } .fieldbook-legal-section .legal-status-date { font-family: 'JetBrains Mono', monospace; font-size: 0.8125rem; color: #64748B; } .fieldbook-legal-section .legal-page-title { font-family: 'Cormorant Garamond', 'Cinzel', serif; font-size: 2.5rem; line-height: 1.2; font-weight: 600; color: #F8FAFC; margin-bottom: 0.75rem; } @media (max-width: 767.98px) { .fieldbook-legal-section .legal-page-title { font-size: 1.125rem; hyphens: auto; } } .fieldbook-legal-section .legal-lead-text { font-size: 1.0625rem; line-height: 1.7; color: #94A3B8; font-weight: 300; } .fieldbook-legal-section .legal-toc-panel { background: rgba(14, 23, 38, 0.75); border: 1px solid rgba(148, 163, 184, 0.15); border-radius: 4px; } .fieldbook-legal-section .legal-toc-heading { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: #E5C158; margin-bottom: 0.75rem; } @media (max-width: 767.98px) { .fieldbook-legal-section .legal-toc-heading { font-size: 1rem; } } .fieldbook-legal-section .legal-toc-link { color: #94A3B8; text-decoration: none; font-size: 0.875rem; font-weight: 400; padding: 0.35rem 0.5rem; border-radius: 2px; transition: color 0.15s ease, background-color 0.15s ease; } .fieldbook-legal-section .legal-toc-link:hover { color: #F8FAFC; background: rgba(212, 175, 55, 0.08); } .fieldbook-legal-section .toc-num { font-family: 'JetBrains Mono', monospace; color: #D4AF37; font-size: 0.8125rem; margin-right: 0.5rem; font-weight: 500; } .fieldbook-legal-section .legal-section-title { font-family: 'Cormorant Garamond', 'Cinzel', serif; font-size: 1.65rem; line-height: 1.3; font-weight: 500; color: #F8FAFC; margin-bottom: 1rem; border-bottom: 1px solid rgba(148, 163, 184, 0.1); padding-bottom: 0.5rem; } @media (max-width: 767.98px) { .fieldbook-legal-section .legal-section-title { font-size: 1rem; hyphens: auto; } } .fieldbook-legal-section .legal-paragraph { font-size: 0.95rem; line-height: 1.7; color: #94A3B8; margin-bottom: 1rem; } .fieldbook-legal-section .legal-paragraph strong { color: #F8FAFC; } .fieldbook-legal-section .legal-inline-link { color: #D4AF37; text-decoration: none; border-bottom: 1px solid rgba(212, 175, 55, 0.4); } .fieldbook-legal-section .legal-inline-link:hover { color: #F3E5AB; border-bottom-color: #D4AF37; } .fieldbook-legal-section .legal-spec-card { background: rgba(14, 23, 38, 0.6); border: 1px solid rgba(212, 175, 55, 0.15); border-radius: 4px; } .fieldbook-legal-section .legal-spec-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: #F8FAFC; } @media (max-width: 767.98px) { .fieldbook-legal-section .legal-spec-title { font-size: 0.875rem; } } .fieldbook-legal-section .legal-spec-text { font-size: 0.875rem; line-height: 1.6; color: #94A3B8; } .fieldbook-legal-section .legal-bullet-list { list-style: none; padding-left: 0; margin-bottom: 1rem; } .fieldbook-legal-section .legal-bullet-item { display: flex; align-items: baseline; gap: 0.75rem; font-size: 0.9375rem; line-height: 1.65; color: #94A3B8; margin-bottom: 0.75rem; } .fieldbook-legal-section .bullet-accent { color: #D4AF37; font-size: 1.2rem; line-height: 1; } .fieldbook-legal-section .rights-box { background: rgba(14, 23, 38, 0.65); border: 1px solid rgba(148, 163, 184, 0.15); border-radius: 4px; text-align: left; } .fieldbook-legal-section .rights-icon-wrap { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.25); border-radius: 4px; color: #D4AF37; } .fieldbook-legal-section .rights-svg { width: 20px; height: 20px; } .fieldbook-legal-section .rights-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: #F8FAFC; margin-bottom: 0.5rem; } @media (max-width: 767.98px) { .fieldbook-legal-section .rights-title { font-size: 0.875rem; } } .fieldbook-legal-section .rights-desc { font-size: 0.8125rem; line-height: 1.6; color: #94A3B8; }

/* ===== PAGE: terms ===== */
.legal-content-section {
  background-color: #080C14;
  color: #94A3B8;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.65;
}

.legal-content-section .legal-sidebar-card {
  background: linear-gradient(145deg, rgba(22, 32, 48, 0.7) 0%, rgba(15, 22, 34, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 4px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
}

.legal-content-section .legal-article-card {
  background: linear-gradient(145deg, rgba(22, 32, 48, 0.6) 0%, rgba(15, 22, 34, 0.85) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
}

.legal-content-section .legal-badge-pill {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #E5C158;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
}

.legal-content-section .legal-sidebar-title {
  font-family: 'Cormorant Garamond', 'Cinzel', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: #F8FAFC;
  line-height: 1.25;
}

.legal-content-section .legal-sidebar-desc {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.5;
}

.legal-content-section .legal-nav-link {
  display: flex;
  align-items: center;
  padding: 0.65rem 0.85rem;
  background: rgba(8, 12, 20, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 2px;
  color: #94A3B8;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.legal-content-section .legal-nav-link:hover,
.legal-content-section .legal-nav-link.active {
  background: rgba(22, 32, 48, 0.9);
  border-color: #D4AF37;
  color: #F8FAFC;
}

.legal-content-section .legal-nav-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: #D4AF37;
  font-weight: 500;
  margin-right: 0.75rem;
}

.legal-content-section .legal-nav-text {
  font-size: 0.875rem;
  font-weight: 500;
}

.legal-content-section .legal-meta-label {
  font-size: 0.8rem;
  color: #64748B;
}

.legal-content-section .legal-meta-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: #F8FAFC;
}

.legal-content-section .legal-meta-link {
  font-size: 0.8rem;
  color: #D4AF37;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

.legal-content-section .legal-meta-link:hover {
  color: #F3E5AB;
  border-bottom-color: #F3E5AB;
}

.legal-content-section .legal-eyebrow-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4AF37;
}

.legal-content-section .legal-main-title {
  font-family: 'Cormorant Garamond', 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #F8FAFC;
  letter-spacing: -0.01em;
}

.legal-content-section .legal-lead-paragraph {
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 300;
  color: #94A3B8;
  border-left: 2px solid #D4AF37;
  padding-left: 1.25rem;
}

.legal-content-section .legal-section-index {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.15rem;
  font-weight: 500;
  color: #D4AF37;
}

.legal-content-section .legal-section-heading {
  font-family: 'Cormorant Garamond', 'Cinzel', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #F8FAFC;
  line-height: 1.25;
  margin-bottom: 0;
}

.legal-content-section .legal-body-text {
  font-size: 1rem;
  line-height: 1.65;
  color: #94A3B8;
}

.legal-content-section .legal-body-text strong {
  color: #F8FAFC;
}

.legal-content-section .legal-body-text em {
  color: #E5C158;
  font-style: normal;
}

.legal-content-section .legal-inline-link {
  color: #D4AF37;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.legal-content-section .legal-inline-link:hover {
  color: #F3E5AB;
  border-bottom-color: #F3E5AB;
}

.legal-content-section .legal-callout-box {
  background: rgba(8, 12, 20, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-left: 3px solid #D4AF37;
  border-radius: 2px;
}

.legal-content-section .legal-callout-title {
  font-family: 'Cormorant Garamond', 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F8FAFC;
}

.legal-content-section .legal-bullet-list {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.legal-content-section .legal-bullet-list strong {
  color: #F8FAFC;
}

.legal-content-section .legal-action-box {
  background: linear-gradient(135deg, rgba(14, 23, 38, 0.8) 0%, rgba(8, 12, 20, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 2px;
}

.legal-content-section .legal-action-title {
  font-family: 'Cormorant Garamond', 'Cinzel', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #F8FAFC;
}

.legal-content-section .legal-action-sub {
  font-size: 0.9rem;
  color: #94A3B8;
}

.legal-content-section .legal-btn-primary {
  background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
  color: #080C14;
  border: 1px solid #F3E5AB;
  padding: 0.75rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.legal-content-section .legal-btn-primary:hover {
  color: #080C14;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  opacity: 0.95;
}

@media (max-width: 767.98px) {
  .legal-content-section .legal-main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .legal-content-section .legal-section-heading {
    font-size: 1rem;
    hyphens: auto;
  }
  .legal-content-section .legal-sidebar-title {
    font-size: 1rem;
  }
  .legal-content-section .legal-callout-title,
  .legal-content-section .legal-action-title {
    font-size: 0.875rem;
  }
  .legal-content-section .legal-lead-paragraph {
    font-size: 0.95rem;
    padding-left: 0.75rem;
  }
}

/* ===== PAGE: disclaimer ===== */
.legal-content-section { background-color: #080C14; color: #F8FAFC; min-height: 60vh; }
.legal-content-section .legal-header-card { background: linear-gradient(145deg, rgba(22, 32, 48, 0.7) 0%, rgba(15, 22, 34, 0.9) 100%); border: 1px solid rgba(212, 175, 55, 0.35); border-radius: 4px; box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5); }
.legal-content-section .legal-badge { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; font-weight: 600; color: #D4AF37; background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.3); padding: 0.25rem 0.65rem; border-radius: 2px; letter-spacing: 0.12em; }
.legal-content-section .legal-badge-code { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: #94A3B8; letter-spacing: 0.05em; }
.legal-content-section .legal-main-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2.25rem; font-weight: 600; line-height: 1.2; color: #F8FAFC; letter-spacing: -0.01em; }
.legal-content-section .legal-lead-text { font-family: 'Inter', -apple-system, sans-serif; font-size: 1.05rem; font-weight: 300; line-height: 1.7; color: #94A3B8; }
.legal-content-section .legal-toc-nav { background: #0E1726; border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 4px; }
.legal-content-section .legal-toc-label { font-family: 'JetBrains Mono', monospace; font-size: 0.8125rem; font-weight: 600; color: #D4AF37; display: inline-flex; align-items: center; text-transform: uppercase; letter-spacing: 0.08em; }
.legal-content-section .legal-icon { color: #D4AF37; }
.legal-content-section .legal-toc-pill { font-family: 'Inter', -apple-system, sans-serif; font-size: 0.8125rem; font-weight: 500; color: #94A3B8; background: rgba(22, 32, 48, 0.8); border: 1px solid rgba(148, 163, 184, 0.2); padding: 0.35rem 0.75rem; border-radius: 2px; text-decoration: none; }
.legal-content-section .legal-toc-pill:hover, .legal-content-section .legal-toc-pill.active { color: #D4AF37; border-color: rgba(212, 175, 55, 0.6); background: rgba(212, 175, 55, 0.08); }
.legal-content-section .legal-article-card { background: rgba(15, 22, 34, 0.85); border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 4px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35); }
.legal-content-section .legal-numeral { font-family: 'JetBrains Mono', monospace; font-size: 1.125rem; font-weight: 600; color: #D4AF37; opacity: 0.85; }
.legal-content-section .legal-section-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; font-weight: 600; line-height: 1.3; color: #F8FAFC; }
.legal-content-section .legal-body-text { font-family: 'Inter', -apple-system, sans-serif; font-size: 0.95rem; font-weight: 400; line-height: 1.7; color: #94A3B8; margin-bottom: 1.1rem; }
.legal-content-section .legal-body-text strong { color: #F8FAFC; font-weight: 600; }
.legal-content-section .legal-list { list-style: none; padding-left: 0; margin-bottom: 1.25rem; }
.legal-content-section .legal-list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; font-family: 'Inter', -apple-system, sans-serif; font-size: 0.9375rem; line-height: 1.6; color: #94A3B8; }
.legal-content-section .legal-list li::before { content: '—'; position: absolute; left: 0; top: 0; color: #D4AF37; font-weight: 600; }
.legal-content-section .legal-highlight-box { background: rgba(22, 32, 48, 0.6); border-left: 3px solid #D4AF37; border-top: 1px solid rgba(212, 175, 55, 0.15); border-right: 1px solid rgba(212, 175, 55, 0.15); border-bottom: 1px solid rgba(212, 175, 55, 0.15); border-radius: 2px; }
.legal-content-section .legal-icon-gold { color: #D4AF37; flex-shrink: 0; }
.legal-content-section .legal-highlight-title { font-family: 'JetBrains Mono', monospace; font-size: 0.8125rem; color: #E5C158; text-transform: uppercase; letter-spacing: 0.05em; }
.legal-content-section .legal-highlight-text { font-family: 'Inter', -apple-system, sans-serif; font-size: 0.875rem; line-height: 1.6; color: #94A3B8; }
.legal-content-section .legal-nav-card { background: #0E1726; border: 1px solid rgba(148, 163, 184, 0.15); border-radius: 4px; }
.legal-content-section .legal-nav-card:hover { border-color: rgba(212, 175, 55, 0.45); }
.legal-content-section .legal-card-heading { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.2rem; font-weight: 600; color: #F8FAFC; }
.legal-content-section .legal-card-desc { font-family: 'Inter', -apple-system, sans-serif; font-size: 0.85rem; line-height: 1.5; color: #64748B; }
.legal-content-section .legal-action-btn { display: inline-block; width: 100%; background: rgba(22, 32, 48, 0.9); color: #F8FAFC; border: 1px solid rgba(212, 175, 55, 0.4); padding: 0.65rem 1.25rem; font-family: 'Inter', -apple-system, sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; text-decoration: none; }
.legal-content-section .legal-action-btn:hover { background: #D4AF37; color: #080C14; border-color: #F3E5AB; }
@media (max-width: 767.98px) { .legal-content-section .legal-main-title { font-size: 1.75rem; } .legal-content-section .legal-section-title { font-size: 1.3rem; } .legal-content-section .legal-lead-text { font-size: 0.95rem; } }

.luxury-comment-card {
    background: linear-gradient(145deg, rgba(22, 32, 48, 0.7) 0%, rgba(15, 22, 34, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 4px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    color: #F8FAFC;
}

.luxury-comment-card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    background: linear-gradient(145deg, rgba(22, 32, 48, 0.85) 0%, rgba(14, 23, 38, 0.98) 100%);
}

.comment-inner-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #D4AF37 0%, transparent 100%);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.border-gold-subtle {
    border-color: rgba(212, 175, 55, 0.15) !important;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 4px;
    background: linear-gradient(135deg, #1A2332 0%, #0E1726 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-initials {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    font-weight: 600;
    color: #F3E5AB;
    letter-spacing: 0.05em;
}

.comment-author-name {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #F8FAFC;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.badge-gold-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.6rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.725rem;
    font-weight: 500;
    color: #E5C158;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 2px;
    letter-spacing: 0.04em;
}

.comment-meta-wrapper {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #94A3B8;
}

.comment-meta-time {
    color: #94A3B8;
}

.comment-meta-dot {
    color: #475569;
}

.comment-meta-param {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #C5A059;
}

.rating-star-icon {
    width: 16px;
    height: 16px;
    color: #475569;
}

.rating-star-icon.active {
    color: #D4AF37;
}

.comment-body-content {
    font-family: 'Inter', sans-serif;
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

.comment-text-paragraph {
    margin: 0;
    color: #cbd5e1;
}

.comment-action-btn,
.reply-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: transparent;
    border: 1px solid transparent;
    padding: 0.4rem 0.75rem;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #94A3B8;
    cursor: pointer;
}

.comment-action-btn:hover {
    color: #F8FAFC;
    background: rgba(26, 35, 50, 0.6);
    border-color: rgba(148, 163, 184, 0.2);
}

.reply-trigger-btn {
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}

.reply-trigger-btn:hover {
    background: #D4AF37;
    color: #080C14;
    border-color: #F3E5AB;
}

.action-icon {
    width: 15px;
    height: 15px;
    stroke-width: 1.75;
}

.action-metric {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #64748B;
}

.comment-action-btn:hover .action-metric {
    color: #E5C158;
}

.reply-thread-container {
    border-left: 1px dashed rgba(212, 175, 55, 0.25);
    position: relative;
}

.reply-comment {
    background: linear-gradient(145deg, rgba(18, 24, 36, 0.85) 0%, rgba(11, 16, 26, 0.95) 100%);
    border: 1px solid rgba(148, 163, 184, 0.15);
}

.reply-comment:hover {
    border-color: rgba(212, 175, 55, 0.35);
    background: linear-gradient(145deg, rgba(22, 32, 48, 0.8) 0%, rgba(14, 20, 32, 0.95) 100%);
}

.comment-nested-indicator {
    position: absolute;
    left: -25px;
    top: 24px;
    width: 20px;
    height: 1px;
    background: rgba(212, 175, 55, 0.3);
    display: none;
}

@media (min-width: 768px) {
    .comment-nested-indicator {
        display: block;
    }
}

.reply-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #121824 0%, #080C14 100%);
}

.reply-avatar .avatar-initials {
    font-size: 0.85rem;
    color: #D4AF37;
}

.reply-name {
    font-size: 1.15rem;
}

.badge-gold-pill.outline-only {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.25);
    color: #94A3B8;
}

.comment-meta-verified {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.725rem;
    color: #F3E5AB;
}

.reply-target-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.775rem;
    color: #64748B;
}

.reply-target-author {
    color: #C5A059;
    font-weight: 500;
}

.reply-trigger-btn.secondary-reply {
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
    color: #94A3B8;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: transparent;
}

.reply-trigger-btn.secondary-reply:hover {
    color: #D4AF37;
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
}


/* ===== PAGE TEMPLATE: principles-list ===== */
.principle-detail-page {
    background-color: #080C14;
    color: #F8FAFC;
    min-height: 100vh;
}

.principle-detail-page .principle-content-container {
    max-width: 1280px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.principle-detail-page .principle-breadcrumb-wrapper {
    background-color: #0B0F17;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.principle-detail-page .breadcrumb-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.principle-detail-page .breadcrumb-link:hover {
    color: #F3E5AB;
}

.principle-detail-page .text-gold {
    color: #D4AF37;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
}

.principle-detail-page .gold-line {
    width: 24px;
    height: 1px;
    background-color: #D4AF37;
    display: inline-block;
}

.principle-detail-page .eyebrow-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #D4AF37;
}

.principle-detail-page .principle-main-title {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 2.75rem;
    line-height: 1.15;
    font-weight: 600;
    color: #F8FAFC;
}

.principle-detail-page .principle-lead-summary {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #94A3B8;
}

.principle-detail-page .principle-metadata-bar {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
}

.principle-detail-page .meta-label {
    color: #64748B;
}

.principle-detail-page .meta-value {
    color: #F8FAFC;
}

.principle-detail-page .meta-dot {
    color: rgba(212, 175, 55, 0.4);
}

.principle-detail-page .text-gold-accent {
    color: #E5C158;
}

.principle-detail-page .principle-diagnostic-card {
    background: linear-gradient(145deg, rgba(22, 32, 48, 0.8) 0%, rgba(15, 22, 34, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.principle-detail-page .diagnostic-pill-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #080C14;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    padding: 0.25rem 0.65rem;
    border-radius: 2px;
    font-weight: 600;
}

.principle-detail-page .diagnostic-status-indicator {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    color: #94A3B8;
}

.principle-detail-page .border-gold-hairline {
    border-color: rgba(212, 175, 55, 0.15) !important;
}

.principle-detail-page .diag-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #94A3B8;
}

.principle-detail-page .diag-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    color: #F8FAFC;
}

.principle-detail-page .principle-featured-frame {
    border: 1px solid rgba(212, 175, 55, 0.25);
    background-color: #0F1622;
    overflow: hidden;
    margin-bottom: 2rem;
}

.principle-detail-page .principle-primary-img,
.principle-detail-page .principle-primary-img.object-fit-cover {
    height: auto !important;
    width: 100% !important;
    max-height: 520px;
    object-fit: contain !important;
    object-position: center;
    display: block;
}

.principle-detail-page .principle-img-caption-strip {
    background-color: rgba(8, 12, 20, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.principle-detail-page .caption-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #94A3B8;
}

.principle-detail-page .caption-metric {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #D4AF37;
}

.principle-detail-page .editorial-subheading {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.85rem;
    color: #F8FAFC;
    line-height: 1.25;
    font-weight: 500;
}

.principle-detail-page .editorial-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #94A3B8;
    margin-bottom: 1.25rem;
}

.principle-detail-page .editorial-callout-box {
    background: rgba(14, 23, 38, 0.7);
    border-left: 3px solid #D4AF37;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-right: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.principle-detail-page .callout-icon {
    color: #D4AF37;
}

.principle-detail-page .callout-title {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.25rem;
    color: #F3E5AB;
}

.principle-detail-page .callout-body {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #F8FAFC;
}

.principle-detail-page .principle-styled-list {
    list-style: none;
    padding-left: 0;
}

.principle-detail-page .principle-list-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.85rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #94A3B8;
}

.principle-detail-page .principle-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #D4AF37;
}

.principle-detail-page .principle-list-item strong {
    color: #F8FAFC;
}

.principle-detail-page .tradeoff-interactive-widget {
    background: #0F1622;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-left-width: 4px;
}

.principle-detail-page .widget-analyzer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #E5C158;
    background: rgba(212, 175, 55, 0.08);
    white-space: nowrap;
}

.principle-detail-page .widget-analyzer-badge .badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.principle-detail-page .widget-analyzer-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

/* Unique accent variants per principle page */
.principle-detail-page .tradeoff-interactive-widget--v01 { border-left-color: #D4AF37; }
.principle-detail-page .tradeoff-interactive-widget--v01 .widget-analyzer-badge { color: #D4AF37; border-color: rgba(212,175,55,0.45); background: rgba(212,175,55,0.1); }

.principle-detail-page .tradeoff-interactive-widget--v02 { border-left-color: #6FD3C7; }
.principle-detail-page .tradeoff-interactive-widget--v02 .widget-analyzer-badge { color: #6FD3C7; border-color: rgba(111,211,199,0.45); background: rgba(111,211,199,0.1); }
.principle-detail-page .tradeoff-interactive-widget--v02 .strategy-tab-btn.active { background: linear-gradient(135deg, #6FD3C7 0%, #4FB3A6 100%); border-color: #8FE0D5; }

.principle-detail-page .tradeoff-interactive-widget--v03 { border-left-color: #7FB3D5; }
.principle-detail-page .tradeoff-interactive-widget--v03 .widget-analyzer-badge { color: #7FB3D5; border-color: rgba(127,179,213,0.45); background: rgba(127,179,213,0.1); }
.principle-detail-page .tradeoff-interactive-widget--v03 .strategy-tab-btn.active { background: linear-gradient(135deg, #7FB3D5 0%, #5E94B8 100%); border-color: #A0C8E2; }

.principle-detail-page .tradeoff-interactive-widget--v04 { border-left-color: #E07A5F; }
.principle-detail-page .tradeoff-interactive-widget--v04 .widget-analyzer-badge { color: #E07A5F; border-color: rgba(224,122,95,0.45); background: rgba(224,122,95,0.1); }
.principle-detail-page .tradeoff-interactive-widget--v04 .strategy-tab-btn.active { background: linear-gradient(135deg, #E07A5F 0%, #C25F45 100%); border-color: #ED9A82; }

.principle-detail-page .tradeoff-interactive-widget--v05 { border-left-color: #B083D1; }
.principle-detail-page .tradeoff-interactive-widget--v05 .widget-analyzer-badge { color: #B083D1; border-color: rgba(176,131,209,0.45); background: rgba(176,131,209,0.1); }
.principle-detail-page .tradeoff-interactive-widget--v05 .strategy-tab-btn.active { background: linear-gradient(135deg, #B083D1 0%, #8E64B0 100%); border-color: #C49EDF; }

.principle-detail-page .tradeoff-interactive-widget--v06 { border-left-color: #F2A65A; }
.principle-detail-page .tradeoff-interactive-widget--v06 .widget-analyzer-badge { color: #F2A65A; border-color: rgba(242,166,90,0.45); background: rgba(242,166,90,0.1); }
.principle-detail-page .tradeoff-interactive-widget--v06 .strategy-tab-btn.active { background: linear-gradient(135deg, #F2A65A 0%, #D4883C 100%); border-color: #F7C084; }

.principle-detail-page .tradeoff-interactive-widget--v07 { border-left-color: #5BC0BE; }
.principle-detail-page .tradeoff-interactive-widget--v07 .widget-analyzer-badge { color: #5BC0BE; border-color: rgba(91,192,190,0.45); background: rgba(91,192,190,0.1); }
.principle-detail-page .tradeoff-interactive-widget--v07 .strategy-tab-btn.active { background: linear-gradient(135deg, #5BC0BE 0%, #3DA39F 100%); border-color: #82D0CE; }

.principle-detail-page .tradeoff-interactive-widget--v08 { border-left-color: #C98A8A; }
.principle-detail-page .tradeoff-interactive-widget--v08 .widget-analyzer-badge { color: #C98A8A; border-color: rgba(201,138,138,0.45); background: rgba(201,138,138,0.1); }
.principle-detail-page .tradeoff-interactive-widget--v08 .strategy-tab-btn.active { background: linear-gradient(135deg, #C98A8A 0%, #A86969 100%); border-color: #DBA6A6; }

.principle-detail-page .tradeoff-interactive-widget--v09 { border-left-color: #8FBC8F; }
.principle-detail-page .tradeoff-interactive-widget--v09 .widget-analyzer-badge { color: #8FBC8F; border-color: rgba(143,188,143,0.45); background: rgba(143,188,143,0.1); }
.principle-detail-page .tradeoff-interactive-widget--v09 .strategy-tab-btn.active { background: linear-gradient(135deg, #8FBC8F 0%, #6FA06F 100%); border-color: #ADCEAD; }

.principle-detail-page .tradeoff-interactive-widget--v10 { border-left-color: #D4A5A5; }
.principle-detail-page .tradeoff-interactive-widget--v10 .widget-analyzer-badge { color: #D4A5A5; border-color: rgba(212,165,165,0.45); background: rgba(212,165,165,0.1); }
.principle-detail-page .tradeoff-interactive-widget--v10 .strategy-tab-btn.active { background: linear-gradient(135deg, #D4A5A5 0%, #B88484 100%); border-color: #E2BDBD; }

.principle-detail-page .tradeoff-interactive-widget--v11 { border-left-color: #7DA87D; }
.principle-detail-page .tradeoff-interactive-widget--v11 .widget-analyzer-badge { color: #7DA87D; border-color: rgba(125,168,125,0.45); background: rgba(125,168,125,0.1); }
.principle-detail-page .tradeoff-interactive-widget--v11 .strategy-tab-btn.active { background: linear-gradient(135deg, #7DA87D 0%, #5E8A5E 100%); border-color: #9BC19B; }

.principle-detail-page .tradeoff-interactive-widget--v12 { border-left-color: #A589D4; }
.principle-detail-page .tradeoff-interactive-widget--v12 .widget-analyzer-badge { color: #A589D4; border-color: rgba(165,137,212,0.45); background: rgba(165,137,212,0.1); }
.principle-detail-page .tradeoff-interactive-widget--v12 .strategy-tab-btn.active { background: linear-gradient(135deg, #A589D4 0%, #8567B8 100%); border-color: #BBA4E2; }

.principle-detail-page .widget-title {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.35rem;
    color: #F8FAFC;
}

.principle-detail-page .strategy-tab-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.4rem 0.85rem;
    background-color: rgba(22, 32, 48, 0.6);
    color: #94A3B8;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.principle-detail-page .strategy-tab-btn:hover {
    color: #F3E5AB;
    border-color: #D4AF37;
}

.principle-detail-page .strategy-tab-btn.active {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #080C14;
    border-color: #F3E5AB;
}

.principle-detail-page .strategy-panel {
    display: none;
}

.principle-detail-page .strategy-panel.show {
    display: block;
}

.principle-detail-page .strategy-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #94A3B8;
}

.principle-detail-page .strategy-metric-pill {
    background: rgba(8, 12, 20, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 0.35rem 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    border-radius: 2px;
}

.principle-detail-page .metric-name {
    color: #64748B;
}

.principle-detail-page .metric-val {
    color: #F8FAFC;
    font-weight: 500;
}

.principle-detail-page .editorial-share-block {
    background: rgba(15, 22, 34, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.principle-detail-page .share-icon {
    color: #D4AF37;
}

.principle-detail-page .share-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #F8FAFC;
}

.principle-detail-page .share-btn-canonical {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #94A3B8;
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    background-color: rgba(22, 32, 48, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 2px;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.principle-detail-page .share-btn-canonical:hover {
    color: #F3E5AB;
    border-color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.1);
}

.principle-detail-page .sidebar-sticky-wrapper {
    position: sticky;
    top: 6rem;
}

.principle-detail-page .sidebar-card {
    background: linear-gradient(145deg, rgba(22, 32, 48, 0.7) 0%, rgba(15, 22, 34, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.principle-detail-page .sidebar-heading {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.25rem;
    color: #F8FAFC;
    letter-spacing: 0.02em;
}

.principle-detail-page .sidebar-principles-list {
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding-top: 0.5rem;
}

.principle-detail-page .sidebar-list-item {
    margin-bottom: 0.25rem;
}

.principle-detail-page .sidebar-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #94A3B8;
    text-decoration: none;
    display: block;
    padding: 0.4rem 0.5rem;
    border-radius: 2px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.principle-detail-page .sidebar-link:hover {
    color: #F3E5AB;
    background-color: rgba(212, 175, 55, 0.08);
}

.principle-detail-page .sidebar-link.active {
    color: #D4AF37;
    font-weight: 600;
    background-color: rgba(212, 175, 55, 0.12);
    border-left: 2px solid #D4AF37;
}

.principle-detail-page .sidebar-gold-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #D4AF37;
}

.principle-detail-page .sidebar-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #94A3B8;
    line-height: 1.5;
}

.principle-detail-page .sidebar-cta-btn {
    background: rgba(22, 32, 48, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #F8FAFC;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.65rem 1rem;
    border-radius: 2px;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.principle-detail-page .sidebar-cta-btn:hover {
    background: #D4AF37;
    color: #080C14;
    border-color: #F3E5AB;
}

.principle-detail-page .comments-section-wrapper {
    background-color: #080C14;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.principle-detail-page .comments-main-heading {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 2.15rem;
    color: #F8FAFC;
}

.principle-detail-page .comments-count-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 0.35rem 0.85rem;
    border-radius: 2px;
}

.principle-detail-page .luxury-comment-card {
    background: linear-gradient(145deg, rgba(22, 32, 48, 0.6) 0%, rgba(15, 22, 34, 0.85) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 4px;
}

.principle-detail-page .border-gold-subtle {
    border-color: rgba(212, 175, 55, 0.15) !important;
}

.principle-detail-page .comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1A2332 0%, #0E1726 100%);
    border: 1px solid #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.principle-detail-page .reply-avatar {
    width: 36px;
    height: 36px;
}

.principle-detail-page .avatar-initials {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    color: #F3E5AB;
}

.principle-detail-page .comment-author-name {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #F8FAFC;
}

.principle-detail-page .reply-name {
    font-size: 1.05rem;
}

.principle-detail-page .badge-gold-pill {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.15rem 0.5rem;
    background-color: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #E5C158;
    border-radius: 2px;
}

.principle-detail-page .badge-gold-pill.outline-only {
    background-color: transparent;
    border-color: rgba(148, 163, 184, 0.25);
    color: #94A3B8;
}

.principle-detail-page .comment-meta-time,
.principle-detail-page .comment-meta-param,
.principle-detail-page .comment-meta-verified {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    color: #64748B;
}

.principle-detail-page .comment-meta-verified {
    color: #D4AF37;
}

.principle-detail-page .comment-meta-dot {
    color: rgba(212, 175, 55, 0.3);
}

.principle-detail-page .rating-star-icon {
    width: 15px;
    height: 15px;
    color: #64748B;
}

.principle-detail-page .rating-star-icon.active {
    color: #D4AF37;
}

.principle-detail-page .comment-text-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #CBD5E1;
}

.principle-detail-page .comment-action-btn,
.principle-detail-page .reply-trigger-btn {
    background: none;
    border: 1px solid rgba(148, 163, 184, 0.15);
    color: #94A3B8;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.principle-detail-page .comment-action-btn:hover,
.principle-detail-page .reply-trigger-btn:hover {
    color: #F3E5AB;
    border-color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.08);
}

.principle-detail-page .comment-action-btn.active {
    color: #D4AF37;
    border-color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.15);
}

.principle-detail-page .action-icon {
    width: 14px;
    height: 14px;
}

.principle-detail-page .reply-target-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    color: #64748B;
}

.principle-detail-page .reply-target-author {
    color: #D4AF37;
}

.principle-detail-page .comment-nested-indicator {
    position: absolute;
    left: -1rem;
    top: 1.25rem;
    bottom: 1.25rem;
    width: 2px;
    background: rgba(212, 175, 55, 0.25);
}

.principle-detail-page .comment-submission-block {
    background: linear-gradient(145deg, rgba(22, 32, 48, 0.75) 0%, rgba(15, 22, 34, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.principle-detail-page .submission-title {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.6rem;
    color: #F8FAFC;
}

.principle-detail-page .submission-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #94A3B8;
}

.principle-detail-page .moderation-alert-box {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid #D4AF37;
    color: #F3E5AB;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
}

.principle-detail-page .alert-icon {
    color: #D4AF37;
    flex-shrink: 0;
}

.principle-detail-page .form-label-custom {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #D4AF37;
    margin-bottom: 0.35rem;
}

.principle-detail-page .form-control-custom,
.principle-detail-page .form-textarea-custom {
    background-color: #080C14;
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: #F8FAFC;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    padding: 0.65rem 0.85rem;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.principle-detail-page .form-control-custom::placeholder,
.principle-detail-page .form-textarea-custom::placeholder {
    color: #64748B;
    opacity: 1;
}

.principle-detail-page .form-control-custom:focus,
.principle-detail-page .form-textarea-custom:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.principle-detail-page .rating-star-trigger {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #475569;
    transition: color 0.2s ease;
}

.principle-detail-page .rating-star-trigger .star-icon {
    width: 20px;
    height: 20px;
}

.principle-detail-page .rating-star-trigger.active {
    color: #D4AF37;
}

.principle-detail-page .submit-comment-cta {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #080C14;
    border: 1px solid #F3E5AB;
    padding: 0.75rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.principle-detail-page .submit-comment-cta:hover {
    background: #F3E5AB;
    color: #080C14;
}

@media (max-width: 991.98px) {
    .principle-detail-page .principle-main-title {
        font-size: 2.15rem;
    }

    .principle-detail-page .principle-primary-img {
        max-height: 380px;
    }
}

@media (max-width: 767.98px) {
    .principle-detail-page .principle-main-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .principle-detail-page .editorial-subheading {
        font-size: 1rem;
        hyphens: auto;
    }

    .principle-detail-page .submission-title,
    .principle-detail-page .comments-main-heading {
        font-size: 1rem;
        hyphens: auto;
    }

    .principle-detail-page .principle-lead-summary {
        font-size: 0.95rem;
    }

    .principle-detail-page .principle-primary-img {
        max-height: 280px;
    }

    .principle-detail-page .comment-nested-indicator {
        display: none;
    }
}

/* ===== PAGE TEMPLATE: cases-list ===== */
.header-block {
    background-color: #080C14;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    z-index: 1030;
    position: sticky;
    top: 0;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.header-block .header-block__navbar {
    background-color: #080C14;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.header-block .header-block__container {
    max-width: 1280px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.header-block .header-block__brand {
    text-decoration: none;
}

.header-block .header-block__logo-img {
    max-width: 42px;
    height: auto;
    object-fit: contain;
}

.header-block .header-block__brand-text {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #F8FAFC;
    line-height: 1.1;
    letter-spacing: 0.03em;
}

.header-block .header-block__brand-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #D4AF37;
    letter-spacing: 0.18em;
    margin-top: 2px;
}

.header-block .header-block__toggler {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 4px;
}

.header-block .header-block__toggler:focus {
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.4);
    outline: none;
}

.header-block .header-block__toggler-icon {
    stroke: #D4AF37;
}

.header-block .header-block__collapse {
    background-color: #080C14;
}

.header-block .header-block__nav-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-block .header-block__nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 0.85rem;
    border-radius: 2px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.header-block .header-block__nav-link:hover,
.header-block .header-block__nav-link:focus {
    color: #F3E5AB;
    background-color: rgba(212, 175, 55, 0.08);
}

.header-block .header-block__nav-link.active,
.header-block .header-block__nav-link.active:hover,
.header-block .header-block__nav-link.active:focus {
    color: #D4AF37 !important;
    background-color: transparent !important;
    border-bottom: 2px solid #D4AF37;
}

.header-block .header-block__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #080C14;
    border: 1px solid #F3E5AB;
    padding: 0.6rem 1.4rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.header-block .header-block__cta-btn:hover {
    background: #F3E5AB;
    color: #080C14;
    border-color: #D4AF37;
}

@media (max-width: 991.98px) {
    .header-block .header-block__collapse {
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-top: 1px solid rgba(212, 175, 55, 0.15);
        margin-top: 0.75rem;
    }

    .header-block .header-block__nav-list {
        align-items: flex-start;
        gap: 0.25rem;
        margin-bottom: 1rem;
    }

    .header-block .header-block__nav-link {
        font-size: 0.775rem;
        padding: 0.5rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(148, 163, 184, 0.08);
    }

    .header-block .header-block__actions {
        width: 100%;
    }

    .header-block .header-block__cta-btn {
        width: 100%;
        text-align: center;
    }
}

.case-detail-layout {
    background-color: #080C14;
    color: #F8FAFC;
    min-height: 80vh;
}

.case-detail-layout .case-detail-layout__breadcrumb .breadcrumb-item a {
    color: #94A3B8;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
}

.case-detail-layout .case-detail-layout__breadcrumb .breadcrumb-item a:hover {
    color: #D4AF37;
}

.case-detail-layout .case-detail-layout__breadcrumb .breadcrumb-item.active {
    color: #E5C158;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
}

.case-detail-layout .case-detail-layout__breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(212, 175, 55, 0.4);
}

.case-detail-layout .case-detail-layout__article-card {
    background: linear-gradient(145deg, rgba(22, 32, 48, 0.7) 0%, rgba(15, 22, 34, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 4px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
}

.case-detail-layout .case-detail-layout__meta-header {
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.case-detail-layout .case-detail-layout__author-pill {
    background-color: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 0.25rem 0.65rem;
    border-radius: 2px;
}

.case-detail-layout .case-detail-layout__pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #D4AF37;
}

.case-detail-layout .case-detail-layout__author-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #E5C158;
}

.case-detail-layout .case-detail-layout__publish-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #94A3B8;
}

.case-detail-layout .case-detail-layout__standard-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
}

.case-detail-layout .case-detail-layout__main-title {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 600;
    color: #F8FAFC;
}

.case-detail-layout .case-detail-layout__subtitle-lead {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.75;
    font-weight: 300;
    color: #94A3B8;
}

.case-detail-layout .case-detail-layout__image-wrapper {
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 4px;
    overflow: hidden;
    background-color: #080C14;
}

.case-detail-layout .case-detail-layout__post-img {
    height: auto;
    max-height: 480px;
    object-fit: contain;
    object-position: center;
}

.case-detail-layout .case-detail-layout__image-caption {
    background-color: rgba(8, 12, 20, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.case-detail-layout .case-detail-layout__caption-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #94A3B8;
}

.case-detail-layout .case-detail-layout__paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #F8FAFC;
    margin-bottom: 1.25rem;
}

.case-detail-layout .case-detail-layout__section-heading {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #F3E5AB;
    border-left: 3px solid #D4AF37;
    padding-left: 0.75rem;
}

.case-detail-layout .case-detail-layout__highlight-box {
    background-color: rgba(14, 23, 38, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 2px;
}

.case-detail-layout .case-detail-layout__box-title {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #D4AF37;
}

.case-detail-layout .case-detail-layout__technical-list {
    list-style: none;
    padding-left: 0;
}

.case-detail-layout .case-detail-layout__technical-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #F8FAFC;
}

.case-detail-layout .case-detail-layout__technical-item::before {
    content: "•";
    position: absolute;
    left: 0.25rem;
    color: #D4AF37;
    font-weight: bold;
}

.case-detail-layout .case-detail-layout__share-bar {
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.case-detail-layout .case-detail-layout__share-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.case-detail-layout .case-detail-layout__share-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #F8FAFC;
    background-color: rgba(22, 32, 48, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.case-detail-layout .case-detail-layout__share-link:hover {
    background-color: #D4AF37;
    color: #080C14;
    border-color: #F3E5AB;
}

.case-detail-layout .case-detail-layout__discussion-title {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.85rem;
    color: #F8FAFC;
}

.case-detail-layout .case-detail-layout__discussion-count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.case-detail-layout .luxury-comment-card {
    background: linear-gradient(145deg, rgba(22, 32, 48, 0.7) 0%, rgba(15, 22, 34, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.case-detail-layout .luxury-comment-card.reply-comment {
    background: rgba(15, 22, 34, 0.85);
    border-color: rgba(212, 175, 55, 0.15);
}

.case-detail-layout .border-gold-subtle {
    border-color: rgba(212, 175, 55, 0.15) !important;
}

.case-detail-layout .comment-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #080C14;
    border: 1px solid #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.case-detail-layout .comment-avatar.reply-avatar {
    width: 36px;
    height: 36px;
}

.case-detail-layout .avatar-initials {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    color: #F3E5AB;
    font-weight: 600;
}

.case-detail-layout .comment-author-name {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #F8FAFC;
}

.case-detail-layout .comment-author-name.reply-name {
    font-size: 1.05rem;
}

.case-detail-layout .badge-gold-pill {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    background-color: rgba(212, 175, 55, 0.12);
    color: #E5C158;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.15rem 0.5rem;
    border-radius: 2px;
    text-transform: uppercase;
}

.case-detail-layout .badge-gold-pill.outline-only {
    background-color: transparent;
}

.case-detail-layout .comment-meta-time,
.case-detail-layout .comment-meta-param,
.case-detail-layout .comment-meta-verified {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    color: #94A3B8;
}

.case-detail-layout .comment-meta-dot {
    color: #64748B;
}

.case-detail-layout .rating-star-icon {
    width: 15px;
    height: 15px;
    color: #D4AF37;
}

.case-detail-layout .comment-text-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #F8FAFC;
    margin-bottom: 0;
}

.case-detail-layout .comment-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background-color: transparent;
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: #94A3B8;
    padding: 0.25rem 0.65rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    border-radius: 2px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.case-detail-layout .comment-action-btn:hover,
.case-detail-layout .comment-action-btn.active {
    border-color: #D4AF37;
    color: #F3E5AB;
}

.case-detail-layout .comment-action-btn.active .action-icon {
    stroke: #D4AF37;
    fill: rgba(212, 175, 55, 0.2);
}

.case-detail-layout .action-icon {
    width: 14px;
    height: 14px;
}

.case-detail-layout .reply-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background-color: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    padding: 0.25rem 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.2s, color 0.2s;
}

.case-detail-layout .reply-trigger-btn:hover {
    background-color: #D4AF37;
    color: #080C14;
}

.case-detail-layout .reply-target-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #94A3B8;
}

.case-detail-layout .reply-target-author {
    color: #E5C158;
}

.case-detail-layout .case-detail-layout__form-card {
    background: linear-gradient(145deg, rgba(22, 32, 48, 0.7) 0%, rgba(15, 22, 34, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 4px;
}

.case-detail-layout .case-detail-layout__form-title {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.6rem;
    color: #F8FAFC;
}

.case-detail-layout .case-detail-layout__form-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #94A3B8;
}

.case-detail-layout .case-detail-layout__form-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #E5C158;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
    display: block;
}

.case-detail-layout .case-detail-layout__input,
.case-detail-layout .case-detail-layout__textarea {
    background-color: #080C14;
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: #F8FAFC;
    border-radius: 2px;
    padding: 0.65rem 0.85rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
}

.case-detail-layout .case-detail-layout__input::placeholder,
.case-detail-layout .case-detail-layout__textarea::placeholder {
    color: #64748B;
    opacity: 1;
}

.case-detail-layout .case-detail-layout__input:focus,
.case-detail-layout .case-detail-layout__textarea:focus {
    background-color: #080C14;
    border-color: #D4AF37;
    color: #F8FAFC;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
}

.case-detail-layout .case-detail-layout__submit-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #080C14;
    border: 1px solid #F3E5AB;
    padding: 0.75rem 1.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s, border-color 0.2s;
}

.case-detail-layout .case-detail-layout__submit-btn:hover {
    background: #F3E5AB;
    border-color: #D4AF37;
    color: #080C14;
}

.case-detail-layout .case-detail-layout__moderation-notice {
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid #D4AF37;
    color: #F3E5AB;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    border-radius: 2px;
}

.case-detail-layout .case-detail-layout__sidebar {
    top: 90px;
}

.case-detail-layout .case-detail-layout__sidebar-card {
    background: linear-gradient(145deg, rgba(22, 32, 48, 0.7) 0%, rgba(15, 22, 34, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
}

.case-detail-layout .case-detail-layout__sidebar-heading {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #F8FAFC;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.case-detail-layout .case-detail-layout__sidebar-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #94A3B8;
}

.case-detail-layout .case-detail-layout__spec-list .case-detail-layout__spec-item {
    border-color: rgba(148, 163, 184, 0.12) !important;
}

.case-detail-layout .case-detail-layout__spec-term {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #E5C158;
    font-weight: 400;
}

.case-detail-layout .case-detail-layout__spec-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #F8FAFC;
}

.case-detail-layout .case-detail-layout__guide-link {
    background-color: rgba(8, 12, 20, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: #94A3B8;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    border-radius: 2px;
    transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}

.case-detail-layout .case-detail-layout__guide-link:hover {
    color: #F3E5AB;
    border-color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.08);
}

.case-detail-layout .case-detail-layout__guide-arrow {
    color: #D4AF37;
    font-family: 'JetBrains Mono', monospace;
}

.site-footer {
    position: relative;
    background-color: #080C14;
    color: #F8FAFC;
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    overflow: hidden;
}

.site-footer-top-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
}

.site-footer-container {
    max-width: 1280px;
}

.site-footer-brand {
    text-decoration: none;
}

.site-footer-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.site-footer-title {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #F3E5AB;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.site-footer-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #94A3B8;
    margin-bottom: 1.5rem;
}

.site-footer-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    background-color: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 2px;
}

.site-footer-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #D4AF37;
    display: inline-block;
}

.site-footer-pill-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #E5C158;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.site-footer-heading {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #F8FAFC;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 0.5rem;
}

.site-footer-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.site-footer-list-item {
    margin-bottom: 0.75rem;
}

.site-footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #94A3B8;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
    line-height: 1.5;
}

.site-footer-link:hover,
.site-footer-link:focus {
    color: #F3E5AB;
    text-decoration: underline;
}

.site-footer-contact-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.site-footer-contact-item {
    margin-bottom: 0.85rem;
}

.site-footer-contact-label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    color: #E5C158;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
}

.site-footer-contact-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #F8FAFC;
    font-style: normal;
    line-height: 1.4;
}

.site-footer-contact-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    color: #F8FAFC;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-contact-link:hover,
.site-footer-contact-link:focus {
    color: #D4AF37;
    text-decoration: underline;
}

.site-footer-wa-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #080C14;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    border: 1px solid #F3E5AB;
    padding: 0.4rem 0.85rem;
    border-radius: 2px;
    text-decoration: none;
    margin-top: 0.25rem;
    transition: background-color 0.2s ease;
}

.site-footer-wa-badge:hover,
.site-footer-wa-badge:focus {
    background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 100%);
    color: #080C14;
}

.site-footer-divider {
    height: 1px;
    background-color: rgba(148, 163, 184, 0.12);
    border: none;
}

.site-footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #94A3B8;
}

.site-footer-domain {
    color: #F3E5AB;
    font-weight: 500;
}

.site-footer-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #64748B;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 767.98px) {
    .case-detail-layout .case-detail-layout__main-title {
        font-size: 1.75rem;
        hyphens: auto;
    }

    .case-detail-layout .case-detail-layout__section-heading {
        font-size: 1.35rem;
    }

    .case-detail-layout .case-detail-layout__subtitle-lead {
        font-size: 0.95rem;
    }

    .site-footer {
        padding-top: 3.5rem;
        padding-bottom: 2rem;
    }

    .site-footer-title {
        font-size: 1.15rem;
    }

    .site-footer-heading {
        font-size: 1rem;
        margin-top: 0.5rem;
    }
}