:root {
    --color-bg: #160e0c;
    --color-bg-alt: #24130f;
    --color-panel: rgba(255, 244, 228, 0.07);
    --color-stroke: rgba(255, 244, 228, 0.16);
    --color-text: #fff2df;
    --color-muted: rgba(255, 242, 223, 0.78);
    --color-gold: #efc66e;
    --color-shadow: rgba(0, 0, 0, 0.32);
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Manrope", Arial, sans-serif;
    --container: min(1180px, calc(100% - 32px));
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
}

body {
    color: var(--color-text);
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top left, rgba(214, 161, 68, 0.28), transparent 24%),
        radial-gradient(circle at 80% 20%, rgba(205, 114, 40, 0.2), transparent 18%),
        linear-gradient(140deg, #160e0c 0%, #2e1711 38%, #6b3518 100%);
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    width: 34vw;
    height: 34vw;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.38;
    pointer-events: none;
    z-index: 0;
}

body::before {
    top: -10vw;
    left: -10vw;
    background: radial-gradient(circle, rgba(244, 214, 135, 0.78), transparent 62%);
}

body::after {
    right: -14vw;
    bottom: -10vw;
    background: radial-gradient(circle, rgba(208, 110, 37, 0.62), transparent 60%);
}

.site-shell {
    position: relative;
    z-index: 1;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: 999px;
    padding: 0.95rem 1.4rem;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #201107;
    background: linear-gradient(180deg, #fce7b5 0%, #efc66e 56%, #bc7d1d 100%);
    box-shadow: 0 18px 34px rgba(19, 7, 2, 0.28);
}

.button-secondary {
    border: 1px solid var(--color-stroke);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
}

.section-heading {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 2.4rem;
}

.section-heading span {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.76rem;
    color: rgba(255, 242, 223, 0.72);
}

.section-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 4vw, 3.8rem);
    line-height: 0.96;
}

.section-heading p {
    max-width: 58ch;
    color: var(--color-muted);
    line-height: 1.7;
}

.section-heading-inline {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
}

.content-section {
    padding: 2rem 0 5rem;
}

.section-alt {
    background: linear-gradient(180deg, rgba(255, 248, 240, 0.02), rgba(255, 248, 240, 0.04));
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.empty-state,
.error-state {
    padding: 1.25rem;
    border: 1px solid var(--color-stroke);
    border-radius: var(--radius-md);
    background: var(--color-panel);
}

.skeleton {
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
    background-size: 220% 100%;
    animation: shimmer 1.5s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@media (max-width: 980px) {
    .section-heading-inline,
    .card-grid {
        grid-template-columns: 1fr;
    }
}
