:root {
    --forest: #141b13;
    --green: #576852;
    --sage: #9dae98;
    --sky: #adc0d2;
    --sand: #d6bb8f;
    --ivory: #f3eee7;
    --paper: #fbfaf7;
    --ink: #172016;
    --white: #fff;
    --line: rgba(20, 27, 19, .16);
    --header-height: 84px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
}

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

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

.skip-link {
    position: fixed;
    z-index: 200;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    transform: translateY(-150%);
    background: var(--white);
    color: var(--forest);
}

.skip-link:focus {
    transform: none;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: 190px 1fr auto;
    align-items: center;
    width: 100%;
    min-height: var(--header-height);
    padding: 0 clamp(22px, 4.5vw, 76px);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    color: var(--white);
    transition: background .35s ease, min-height .35s ease, border-color .35s ease;
}

.site-header.scrolled {
    min-height: 68px;
    border-color: rgba(255, 255, 255, .08);
    background: rgba(20, 27, 19, .94);
    backdrop-filter: blur(18px);
}

.brand {
    display: flex;
    align-items: center;
    width: 165px;
    height: 42px;
}

.brand img,
.footer-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: clamp(19px, 2.3vw, 40px);
}

.desktop-nav a {
    position: relative;
    padding: 10px 0;
    color: rgba(255, 255, 255, .76);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .08em;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 1px;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    background: var(--sand);
    transition: transform .25s ease;
}

.desktop-nav a:hover {
    color: var(--white);
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    padding: 11px 18px;
    border: 1px solid rgba(255, 255, 255, .45);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    transition: background .25s ease, color .25s ease;
}

.header-cta:hover {
    background: var(--white);
    color: var(--forest);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 11px 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    margin: 7px 0;
    background: var(--white);
    transition: transform .25s ease;
}

.mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 0;
    display: none;
    align-content: center;
    gap: 10px;
    padding: 90px 28px 35px;
    transform: translateY(-100%);
    background: var(--forest);
    color: var(--white);
    transition: transform .35s ease;
}

.mobile-menu a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-family: "Playfair Display", serif;
    font-size: 1.55rem;
}

.hero {
    position: relative;
    display: flex;
    min-height: 100svh;
    align-items: center;
    overflow: hidden;
    background: var(--forest);
    color: var(--white);
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media {
    object-fit: cover;
    filter: saturate(.86) contrast(1.06);
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(10, 17, 10, .84) 0%, rgba(10, 17, 10, .48) 46%, rgba(10, 17, 10, .2) 72%),
        linear-gradient(0deg, rgba(10, 17, 10, .7), transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, 88vw);
    margin-left: clamp(24px, 8vw, 140px);
    padding: 130px 0 150px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--sand);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--green);
}

.hero h1 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(5.5rem, 15vw, 13.5rem);
    font-weight: 500;
    line-height: .75;
    letter-spacing: .03em;
}

.hero-copy {
    max-width: 610px;
    margin: 38px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 300;
    line-height: 1.55;
}

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

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 21px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

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

.button-light {
    background: var(--ivory);
    color: var(--forest);
}

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

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

.button-accent {
    width: 100%;
    background: var(--sand);
    color: var(--forest);
}

.hero-facts {
    position: absolute;
    z-index: 2;
    right: clamp(24px, 5vw, 80px);
    bottom: 40px;
    display: flex;
    gap: 1px;
    background: rgba(255, 255, 255, .2);
}

.hero-facts div {
    min-width: 132px;
    padding: 14px 18px;
    background: rgba(17, 26, 16, .66);
    backdrop-filter: blur(12px);
}

.hero-facts strong,
.hero-facts span {
    display: block;
}

.hero-facts strong {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 500;
}

