:root {
    --ivory: #f5f1e9;
    --paper: #fbf8f2;
    --ink: #2f3428;
    --muted: #686b61;
    --clay: #b95f3f;
    --clay-dark: #98472f;
    --leaf: #68785b;
    --night: #243023;
    --line: rgba(47, 52, 40, 0.18);
    --serif: "Instrument Serif", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
}

body.menu-open,
body.lightbox-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: 86px;
    padding: 10px clamp(24px, 5vw, 80px);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    color: white;
    transition: background-color .35s ease, color .35s ease, height .35s ease, box-shadow .35s ease;
}

.site-header.scrolled {
    height: 72px;
    color: var(--ink);
    background: rgba(251, 248, 242, .94);
    box-shadow: 0 1px 0 var(--line);
    backdrop-filter: blur(14px);
}

.brand { display: inline-flex; width: 118px; justify-self: start; }
.brand img { width: 100%; height: 62px; object-fit: contain; }
.site-header:not(.scrolled) .brand img { filter: brightness(0) invert(1); }

.desktop-nav { display: flex; gap: 36px; font-size: .86rem; }
.desktop-nav a { position: relative; padding: 8px 0; }
.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 3px;
    height: 1px;
    background: currentColor;
    transition: right .25s ease;
}
.desktop-nav a:hover::after { right: 0; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: fit-content;
    min-height: 54px;
    padding: 0 26px;
    border: 1px solid var(--clay);
    border-radius: 2px;
    background: var(--clay);
    color: white;
    font-weight: 600;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover { background: var(--clay-dark); border-color: var(--clay-dark); transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 0 20px; font-size: .86rem; justify-self: end; }

.hero {
    position: relative;
    min-height: 100svh;
    height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #131611;
    color: white;
}

.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image {
    object-fit: cover;
    object-position: center;
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.03);
    will-change: transform;
    animation: heroScale 14s ease-out both;
}
.hero-shade { background: linear-gradient(90deg, rgba(19, 22, 17, .76) 0%, rgba(19, 22, 17, .35) 48%, rgba(19, 22, 17, .04) 78%); }

.hero-content {
    position: relative;
    z-index: 1;
    width: min(680px, 86vw);
    margin-left: clamp(24px, 8vw, 130px);
    padding-top: 70px;
}

h1, h2 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 400;
    line-height: .98;
    letter-spacing: 0;
}

h1 { max-width: 660px; font-size: clamp(4.2rem, 7.5vw, 7.6rem); }
.hero-content p { max-width: 510px; margin: 30px 0 34px; font-size: clamp(1rem, 1.25vw, 1.18rem); color: rgba(255,255,255,.86); }

.hero-notes {
    position: absolute;
    right: clamp(24px, 6vw, 90px);
    bottom: 82px;
    z-index: 2;
    display: grid;
    gap: 10px;
    color: rgba(255,255,255,.88);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    transform: translate3d(0, var(--parallax-y, 0px), 0);
    will-change: transform;
}
.hero-notes span {
    padding: 11px 14px;
    border: 1px solid rgba(255,255,255,.34);
    background: rgba(20,22,17,.22);
    backdrop-filter: blur(12px);
}

.scroll-cue {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 30px;
    width: 24px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 14px;
}
.scroll-cue span {
    position: absolute;
    top: 8px;
    left: 10px;
    width: 3px;
    height: 7px;
    border-radius: 2px;
    background: white;
    animation: scrollDot 1.8s infinite;
}

.section { padding: clamp(90px, 11vw, 160px) clamp(24px, 8vw, 130px); }
.section-label {
    display: block;
    margin-bottom: 28px;
    color: var(--clay);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 10vw, 170px); align-items: start; }
.intro h2, .section-heading h2, .reviews h2 { font-size: clamp(3.4rem, 6vw, 6.6rem); }
.intro-copy { max-width: 570px; padding-top: 10px; font-size: clamp(1.05rem, 1.4vw, 1.25rem); }
.intro-copy p { margin: 0 0 22px; }

