:root {
    --bg-page: #ede8df;
    --bg-soft: #f6f2eb;
    --bg-light: rgba(255, 255, 255, 0.56);
    --bg-muted: rgba(255, 255, 255, 0.16);
    --bg-accent: #b78852;
    --bg-accent-dark: #a87a47;
    --bg-dark: #111111;
    --white: #ffffff;

    --text: #111111;
    --text-soft: #625b52;
    --text-muted: #8b8379;
    --text-inverse: #ffffff;

    --line: rgba(17, 17, 17, 0.08);
    --line-strong: rgba(17, 17, 17, 0.12);

    --accent: #b78852;
    --accent-deep: #8d673c;

    --font-sans: Inter, "Segoe UI", Arial, sans-serif;
    --font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;

    --container: 1240px;
    --content-wide: 1100px;
    --content: 980px;
    --content-narrow: 820px;

    --radius-pill: 999px;

    --shadow-soft: 0 18px 48px rgba(28, 21, 15, 0.07);
    --shadow-button: 0 14px 30px rgba(17, 17, 17, 0.14);

    --transition-fast: 180ms ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(183, 136, 82, 0.10), transparent 26%),
        linear-gradient(180deg, #f7f3ed 0%, var(--bg-page) 54%, #efe9e0 100%);
    line-height: 1.5;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(17, 17, 17, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 17, 0.018) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 82%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 82%);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.content-wide {
    max-width: var(--content-wide);
    margin: 0 auto;
}

.content {
    max-width: var(--content);
    margin: 0 auto;
}

.content-narrow {
    max-width: var(--content-narrow);
    margin: 0 auto;
}

.site-topbar {
    padding: 18px 0;
}

.site-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1rem;
    color: var(--text);
    letter-spacing: -0.03em;
}

.brand::before {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-deep), var(--accent));
    box-shadow: 0 0 0 5px rgba(183, 136, 82, 0.12);
}

.section {
    padding: 76px 0;
}

.section-light {
    background: var(--bg-light);
}

.section-muted {
    background: var(--bg-muted);
}

.section-accent {
    background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-accent-dark) 100%);
    color: var(--text-inverse);
}

.section-inner {
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 16px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.34);
    color: var(--accent-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.hero-title,
.section-title,
.mini-title {
    font-family: var(--font-serif);
    color: var(--text);
    letter-spacing: -0.05em;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(3.1rem, 5.8vw, 5.6rem);
    line-height: 0.92;
}

.section-title {
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    line-height: 0.96;
}

.mini-title {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1;
}

.hero-title .line,
.section-title .line {
    display: block;
}

.hero-text,
.section-text,
.mini-text {
    color: var(--text-soft);
}

.hero-text {
    font-size: 1.05rem;
    line-height: 1.9;
}

.section-text {
    font-size: 1rem;
    line-height: 1.85;
}

.mini-text {
    font-size: 0.98rem;
    line-height: 1.75;
}

.section-accent .section-title,
.section-accent .section-text {
    color: var(--text-inverse);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: var(--radius-pill);
    font-size: 0.96rem;
    font-weight: 700;
    transition: var(--transition-fast);
    cursor: pointer;
    border: 0;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-dark {
    background: var(--bg-dark);
    color: var(--text-inverse);
    box-shadow: var(--shadow-button);
}

.btn-light {
    background: rgba(255, 255, 255, 0.46);
    color: var(--text);
    border: 1px solid var(--line-strong);
}

.btn-white {
    background: var(--white);
    color: var(--text);
}

.info-pill {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 22px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
}

.info-pill small {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.info-pill strong {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1;
    letter-spacing: -0.06em;
    color: var(--text);
}

.actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.meta-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 22px;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.meta-list span {
    position: relative;
    padding-left: 14px;
}

.meta-list span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

.site-footer {
    background: var(--bg-dark);
    color: var(--text-inverse);
    padding: 46px 0 34px;
    text-align: center;
}

.site-footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.site-footer-text {
    max-width: 720px;
    margin: 12px auto 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
    line-height: 1.8;
}

.site-footer-copy {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.84rem;
}

.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-28 { margin-top: 28px; }
.mt-30 { margin-top: 30px; }

@media (max-width: 900px) {
    .site-topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 780px) {
    .container {
        width: min(calc(100% - 20px), var(--container));
    }

    .section {
        padding: 56px 0;
    }

    .actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .info-pill {
        width: 100%;
        gap: 12px;
    }

    .meta-list {
        flex-direction: column;
        gap: 10px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.8rem);
    }

    .section-title {
        font-size: clamp(2.2rem, 9vw, 3.4rem);
    }

    .mini-title {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
    }
}