:root {
    --bg-primary: #0f1419;
    --bg-secondary: #1a2332;
    --bg-tertiary: #243447;
    --text-primary: #f0f2f5;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --accent: #e8a838;
    --accent-hover: #f0b848;
    --accent-muted: rgba(232, 168, 56, 0.12);
    --nav-dark: #0d1117;
    --border: #2d3a4f;
    --card-bg: #f8f9fa;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent);
    color: var(--nav-dark);
    padding: 12px 24px;
    z-index: 9999;
    font-weight: 600;
    text-decoration: none;
}
.skip-link:focus {
    top: 0;
}
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--nav-dark) 0%, rgba(13, 17, 23, 0.96) 100%);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}
.logo-icon {
    display: flex;
    color: var(--accent);
}
.logo-icon svg {
    width: 28px;
    height: 28px;
}
.logo-text {
    font-family: 'Syne', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.burger-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}
.burger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
    opacity: 0;
}
.burger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent);
}
.nav-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    list-style: none;
    margin-top: 14px;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.dropdown-menu li a:hover {
    background: var(--accent-muted);
    color: var(--accent);
}
.hero {
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(4px);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.92) 0%, rgba(26, 35, 50, 0.85) 100%);
}
.hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.hero-text {
    max-width: 680px;
}
.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 22px;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}
.intro-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.intro-content {
    max-width: 760px;
}
.intro-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    margin-bottom: 28px;
}
.intro-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}
.section-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 36px;
}
.guides-section {
    padding: 80px 0;
}
.guides-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: auto auto;
    gap: 28px;
}
.guide-featured {
    grid-row: span 2;
}
.guide-wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}
.guide-wide .guide-image {
    order: 2;
}
.guide-wide .guide-content {
    order: 1;
}
.guide-card {
    background: var(--bg-secondary);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.guide-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}
.guide-image {
    position: relative;
    overflow: hidden;
}
.guide-featured .guide-image {
    height: 320px;
}
.guide-aside .guide-image {
    height: 160px;
}
.guide-wide .guide-image {
    height: 100%;
    min-height: 220px;
}
.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.guide-card:hover .guide-image img {
    transform: scale(1.04);
}
.image-credit {
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-muted);
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'IBM Plex Mono', monospace;
}
.guide-content {
    padding: 24px;
}
.guide-tag {
    display: inline-block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent);
    margin-bottom: 12px;
}
.guide-content h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.guide-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.guide-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.guide-link:hover {
    color: var(--accent-hover);
}
.trust-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.trust-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    margin-bottom: 40px;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.trust-item {
    padding: 32px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid var(--border);
}
.trust-item h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
}
.trust-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.resources-section {
    padding: 64px 0 80px;
}
.resources-intro {
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.resources-list {
    list-style: none;
    margin-bottom: 24px;
}
.resources-list li {
    margin-bottom: 12px;
}
.resources-list a {
    color: var(--accent);
    text-decoration: none;
}
.resources-list a:hover {
    text-decoration: underline;
}
.resources-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.contact-hero {
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}
.contact-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(5px);
}
.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.9) 0%, rgba(26, 35, 50, 0.88) 100%);
}
.contact-hero .container {
    position: relative;
    z-index: 1;
}
.contact-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 12px;
}
.contact-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}
.contact-page {
    padding: 60px 0 80px;
    background: var(--bg-secondary);
}
.contact-intro {
    max-width: 680px;
    margin-bottom: 48px;
}
.contact-intro p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 64px;
}
.contact-card {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease;
}
.contact-card:hover {
    transform: translateY(-4px);
}
.contact-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--nav-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}
.contact-card-icon svg {
    width: 28px;
    height: 28px;
}
.contact-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.contact-card-description {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 18px;
}
.contact-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.9rem;
    color: var(--nav-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--accent);
}
.contact-link:hover {
    color: var(--accent);
}
.faq-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 32px;
}
.faq-list {
    max-width: 780px;
}
.faq-item {
    margin-bottom: 28px;
}
.faq-item h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.faq-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}
.article-page {
    padding-bottom: 80px;
}
.article-header {
    padding: 70px 0 40px;
    background: var(--bg-secondary);
}
.back-link {
    display: inline-block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 24px;
    transition: color 0.2s ease;
}
.back-link:hover {
    color: var(--accent);
}
.article-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 14px;
}
.article-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: 'IBM Plex Mono', monospace;
}
.article-hero {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}
.article-hero img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: -30px;
}
.article-body {
    padding: 48px 0;
}
.article-intro {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 32px;
    line-height: 1.8;
}
.article-body h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.45rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 18px;
}
.article-body p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}
.article-body ul {
    margin: 20px 0 20px 24px;
    color: var(--text-secondary);
}
.article-body li {
    margin-bottom: 10px;
}
.article-body a {
    color: var(--accent);
    text-decoration: none;
}
.article-body a:hover {
    text-decoration: underline;
}
.article-footer-nav {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.about-page, .policy-page {
    padding: 80px 0;
}
.page-header {
    margin-bottom: 48px;
}
.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}
.about-text h2, .policy-content h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
}
.about-text h2:first-child, .policy-content h2:first-child {
    margin-top: 0;
}
.about-text p, .policy-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.05rem;
}
.about-text a, .policy-content a {
    color: var(--accent);
    text-decoration: none;
}
.policy-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 10px;
}
.policy-content ul {
    margin: 16px 0 16px 24px;
    color: var(--text-secondary);
}
.policy-content li {
    margin-bottom: 8px;
}
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 64px 0 24px;
}
.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: block;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.footer-col a:hover {
    color: var(--accent);
}
.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 20px;
    z-index: 9000;
    display: none;
}
.cookie-banner.show {
    display: block;
}
.cookie-content {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cookie-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.cookie-content a {
    color: var(--accent);
}
.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}
.cookie-btn.accept {
    background: var(--accent);
    color: var(--nav-dark);
}
.cookie-btn.accept:hover {
    background: var(--accent-hover);
}
.cookie-btn.reject, .cookie-btn.settings {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}
.cookie-btn.reject:hover, .cookie-btn.settings:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9500;
}
.cookie-modal.show {
    display: flex;
}
.modal-inner {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 12px;
    max-width: 480px;
    width: 90%;
}
.modal-inner h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 24px;
}
.cookie-option {
    margin-bottom: 20px;
}
.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
}
.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}
.cookie-option p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 6px;
    margin-left: 28px;
}
.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
@media (max-width: 968px) {
    .guides-layout {
        grid-template-columns: 1fr;
    }
    .guide-featured {
        grid-row: span 1;
    }
    .guide-wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    .guide-wide .guide-image {
        order: 1;
    }
    .guide-wide .guide-content {
        order: 2;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .contact-cards {
        grid-template-columns: 1fr;
    }
    .footer-main {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 62px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .main-nav .nav-list {
        flex-direction: column;
        gap: 0;
    }
    .main-nav .nav-list li {
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        padding: 0 0 0 16px;
        margin-top: 0;
    }
    .dropdown-menu li a {
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
    }
    .hero {
        padding: 70px 0 60px;
    }
    .contact-hero {
        padding: 70px 0 50px;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
}
