*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --ink: #17130a;
    --muted: #73684f;
    --paper: #fff9ea;
    --white: #ffffff;
    --linen: #f5ead0;
    --clay: #c8962f;
    --clay-dark: #8f6417;
    --sage: #806c37;
    --charcoal: #241d10;
    --gold-soft: #ffe7a3;
    --gold-deep: #a87313;
    --border: rgba(143, 100, 23, .18);
    --shadow: 0 22px 70px rgba(36, 29, 16, .2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
}

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

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

.site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px clamp(18px, 5vw, 64px);
    background: rgba(255, 249, 234, .92);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
    transition: box-shadow .3s, height .3s;
}

.site-nav.scrolled {
    height: 62px;
    box-shadow: 0 10px 35px rgba(19, 23, 34, .08);
}

.brand img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.nav-call {
    background: linear-gradient(135deg, var(--gold-deep), var(--clay), var(--gold-soft));
    color: var(--white) !important;
    padding: 10px 16px;
}

.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    background: var(--white);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--ink);
}

.hero {
    min-height: 100vh;
    padding: 120px clamp(20px, 5vw, 70px) 70px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 420px);
    align-items: center;
    gap: clamp(28px, 5vw, 70px);
    position: relative;
    isolation: isolate;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-media {
    background: url("hero.jpeg") center/cover no-repeat;
}

.hero-overlay {
    z-index: -1;
    background:
        radial-gradient(circle at 18% 30%, rgba(232, 190, 96, .28), transparent 26%),
        linear-gradient(90deg, rgba(23, 19, 10, .92), rgba(36, 29, 16, .6) 46%, rgba(36, 29, 16, .22)),
        linear-gradient(0deg, rgba(23, 19, 10, .46), rgba(23, 19, 10, .12));
}

.hero-content {
    color: var(--white);
    max-width: 760px;
}

.eyebrow,
.section-kicker,
.panel-kicker,
.popup-title {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--clay);
}

.hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 8vw, 108px);
    line-height: .9;
    letter-spacing: .02em;
    margin: 18px 0 24px;
}

.hero-copy {
    max-width: 600px;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.65;
    color: rgba(255, 255, 255, .82);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.btn,
.form-submit,
.price-card button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    border: 0;
    padding: 13px 22px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-primary,
.form-submit,
.price-card button {
    background: linear-gradient(135deg, var(--gold-deep), var(--clay), #e5bd64);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(200, 150, 47, .24);
}

.btn-primary:hover,
.form-submit:hover,
.price-card button:hover {
    background: var(--clay-dark);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .55);
    color: var(--white);
}

.lead-panel,
.contact-form,
.popup-box {
    background: rgba(255, 252, 244, .96);
    border: 1px solid rgba(232, 190, 96, .42);
    box-shadow: var(--shadow);
    padding: 34px;
}

.lead-panel h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    margin: 6px 0 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.form-group input,
.form-group select {
    width: 100%;
    height: 46px;
    border: 1px solid var(--border);
    background: var(--paper);
    color: var(--ink);
    padding: 0 13px;
    font: inherit;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--clay);
    box-shadow: 0 0 0 4px rgba(185, 105, 69, .16);
}

.intro-section,
.feature-section,
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 70px);
    padding: 90px clamp(20px, 5vw, 70px);
    align-items: center;
}

.intro-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.intro-copy h2,
.section-head h2,
.feature-copy h2,
.contact-copy h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4.5vw, 60px);
    line-height: 1;
    margin: 12px 0 20px;
}

.intro-copy p,
.feature-copy p,
.feature-list p,
.contact-copy p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 16px;
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    margin: 30px 0;
}

.stat-strip div {
    background: var(--white);
    padding: 18px;
}

.stat-strip strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    color: var(--gold-deep);
}

.stat-strip span {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}

.pricing-section,
.amenities-section,
.gallery-section {
    padding: 90px clamp(20px, 5vw, 70px);
    border-top: 1px solid var(--border);
}

.pricing-section,
.gallery-section {
    background: var(--white);
}

.section-head {
    max-width: 820px;
    margin: 0 auto 44px;
    text-align: center;
}

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

