* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top, #f3f0e6 0%, #ffffff 48%),
        #ffffff;
    color: #1f1d19;
    line-height: 1.5;
}

.container {
    width: min(100% - 32px, 760px);
    margin: 0 auto;
}

.hero {
    padding: 36px 0 28px;
    text-align: center;
}

.eyebrow {
    margin: 0 0 10px;
    color: #8a6a2f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.15;
}

.hero .location {
    margin: 0 0 14px;
    font-size: 18px;
    color: #615d54;
}

.intro,
.section-lead,
.cta-reminder {
    margin: 0 auto 20px;
    max-width: 560px;
    color: #514d45;
}

.cta-reminder {
    text-align: center;
}

.cta-group {
    display: grid;
    gap: 12px;
}

.cta {
    display: block;
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.cta:hover,
.cta:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(31, 29, 25, 0.12);
}

.cta-phone {
    background: #171511;
    color: #ffffff;
}

.cta-whatsapp {
    background: #efe6d3;
    color: #171511;
}

.section {
    padding: 24px 0;
}

.section h2 {
    margin: 0 0 12px;
    font-size: 24px;
}

.scope-note,
.trust-note {
    margin: 0 0 16px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f7f2e8;
    color: #454038;
}

.trust-note {
    background: #f3efe6;
}

.services {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
}

.related-section {
    padding-top: 4px;
}

.related-links {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 10px;
}

.related-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 0;
    color: #1f1d19;
    font-weight: 700;
}

.related-note {
    color: #615d54;
}

.gallery {
    display: grid;
    gap: 12px;
}

.gallery img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.bottom-cta {
    padding: 24px 0 40px;
}

footer {
    padding: 20px 0;
    border-top: 1px solid #ece5d7;
    color: #666666;
    font-size: 14px;
    text-align: center;
}

@media (min-width: 600px) {
    .cta-group {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 40px;
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
    }
}
