:root {
    --bg: #f8efe3;
    --panel: rgba(255, 250, 244, 0.82);
    --panel-strong: rgba(255, 247, 239, 0.96);
    --border: rgba(94, 58, 32, 0.12);
    --text: #2f2119;
    --muted: #735847;
    --accent: #c9652b;
    --accent-dark: #a34f1f;
    --shadow: 0 18px 40px rgba(71, 39, 18, 0.12);
    --radius: 24px;
    --max-width: 1120px;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "Avenir Next", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 214, 170, 0.8), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 197, 140, 0.55), transparent 30%),
        linear-gradient(180deg, #fbf4ea 0%, #f5e7d7 100%);
}

body {
    min-height: 100vh;
}

a {
    color: inherit;
}

.site-shell {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
    padding: 28px 0 56px;
}

.narrow-shell {
    max-width: 860px;
}

.hero,
.subpage-header,
.card {
    background: var(--panel);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: center;
    border-radius: 34px;
    padding: 34px;
}

.hero-copy,
.subpage-header,
.card {
    position: relative;
}

.eyebrow {
    margin: 0 0 10px;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-dark);
    font-weight: 700;
}

h1, h2 {
    margin: 0 0 14px;
    line-height: 1.04;
}

h1 {
    font-size: clamp(2.3rem, 5vw, 4.5rem);
    max-width: 10ch;
    color: var(--accent-dark);
}

h2 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: #8a4425;
}

.lead,
.card p,
.card li,
.footer,
.small-note,
.back-link {
    color: var(--muted);
}

.lead,
.card p,
.card li {
    font-size: 1rem;
    line-height: 1.68;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.button,
.text-link,
.back-link {
    text-decoration: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.16s ease, background 0.16s ease;
}

.button:hover,
.text-link:hover,
.back-link:hover {
    transform: translateY(-1px);
}

.button.primary {
    background: var(--accent);
    color: #fff8f2;
}

.button.secondary {
    background: var(--panel-strong);
    border: 1px solid var(--border);
}

.hero-art {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-art img {
    width: min(100%, 360px);
    height: auto;
    display: block;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.card {
    border-radius: var(--radius);
    padding: 24px;
}

.card ul {
    margin: 10px 0 0 0;
    padding-left: 22px;
}

.card li + li {
    margin-top: 6px;
}

.card-stack {
    display: grid;
    gap: 18px;
}

.faq-list {
    display: grid;
    gap: 18px;
}

.faq-list .card:nth-child(6n + 1) h2 {
    color: #b14d1d;
}

.faq-list .card:nth-child(6n + 2) h2 {
    color: #8c5a15;
}

.faq-list .card:nth-child(6n + 3) h2 {
    color: #7f3d2f;
}

.faq-list .card:nth-child(6n + 4) h2 {
    color: #8b2f5f;
}

.faq-list .card:nth-child(6n + 5) h2 {
    color: #6f4e9a;
}

.faq-list .card:nth-child(6n + 6) h2 {
    color: #2c6a63;
}

.subpage-header {
    border-radius: 30px;
    padding: 28px;
    margin-bottom: 18px;
}

.text-link {
    color: var(--accent-dark);
    font-weight: 700;
}

.back-link {
    display: inline-block;
    margin-bottom: 14px;
    font-weight: 700;
}

.footer {
    padding: 22px 0 8px;
    text-align: center;
    font-size: 0.92rem;
}

.small-note {
    font-size: 0.92rem;
}

@media (max-width: 800px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-art {
        order: -1;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }
}
