:root {
    --bg: #f8f3ea;
    --panel: rgba(255, 255, 255, 0.84);
    --text: #382f28;
    --muted: #786a5f;
    --accent: #9f6a3f;
    --accent-soft: #efe2d2;
    --border: rgba(56, 47, 40, 0.12);
    --shadow: 0 24px 70px rgba(111, 85, 57, 0.16);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 207, 138, 0.38), transparent 35%),
        radial-gradient(circle at bottom right, rgba(194, 144, 100, 0.2), transparent 35%),
        linear-gradient(180deg, #fef8ef, #f5ecdf);
}

a {
    color: #774519;
}

a:hover {
    color: #4f2b0f;
}

.shell {
    width: min(1100px, calc(100% - 28px));
    margin: 0 auto;
    padding: 24px 0 56px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.brand {
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nav-links a {
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--text);
}

.nav-links a.active,
.nav-links a:hover {
    background: var(--accent-soft);
    color: #5f3514;
}

.hero,
.panel {
    margin-top: 18px;
    padding: 28px;
    border-radius: 28px;
    background: var(--panel);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    font-size: 0.78rem;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
}

h1 {
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 0.98;
}

.lead {
    margin: 16px 0 0;
    font-size: 1.08rem;
    line-height: 1.7;
    color: #55473d;
    max-width: 56ch;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.button-row button,
.button-row a {
    appearance: none;
    border: 1px solid rgba(95, 53, 20, 0.14);
    background: #fff8ef;
    color: #5f3514;
    text-decoration: none;
    font: inherit;
    padding: 12px 16px;
    border-radius: 999px;
    cursor: pointer;
}

.button-row button.active,
.button-row button:hover,
.button-row a:hover {
    background: #5f3514;
    color: #fff5ea;
}

.frame {
    aspect-ratio: 4 / 3;
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    display: block;
    background: #eadcc9;
    border: 8px solid #fff8ef;
    box-shadow: 0 18px 40px rgba(111, 85, 57, 0.18);
}

.gallery-note {
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.95rem;
}

.photo-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    background: #eadcc9;
    border: 4px solid #fff8ef;
    box-shadow: 0 12px 28px rgba(111, 85, 57, 0.14);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.card {
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 249, 242, 0.92);
    border: 1px solid var(--border);
}

.card p,
.panel p,
.panel li {
    line-height: 1.7;
    color: #55473d;
}

.card h3,
.panel h2 {
    margin-bottom: 10px;
}

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

.faq-item {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 249, 242, 0.92);
    border: 1px solid var(--border);
}

.footer {
    margin-top: 22px;
    color: var(--muted);
    text-align: center;
}

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

    .nav {
        align-items: flex-start;
        flex-direction: column;
    }
}
