:root {
    --black: #070707;
    --black-2: #0f0f0f;
    --graphite: #171717;
    --graphite-2: #232323;
    --gold: #c89d4e;
    --gold-light: #e7c878;
    --white: #ffffff;
    --paper: #f5f1e9;
    --paper-2: #ebe4d7;
    --muted: #b8b8b8;
    --text: #202020;
    --soft-text: #5e5e5e;
    --border: rgba(200, 157, 78, 0.28);
    --shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
    --radius: 22px;
    --container: 1180px;
    --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-serif: Georgia, "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--paper);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin-top: 0;
}

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

.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    z-index: 9999;
    background: var(--gold);
    color: var(--black);
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 800;
}

.skip-link:focus {
    top: 20px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 7, 7, 0.86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(200, 157, 78, 0.22);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(7, 7, 7, 0.96);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.28);
}

.header-inner {
    height: 84px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    min-width: max-content;
}

.brand-mark {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, rgba(231, 200, 120, 0.18), rgba(200, 157, 78, 0.04));
    border: 1px solid rgba(200, 157, 78, 0.5);
}

.brand-mark img {
    width: 38px;
    height: 38px;
}

.brand-text {
    display: grid;
    line-height: 1.05;
}

.brand-text strong {
    font-family: var(--font-serif);
    font-size: 1.08rem;
    letter-spacing: 0.04em;
    font-weight: 500;
}

.brand-text small {
    color: var(--gold-light);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.66rem;
    margin-top: 5px;
}

.site-nav {
    margin-left: auto;
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-menu a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.site-menu a:hover,
.site-menu .current-menu-item > a {
    color: var(--gold-light);
}

.header-cta {
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    font-weight: 800;
    font-size: 0.88rem;
    box-shadow: 0 12px 30px rgba(200, 157, 78, 0.22);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(200, 157, 78, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gold-light);
    margin: 5px auto;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.section {
    padding: 96px 0;
}

.section-dark {
    color: var(--white);
    background:
        radial-gradient(circle at 20% 10%, rgba(200, 157, 78, 0.16), transparent 32%),
        linear-gradient(135deg, #050505 0%, #151515 60%, #070707 100%);
}

.section-dark-soft {
    color: var(--white);
    background: linear-gradient(180deg, #070707, #111111);
    padding: 32px 0 76px;
}

.section-light {
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(200, 157, 78, 0.11), transparent 30%),
        linear-gradient(180deg, var(--paper), var(--paper-2));
}

.hero {
    position: relative;
    min-height: 760px;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 86px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 7, 7, 0.95) 0%, rgba(7, 7, 7, 0.78) 44%, rgba(7, 7, 7, 0.34) 100%),
        linear-gradient(0deg, rgba(7, 7, 7, 0.86), transparent 45%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    filter: saturate(0.95) contrast(1.05);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 720px) minmax(280px, 360px);
    gap: 48px;
    align-items: end;
}

.hero-content h1,
.page-hero h1 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.045em;
    margin: 0 0 24px;
}

.hero-content h1 {
    font-size: clamp(2.9rem, 6vw, 5.8rem);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
    max-width: 680px;
    margin-bottom: 32px;
}