.price-card {
    background: linear-gradient(180deg, #fffdf7, var(--paper));
    border: 1px solid var(--border);
    padding: 34px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-card p {
    font-size: 12px;
    font-weight: 900;
    color: var(--clay);
    letter-spacing: .16em;
    text-transform: uppercase;
}

.price-card h3 {
    margin: 18px 0 8px;
    font-size: 24px;
}

.price-card strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    color: var(--ink);
}

.price-card span {
    color: var(--muted);
    margin-bottom: 24px;
}

.price-card button {
    width: 100%;
    margin-top: auto;
}

.feature-section {
    background: radial-gradient(circle at 15% 20%, rgba(200, 150, 47, .24), transparent 30%), var(--charcoal);
    color: var(--white);
}

.feature-copy p,
.feature-list p {
    color: rgba(255, 255, 255, .7);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-list div {
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    padding: 24px;
}

.feature-list span {
    color: var(--clay);
    font-weight: 900;
}

.feature-list h3 {
    margin: 8px 0;
    font-size: 22px;
}

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

.amenities-grid div {
    min-height: 156px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--charcoal);
    padding: 22px;
    position: relative;
    overflow: hidden;
}

.amenities-grid div::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(var(--gold-soft), var(--clay), var(--gold-deep));
}

.amenities-grid strong {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.amenities-grid span {
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
    font-weight: 600;
}

.center-action {
    text-align: center;
    margin-top: 34px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 210px;
    gap: 10px;
}

.gallery-item {
    border: 0;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    background: var(--linen);
    position: relative;
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s, filter .3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(.82);
}

.gallery-item span {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    padding: 10px 12px;
    background: rgba(23, 19, 10, .72);
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    transform: translateY(8px);
    opacity: 0;
    transition: opacity .3s, transform .3s;
}

.gallery-item:hover span,
.gallery-item:focus-visible span {
    opacity: 1;
    transform: none;
}

.faq-section {
    padding: 90px clamp(20px, 5vw, 70px);
    background: var(--paper);
    border-top: 1px solid var(--border);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-grid details {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 18px 20px;
    box-shadow: 0 14px 34px rgba(36, 29, 16, .06);
}

.faq-grid summary {
    cursor: pointer;
    font-weight: 900;
    color: var(--charcoal);
    line-height: 1.4;
}

.faq-grid p {
    color: var(--muted);
    line-height: 1.7;
    margin-top: 12px;
}

.contact-section {
    background: var(--linen);
}

.contact-details {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-details a,
.contact-details span {
    display: block;
    padding: 16px;
    background: rgba(255, 255, 255, .68);
    border: 1px solid var(--border);
    font-weight: 800;
}

footer {
    background: linear-gradient(180deg, #2a2110, var(--ink));
    color: var(--white);
    padding: 58px clamp(20px, 5vw, 70px) 34px;
    text-align: center;
}

.footer-brand {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

footer > p {
    margin-top: 8px;
    color: rgba(255, 255, 255, .7);
}

.footer-disclaimer {
    max-width: 1100px;
    margin: 36px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .68);
    font-size: 10px;
    line-height: 1.8;
    text-align: justify;
}

.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(19, 23, 34, .76);
    backdrop-filter: blur(8px);
}

.popup-overlay.active {
    display: flex;
}

.popup-box {
    width: min(460px, 100%);
    position: relative;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 0;
    background: var(--ink);
    color: var(--white);
    cursor: pointer;
    font-weight: 900;
}

.popup-sub {
    color: var(--muted);
    margin: 4px 0 24px;
}

.popup-success {
    display: none;
    text-align: center;
}

.popup-success strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    margin-bottom: 8px;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1500;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: #25d366;
    box-shadow: 0 16px 40px rgba(37, 211, 102, .28);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

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

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 980px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(340px, 86vw);
        height: 100vh;
        background: var(--paper);
        flex-direction: column;
        justify-content: center;
        transition: right .35s;
        box-shadow: -18px 0 45px rgba(19, 23, 34, .12);
    }

    .nav-links.open {
        right: 0;
    }

    .hero,
    .intro-section,
    .feature-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

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

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

    .feature-list,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .hero {
        padding-top: 104px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .lead-panel,
    .contact-form,
    .popup-box {
        padding: 24px;
    }

    .stat-strip,
    .amenities-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-auto-rows: 230px;
    }

    .gallery-large,
    .gallery-wide,
    .gallery-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}
