/* Jost — latin-ext (Umlaute etc.) */
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url(fonts/jost-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Jost — latin */
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url(fonts/jost-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Inter — latin-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 400;
    font-display: swap;
    src: url(fonts/inter-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Inter — latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 400;
    font-display: swap;
    src: url(fonts/inter-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Reset & Variables ── */

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

:root {
    --color-bg: #faf7f2;
    --color-surface: #fff;
    --color-accent: #c17a4a;
    --color-accent-light: #f0e0d0;
    --color-text: #2e2a26;
    --color-text-muted: #7a7168;
    --color-line: #e2dacf;
    --font-heading: 'Jost', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    font-weight: 300;
    line-height: 1.7;
}

/* ── Layout ── */

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* ── Header ── */

header {
    padding: 3rem 0 1rem;
    text-align: center;
}

.logo {
    display: block;
    width: clamp(260px, 45vw, 420px);
    height: auto;
    margin: 0 auto 0.5rem;
}

.tagline {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

/* ── Divider ── */

.divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 400px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-line);
}

.divider-icon {
    color: var(--color-accent);
    font-size: 0.5rem;
    opacity: 0.5;
}

/* ── Hero ── */

.hero {
    text-align: center;
    padding: 0.5rem 0 2.5rem;
}

.hero-text {
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
    color: var(--color-text);
    line-height: 1.9;
}

/* ── Services ── */

.services {
    padding: 1.5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.25rem;
}

.service-card {
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: 8px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 20px rgba(193, 122, 74, 0.1);
}

.service-icon {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    display: block;
    color: var(--color-accent);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.4rem;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ── CTA Banner ── */

.cta-banner {
    margin: 2.5rem 0;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    background: var(--color-accent-light);
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    color: var(--color-text);
    margin-bottom: 0.4rem;
}

.cta-banner p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: var(--color-accent);
    padding: 0.85rem 2.2rem;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background: #a8673e;
    transform: translateY(-1px);
}

/* ── Contact ── */

.contact {
    padding: 1.5rem 0 3rem;
}

.contact h2 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.contact-block h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.contact-block p,
.contact-block a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-block a:hover {
    color: var(--color-accent);
}

/* ── Footer ── */

footer {
    margin-top: auto;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--color-line);
}

footer p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

/* ── Responsive ── */

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

    header {
        padding: 2rem 0 1rem;
    }
}
