:root {
    color-scheme: light;
    --bg: #f4efe7;
    --bg-soft: #fffaf3;
    --text: #1f2230;
    --muted: #5e6577;
    --accent: #8a5a22;
    --accent-strong: #6d4315;
    --card: rgba(255, 255, 255, 0.74);
    --border: rgba(31, 34, 48, 0.08);
    --shadow: 0 20px 45px rgba(60, 42, 12, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(190, 137, 61, 0.22), transparent 34%),
        radial-gradient(circle at right 20%, rgba(255, 214, 153, 0.22), transparent 30%),
        linear-gradient(180deg, var(--bg-soft), var(--bg));
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.topbar,
.page-frame,
.site-footer {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 0 0.75rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand strong,
.hero h1,
.info-card h2,
.contact-card h2 {
    font-family: Georgia, "Times New Roman", serif;
}

.brand span {
    display: grid;
}

.brand small,
.eyebrow,
.hero-text,
.site-footer,
.topbar-nav a,
.contact-card dt,
.contact-card dd,
.info-card p {
    color: var(--muted);
}

.brand-mark {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: white;
    background: linear-gradient(135deg, var(--accent), #c27a27);
    box-shadow: var(--shadow);
}

.topbar-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar-nav a {
    padding: 0.35rem 0;
}

.page-frame {
    padding: 3rem 0 2.5rem;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
    gap: 1.5rem;
    align-items: stretch;
}

.hero-copy,
.contact-card,
.info-card {
    background: var(--card);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.hero-copy {
    border-radius: 2rem;
    padding: clamp(1.5rem, 3vw, 3rem);
    animation: float-up 0.7s ease-out both;
}

.eyebrow {
    margin: 0 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    margin: 0 0 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(138, 90, 34, 0.12);
    border: 1px solid rgba(138, 90, 34, 0.22);
    color: var(--accent-strong);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    max-width: 11ch;
}

.hero-text {
    margin: 1.2rem 0 0;
    max-width: 58ch;
    font-size: 1.05rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.7rem 1.1rem;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button-primary {
    color: white;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    box-shadow: 0 12px 30px rgba(109, 67, 21, 0.28);
}

.button-secondary {
    color: var(--accent-strong);
    border-color: rgba(138, 90, 34, 0.2);
    background: rgba(255, 255, 255, 0.48);
}

.contact-card {
    border-radius: 2rem;
    padding: 1.5rem;
    animation: float-up 0.8s ease-out 0.08s both;
}

.contact-card h2,
.info-card h2 {
    margin: 0 0 1rem;
    font-size: 1.65rem;
}

.contact-card dl {
    margin: 0;
    display: grid;
    gap: 1rem;
}

.contact-card div {
    padding: 0.95rem 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(31, 34, 48, 0.06);
}

.contact-card dt {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.35rem;
}

.contact-card dd {
    margin: 0;
    line-height: 1.55;
}

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

.info-card {
    border-radius: 1.6rem;
    padding: 1.25rem;
}

.info-card p {
    margin: 0;
    line-height: 1.7;
}

.site-footer {
    padding: 0 0 1.4rem;
    font-size: 0.95rem;
}

.not-found {
    padding: 3rem 0;
}

@keyframes float-up {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 640px) {
    .topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero h1 {
        max-width: none;
    }

    .page-frame {
        padding-top: 1.8rem;
    }

    .button {
        width: 100%;
    }
}