:root {
    --ink: #171512;
    --ink-soft: #34302a;
    --muted: #6f675c;
    --paper: #fbf8f2;
    --sand: #f1eadf;
    --stone: #d9d0c4;
    --line: rgba(23, 21, 18, 0.14);
    --white: #ffffff;
    --action: #25d366;
    --action-dark: #159947;
    --shadow: 0 22px 60px rgba(23, 21, 18, 0.12);
    --radius: 8px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

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

a {
    color: inherit;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 24px clamp(20px, 4vw, 56px);
    color: var(--white);
}

.site-header--solid {
    position: relative;
    background: var(--ink);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: var(--max);
    margin: 0 auto;
}

.brand {
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 0.86rem;
}

.nav-links a {
    text-decoration: none;
    opacity: 0.86;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 6px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.88rem;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button--action {
    background: var(--action);
    color: #052313;
}

.button--light {
    background: var(--white);
    color: var(--ink);
}

.button--dark {
    background: var(--ink);
    color: var(--white);
}

.button--ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.48);
}

.button:hover,
.nav-cta:hover {
    transform: translateY(-2px);
}

.hero {
    position: relative;
    min-height: 84vh;
    color: var(--white);
    isolation: isolate;
    display: flex;
    align-items: end;
    background: var(--ink) var(--hero-image) center / cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.44);
}

.hero--property {
    min-height: 70vh;
}

.hero--property .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-inner {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 150px 0 64px;
}

.hero-copy {
    width: min(760px, 100%);
}

.eyebrow {
    margin: 0 0 14px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.05;
}

h1,
.display {
    font-family: "Fraunces", serif;
    font-weight: 700;
    letter-spacing: 0;
}

h1 {
    max-width: 860px;
    font-size: clamp(2.45rem, 4.2vw, 3.95rem);
}

.hero--property h1 {
    max-width: 820px;
    font-size: clamp(2.35rem, 4vw, 3.75rem);
}

.lead {
    max-width: 720px;
    margin: 24px 0 0;
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.86);
}

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

.hero-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 54px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-facts div {
    padding: 18px 18px 18px 0;
}

.hero-facts span,
.fact-grid span,
.property-card span,
.metric span {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-facts strong {
    display: block;
    margin-top: 4px;
    font-size: 1.02rem;
}

.section {
    padding: clamp(72px, 9vw, 118px) 20px;
}

.section--sand {
    background: var(--sand);
}

.section--dark {
    background: var(--ink);
    color: var(--white);
}

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

.section-heading {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(28px, 6vw, 80px);
    align-items: start;
    margin-bottom: 44px;
}

.section-heading h2 {
    font-family: "Fraunces", serif;
    font-size: clamp(2rem, 4.2vw, 4.1rem);
    letter-spacing: 0;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.section-heading--market {
    grid-template-columns: minmax(220px, 0.74fr) minmax(0, 1.26fr);
    align-items: stretch;
}

.market-brief {
    display: grid;
    gap: 24px;
}

.market-brief > p {
    max-width: 720px;
    font-size: clamp(1.04rem, 1.4vw, 1.18rem);
}

.market-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--line);
}

.market-metrics div {
    min-width: 0;
    background: rgba(255, 255, 255, 0.62);
    padding: clamp(22px, 3vw, 32px);
}