.hero-facts span {
    margin-top: 1px;
    color: rgba(255, 255, 255, .55);
    font-size: .58rem;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.scroll-cue {
    position: absolute;
    z-index: 2;
    bottom: 28px;
    left: 50%;
    display: grid;
    width: 34px;
    height: 52px;
    place-items: center;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 20px;
}

.scroll-cue span {
    width: 3px;
    height: 8px;
    animation: cue 1.8s infinite;
    border-radius: 3px;
    background: var(--white);
}

@keyframes cue {
    0%, 100% { transform: translateY(-5px); opacity: .3; }
    50% { transform: translateY(5px); opacity: 1; }
}

.section {
    padding: clamp(84px, 10vw, 150px) clamp(22px, 7vw, 120px);
}

.section-intro,
.section-heading {
    width: min(1240px, 100%);
    margin: 0 auto;
}

.section-intro h2,
.section-heading h2,
.location h2,
.investment h2,
.contact h2 {
    max-width: 950px;
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.7rem, 6vw, 6.4rem);
    font-weight: 500;
    line-height: .98;
}

h2 em {
    color: var(--green);
    font-weight: 500;
}

.manifesto {
    background: var(--ivory);
}

.manifesto-grid {
    display: grid;
    width: min(1240px, 100%);
    margin: clamp(46px, 7vw, 90px) auto 0;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: clamp(45px, 8vw, 120px);
    align-items: center;
}

.manifesto-copy {
    max-width: 480px;
}

.manifesto-copy p {
    color: rgba(23, 32, 22, .68);
}

.manifesto-copy .lead {
    color: var(--ink);
    font-family: "Playfair Display", serif;
    font-size: clamp(1.5rem, 2.2vw, 2.2rem);
    line-height: 1.35;
}

.text-link {
    display: inline-flex;
    gap: 35px;
    align-items: center;
    margin-top: 22px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--green);
    font-size: .76rem;
    font-weight: 700;
}

.manifesto-image {
    position: relative;
    margin: 0;
}

.manifesto-image img {
    width: 100%;
    aspect-ratio: 1.65;
    object-fit: cover;
}

.manifesto-image figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 13px 18px;
    background: var(--forest);
    color: var(--white);
    font-size: .62rem;
    letter-spacing: .09em;
}

.principles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.principle {
    min-height: 280px;
    padding: clamp(28px, 4vw, 60px);
    border-right: 1px solid var(--line);
}

.principle:last-child {
    border-right: 0;
}

.principle span,
.benefit span {
    color: var(--green);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
}

.principle h3,
.benefit h3 {
    margin: 42px 0 12px;
    font-family: "Playfair Display", serif;
    font-size: 1.75rem;
    font-weight: 500;
}

.principle p,
.benefit p {
    margin: 0;
    color: rgba(23, 32, 22, .62);
    font-size: .82rem;
}

.amenities,
.gallery,
.location {
    background: var(--paper);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.section-heading h2 {
    max-width: 840px;
    font-size: clamp(2.7rem, 5vw, 5.4rem);
}

.slider-controls {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.slider-controls button {
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.slider-controls button:hover {
    background: var(--forest);
    color: var(--white);
}

.amenity-track,
.gallery-track {
    display: grid;
    margin-top: 55px;
    grid-auto-flow: column;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}

.amenity-track::-webkit-scrollbar,
.gallery-track::-webkit-scrollbar {
    display: none;
}

.amenity-track {
    grid-auto-columns: minmax(310px, 34vw);
    gap: 12px;
}

.amenity-item {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    scroll-snap-align: start;
    background: var(--forest);
}

.amenity-item img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.amenity-item:hover img,
.gallery-item:hover img {
    transform: scale(1.035);
}

.amenity-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 34px;
    background: linear-gradient(0deg, rgba(10, 17, 10, .9), transparent 67%);
    color: var(--white);
}

.amenity-overlay span {
    color: var(--sand);
    font-size: .65rem;
}

.amenity-overlay h3 {
    margin: 9px 0 6px;
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 500;
}

.amenity-overlay p {
    max-width: 320px;
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: .78rem;
}

.amenity-list {
    display: flex;
    width: min(1240px, 100%);
    margin: 32px auto 0;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.amenity-list span {
    flex: 1 1 220px;
    padding: 14px 17px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-align: center;
    text-transform: uppercase;
}

.masterplan {
    display: grid;
    grid-template-columns: minmax(310px, .75fr) minmax(0, 1.25fr);
    gap: clamp(45px, 7vw, 110px);
    align-items: center;
    background: var(--forest);
    color: var(--white);
}

.masterplan-copy {
    max-width: 520px;
    justify-self: end;
}

.masterplan-copy h2,
.architecture h2 {
    margin: 0 0 26px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.6rem, 4.8vw, 5.2rem);
    font-weight: 500;
    line-height: 1;
}

.masterplan-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, .62);
}