.journey {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--paper) 0%, #eef0e4 100%);
}
.journey::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(47,52,40,.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(47,52,40,.06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
}
.journey-intro {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-bottom: clamp(55px, 7vw, 90px);
}
.journey h2 { font-size: clamp(3.4rem, 6vw, 6.2rem); }
.journey-board {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.journey-rail {
    position: absolute;
    top: -34px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: rgba(47,52,40,.24);
    transform: translate3d(0, var(--parallax-y, 0px), 0);
    will-change: transform;
}
.journey-rail span {
    position: absolute;
    top: -5px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--clay);
    box-shadow: 0 0 0 8px rgba(185,95,63,.1);
}
.journey-rail span:nth-child(1) { left: 0; }
.journey-rail span:nth-child(2) { left: 33%; }
.journey-rail span:nth-child(3) { left: 66%; }
.journey-rail span:nth-child(4) { right: 0; }
.journey-step {
    min-height: 360px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(47,52,40,.16);
    background: rgba(251,248,242,.68);
    backdrop-filter: blur(12px);
    transform: translate3d(0, var(--parallax-y, 0px), 0);
    will-change: transform;
}
.journey-step:nth-child(odd) { margin-top: 54px; }
.journey-step > span {
    color: var(--clay);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.journey-step svg {
    width: 48px;
    height: 48px;
    margin: 42px 0 28px;
    fill: none;
    stroke: var(--night);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.journey-step h3 {
    margin: auto 0 14px;
    font-family: var(--serif);
    font-size: clamp(2rem, 2.7vw, 3rem);
    font-weight: 400;
    line-height: 1.02;
}
.journey-step p { margin: 0; color: var(--muted); }

.amenities { background: var(--ivory); }
.section-heading { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 70px; }
.section-heading h2 { font-size: clamp(3.3rem, 5.4vw, 5.8rem); }
.section-heading p { max-width: 320px; margin: 0 0 8px; color: var(--muted); }
.amenity-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.amenity { min-height: 250px; padding: 32px 38px 32px 0; border-bottom: 1px solid var(--line); }
.amenity:not(:nth-child(3n + 1)) { padding-left: 38px; border-left: 1px solid var(--line); }
.amenity-number { color: var(--clay); font-family: var(--serif); font-size: 1.4rem; }
.amenity-icon {
    display: block;
    width: 46px;
    height: 46px;
    margin-top: 32px;
    fill: none;
    stroke: var(--ink);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.amenity h3 { margin: 25px 0 8px; font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1.1; }
.amenity p { max-width: 280px; margin: 0; color: var(--muted); }

.properties { background: #e8e1d5; }
.property-list { border-top: 1px solid var(--line); }
.property {
    display: grid;
    grid-template-columns: 70px minmax(0, 1.5fr) minmax(220px, .7fr);
    gap: 34px;
    align-items: center;
    padding: 38px 0;
    border-bottom: 1px solid var(--line);
}
.property-number { align-self: start; color: var(--clay); font-family: var(--serif); font-size: 1.4rem; }
.property h3 { margin: 0 0 8px; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.3rem); font-weight: 400; line-height: 1; }
.status-badge {
    display: inline-flex;
    align-items: center;
    margin-left: 14px;
    padding: 6px 10px;
    border: 1px solid rgba(185, 95, 63, .32);
    border-radius: 999px;
    background: rgba(185, 95, 63, .1);
    color: var(--clay);
    font-family: var(--sans);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1;
    text-transform: uppercase;
    vertical-align: middle;
}
.property address { max-width: 680px; color: var(--muted); font-style: normal; }
.property > p { margin: 0; color: var(--ink); font-weight: 500; }

.gallery-section { background: var(--paper); }
.gallery-carousel { overflow: hidden; }
.gallery-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    transform: translate3d(0, var(--parallax-y, 0px), 0);
    will-change: transform;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item {
    position: relative;
    flex: 0 0 calc((100% - 28px) / 3);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    scroll-snap-align: start;
    border: 0;
    padding: 0;
    background: #ddd;
    cursor: zoom-in;
}
.gallery-item::after {
    content: "+";
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(251,248,242,.9);
    color: var(--ink);
    font-size: 1.4rem;
    opacity: 0;
    transform: translateY(6px);
    transition: .25s ease;
}
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 26px; }
.gallery-dots { display: flex; gap: 9px; }
.gallery-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(47, 52, 40, .25);
    cursor: pointer;
    transition: width .25s ease, border-radius .25s ease, background .25s ease;
}
.gallery-dot.active { width: 28px; border-radius: 6px; background: var(--clay); }
.carousel-arrow {
    width: 48px;
    height: 48px;
    margin-left: 8px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    font-size: 1.3rem;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}
.carousel-arrow:hover { background: var(--ink); color: white; }

.locations-map { background: var(--paper); }
.locations-map .section-heading { margin-bottom: 44px; }
.location-links {
    max-width: 430px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}
.location-links a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    font-size: .9rem;
    font-weight: 600;
    background: rgba(251, 248, 242, .72);
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.location-links a:hover {
    background: var(--clay);
    border-color: var(--clay);
    color: white;
    transform: translateY(-2px);
}
.map-link {
    --map-header-crop: 86px;
    position: relative;
    height: clamp(420px, 48vw, 620px);
    display: block;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--ivory);
}
.map-link iframe {
    display: block;
    width: 100%;
    height: calc(100% + var(--map-header-crop));
    transform: translateY(calc(-1 * var(--map-header-crop)));
}
.reviews { background: #e8e1d5; }
.reviews > h2 { max-width: 850px; margin-bottom: 80px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.review { margin: 0; padding: 40px 50px 10px 0; }
.review + .review { padding-left: 50px; border-left: 1px solid var(--line); }
.review p { min-height: 180px; margin: 0; font-family: var(--serif); font-size: clamp(1.55rem, 2.1vw, 2.15rem); line-height: 1.18; }
.review footer { display: flex; flex-direction: column; margin-top: 28px; font-size: .88rem; }
.review footer span { color: var(--muted); }

.contact {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    min-height: 580px;
    background: var(--ink);
    color: white;
    overflow: hidden;
}
.contact-motif {
    position: absolute;
    inset: 8% 4% auto auto;
    width: min(360px, 42vw);
    aspect-ratio: 1;
    opacity: .18;
    border: 1px solid rgba(255,255,255,.35);
    transform: rotate(45deg) translate3d(0, var(--parallax-y, 0px), 0);
    will-change: transform;
}
.contact-motif::before,
.contact-motif::after {
    content: "";
    position: absolute;
    inset: 16%;
    border: 1px solid rgba(255,255,255,.35);
}
.contact-motif::after { inset: 31%; }
.contact-content, .contact-details { padding: clamp(70px, 9vw, 130px); }
.contact-content, .contact-details { position: relative; z-index: 1; }
.contact-content { border-right: 1px solid rgba(255,255,255,.18); }
.contact h2 { max-width: 700px; font-size: clamp(4rem, 7vw, 7rem); }
.contact-content > p { margin: 30px 0 35px; color: rgba(255,255,255,.68); }
.button-light { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.button-light:hover { background: var(--clay); border-color: var(--clay); color: white; }
.contact-details { display: flex; flex-direction: column; justify-content: center; gap: 58px; }
.contact-details div { display: flex; flex-direction: column; gap: 6px; }
.contact-details span { color: rgba(255,255,255,.52); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; }
.contact-details a { font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 3.4rem); line-height: 1.1; transition: color .2s ease; }
.contact-details a:hover { color: #dd8a6c; }

.inquiry {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(60px, 10vw, 160px);
    align-items: start;
    background: var(--ivory);
}
.inquiry h2 { font-size: clamp(3.5rem, 6vw, 6.3rem); }
.inquiry-copy > p { max-width: 430px; margin: 28px 0 0; color: var(--muted); }
.inquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; }
.inquiry-form label { display: flex; flex-direction: column; gap: 10px; }
.inquiry-form label:nth-child(3) { grid-column: 1 / -1; }
.inquiry-form label span { color: var(--muted); font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.inquiry-form input,
.inquiry-form select {
    width: 100%;
    height: 58px;
    padding: 0 4px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font: 1rem var(--sans);
}
.inquiry-form input:focus,
.inquiry-form select:focus { border-bottom-color: var(--clay); }
.inquiry-form .button { grid-column: 1 / -1; margin-top: 10px; cursor: pointer; }
.inquiry-form .button:disabled { cursor: wait; opacity: .65; }
.form-status { grid-column: 1 / -1; min-height: 24px; color: #9b3f2a; font-size: .88rem; }
.inquiry-thanks { align-self: center; padding: clamp(34px, 5vw, 64px); border: 1px solid var(--line); }
.inquiry-thanks h3 { margin-top: 18px; font: clamp(2.4rem, 4vw, 4rem)/.95 var(--serif); }
.inquiry-thanks p { max-width: 420px; margin-top: 20px; color: var(--muted); }

.footer {
    min-height: 120px;
    padding: 20px clamp(24px, 5vw, 80px);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px 30px;
    background: var(--paper);
    color: var(--muted);
    font-size: .82rem;
}
.footer-brand { width: 110px; }
.footer p:last-child { justify-self: end; }
.footer-contact { display: flex; flex-direction: column; gap: 4px; }
.studio-credit { grid-column: 1 / -1; grid-row: 2; justify-self: center; align-self: end; }
.footer-contact a, .studio-credit { transition: color .2s ease; }
.footer-contact a:hover, .studio-credit:hover { color: var(--clay); }

.menu-toggle, .mobile-nav { display: none; }

.call-float,
.whatsapp-float {
    position: fixed;
    z-index: 90;
    right: 24px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(20, 22, 17, .25);
    transition: transform .25s ease, box-shadow .25s ease;
}
.call-float {
    bottom: 24px;
    background: var(--clay);
}
.whatsapp-float {
    bottom: 24px;
    display: none;
    background: #25d366;
}
.call-float:hover,
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(20, 22, 17, .3); }
.call-float svg,
.whatsapp-float svg { width: 34px; height: 34px; fill: white; }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 6vw;
    background: rgba(20, 22, 17, .94);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 84vh; object-fit: contain; }
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    border: 0;
    background: transparent;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
}

.reveal {
    opacity: 0;
    transform: translate3d(0, calc(28px + var(--parallax-y, 0px)), 0);
    transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translate3d(0, var(--parallax-y, 0px), 0);
}

@keyframes heroScale {
    from { transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08); }
    to { transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1); }
}
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

