@font-face {
    font-family: "Atkinson Hyperlegible";
    src: url("/fonts/atkinson-hyperlegible/Atkinson-Hyperlegible-Regular-102a.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Josefin Sans";
    src: url("/fonts/josefin-sans/JosefinSans-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-brand: #B97663;
    --color-accent: #c39767;
    --color-accent-hover: #b38458;
    --color-text: #222;
    --color-bg: #fcfcfc;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Atkinson Hyperlegible", system-ui, sans-serif;
    line-height: 1.55;
    color: var(--color-text);
    background: var(--color-bg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--color-brand);
    color: #fff;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: var(--color-brand);
    color: #fff;
}

.site-footer .container {
    display: flex;
    justify-content: center;
}

.footer-legal {
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
    opacity: 0.9;
    max-width: 60rem;
    margin: 0 auto;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 0 1rem;
    margin: 0 auto;
}

.logo { height: 70px; }

.site-title {
    margin: 0;
    line-height: 0;
}

.hero {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.5rem, 6vh, 4rem) 0;
}

.hero h2 {
    font-family: "Josefin Sans", system-ui, sans-serif;
    font-weight: 600;
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
    color: var(--color-brand);
}

.hero-text {
    font-size: 1.1rem;
    text-align: left;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-text p {
    margin-bottom: 1.75rem;
}

.hero-text p:last-child {
    margin-bottom: 0;
}

.hero-image {
    margin: 2rem auto 2rem;
    max-width: 42rem;
}

.hero-image img {
    filter: saturate(0.85) contrast(0.92) brightness(1.03);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--color-accent);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-family: "Josefin Sans", system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: 0.03em;
    font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.15rem);
    transition: background 0.3s;
}

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

.cta-button:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}

.hero .cta-button {
    margin-top: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
    .cta-button { transition: none; }
}

@media (max-width: 600px) {
    .hero h2 { font-size: 1.8rem; }
    .hero-text { font-size: 1rem; }
    .cta-button { width: 100%; max-width: 320px; }
    .footer-legal {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}