.market-metrics span {
    display: block;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.market-metrics strong {
    display: block;
    margin-top: 10px;
    font-family: "Fraunces", serif;
    font-size: clamp(2.6rem, 5vw, 4.35rem);
    line-height: 0.92;
}

.market-metrics p {
    margin-top: 14px;
    font-size: 0.95rem;
}

.section-heading--gallery {
    grid-template-columns: minmax(260px, 0.94fr) minmax(0, 1.06fr);
}

.gallery-copy {
    display: grid;
    gap: 24px;
}

.gallery-copy p {
    max-width: 620px;
    font-size: clamp(1.04rem, 1.4vw, 1.18rem);
}

.amenity-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.amenity-highlights span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section--dark .section-heading p,
.section--dark .text-muted {
    color: rgba(255, 255, 255, 0.7);
}

.intro-grid,
.property-layout,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.intro-media,
.feature-media {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.intro-media img,
.feature-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.copy-stack {
    display: grid;
    gap: 20px;
}

.copy-stack p {
    margin: 0;
    color: var(--muted);
}

.property-grid,
.metric-grid,
.gallery-grid,
.feature-grid {
    display: grid;
    gap: 18px;
}

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

.property-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 16px 42px rgba(23, 21, 18, 0.08);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 58px rgba(23, 21, 18, 0.16);
}

.property-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.property-card__body {
    padding: 20px;
}

.property-card span {
    color: var(--muted);
}

.property-card h3 {
    margin-top: 10px;
    font-size: 1.22rem;
}

.property-card p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.property-card strong {
    display: block;
    margin-top: 18px;
    color: var(--ink);
}

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

.metric {
    border-left: 1px solid rgba(255, 255, 255, 0.24);
    padding-left: 20px;
}

.metric strong {
    display: block;
    margin: 8px 0;
    font-family: "Fraunces", serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
}

.metric p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

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

.feature-item {
    border-top: 1px solid var(--line);
    padding-top: 18px;
}

.feature-item h3 {
    font-size: 1rem;
}

.feature-item p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    min-width: 0;
    background: var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.property-layout > .fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: stretch;
}

.fact-grid div {
    min-width: 0;
    background: var(--white);
    padding: 24px;
}

.property-layout > .fact-grid div {
    display: flex;
    min-height: 136px;
    flex-direction: column;
    justify-content: center;
}

.fact-grid span {
    color: var(--muted);
    overflow-wrap: break-word;
}

.fact-grid strong {
    display: block;
    margin-top: 8px;
    font-size: 1.08rem;
    overflow-wrap: break-word;
    hyphens: auto;
}

.fact-slider {
    position: relative;
    display: block;
    min-height: 286px;
    background: var(--white);
    box-shadow: 0 22px 54px rgba(23, 21, 18, 0.1);
}

.property-layout > .fact-slider {
    align-self: stretch;
}

.fact-slider::before {
    content: "";
    position: absolute;
    inset: 18px 18px auto auto;
    width: 86px;
    height: 1px;
    background: var(--line);
    z-index: 2;
}

.fact-slider::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: var(--action);
    transform-origin: left;
    animation: fact-progress 16s linear infinite;
    z-index: 2;
}

.fact-slider > div {
    position: absolute;
    inset: 0;
    display: flex;
    min-height: 0;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 4vw, 46px);
    opacity: 0;
    transform: translateX(26px);
    animation: fact-slide-cycle 16s infinite;
}

.fact-slider > div:nth-child(2) {
    animation-delay: 4s;
}

.fact-slider > div:nth-child(3) {
    animation-delay: 8s;
}

.fact-slider > div:nth-child(4) {
    animation-delay: 12s;
}

.fact-slider span {
    color: var(--muted);
}

.fact-slider strong {
    max-width: 13ch;
    margin-top: 12px;
    font-size: clamp(1.55rem, 2.5vw, 2.15rem);
    line-height: 1.08;
    hyphens: none;
}

@keyframes fact-slide-cycle {
    0% {
        opacity: 0;
        transform: translateX(26px);
    }

    6%,
    22% {
        opacity: 1;
        transform: translateX(0);
    }

    28%,
    100% {
        opacity: 0;
        transform: translateX(-26px);
    }
}

@keyframes fact-progress {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .fact-slider {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: auto;
        background: var(--line);
        box-shadow: none;
    }

    .fact-slider::before,
    .fact-slider::after {
        display: none;
    }

    .fact-slider > div {
        position: relative;
        min-height: 136px;
        opacity: 1;
        transform: none;
        animation: none;
    }
}

.info-panel {
    border-top: 1px solid var(--line);
    padding-top: 28px;
}

.info-panel h3 {
    font-size: 1.18rem;
}

.info-panel ul {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
}

.info-panel li {
    position: relative;
    padding-left: 18px;
}

.info-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ink);
}

.gallery-grid {
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    grid-auto-rows: 260px;
}

.gallery-item {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--ink);
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease, filter 420ms ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 44%;
    background: linear-gradient(to top, rgba(16, 15, 13, 0.72), rgba(16, 15, 13, 0));
    pointer-events: none;
}

.gallery-item figcaption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 1;
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gallery-item:hover img {
    transform: scale(1.04);
    filter: saturate(1.04) contrast(1.03);
}

.gallery-item:first-child {
    grid-row: span 2;
}

.video-frame {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--ink);
}

