:root {
    --bg: #fbfaf7;
    --surface: #ffffff;
    --surface-soft: #f5f1ea;
    --text: #111111;
    --muted: #5f5a55;
    --gold: #b0832e;
    --gold-dark: #8c671f;
    --line: #e8dfd1;
    --shadow: 0 24px 60px rgba(17, 17, 17, .08);
    --radius: 22px;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(176, 131, 46, .08), transparent 32rem),
        var(--bg);
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

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

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    background: var(--text);
    color: #fff;
    padding: 10px 14px;
    z-index: 999;
}

.skip-link:focus {
    left: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 250, 247, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    width: min(430px, 58vw);
    text-decoration: none;
}

.brand img {
    width: 100%;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: .94rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.main-nav a {
    text-decoration: none;
    color: var(--muted);
    transition: color .2s ease;
}

.main-nav a:hover {
    color: var(--gold-dark);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text);
}

.section {
    padding: 92px 0;
}

.hero {
    padding-top: 76px;
}

.hero-grid,
.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 56px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 700;
    font-size: .82rem;
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.12;
    margin: 0;
}

h1 {
    font-size: clamp(3rem, 8vw, 6.8rem);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 500;
}

h2 {
    font-size: clamp(2.1rem, 4.5vw, 4rem);
    font-weight: 500;
}

h3 {
    font-size: 1.45rem;
    font-weight: 500;
}

.hero-subtitle {
    margin: 10px 0 26px;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: clamp(.92rem, 2vw, 1.2rem);
}

.hero-description,
.section-heading p,
.about-text p,
.business p,
.contact-text p {
    color: var(--muted);
    font-size: 1.06rem;
}

.hero-description {
    max-width: 680px;
    margin: 0 0 14px;
}

.hero-description.secondary {
    font-size: 1rem;
}

.actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: var(--gold-dark);
    box-shadow: 0 14px 28px rgba(140, 103, 31, .22);
}

.btn-primary:hover {
    background: #76561a;
}

.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--line);
}

.hero-card,
.contact-card,
.business-box,
.area-card {
    background: rgba(255, 255, 255, .86);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    min-height: 390px;
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "LG";
    position: absolute;
    top: 18px;
    right: 26px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 10rem;
    line-height: .8;
    color: rgba(176, 131, 46, .10);
    letter-spacing: -.1em;
}

.hero-card strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    line-height: 1.2;
    position: relative;
}

.hero-card span {
    color: var(--muted);
    position: relative;
}

.card-line {
    width: 120px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 26px;
}

.about {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.about-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.about-text p {
    margin: 18px 0 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.area-card {
    padding: 26px;
    min-height: 250px;
    box-shadow: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(176, 131, 46, .36);
}

.area-card h3 {
    margin-bottom: 14px;
}

.area-card p {
    color: var(--muted);
    margin: 0;
    font-size: .97rem;
}

.business {
    background: linear-gradient(135deg, #171717, #2b261f);
    color: #fff;
}

.business-box {
    padding: 54px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 34px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
    border-color: rgba(255, 255, 255, .18);
    box-shadow: none;
}

.business .eyebrow {
    color: #d6b36d;
}

.business p {
    color: rgba(255, 255, 255, .78);
    max-width: 780px;
}

.business .btn-primary {
    white-space: nowrap;
    background: var(--gold);
}

.contact-grid {
    align-items: start;
}

.contact-card {
    padding: 34px;
    font-style: normal;
    display: grid;
    gap: 24px;
}

.contact-card div {
    display: grid;
    gap: 4px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.contact-card div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-card span {
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .76rem;
    font-weight: 700;
}

.contact-card strong,
.contact-card a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #1f8f4d;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 16px 32px rgba(31, 143, 77, .28);
}

.site-footer {
    padding: 34px 0;
    background: #111;
    color: #fff;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-inner p {
    color: rgba(255, 255, 255, .62);
    margin: 4px 0 0;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 980px) {
    .header-inner {
        min-height: 76px;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 78px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 16px;
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 14px 12px;
    }

    .hero-grid,
    .about-grid,
    .contact-grid,
    .business-box {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-card {
        min-height: 260px;
    }

    .business-box {
        padding: 36px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 62px 0;
    }

    .brand {
        width: min(260px, 65vw);
    }

    h1 {
        font-size: clamp(2.7rem, 14vw, 4.4rem);
    }

    .hero-subtitle {
        letter-spacing: .08em;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .actions,
    .contact-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-card,
    .contact-card,
    .business-box,
    .area-card {
        border-radius: 18px;
    }

    .hero-card {
        padding: 28px;
    }

    .hero-card strong {
        font-size: 1.55rem;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        left: 14px;
        width: auto;
    }

    .site-footer {
        padding-bottom: 88px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}