.masterplan dl {
    margin: 45px 0 0;
}

.masterplan dl div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 18px;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.masterplan dt {
    color: var(--sand);
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
}

.masterplan dd {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: .75rem;
}

.plan-viewer {
    position: relative;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: var(--ivory);
    cursor: zoom-in;
}

.plan-viewer img {
    width: 100%;
    aspect-ratio: 1.35;
    object-fit: cover;
    transition: transform .45s ease;
}

.plan-viewer:hover img {
    transform: scale(1.02);
}

.plan-viewer span {
    position: absolute;
    right: 15px;
    bottom: 15px;
    padding: 11px 15px;
    background: var(--forest);
    color: var(--white);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.architecture {
    display: grid;
    padding: clamp(80px, 9vw, 145px) clamp(22px, 5vw, 90px);
    grid-template-columns: .86fr 1.14fr;
    grid-template-rows: auto auto;
    background: var(--sky);
}

.architecture-lead {
    padding: 10px clamp(28px, 6vw, 90px) 70px 0;
}

.architecture-lead > p:not(.eyebrow) {
    max-width: 540px;
    color: rgba(20, 27, 19, .7);
}

.architecture-main,
.architecture-secondary {
    margin: 0;
    overflow: hidden;
}

.architecture-main {
    grid-row: 1 / 3;
    grid-column: 2;
}

.architecture-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.architecture-secondary {
    width: 78%;
    min-height: 330px;
}

.architecture-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.material-note {
    display: grid;
    width: 78%;
    padding: 22px 0 0;
    grid-template-columns: 100px 1fr;
    gap: 20px;
}

.material-note span {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.material-note p {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
}

.location-grid {
    display: grid;
    width: min(1240px, 100%);
    margin: 0 auto;
    grid-template-columns: .82fr 1.18fr;
    gap: clamp(50px, 8vw, 120px);
    align-items: center;
}

.location-copy {
    max-width: 500px;
}

.location h2 {
    font-size: clamp(3rem, 5vw, 5.4rem);
}

.location-copy > p:not(.eyebrow) {
    color: rgba(23, 32, 22, .65);
}

.distance-list {
    margin: 34px 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.distance-list li {
    display: grid;
    padding: 13px 0;
    grid-template-columns: 80px 1fr;
    border-bottom: 1px solid var(--line);
    font-size: .76rem;
}

.distance-list span {
    color: var(--green);
    font-weight: 700;
}

.location-visual {
    margin: 0;
}

.location-visual img {
    width: 100%;
}

.investment {
    background: var(--green);
    color: var(--white);
}

.investment-head {
    display: grid;
    width: min(1240px, 100%);
    margin: 0 auto;
    grid-template-columns: 1.35fr .65fr;
    gap: 70px;
    align-items: end;
}

.investment-head .eyebrow,
.contact .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -45px;
    color: var(--sand);
}

.investment-head h2 {
    max-width: 780px;
}

.investment-head > p:not(.eyebrow) {
    margin: 0;
    color: rgba(255, 255, 255, .65);
}

.benefits {
    display: grid;
    width: min(1240px, 100%);
    margin: 70px auto 0;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-left: 1px solid rgba(255, 255, 255, .2);
}

.benefit {
    min-height: 250px;
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.benefit span {
    color: var(--sand);
}

.benefit h3 {
    margin-top: 56px;
    color: var(--white);
}

.benefit p {
    color: rgba(255, 255, 255, .58);
}

.investment-cta {
    display: flex;
    width: min(1240px, 100%);
    margin: 24px auto 0;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    background: var(--sand);
    color: var(--forest);
}

.investment-cta span {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
}

.investment-cta strong {
    font-size: .7rem;
    letter-spacing: .08em;
}

.gallery-track {
    grid-auto-columns: minmax(300px, 45vw);
    gap: 12px;
}

.gallery-item {
    min-height: 500px;
    margin: 0;
    overflow: hidden;
    scroll-snap-align: start;
}

.contact {
    position: relative;
    display: grid;
    min-height: 750px;
    padding: clamp(90px, 10vw, 150px) clamp(22px, 8vw, 135px);
    grid-template-columns: 1fr minmax(340px, 500px);
    gap: clamp(50px, 9vw, 140px);
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.contact-bg,
.contact-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.contact-bg {
    object-fit: cover;
}

.contact-shade {
    background: linear-gradient(90deg, rgba(12, 20, 12, .92), rgba(12, 20, 12, .63));
}

.contact-copy,
.contact-form {
    position: relative;
    z-index: 1;
}

.contact h2 {
    max-width: 720px;
}

.contact-copy > p:not(.eyebrow) {
    max-width: 590px;
    color: rgba(255, 255, 255, .7);
}

.contact-direct {
    display: flex;
    margin-top: 36px;
    flex-wrap: wrap;
    gap: 12px 28px;
}

.contact-direct a {
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, .45);
    font-size: .78rem;
}

.contact-form {
    padding: 34px;
    background: rgba(20, 27, 19, .82);
    backdrop-filter: blur(15px);
}

.contact-form label {
    display: grid;
    margin-bottom: 14px;
    gap: 6px;
    color: rgba(255, 255, 255, .62);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .26);
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--white);
    font-size: .85rem;
    text-transform: none;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form option {
    background: var(--forest);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--sand);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-note {
    margin: 9px 0 0;
    color: rgba(255, 255, 255, .38);
    font-size: .58rem;
    text-align: center;
}

.site-footer {
    display: grid;
    padding: 55px clamp(22px, 7vw, 110px) 28px;
    grid-template-columns: 1fr auto auto;
    gap: 45px;
    align-items: start;
    background: var(--forest);
    color: var(--white);
}

.footer-brand {
    width: 180px;
}

.footer-brand img {
    height: 44px;
}

.footer-brand p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .45);
    font-family: "Playfair Display", serif;
    font-size: .9rem;
}

