:root {
    --ink: #0d0b14;
    --paper: #faf6ef;
    --bone: #ede5d5;
    --sage: #5c7a3e;
    --fern: #8aac5c;
    --gold: #d4a843;
    --mist: #c8d4b8;
    --moon: #b8a8cc;
    --font-display: 'Cinzel Decorative', serif;
    --font-body: 'Crimson Pro', serif;
    --font-mono: 'Space Mono', monospace;
    --transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1)
}

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

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

body {
    background: var(--ink);
    color: var(--bone);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(13, 11, 20, 0.95), transparent);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(212, 168, 67, 0.1)
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--gold);
    text-decoration: none
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--mist);
    text-decoration: none;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color var(--transition)
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold)
}

.page-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(45, 74, 46, 0.3) 0%, transparent 70%)
}

.header-eyeline {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--sage);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative
}

.header-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--paper);
    margin-bottom: 0.8rem;
    position: relative
}

.header-desc {
    font-size: 1rem;
    color: var(--mist);
    font-style: italic;
    max-width: 480px;
    margin: 0 auto;
    position: relative
}

.breadcrumb {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: rgba(200, 212, 184, 0.4);
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    position: relative
}

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

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

.faq-wrapper {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 2rem 6rem
}

.faq-category {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--sage);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(92, 122, 62, 0.2)
}

.faq-item {
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color var(--transition)
}

.faq-item.open {
    border-color: rgba(212, 168, 67, 0.2)
}

.faq-question {
    width: 100%;
    background: rgba(250, 246, 239, 0.025);
    border: none;
    color: var(--paper);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: background var(--transition)
}

.faq-question:hover {
    background: rgba(250, 246, 239, 0.05)
}

.faq-item.open .faq-question {
    background: rgba(250, 246, 239, 0.04)
}

.faq-question-text {
    font-size: 1rem;
    color: var(--paper);
    line-height: 1.4
}

.faq-chevron {
    font-size: 0.75rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform var(--transition)
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1)
}

.faq-item.open .faq-answer {
    max-height: 800px
}

.faq-answer-inner {
    padding: 0 1.5rem 1.4rem;
    font-size: 0.95rem;
    color: var(--mist);
    font-style: italic;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.04)
}

.faq-answer-inner strong {
    color: var(--bone);
    font-style: normal
}

.faq-answer-inner a {
    color: var(--gold);
    text-decoration: none
}

.faq-answer-inner a:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

.footer {
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center
}

.footer-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 1rem
}

.footer-text {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: rgba(200, 212, 184, 0.3);
    letter-spacing: 0.1em
}

@media(max-width:768px) {
    .nav-links {
        display: none
    }
}