:root {
    --bg: #f7f4ef;
    --surface: #ffffff;
    --surface-alt: #efe7db;
    --text: #2c2a27;
    --muted: #6a645d;
    --accent: #8a6a47;
    --accent-dark: #6f5235;
    --border: #ddd3c6;
    --success: #e7f5e8;
    --error: #fbe8e8;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    background: #2f2a25;
    color: #fff;
    font-size: 14px;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    align-items: center;
}
.phone-top {
    color: #fff;
    font-weight: 700;
}

.site-header {
    background: rgba(255,255,255,0.95);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}
.logo-box {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
}
.logo small {
    display: block;
    color: var(--muted);
}
.nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.nav a {
    font-weight: 600;
}
.cta-header,
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 700;
    transition: 0.2s ease;
}
.cta-header,
.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover,
.cta-header:hover {
    background: var(--accent-dark);
    text-decoration: none;
}
.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-secondary:hover { text-decoration: none; background: #fff; }

.hero,
.page-hero {
    padding: 70px 0;
    background: linear-gradient(180deg, #f3ede4 0%, #f7f4ef 100%);
}
.page-hero.small {
    padding: 48px 0;
}
.hero-grid,
.split,
.cards.two,
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
}
.split.reverse {
    grid-template-columns: 0.95fr 1.05fr;
}
.hero h1,
.page-hero h1 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.1;
    margin: 12px 0 18px;
}
.page-hero h1 { font-size: clamp(30px, 4vw, 46px); }
.eyebrow {
    display: inline-block;
    padding: 6px 12px;
    background: #fff;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--accent-dark);
    font-size: 14px;
    font-weight: 700;
}
.hero-points,
.location-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 22px 0;
}
.hero-points span,
.location-tags span {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 600;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.phone-box {
    display: inline-block;
    background: #fff;
    padding: 12px 18px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    font-size: 22px;
    font-weight: 700;
}

.section {
    padding: 72px 0;
}
.section.alt {
    background: var(--surface-alt);
}
.section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}
.section h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.2;
    margin: 10px 0 14px;
}
.cards {
    display: grid;
    gap: 24px;
}
.cards.three {
    grid-template-columns: repeat(3, 1fr);
}
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
}
.feature-card ul,
.card ul {
    padding-left: 20px;
    margin: 14px 0 0;
}
.image-placeholder {
    min-height: 250px;
    background: repeating-linear-gradient(
        45deg,
        #f2ece3,
        #f2ece3 14px,
        #eadfce 14px,
        #eadfce 28px
    );
    border: 2px dashed #bda88d;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--accent-dark);
    font-weight: 700;
    padding: 20px;
}
.image-placeholder.large { min-height: 420px; }
.image-placeholder.medium { min-height: 320px; }
.image-placeholder.portrait { min-height: 460px; }
.image-placeholder.small-box { min-height: 180px; margin-top: 20px; }

.text-link {
    font-weight: 700;
}
.contact-form {
    display: grid;
    gap: 10px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    font: inherit;
}
.alert {
    padding: 12px 14px;
    border-radius: 14px;
    margin-bottom: 14px;
}
.alert.success { background: var(--success); }
.alert.error { background: var(--error); }

.site-footer {
    background: #2f2a25;
    color: #f5efe8;
    padding-top: 48px;
}
.site-footer a { color: #fff; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.14);
    margin-top: 24px;
}

@media (max-width: 960px) {
    .header-inner,
    .topbar-inner,
    .hero-grid,
    .split,
    .cards.two,
    .contact-grid,
    .footer-grid,
    .cards.three {
        grid-template-columns: 1fr;
        display: grid;
    }

    .header-inner,
    .topbar-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        gap: 14px;
    }

    .cta-header {
        width: 100%;
    }
}