.eyebrow {
    display: inline-flex;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero-actions,
.action-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

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

.btn-primary {
    color: var(--black);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 18px 42px rgba(200, 157, 78, 0.22);
}

.btn-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.btn-outline {
    color: var(--gold-light);
    border-color: rgba(200, 157, 78, 0.46);
    background: rgba(200, 157, 78, 0.07);
}

.hero-card {
    padding: 28px;
    border-radius: var(--radius);
    background: rgba(15, 15, 15, 0.78);
    border: 1px solid rgba(200, 157, 78, 0.28);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.hero-card-title {
    color: var(--gold-light);
    font-weight: 800;
    margin-bottom: 8px;
}

.hero-card p:last-child {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0;
}

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

.stat-card {
    padding: 26px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(200, 157, 78, 0.28);
}

.stat-card strong {
    display: block;
    color: var(--gold-light);
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.05;
    font-weight: 500;
    margin-bottom: 18px;
}

.stat-card span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.96rem;
}

.split {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: start;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.section-heading.centered,
.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,
.cta h2,
.prose h2,
.soon-card h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.1rem, 4vw, 3.7rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
    margin: 0;
    font-weight: 500;
}

.section-dark .section-heading h2,
.section-dark .cta h2 {
    color: var(--white);
}

.prose {
    max-width: 860px;
    font-size: 1.06rem;
    color: var(--soft-text);
}

.prose p {
    margin-bottom: 18px;
}

.prose h2 {
    color: var(--text);
    margin-bottom: 24px;
}

.cards-grid {
    display: grid;
    gap: 18px;
}

.cards-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.cards-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.info-card {
    padding: 28px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(200, 157, 78, 0.24);
    min-height: 230px;
}

.info-card h3 {
    color: var(--gold-light);
    font-size: 1.15rem;
    margin: 0 0 14px;
}

.info-card p {
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.service-list {
    display: grid;
    gap: 14px;
}

.service-row {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 24px;
    align-items: start;
    padding: 28px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 16px 50px rgba(20, 20, 20, 0.06);
}

.service-row span,
.area-card span,
.service-card span {
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.6rem;
}

.service-row h3,
.area-card h2,
.service-card h2 {
    margin: 0 0 10px;
    line-height: 1.25;
}

.service-row p,
.area-card p,
.service-card p {
    color: var(--soft-text);
    margin: 0;
}

.page-hero {
    padding: 120px 0 82px;
}

.page-hero-inner {
    max-width: 920px;
}

.page-hero h1 {
    font-size: clamp(2.6rem, 5vw, 5rem);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 760px;
    font-size: 1.12rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 62px;
    align-items: center;
}

.about-photo {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(200, 157, 78, 0.32);
    background: var(--graphite);
}

.about-photo img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.area-card,
.service-card,
.soon-card,
.post-card {
    padding: 30px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 58px rgba(20, 20, 20, 0.07);
}

.area-card {
    min-height: 290px;
}

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

.service-card {
    min-height: 300px;
}

.cta {
    padding: 90px 0;
}

.cta-inner {
    max-width: 850px;
    text-align: center;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
    margin: 20px auto 0;
    max-width: 680px;
}

.cta-inner .btn {
    margin-top: 28px;
}

.cta-inner-light p {
    color: var(--soft-text);
}

.soon-card {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
    padding: 54px;
}

.soon-icon {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    border-radius: 999px;
    background: var(--black);
    color: var(--gold-light);
    font-family: var(--font-serif);
    font-size: 1.35rem;
    border: 1px solid rgba(200, 157, 78, 0.38);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 42px;
    align-items: start;
}

.contact-aside {
    position: sticky;
    top: 110px;
}

.contact-aside img {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(200, 157, 78, 0.28);
    background: var(--graphite);
}

.contact-box,
.contact-panel {
    margin-top: 18px;
    padding: 30px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 58px rgba(20, 20, 20, 0.07);
}

.contact-box h2,
.contact-panel h2 {
    margin-top: 0;
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 2rem;
    line-height: 1.18;
}

.contact-box ul {
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.contact-box a,
.text-link {
    color: #8a6119;
    font-weight: 800;
}

.contact-form {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

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

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 800;
    color: var(--text);
}

.contact-form label span {
    font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    font: inherit;
    padding: 14px 15px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 157, 78, 0.13);
}

.form-feedback {
    border-radius: 14px;
    padding: 14px 16px;
    margin: 18px 0;
    font-weight: 800;
}

.form-feedback--success {
    background: rgba(34, 197, 94, 0.14);
    color: #166534;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-feedback--error {
    background: rgba(220, 38, 38, 0.12);
    color: #991b1b;
    border: 1px solid rgba(220, 38, 38, 0.28);
}

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

.post-card h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.16;
}

.post-featured-image {
    width: 100%;
    border-radius: 24px;
    margin-bottom: 30px;
}

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: #050505;
    padding: 70px 0 26px;
    border-top: 1px solid rgba(200, 157, 78, 0.22);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 46px;
}

.footer-brand p {
    max-width: 420px;
    margin-top: 18px;
}

.brand-footer {
    display: inline-flex;
}

.site-footer h3 {
    color: var(--gold-light);
    margin: 0 0 18px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    margin-top: 54px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 999px;
    color: var(--black);
    background: linear-gradient(135deg, #25d366, #90f6b7);
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1050px) {
    .header-cta {
        display: none;
    }

    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        display: none;
        background: rgba(7, 7, 7, 0.98);
        border-bottom: 1px solid rgba(200, 157, 78, 0.2);
        padding: 22px;
    }

    body.nav-open .site-nav {
        display: block;
    }

    .site-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: min(calc(100% - 40px), var(--container));
        margin-inline: auto;
    }

    .hero-grid,
    .split,
    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .cards-grid-4,
    .services-grid,
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-aside {
        position: static;
    }
}

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

    .header-inner {
        height: 76px;
    }

    .brand-text strong {
        font-size: 0.98rem;
    }

    .brand-text small {
        font-size: 0.58rem;
    }

    .brand-mark {
        width: 46px;
        height: 46px;
    }

    .site-nav {
        top: 76px;
    }

    .hero {
        min-height: 720px;
        padding-top: 90px;
    }

    .hero::after {
        background:
            linear-gradient(180deg, rgba(7, 7, 7, 0.88), rgba(7, 7, 7, 0.76)),
            linear-gradient(0deg, rgba(7, 7, 7, 0.92), transparent 48%);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        align-items: center;
    }

    .hero-card {
        display: none;
    }

    .section {
        padding: 72px 0;
    }

    .page-hero {
        padding: 90px 0 64px;
    }

    .stats-grid,
    .cards-grid-4,
    .cards-grid-3,
    .services-grid,
    .posts-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .service-row {
        grid-template-columns: 1fr;
    }

    .soon-card {
        padding: 34px 22px;
    }

    .footer-grid {
        gap: 30px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 12px 15px;
    }
}