.footer-links,
.footer-social {
    display: grid;
    gap: 9px;
}

.footer-links a,
.footer-social a {
    color: rgba(255, 255, 255, .62);
    font-size: .68rem;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--white);
}

.footer-legal {
    grid-column: 1 / -1;
    margin: 40px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .3);
    font-size: .58rem;
}

.whatsapp-float {
    position: fixed;
    z-index: 80;
    right: 18px;
    bottom: 18px;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    box-shadow: 0 12px 35px rgba(20, 27, 19, .3);
}

.whatsapp-float span {
    font-size: .65rem;
    font-weight: 800;
}

.plan-modal {
    position: fixed;
    z-index: 180;
    inset: 0;
    display: none;
    padding: 70px 25px 25px;
    background: rgba(7, 11, 7, .94);
}

.plan-modal.open {
    display: block;
}

.plan-close {
    position: absolute;
    z-index: 10;
    top: 16px;
    right: 20px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    background: rgba(20, 27, 19, .78);
    color: var(--white);
    cursor: pointer;
    font-size: 1.6rem;
}

.plan-scroll {
    width: 100%;
    height: 100%;
    overflow: auto;
    background: var(--ivory);
}

.plan-scroll img {
    width: max(100%, 1200px);
    max-width: none;
}

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

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