.video-frame iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.form-panel {
    background: var(--white);
    border-radius: var(--radius);
    padding: clamp(24px, 4vw, 42px);
    box-shadow: var(--shadow);
}

.form-panel h2,
.cta-panel h2 {
    font-family: "Fraunces", serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.form-panel p,
.cta-panel p {
    color: var(--muted);
}

.form-fields {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.form-fields input {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0 16px;
    font: inherit;
    background: #fffdf8;
}

.form-fields button {
    min-height: 54px;
    border: 0;
    border-radius: 6px;
    background: var(--action);
    color: #052313;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.form-fields button:disabled {
    cursor: progress;
    opacity: 0.78;
}

.form-status {
    min-height: 1.4em;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.form-status.is-success {
    color: #0d4c28;
}

.form-status.is-error {
    color: #8f3226;
}

.guide-section {
    position: relative;
    overflow: hidden;
}

.guide-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0) 42%),
        radial-gradient(circle at 15% 20%, rgba(37, 211, 102, 0.12), transparent 28%);
    pointer-events: none;
}

.guide-layout {
    position: relative;
    align-items: stretch;
}

.guide-copy {
    align-content: center;
}

.guide-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.guide-preview span,
.guide-form__tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-soft);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.guide-preview span {
    background: rgba(255, 255, 255, 0.58);
}

.guide-form {
    display: grid;
    align-content: start;
    border: 1px solid rgba(23, 21, 18, 0.08);
}

.guide-form__tag {
    margin-bottom: 18px;
    background: rgba(37, 211, 102, 0.14);
    color: #0d4c28;
}

.guide-form .form-fields button {
    margin-top: 10px;
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    background: var(--ink);
    color: var(--white);
    border-radius: var(--radius);
    padding: clamp(28px, 5vw, 56px);
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer {
    padding: 56px 20px 36px;
    background: #100f0d;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 32px;
    width: min(var(--max), 100%);
    margin: 0 auto;
}

.footer-grid p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.68);
}

.footer-links {
    display: grid;
    gap: 8px;
}

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

.footer-meta {
    width: min(var(--max), 100%);
    margin: 34px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.84rem;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 58px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--action);
    color: #052313;
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.32);
    text-decoration: none;
    font-weight: 900;
}

.legal-page {
    min-height: 100vh;
    padding: 90px 20px;
}

.legal-card {
    width: min(820px, 100%);
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: clamp(28px, 5vw, 56px);
    box-shadow: var(--shadow);
}

.legal-card h1 {
    color: var(--ink);
    font-size: clamp(2.3rem, 5vw, 4rem);
}

.legal-card h2 {
    margin-top: 34px;
    font-size: 1.25rem;
}

.legal-card p {
    color: var(--muted);
}

@media (max-width: 1100px) {
    .nav-links {
        display: none;
    }

    .hero-facts,
    .property-grid,
    .metric-grid,
    .feature-grid,
    .fact-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading,
    .intro-grid,
    .property-layout,
    .contact-grid,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .section-heading--market {
        gap: 28px;
    }

    .section-heading--gallery {
        gap: 28px;
    }

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

@media (max-width: 640px) {
    .site-header {
        padding: 18px 16px;
    }

    .hero {
        min-height: 86vh;
    }

    .hero-inner {
        width: min(100% - 32px, var(--max));
        padding-bottom: 34px;
    }

    h1 {
        font-size: clamp(2.55rem, 15vw, 4.2rem);
    }

    .hero-facts,
    .property-grid,
    .metric-grid,
    .feature-grid,
    .fact-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .market-metrics {
        grid-template-columns: 1fr;
    }

    .property-layout > .fact-grid {
        grid-template-columns: 1fr;
    }

    .fact-slider {
        min-height: 246px;
    }

    .fact-slider::before {
        width: 52px;
    }

    .fact-slider > div {
        padding: 28px 24px;
    }

    .fact-slider strong {
        max-width: none;
        font-size: 1.45rem;
    }

    .property-layout > .fact-grid div {
        min-height: auto;
    }

    .gallery-item:first-child {
        grid-row: auto;
    }

    .property-card img {
        height: 210px;
    }

    .footer-grid {
        gap: 24px;
    }

    .whatsapp-float {
        min-width: 54px;
        height: 54px;
        font-size: 0.86rem;
    }
}