@media (max-width: 900px) {
    .site-header { grid-template-columns: 1fr auto; height: 76px; padding: 8px 22px; }
    .desktop-nav, .header-cta { display: none; }
    .brand { width: 104px; }
    .menu-toggle {
        display: block;
        position: relative;
        z-index: 102;
        width: 42px;
        height: 42px;
        border: 0;
        background: transparent;
        color: currentColor;
    }
    .menu-toggle span { position: absolute; left: 9px; width: 24px; height: 1px; background: currentColor; transition: .25s ease; }
    .menu-toggle span:first-child { top: 16px; }
    .menu-toggle span:last-child { top: 25px; }
    .menu-open .menu-toggle span:first-child { top: 21px; transform: rotate(45deg); }
    .menu-open .menu-toggle span:last-child { top: 21px; transform: rotate(-45deg); }
    .mobile-nav {
        position: fixed;
        inset: 0;
        z-index: 101;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        background: var(--paper);
        color: var(--ink);
        font-family: var(--serif);
        font-size: 2.7rem;
        opacity: 0;
        visibility: hidden;
        transition: .25s ease;
    }
    .menu-open .mobile-nav { opacity: 1; visibility: visible; }
    .menu-open .site-header { color: var(--ink); }
    .menu-open .brand img { filter: none; }
    .intro-grid { grid-template-columns: 1fr; gap: 45px; }
    .journey-board { grid-template-columns: repeat(2, 1fr); }
    .journey-rail {
        top: -24px;
        left: 12%;
        right: 12%;
    }
    .journey-step:nth-child(odd) { margin-top: 0; }
    .journey-step:nth-of-type(even) { margin-top: 44px; }
    .amenity-list { grid-template-columns: repeat(2, 1fr); }
    .amenity:not(:nth-child(3n + 1)) { padding-left: 0; border-left: 0; }
    .amenity:nth-child(even) { padding-left: 30px; border-left: 1px solid var(--line); }
    .property { grid-template-columns: 50px 1fr; }
    .status-badge { margin-left: 10px; }
    .property > p { grid-column: 2; }
    .gallery-item { flex-basis: calc((100% - 14px) / 2); }
    .location-links { justify-content: flex-start; }
    .review-grid { grid-template-columns: 1fr; }
    .review, .review + .review { padding: 36px 0; border-left: 0; border-bottom: 1px solid var(--line); }
    .review p { min-height: 0; }
    .contact { grid-template-columns: 1fr; }
    .contact-content { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
    .inquiry { grid-template-columns: 1fr; }
    .footer { grid-template-columns: auto 1fr; }
    .footer-contact { justify-self: end; text-align: right; }
    .studio-credit { grid-column: 1 / -1; grid-row: 2; justify-self: center; }
    .footer p:last-child { grid-column: 1 / -1; justify-self: center; }
    .call-float { display: none; }
    .whatsapp-float { display: grid; }
}

@media (max-width: 600px) {
    .hero {
        min-height: 100svh;
        height: 100svh;
        align-items: flex-start;
        padding-bottom: 0;
    }
    .hero-image { object-position: center center; transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08); }
    .hero-shade { background: linear-gradient(90deg, rgba(19,22,17,.78), rgba(19,22,17,.28)); }
    .hero-content {
        width: min(100% - 48px, 420px);
        margin-left: 24px;
        padding-top: 118px;
        padding-bottom: 180px;
    }
    .hero-content p { margin: 20px 0 26px; }
    .hero-content .button { max-width: 100%; }
    .hero-notes {
        right: auto;
        left: 24px;
        bottom: 72px;
        width: min(calc(100% - 48px), 260px);
        grid-template-columns: 1fr;
        gap: 7px;
        font-size: .66rem;
    }
    .hero-notes span { padding: 8px 10px; }
    h1 { font-size: clamp(3.5rem, 16vw, 5.2rem); }
    .section { padding: 82px 22px; }
    .section-heading { align-items: start; flex-direction: column; margin-bottom: 48px; }
    .journey-board { grid-template-columns: 1fr; gap: 14px; }
    .journey-rail {
        top: 0;
        bottom: 0;
        left: 16px;
        right: auto;
        width: 1px;
        height: auto;
    }
    .journey-rail span {
        left: -5px !important;
        right: auto;
    }
    .journey-rail span:nth-child(1) { top: 5%; }
    .journey-rail span:nth-child(2) { top: 34%; }
    .journey-rail span:nth-child(3) { top: 64%; }
    .journey-rail span:nth-child(4) { top: 92%; }
    .journey-step,
    .journey-step:nth-of-type(even) {
        min-height: 0;
        margin: 0 0 0 34px;
        padding: 24px;
    }
    .journey-step svg { margin: 26px 0 24px; }
    .amenity-list { grid-template-columns: 1fr; }
    .amenity, .amenity:not(:nth-child(3n + 1)), .amenity:nth-child(even) { min-height: 0; padding: 28px 0; border-left: 0; }
    .amenity-icon { width: 42px; height: 42px; margin-top: 22px; }
    .amenity h3 { margin-top: 18px; }
    .property { grid-template-columns: 1fr; gap: 10px; padding: 30px 0; }
    .property h3 { line-height: 1.05; }
    .status-badge {
        display: inline-flex;
        margin-top: 12px;
        margin-left: 0;
    }
    .property > p { grid-column: auto; margin-top: 8px; }
    .gallery-item { flex-basis: 88%; aspect-ratio: 4 / 3; }
    .map-link iframe { height: 420px; }
    .gallery-controls { margin-top: 20px; }
    .carousel-arrow { width: 44px; height: 44px; }
    .reviews > h2 { margin-bottom: 50px; }
    .contact-content, .contact-details { padding: 76px 24px; }
    .contact-motif { width: 250px; opacity: .1; }
    .contact-details a { font-size: 1.9rem; }
    .inquiry-form { grid-template-columns: 1fr; }
    .inquiry-form label:nth-child(3),
    .inquiry-form .button { grid-column: auto; }
    .call-float,
    .whatsapp-float { right: 16px; width: 54px; height: 54px; display: grid; }
    .whatsapp-float { bottom: 16px; }
    .call-float { bottom: 80px; }
    .footer { min-height: 0; padding: 18px 22px 24px; row-gap: 10px; font-size: .76rem; }
    .footer-brand { width: 84px; }
    .footer-contact { gap: 3px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