@media (max-width: 1050px) {
    .site-header {
        grid-template-columns: 160px 1fr auto;
    }

    .desktop-nav {
        gap: 17px;
    }

    .desktop-nav a {
        font-size: .65rem;
    }

    .hero-facts {
        right: 22px;
    }

    .hero-facts div {
        min-width: 110px;
    }

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

    .principle:nth-child(2) {
        border-right: 0;
    }

    .investment-head {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .investment-head .eyebrow {
        margin-bottom: 0;
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 68px;
    }

    .site-header {
        min-height: 68px;
        grid-template-columns: 145px 1fr 44px;
        padding: 0 18px;
        background: rgba(20, 27, 19, .78);
        backdrop-filter: blur(14px);
    }

    .site-header.scrolled {
        min-height: 62px;
    }

    .brand {
        width: 136px;
        height: 36px;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
        grid-column: 3;
    }

    .mobile-menu {
        display: grid;
    }

    .menu-open .mobile-menu {
        transform: none;
    }

    .menu-open .menu-toggle span:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    .menu-open .menu-toggle span:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }

    .hero {
        min-height: 760px;
    }

    .hero-shade {
        background: linear-gradient(0deg, rgba(9, 16, 9, .9), rgba(9, 16, 9, .25) 75%);
    }

    .hero-content {
        width: auto;
        margin: auto 22px 175px;
        padding: 100px 0 0;
    }

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

    .hero-copy {
        margin-top: 27px;
        font-size: .95rem;
    }

    .hero-facts {
        right: 18px;
        bottom: 25px;
        left: 18px;
        width: auto;
    }

    .hero-facts div {
        min-width: 0;
        flex: 1;
        padding: 11px 10px;
    }

    .hero-facts strong {
        font-size: 1rem;
    }

    .scroll-cue {
        display: none;
    }

    .manifesto-grid,
    .masterplan,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .manifesto-copy,
    .location-copy,
    .masterplan-copy {
        max-width: none;
        justify-self: stretch;
    }

    .manifesto-image figcaption {
        position: static;
    }

    .amenity-track {
        grid-auto-columns: 75vw;
    }

    .architecture {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .architecture-main {
        grid-row: auto;
        grid-column: auto;
        min-height: 460px;
    }

    .architecture-secondary,
    .material-note {
        width: 100%;
    }

    .gallery-track {
        grid-auto-columns: 78vw;
    }

    .gallery-item {
        min-height: 430px;
    }

    .contact {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .site-footer {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 14px;
    }

    .section {
        padding: 72px 18px;
    }

    .hero {
        min-height: 700px;
    }

    .hero-content {
        margin-bottom: 160px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        min-height: 44px;
    }

    .hero-facts {
        bottom: 16px;
    }

    .hero-facts span {
        font-size: .48rem;
    }

    .section-intro h2,
    .section-heading h2,
    .location h2,
    .investment h2,
    .contact h2 {
        font-size: clamp(2.45rem, 12vw, 3.7rem);
    }

    .principles,
    .benefits {
        grid-template-columns: 1fr 1fr;
    }

    .principle {
        min-height: 210px;
        padding: 24px 18px;
    }

    .principle h3,
    .benefit h3 {
        margin-top: 27px;
        font-size: 1.35rem;
    }

    .principle p,
    .benefit p {
        font-size: .68rem;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }

    .slider-controls {
        align-self: flex-end;
    }

    .slider-controls button {
        width: 42px;
        height: 42px;
    }

    .amenity-track {
        margin-top: 28px;
        grid-auto-columns: 84vw;
    }

    .amenity-item {
        min-height: 440px;
    }

    .amenity-overlay {
        padding: 25px;
    }

    .amenity-list span {
        flex-basis: 50%;
        padding: 11px 7px;
        font-size: .56rem;
    }

    .masterplan {
        gap: 35px;
    }

    .masterplan dl div {
        grid-template-columns: 90px 1fr;
    }

    .architecture {
        padding: 72px 18px;
    }

    .architecture-lead {
        padding-right: 0;
        padding-bottom: 38px;
    }

    .architecture-main {
        min-height: 350px;
    }

    .architecture-secondary {
        min-height: 250px;
        margin-top: 12px;
    }

    .material-note {
        grid-template-columns: 75px 1fr;
    }

    .location-visual {
        margin: 0 -18px;
        overflow-x: auto;
    }

    .location-visual img {
        width: 780px;
        max-width: none;
    }

    .investment-head .eyebrow {
        margin-bottom: 0;
    }

    .benefit {
        min-height: 220px;
        padding: 20px 16px;
    }

    .investment-cta {
        align-items: start;
        flex-direction: column;
    }

    .gallery-track {
        margin-top: 28px;
        grid-auto-columns: 86vw;
    }

    .gallery-item {
        min-height: 370px;
    }

    .contact {
        padding: 80px 18px 50px;
    }

    .contact-form {
        padding: 24px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .site-footer {
        padding: 42px 18px 24px;
        gap: 30px;
    }

    .plan-modal {
        padding: 62px 10px 10px;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 12px;
        width: 46px;
        height: 46px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

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