:root {
    --accent: #2c7a7b;
    --accent-2: #b5651d;
    --muted: #666;
    --bg: #fbfbfb;
}
* {
    box-sizing: border-box;
}
body {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    margin: 0;
    color: #111;
    background: var(--bg);
    line-height: 1.45;
    background-image: url("https://images.unsplash.com/photo-1546727483-398533902b75?auto=format&fit=crop&w=1600&q=60");
    background-size: cover;
    background-position: center;
}
.wrap {
    max-width: 980px;
    margin: 0 auto;
    padding: 28px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 10px;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.brand {
    font-weight: 700;
    font-size: 18px;
}
.phone-btn {
    background: var(--accent);
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}
.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: center;
    margin-top: 18px;
}
.hero-left h1 {
    margin: 0;
    font-size: 28px;
}
.hero-left p {
    margin: 8px 0;
    color: var(--muted);
}
.ctas {
    margin-top: 12px;
}
.ctas a {
    margin-right: 8px;
}
.profile {
    background: #fff;
    padding: 14px;
    border-radius: 12px;
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: 0 6px 18px rgba(20, 20, 20, 0.04);
}
.profile img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    border: 4px solid #fff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}
.quick {
    color: var(--muted);
    font-size: 14px;
    margin-top: 8px;
}
section {
    margin-top: 22px;
}
h2 {
    margin: 0 0 10px 0;
    font-size: 18px;
}
.grid {
    display: grid;
    gap: 12px;
}
.services {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    display: grid;
    padding: 18px 8px;
}
.card {
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(12, 12, 12, 0.03);
}
.gallery {
    display: flex;
    gap: 8px;
    overflow: auto;
    padding-bottom: 6px;
}
.gallery img {
    height: 120px;
    border-radius: 8px;
    flex: 0 0 auto;
}
.testimonial {
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    color: #111;
    box-shadow: 0 4px 12px rgba(12, 12, 12, 0.03);
}
.contact {
    background: #fff;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(12, 12, 12, 0.04);
}
footer {
    margin-top: 22px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}
a.whatsapp {
    background: #25d366;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}
@media (min-width: 760px) {
    .hero {
        grid-template-columns: 1fr 360px;
    }
    .hero-left h1 {
        font-size: 34px;
    }
}
