:root {
    --ink: #27231f;
    --muted: #645c55;
    --line: #ded7ce;
    --paper: #fbfaf7;
    --soft: #f0ebe3;
    --accent: #a83a1f;
    --accent-dark: #762714;
    --green: #42664a;
    --blue: #245f73;
    --white: #fff;
    --shadow: 0 18px 45px rgba(39, 35, 31, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    line-height: 1.65;
}

a {
    color: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.faq-hero {
    padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 5vw, 5rem);
    color: var(--white);
    background: linear-gradient(135deg, var(--ink), var(--accent-dark));
}

.faq-hero-content {
    max-width: 960px;
}

.eyebrow {
    margin: 0 0 0.7rem;
    color: #f0b69d;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    max-width: 920px;
    margin-bottom: 1.2rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 1;
    font-weight: 500;
}

h2 {
    margin-bottom: 1rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    font-weight: 500;
}

.lead {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.section {
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
    max-width: 900px;
    margin-bottom: 2.5rem;
}

.section-heading .eyebrow {
    color: var(--accent);
}

.faq-list {
    display: grid;
    gap: 1rem;
    max-width: 980px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 10px 22px rgba(39, 35, 31, 0.07);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    color: var(--ink);
    cursor: pointer;
    font-weight: 900;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    color: var(--accent);
    font-size: 1.3rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--muted);
}

.faq-answer p {
    margin-bottom: 0.9rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-cta {
    max-width: 980px;
    margin-top: 2.5rem;
    padding: clamp(1.2rem, 4vw, 2rem);
    color: var(--white);
    background: var(--blue);
}

.faq-cta p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.75rem 1.1rem;
    color: var(--white);
    background: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 6px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
}

.button:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

footer {
    display: grid;
    gap: 0.5rem;
    padding: 2rem clamp(1rem, 5vw, 5rem);
    color: rgba(255, 255, 255, 0.78);
    background: var(--ink);
    font-size: 0.95rem;
}

footer p {
    margin: 0;
}

@media (max-width: 680px) {
    body {
        font-size: 16px;
    }

    .faq-item summary {
        align-items: flex-start;
    }
}
