@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
    --blue: #16446b;
    --blue-deep: #0b2f4e;
    --sky: #dcecf8;
    --ice: #f3f8fc;
    --white: #fff;
    --ink: #102536;
    --muted: #607383;
    --line: #d8e3eb;
    --serif: 'DM Serif Display', Georgia, serif;
    --sans: 'DM Sans', Arial, sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

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

button,
input,
select {
    font: inherit
}

button,
a {
    -webkit-tap-highlight-color: transparent
}

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

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

main {
    overflow: hidden
}

[hidden] {
    display: none !important
}

.availability-bar {
    min-height: 36px;
    background: var(--blue-deep);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 6px 4vw;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.availability-bar span:first-child {
    font-weight: 700
}

.availability-bar a {
    margin-left: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    display: inline-flex;
    align-items: center;
    gap: 5px
}

.availability-call-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex: 0 0 auto
}

.bar-dot {
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%
}

.site-header {
    height: 86px;
    padding: 0 4vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .97);
    position: relative;
    z-index: 50;
    border-bottom: 1px solid rgba(22, 68, 107, .08)
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

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

.brand span {
    display: flex;
    flex-direction: column;
    color: var(--blue);
    line-height: 1
}

.brand b {
    font-size: 16px;
    letter-spacing: .1em
}

.brand small {
    font-size: 7px;
    letter-spacing: .2em;
    margin-top: 7px
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center
}

.nav-links>a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    position: relative
}

.nav-links>a:not(.mobile-apply):after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--blue);
    transition: .25s
}

.nav-links>a:hover:after {
    width: 100%
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px
}

.language-switcher {
    position: relative;
    width: 78px;
    height: 38px;
    padding: 3px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--ice);
    color: var(--muted);
    cursor: pointer;
    overflow: hidden;
    font: 700 10px/1 var(--sans);
    letter-spacing: .08em;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease
}

.language-switcher::before {
    content: "";
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 3px;
    width: 34px;
    border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 3px 10px rgba(22, 68, 107, .22);
    transition: transform .35s cubic-bezier(.2, .75, .25, 1)
}

.language-switcher span {
    position: relative;
    z-index: 1;
    transition: color .3s ease
}

.language-switcher span:first-child,
.language-switcher.is-spanish span:last-child {
    color: #fff
}

.language-switcher span:last-child,
.language-switcher.is-spanish span:first-child {
    color: var(--muted)
}

.language-switcher.is-spanish::before {
    transform: translateX(34px)
}

.language-switcher:hover,
.language-switcher:focus-visible {
    border-color: var(--blue);
    box-shadow: 0 5px 16px rgba(22, 68, 107, .14);
    transform: translateY(-2px)
}

.language-switcher:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px
}

.language-switcher.is-switching {
    animation: languageSwitch .26s ease both
}

@keyframes languageSwitch {
    50% {
        transform: scale(.9)
    }
}

.text-link {
    font-size: 12px;
    font-weight: 600
}

.button {
    border: 0;
    cursor: pointer;
    min-height: 52px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: transform .25s, background .25s, color .25s
}

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

.button-blue {
    background: var(--blue);
    color: #fff
}

.button-blue:hover {
    background: var(--blue-deep)
}

.button-small {
    min-height: 44px;
    padding: 0 20px
}

.button-white {
    background: #fff;
    color: var(--blue)
}

.button-white:hover {
    background: var(--sky)
}

.button-ghost {
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff
}

.button-ghost:hover {
    background: #fff;
    color: var(--blue)
}

.button-outline {
    background: transparent;
    border: 1px solid var(--blue);
    color: var(--blue)
}

.mobile-apply,
.menu-button {
    display: none
}

.hero {
    height: calc(100vh - 122px);
    min-height: 620px;
    position: relative;
    color: #fff
}

.hero-image,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-image {
    animation: heroZoom 14s ease-out both
}

.hero-shade {
    background: linear-gradient(90deg, rgba(5, 28, 46, .82) 0%, rgba(6, 31, 51, .53) 42%, rgba(6, 31, 51, .08) 75%), linear-gradient(0deg, rgba(8, 35, 56, .58), transparent 45%)
}

.hero-copy {
    position: absolute;
    left: 8vw;
    top: 50%;
    transform: translateY(-51%);
    max-width: 760px;
    z-index: 2
}

.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--blue);
    margin: 0 0 20px
}

.eyebrow.light {
    color: #fff
}

.hero h1,
.section h2,
.location h2,
.tour-modal h2 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .93;
    margin: 0
}

.hero h1 {
    font-size: clamp(68px, 7.6vw, 124px)
}

em {
    font-weight: 400
}

.hero h1 em,
.cta h2 em {
    color: #a8d7f4
}

.hero-intro {
    max-width: 570px;
    font-size: 17px;
    line-height: 1.7;
    margin: 28px 0 34px;
    color: rgba(255, 255, 255, .86)
}

.hero-buttons {
    display: flex;
    gap: 12px
}

.hero-foot {
    position: absolute;
    bottom: 25px;
    left: 8vw;
    display: flex;
    gap: 40px;
    z-index: 2;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .15em
}

.hero-foot span {
    display: flex;
    align-items: center;
    gap: 10px
}

.hero-foot span:before {
    content: "";
    width: 5px;
    height: 5px;
    border: 1px solid #fff;
    border-radius: 50%
}

.scroll-cue {
    position: absolute;
    right: 4vw;
    bottom: 0;
    z-index: 3;
    width: 70px;
    height: 70px;
    border-radius: 50% 50% 0 0;
    background: #fff;
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 24px
}

.scroll-cue span {
    animation: bounce 2s infinite
}

.section {
    padding: 120px 8vw
}

.section-number {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .23em;
    color: var(--blue);
    margin-bottom: 55px
}

.section-number.light {
    color: #a8d7f4
}

.intro h2,
.floorplan-copy h2,
.kitchen-copy h2,
.gallery h2,
.location h2 {
    font-size: clamp(54px, 6vw, 96px);
    color: var(--blue)
}

.intro h2 em,
.floorplan-copy h2 em,
.kitchen-copy h2 em,
.gallery h2 em,
.location h2 em {
    color: #7eacc9
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 8vw;
    align-items: end
}

.intro-copy {
    padding-bottom: 12px
}

.intro-copy p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--muted);
    margin: 0 0 30px
}

.arrow-link {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    display: inline-flex;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px
}

.arrow-link span {
    transition: transform .2s
}

.arrow-link:hover span {
    transform: translateX(5px)
}

.feature-triptych {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 105px;
    border-top: 1px solid var(--line)
}

.feature-triptych article {
    padding: 35px 5vw 0 0;
    border-right: 1px solid var(--line);
    min-height: 210px
}

.feature-triptych article:not(:first-child) {
    padding-left: 3vw
}

.feature-triptych article:last-child {
    border: 0
}

.feature-triptych span {
    font: italic 20px var(--serif);
    color: #8db4cf
}

.feature-triptych h3 {
    font: 400 26px var(--serif);
    color: var(--blue);
    margin: 24px 0 10px
}

.feature-triptych p {
    font-size: 13px;
    color: var(--muted);
    max-width: 280px
}

.floorplans {
    background: var(--ice);
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 8vw;
    align-items: center;
    padding-left: 0
}

.floorplan-image-wrap {
    height: 760px;
    position: relative
}

.floorplan-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.image-tag {
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--blue);
    color: #fff;
    padding: 20px 30px;
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase
}

.floorplan-copy>p:not(.eyebrow) {
    color: var(--muted);
    max-width: 520px;
    margin: 30px 0 40px
}

.kitchen-section {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 8vw;
    align-items: center;
    padding-right: 0
}

.kitchen-copy {
    padding-left: clamp(24px, 8vw, 130px)
}

.kitchen-copy>p:not(.eyebrow) {
    color: var(--muted);
    max-width: 520px;
    margin-top: 30px
}

.kitchen-image-wrap {
    height: 700px;
    position: relative;
    overflow: hidden
}

.kitchen-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: roomIntroBreathingZoom 9s ease-in-out infinite alternate;
    transform-origin: center center;
    will-change: transform
}

.kitchen-image-tag {
    right: auto;
    left: 0
}

.plan-row {
    border-top: 1px solid var(--line);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--blue)
}

.plan-row:nth-of-type(3) {
    border-bottom: 1px solid var(--line);
    margin-bottom: 35px
}

.plan-row span:first-child {
    display: flex;
    flex-direction: column
}

.plan-row b {
    font: 400 24px var(--serif)
}

.plan-row small {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px
}

.plan-row>span:last-child {
    font-size: 10px;
    letter-spacing: .15em
}

.amenities {
    background: var(--blue);
    color: #fff
}

.amenities-heading {
    display: grid;
    grid-template-columns: .5fr 1.3fr .65fr;
    gap: 4vw;
    align-items: end;
    margin-bottom: 70px
}

.amenities-heading .section-number {
    margin: 0
}

.amenities-heading h2 {
    font-size: clamp(54px, 5.5vw, 88px)
}

.amenities-heading h2 em {
    color: #a8d7f4
}

.amenities-heading>p {
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    max-width: 280px
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .22)
}

.amenity-grid article {
    position: relative;
    min-height: 250px;
    padding: 30px 45px 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
    border-right: 1px solid rgba(255, 255, 255, .22)
}

.amenity-grid article:nth-child(3n+2),
.amenity-grid article:nth-child(3n+3) {
    padding-left: 35px
}

.amenity-grid article:nth-child(3n) {
    border-right: 0
}

.amenity-grid span {
    font: italic 17px var(--serif);
    color: #9cc9e5
}

.amenity-grid h3 {
    font: 400 27px var(--serif);
    margin: 52px 0 8px
}

.amenity-grid p {
    font-size: 12px;
    color: rgba(255, 255, 255, .62);
    max-width: 280px
}

.amenity-grid i {
    position: absolute;
    right: 20px;
    top: 24px;
    font-style: normal;
    color: #9cc9e5;
    font-size: 20px
}

.amenity-note {
    margin-top: 45px;
    display: flex;
    gap: 27px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 11px;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: .1em
}

.amenity-note strong {
    color: #fff;
    margin-right: 8px
}

.amenity-note span:before {
    content: "•";
    margin-right: 27px;
    color: #8ebbd8
}

.gallery-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 65px
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    grid-template-rows: 320px 410px;
    gap: 18px
}

.gallery-grid:not(.is-expanded) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, clamp(340px, 34vw, 470px))
}

.gallery-grid:not(.is-expanded) .gallery-item {
    grid-column: auto;
    grid-row: auto
}

.gallery-item {
    margin: 0;
    overflow: hidden;
    position: relative
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .6, .2, 1)
}

.gallery-item[hidden] {
    display: none
}

.gallery-grid:not(.is-expanded) .item-1 img {
    object-position: center 62%
}

.gallery-grid:not(.is-expanded) .item-2 img,
.gallery-grid:not(.is-expanded) .item-3 img {
    object-position: center 60%
}

.gallery-grid:not(.is-expanded) .item-4 img {
    object-position: center 55%
}

.gallery-item:hover img {
    transform: scale(1.04)
}

.gallery-item figcaption {
    position: absolute;
    left: 15px;
    bottom: 12px;
    background: #fff;
    color: var(--blue);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 9px
}

.item-1 {
    grid-row: 1/3
}

.item-2 {
    grid-column: 2/4
}

.item-5 {
    display: none
}

.gallery-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 42px
}

.gallery-more-button span {
    display: inline-block;
    margin-left: 8px;
    transition: transform .25s ease
}

.gallery-more-button[aria-expanded="true"] span {
    transform: rotate(45deg)
}

.gallery-extra-shell {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    margin-top: 0;
    visibility: hidden;
    transition: grid-template-rows .7s cubic-bezier(.22, .7, .2, 1), opacity .45s ease, margin-top .7s cubic-bezier(.22, .7, .2, 1), visibility 0s linear .7s
}

.gallery-extra-shell.is-expanded {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 18px;
    visibility: visible;
    transition-delay: 0s
}

.gallery-extra-grid {
    min-height: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px
}

.gallery-extra-grid .gallery-item {
    display: block;
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
    opacity: 0;
    transform: translateY(34px) scale(.97);
    pointer-events: none;
    transition: opacity .45s ease, transform .6s cubic-bezier(.22, .7, .2, 1)
}

.gallery-extra-shell.is-expanded .gallery-item {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto
}

.gallery-extra-shell.is-expanded .gallery-item:nth-child(2) {
    transition-delay: .08s
}

.gallery-extra-shell.is-expanded .gallery-item:nth-child(3) {
    transition-delay: .16s
}

.location {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    background: var(--ice);
    min-height: 700px
}

.map-art {
    position: relative;
    overflow: hidden;
    background: #dcecf6;
    background-image: radial-gradient(#aac9dd 1px, transparent 1px);
    background-size: 22px 22px
}

.road {
    position: absolute;
    background: #fff;
    border: 1px solid #cbdce8;
    box-shadow: 0 0 0 9px rgba(255, 255, 255, .35)
}

.road-one {
    width: 130%;
    height: 38px;
    left: -15%;
    top: 43%;
    transform: rotate(-18deg)
}

.road-two {
    width: 40px;
    height: 120%;
    left: 58%;
    top: -10%;
    transform: rotate(15deg)
}

.road-three {
    width: 110%;
    height: 24px;
    left: -5%;
    top: 77%;
    transform: rotate(8deg)
}

.map-label {
    position: absolute;
    color: #668399;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase
}

.msu {
    left: 11%;
    bottom: 12%
}

.meijer {
    right: 14%;
    top: 20%
}

.eastwood {
    left: 14%;
    top: 15%
}

.map-pin {
    position: absolute;
    width: 115px;
    height: 115px;
    left: 46%;
    top: 46%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 16px 50px rgba(22, 68, 107, .23);
    animation: float 4s ease-in-out infinite
}

.map-pin:after {
    content: "";
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(22, 68, 107, .25);
    border-radius: 50%
}

.map-pin img {
    width: 86px
}

.location-copy {
    padding: 110px 8vw
}

.location-copy>p:not(.eyebrow) {
    color: var(--muted);
    font-size: 15px;
    max-width: 470px;
    margin: 30px 0
}

.location-copy address {
    font: 400 22px/1.5 var(--serif);
    color: var(--blue);
    margin: 35px 0 25px
}

.cta {
    background: var(--blue-deep);
    text-align: center;
    color: #fff;
    position: relative
}

.cta-mark {
    position: absolute;
    width: 520px;
    opacity: .055;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.cta>*:not(.cta-mark) {
    position: relative
}

.cta h2 {
    font: 400 clamp(58px, 7vw, 108px)/.95 var(--serif);
    margin: 0 0 45px
}

.cta>div {
    display: flex;
    gap: 12px;
    justify-content: center
}

footer {
    padding: 80px 8vw 25px;
    background: #fff;
    color: var(--blue)
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, .6fr);
    gap: 6vw;
    padding-bottom: 60px
}

.footer-brand img {
    width: 90px
}

.footer-brand h3 {
    letter-spacing: .14em;
    font-size: 18px;
    margin: 18px 0 0
}

.footer-brand p {
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted)
}

footer h4 {
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin: 0 0 25px
}

footer .footer-top>div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 9px
}

footer .footer-top a,
footer .footer-top p {
    font-size: 12px;
    color: var(--muted);
    margin: 0
}

.hours {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .1em
}

.footer-bottom {
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 25, 41, .82);
    backdrop-filter: blur(8px);
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 20px
}

.tour-modal {
    width: min(650px, 100%);
    max-height: 92vh;
    overflow: auto;
    background: #fff;
    padding: 55px;
    position: relative
}

.modal-close {
    position: absolute;
    right: 18px;
    top: 12px;
    border: 0;
    background: none;
    color: var(--blue);
    font: 300 34px var(--sans);
    cursor: pointer
}

.tour-modal h2 {
    font-size: 58px;
    color: var(--blue)
}

.tour-modal>p:not(.eyebrow),
.success p {
    color: var(--muted)
}

.tour-modal form {
    display: grid;
    gap: 16px;
    margin-top: 30px
}

.tour-modal label {
    display: grid;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue)
}

.tour-modal input,
.tour-modal select {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--ice);
    padding: 13px;
    outline: none;
    color: var(--ink)
}

.tour-modal input:focus,
.tour-modal select:focus {
    border-color: var(--blue)
}

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

.success {
    text-align: center;
    padding: 35px 0
}

.success>span {
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    background: var(--blue);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 25px
}

.success a {
    color: var(--blue);
    font-weight: 700
}

.success .button {
    margin-top: 20px
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.2, .65, .25, 1)
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none
}

.feature-triptych article:nth-child(2),
.amenity-grid article:nth-child(2) {
    transition-delay: .1s
}

.feature-triptych article:nth-child(3),
.amenity-grid article:nth-child(3) {
    transition-delay: .2s
}

@keyframes heroZoom {
    from {
        transform: scale(1.04)
    }

    to {
        transform: scale(1)
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-4px)
    }

    50% {
        transform: translateY(5px)
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(-50%, -50%)
    }

    50% {
        transform: translate(-50%, -57%)
    }
}

@media(max-width:1100px) {
    .nav-links {
        gap: 17px
    }

    .nav-links>a {
        font-size: 10px
    }

    .text-link {
        display: none
    }

    .hero-copy {
        left: 6vw
    }

    .section {
        padding: 95px 6vw
    }

    .amenities-heading {
        grid-template-columns: 1fr
    }

    .amenities-heading .section-number {
        margin-bottom: 20px
    }

    .floorplan-image-wrap {
        height: 630px
    }

    .location-copy {
        padding: 90px 6vw
    }

    .footer-top {
        grid-template-columns: 1fr repeat(3, .55fr)
    }
}

@media(max-width:800px) {
    .availability-bar {
        justify-content: flex-start;
        overflow: auto;
        white-space: nowrap;
        padding-left: 20px
    }

    .availability-bar a {
        margin-left: auto
    }

    .site-header {
        height: 72px;
        padding: 0 20px
    }

    .brand img {
        width: 43px;
        height: 43px
    }

    .brand b {
        font-size: 13px
    }

    .brand small {
        font-size: 6px
    }

    .nav-actions .button {
        display: none
    }

    .menu-button {
        display: flex;
        width: 42px;
        height: 42px;
        border: 0;
        background: var(--blue);
        flex-direction: column;
        gap: 6px;
        align-items: center;
        justify-content: center
    }

    .menu-button span {
        width: 18px;
        height: 1px;
        background: #fff
    }

    .nav-links {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 0;
        transform: translateY(-150%);
        transition: transform .35s;
        z-index: -1;
        border-top: 1px solid var(--line)
    }

    .nav-links.open {
        transform: translateY(0)
    }

    .nav-links>a {
        padding: 15px;
        border-bottom: 1px solid var(--line);
        font-size: 13px
    }

    .mobile-apply {
        display: block;
        background: var(--blue);
        color: #fff;
        text-align: center;
        margin-top: 12px
    }

    .hero {
        height: calc(100svh - 108px);
        min-height: 650px
    }

    .hero-copy {
        left: 24px;
        right: 24px;
        top: 46%
    }

    .hero h1 {
        font-size: clamp(56px, 16vw, 82px)
    }

    .hero-intro {
        font-size: 14px;
        margin: 22px 0 28px
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start
    }

    .hero-buttons .button {
        min-width: 220px
    }

    .hero-foot {
        left: 24px;
        bottom: 18px;
        gap: 16px
    }

    .hero-foot span:nth-child(2) {
        display: none
    }

    .scroll-cue {
        display: none
    }

    .section {
        padding: 78px 24px
    }

    .section-number {
        margin-bottom: 35px
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .intro h2,
    .floorplan-copy h2,
    .kitchen-copy h2,
    .gallery h2,
    .location h2 {
        font-size: clamp(49px, 14vw, 70px)
    }

    .feature-triptych {
        grid-template-columns: 1fr;
        margin-top: 65px
    }

    .feature-triptych article,
    .feature-triptych article:not(:first-child) {
        padding: 28px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        min-height: 0
    }

    .floorplans {
        grid-template-columns: 1fr;
        padding: 0 0 75px
    }

    .floorplan-image-wrap {
        height: 470px
    }

    .floorplan-copy {
        padding: 70px 24px 0
    }

    .kitchen-section {
        grid-template-columns: 1fr;
        padding: 75px 0 0
    }

    .kitchen-copy {
        padding: 0 24px 65px
    }

    .kitchen-image-wrap {
        height: 470px
    }

    .amenities-heading {
        display: block
    }

    .amenities-heading>p {
        margin-top: 25px
    }

    .amenity-grid {
        grid-template-columns: 1fr
    }

    .amenity-grid article,
    .amenity-grid article:nth-child(3n+2),
    .amenity-grid article:nth-child(3n+3) {
        padding: 27px 35px 28px 0;
        border-right: 0;
        min-height: 190px
    }

    .amenity-grid h3 {
        margin-top: 35px
    }

    .amenity-note {
        gap: 12px
    }

    .amenity-note span {
        width: 100%
    }

    .gallery-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 400px 250px 250px
    }

    .gallery-grid:not(.is-expanded) {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-rows: clamp(330px, 115vw, 500px)
    }

    .gallery-grid:not(.is-expanded) .gallery-item {
        grid-column: auto;
        grid-row: auto
    }

    .item-1 {
        grid-column: 1/3;
        grid-row: auto
    }

    .item-2 {
        grid-column: auto
    }

    .item-5 {
        display: block
    }

    .location {
        grid-template-columns: 1fr
    }

    .map-art {
        min-height: 420px
    }

    .location-copy {
        padding: 75px 24px
    }

    .cta>div {
        flex-direction: column;
        align-items: center
    }

    .cta .button {
        min-width: 220px
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }

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

    .hours {
        flex-direction: column;
        gap: 8px
    }

    .footer-bottom {
        gap: 20px
    }

    .tour-modal {
        padding: 42px 24px
    }

    .tour-modal h2 {
        font-size: 46px
    }

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

.hero {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden
}

.location-map {
    width: 100%;
    height: 100%;
    min-height: 700px;
    border: 0;
    display: block;
    filter: grayscale(.25) saturate(.8)
}

@media(max-width:800px) {
    .location-map {
        min-height: 420px
    }

    .hero h1 {
        font-size: clamp(42px, 11vw, 58px)
    }

    .location h2 {
        font-size: clamp(38px, 10vw, 54px)
    }
}

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

    *,
    *:before,
    *:after {
        animation: none !important;
        transition: none !important
    }

    [data-reveal] {
        opacity: 1;
        transform: none
    }
}

.floating-call-button {
    position: fixed;
    right: max(24px, env(safe-area-inset-right));
    bottom: max(24px, env(safe-area-inset-bottom));
    z-index: 90;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .24);
    background: linear-gradient(145deg, #2ee66f, #25d366);
    -webkit-backdrop-filter: blur(12px) saturate(145%);
    backdrop-filter: blur(12px) saturate(145%);
    color: var(--white);
    display: grid;
    place-items: center;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, .42), inset 0 -1px 1px rgba(8, 94, 42, .2), 0 8px 24px rgba(37, 211, 102, .34);
    transition: transform .2s ease, box-shadow .2s ease
}

.floating-call-button svg {
    width: 27px;
    height: 27px;
    fill: currentColor
}

.floating-call-button:hover,
.floating-call-button:focus-visible {
    transform: translateY(-3px);
    background: linear-gradient(145deg, #25d366, #1ebe5d);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, .48), inset 0 -1px 1px rgba(8, 94, 42, .2), 0 12px 30px rgba(37, 211, 102, .45)
}

.floating-call-button:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 3px
}

.floating-call-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    padding: 7px 12px;
    border-radius: 6px;
    background: #25d366;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 6px);
    transition: opacity .2s ease, transform .2s ease
}

.floating-call-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    border: 5px solid transparent;
    border-top-color: #25d366;
    transform: translateX(-50%)
}

.floating-call-button:hover .floating-call-tooltip,
.floating-call-button:focus-visible .floating-call-tooltip {
    opacity: 1;
    transform: translate(-50%, 0)
}

@media(max-width:800px) {
    .floating-call-button {
        right: max(16px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
        width: 56px;
        height: 56px
    }
}

@media(prefers-reduced-motion:reduce) {
    .floating-call-button,
    .floating-call-tooltip {
        transition: none
    }
}

.bedroom-label-mobile {
    display: none
}

@media(max-width:800px) {
    .bedroom-label-full {
        display: none
    }

    .bedroom-label-mobile {
        display: inline
    }
}

@media(min-width:801px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 300px 240px 300px
    }

    .item-1 {
        grid-column: 1/3;
        grid-row: 1/3
    }

    .item-2 {
        grid-column: 3/5;
        grid-row: 1
    }

    .item-3 {
        grid-column: 3;
        grid-row: 2
    }

    .item-4 {
        grid-column: 4;
        grid-row: 2
    }

    .item-5 {
        display: block;
        grid-column: 1/3;
        grid-row: 3
    }

    .item-6 {
        grid-column: 3;
        grid-row: 3
    }

    .item-7 {
        grid-column: 4;
        grid-row: 3
    }

    .gallery-grid:not(.is-expanded) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, clamp(340px, 34vw, 470px))
    }

    .gallery-grid:not(.is-expanded) .gallery-item {
        grid-column: auto;
        grid-row: auto
    }
}

/* Preserve the complete 3:4 frame of the six portrait photos. */
.gallery .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    width: min(100%, 1280px);
    margin-inline: auto;
    gap: 16px
}

.gallery .gallery-grid .gallery-item {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 3 / 4
}

.gallery .gallery-grid .gallery-item img {
    object-fit: contain;
    object-position: center;
    background: var(--ice)
}

@media(max-width:1000px) {
    .gallery .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(100%, 920px)
    }
}

@media(max-width:700px) {
    .gallery .gallery-grid,
    .gallery-extra-grid {
        grid-template-columns: 1fr
    }

    .gallery .gallery-grid {
        width: min(100%, 500px);
        gap: 28px
    }

    .gallery-extra-shell.is-expanded {
        margin-top: 28px
    }
}

@media(prefers-reduced-motion:reduce) {
    .gallery-extra-shell,
    .gallery-extra-grid .gallery-item,
    .gallery-more-button span {
        transition: none
    }
}

@media(max-width:800px) {
    .gallery-grid {
        grid-template-rows: 400px repeat(3, 250px)
    }

    .item-6,
    .item-7 {
        display: block
    }

    .gallery-item[hidden] {
        display: none
    }
}

main {
    overflow: clip
}

.site-header {
    position: sticky;
    top: 0
}

section[id] {
    scroll-margin-top: 86px
}

@media(max-width:800px) {
    section[id] {
        scroll-margin-top: 72px
    }
}

@media(max-width:800px) {
    .nav-links {
        transform: none;
        clip-path: inset(0 0 100% 0);
        opacity: 0;
        pointer-events: none;
        transform-origin: top;
        transition: clip-path .35s cubic-bezier(.2, .7, .25, 1), opacity .2s ease
    }

    .nav-links.open {
        transform: none;
        clip-path: inset(0 0 0 0);
        opacity: 1;
        pointer-events: auto
    }

    .menu-button span {
        transition: transform .25s ease
    }

    .menu-button[aria-expanded="true"] span:first-child {
        transform: translateY(3.5px) rotate(45deg)
    }

    .menu-button[aria-expanded="true"] span:last-child {
        transform: translateY(-3.5px) rotate(-45deg)
    }
}

.hero-foot-mobile {
    display: none
}

@media(max-width:800px) {
    .hero-foot-desktop {
        display: none
    }

    .hero-foot-mobile {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
        margin-top: 20px
    }

    .hero-foot-mobile span:nth-child(2) {
        display: flex
    }
}

.modal-backdrop {
    animation: tourBackdropIn .26s ease-out both
}

.modal-backdrop .tour-modal {
    animation: tourModalIn .4s cubic-bezier(.2, .75, .25, 1) both
}

.modal-backdrop.is-closing {
    pointer-events: none;
    animation: tourBackdropOut .26s ease-in both
}

.modal-backdrop.is-closing .tour-modal {
    animation: tourModalOut .28s ease-in both
}

@keyframes tourBackdropIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes tourModalIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(.96)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@keyframes tourBackdropOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes tourModalOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1)
    }

    to {
        opacity: 0;
        transform: translateY(20px) scale(.97)
    }
}

@media(prefers-reduced-motion:reduce) {

    .modal-backdrop,
    .modal-backdrop .tour-modal,
    .modal-backdrop.is-closing,
    .modal-backdrop.is-closing .tour-modal {
        animation: none
    }
}

@media(min-width:801px) {
    .footer-top {
        grid-template-columns: 1.4fr repeat(2, .6fr)
    }
}

.hero-character {
    display: inline-block;
    opacity: 0;
    transform: translateY(.65em) rotateX(-45deg);
    transform-origin: 50% 100%;
    filter: blur(4px);
    animation: heroCharacterIn .68s cubic-bezier(.2, .75, .25, 1) forwards;
    will-change: transform, opacity, filter
}

@keyframes heroCharacterIn {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
        filter: blur(0)
    }
}

@media(prefers-reduced-motion:reduce) {
    .hero-character {
        opacity: 1;
        transform: none;
        filter: none;
        animation: none
    }
}

.section-character {
    display: inline-block;
    opacity: 0;
    transform: translateY(.6em) rotateX(-40deg);
    transform-origin: 50% 100%;
    filter: blur(4px);
    will-change: transform, opacity, filter
}

.scroll-character-heading.characters-visible .section-character {
    animation: sectionCharacterIn .65s cubic-bezier(.2, .75, .25, 1) forwards
}

@keyframes sectionCharacterIn {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
        filter: blur(0)
    }
}

@media(prefers-reduced-motion:reduce) {
    .section-character {
        opacity: 1;
        transform: none;
        filter: none
    }

    .scroll-character-heading.characters-visible .section-character {
        animation: none
    }
}

@media(min-width:801px) {
    .amenities-heading h2 {
        font-size: clamp(48px, 4.8vw, 78px)
    }

    .location h2 {
        font-size: clamp(48px, 5vw, 84px)
    }
}

.animated-word {
    display: inline-block;
    white-space: nowrap
}

@media(max-width:800px) {

    .intro h2,
    .floorplan-copy h2,
    .kitchen-copy h2,
    .amenities-heading h2,
    .gallery-head h2,
    .location-copy h2,
    .cta h2 {
        font-size: clamp(38px, 10vw, 48px)
    }
}

.floorplan-image-wrap {
    overflow: hidden
}

.floorplan-image-wrap>img {
    animation: roomIntroBreathingZoom 9s ease-in-out infinite alternate;
    transform-origin: center center;
    will-change: transform
}

@keyframes roomIntroBreathingZoom {
    from {
        transform: scale(1.015)
    }

    to {
        transform: scale(1.065)
    }
}

@media(prefers-reduced-motion:reduce) {
    .floorplan-image-wrap>img,
    .kitchen-image-wrap>img {
        animation: none;
        transform: none
    }
}

.feature-triptych article {
    position: relative
}

.feature-triptych article:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 5px
}

.feature-preview {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 16px);
    z-index: 20;
    width: min(280px, calc(100vw - 48px));
    aspect-ratio: 4/3;
    padding: 7px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(11, 47, 78, .24);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 14px) scale(.92);
    transform-origin: 50% 100%;
    transition: opacity .25s ease, transform .35s cubic-bezier(.2, .75, .25, 1), visibility 0s linear .35s
}

.feature-preview:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: translateX(-50%) rotate(45deg)
}

.feature-preview img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.feature-triptych article:hover .feature-preview,
.feature-triptych article:focus .feature-preview {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
    transition-delay: 0s
}

@media(prefers-reduced-motion:reduce) {
    .feature-preview {
        transition: none
    }
}

.feature-preview-trigger {
    display: none
}

@media(max-width:800px) {
    .feature-preview-trigger {
        margin-top: 18px;
        padding: 8px 12px;
        border: 1px solid var(--line);
        background: var(--ice);
        color: var(--blue);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        cursor: pointer
    }

    .feature-preview-trigger span {
        font: 400 18px/1 var(--sans);
        color: var(--blue);
        transition: transform .25s
    }

    .feature-triptych article.is-preview-open .feature-preview-trigger span {
        transform: rotate(45deg)
    }

    .feature-triptych article.is-preview-open .feature-preview {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0) scale(1);
        transition-delay: 0s
    }

    .feature-triptych article:not(.is-preview-open) .feature-preview {
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, 14px) scale(.92)
    }

    .feature-preview {
        width: min(300px, calc(100vw - 48px));
        aspect-ratio: auto
    }

    .feature-preview img {
        height: auto;
        max-height: min(52vh, 380px);
        object-fit: contain
    }
}

.feature-preview {
    aspect-ratio: auto
}

.feature-preview img {
    height: auto;
    max-height: 340px;
    object-fit: contain
}

@media(max-width:800px) {
    .feature-triptych article:not(.is-preview-open) .feature-preview {
        transition: opacity .25s ease, transform .35s cubic-bezier(.2, .75, .25, 1), visibility 0s linear .35s
    }

    .feature-preview img {
        max-height: min(52vh, 380px)
    }
}

.amenity-grid article {
    overflow: hidden;
    cursor: pointer;
    isolation: isolate
}

.amenity-visual {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    clip-path: circle(0 at calc(100% - 30px) 30px);
    transition: clip-path .7s cubic-bezier(.2, .75, .2, 1), opacity .2s ease
}

.amenity-visual:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 28, 46, .18), rgba(5, 28, 46, .88) 82%)
}

.amenity-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.14);
    transition: transform 1.05s cubic-bezier(.2, .7, .2, 1)
}

.amenity-grid article>span,
.amenity-grid article>h3,
.amenity-grid article>p,
.amenity-grid article>i {
    position: relative;
    z-index: 2;
    transition: transform .45s cubic-bezier(.2, .75, .25, 1), color .3s, background .3s
}

.amenity-grid article:hover .amenity-visual,
.amenity-grid article:focus .amenity-visual,
.amenity-grid article.is-amenity-open .amenity-visual {
    opacity: 1;
    clip-path: circle(150% at calc(100% - 30px) 30px)
}

.amenity-grid article:hover .amenity-visual img,
.amenity-grid article:focus .amenity-visual img,
.amenity-grid article.is-amenity-open .amenity-visual img {
    transform: scale(1.02)
}

.amenity-grid article:hover>h3,
.amenity-grid article:hover>p,
.amenity-grid article:focus>h3,
.amenity-grid article:focus>p,
.amenity-grid article.is-amenity-open>h3,
.amenity-grid article.is-amenity-open>p {
    transform: translateY(-5px);
    color: #fff
}

.amenity-grid article:hover>span,
.amenity-grid article:focus>span,
.amenity-grid article.is-amenity-open>span {
    color: #fff
}

.amenity-grid article:hover>i,
.amenity-grid article:focus>i,
.amenity-grid article.is-amenity-open>i {
    transform: rotate(45deg);
    background: rgba(255, 255, 255, .16)
}

.amenity-grid article:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -5px
}

@media(prefers-reduced-motion:reduce) {

    .amenity-visual,
    .amenity-visual img,
    .amenity-grid article>span,
    .amenity-grid article>h3,
    .amenity-grid article>p,
    .amenity-grid article>i {
        transition: none
    }
}

.amenity-visual {
    z-index: 0
}

@media(hover:none) {
    .amenity-grid article:not(.is-amenity-open) .amenity-visual {
        opacity: 0;
        clip-path: circle(0 at calc(100% - 30px) 30px)
    }

    .amenity-grid article:not(.is-amenity-open) .amenity-visual img {
        transform: scale(1.14)
    }

    .amenity-grid article:not(.is-amenity-open)>h3,
    .amenity-grid article:not(.is-amenity-open)>p {
        transform: none
    }

    .amenity-grid article:not(.is-amenity-open)>p {
        color: rgba(255, 255, 255, .62)
    }

    .amenity-grid article:not(.is-amenity-open)>span {
        color: #9cc9e5
    }

    .amenity-grid article:not(.is-amenity-open)>i {
        transform: none;
        background: transparent
    }
}

@media(min-width:801px) {

    .amenity-grid article:focus:not(:hover) .amenity-visual,
    .amenity-grid article.is-amenity-open:not(:hover) .amenity-visual {
        opacity: 0;
        clip-path: circle(0 at calc(100% - 30px) 30px)
    }

    .amenity-grid article:focus:not(:hover) .amenity-visual img,
    .amenity-grid article.is-amenity-open:not(:hover) .amenity-visual img {
        transform: scale(1.14)
    }

    .amenity-grid article:focus:not(:hover)>h3,
    .amenity-grid article:focus:not(:hover)>p,
    .amenity-grid article.is-amenity-open:not(:hover)>h3,
    .amenity-grid article.is-amenity-open:not(:hover)>p {
        transform: none
    }

    .amenity-grid article:focus:not(:hover)>p,
    .amenity-grid article.is-amenity-open:not(:hover)>p {
        color: rgba(255, 255, 255, .62)
    }

    .amenity-grid article:focus:not(:hover)>span,
    .amenity-grid article.is-amenity-open:not(:hover)>span {
        color: #9cc9e5
    }

    .amenity-grid article:focus:not(:hover)>i,
    .amenity-grid article.is-amenity-open:not(:hover)>i {
        transform: none;
        background: transparent
    }
}

@media(max-width:800px) {
    .amenity-grid article:not(.is-amenity-open) .amenity-visual {
        opacity: 0;
        clip-path: circle(0 at calc(100% - 30px) 30px)
    }

    .amenity-grid article:not(.is-amenity-open) .amenity-visual img {
        transform: scale(1.14)
    }

    .amenity-grid article:not(.is-amenity-open)>h3,
    .amenity-grid article:not(.is-amenity-open)>p {
        transform: none
    }

    .amenity-grid article:not(.is-amenity-open)>p {
        color: rgba(255, 255, 255, .62)
    }

    .amenity-grid article:not(.is-amenity-open)>span {
        color: #9cc9e5
    }

    .amenity-grid article:not(.is-amenity-open)>i {
        transform: none;
        background: transparent
    }
}

.amenity-grid article>i {
    position: absolute
}

@media(max-width:800px) {

    .amenity-grid article,
    .amenity-grid article:nth-child(3n+2),
    .amenity-grid article:nth-child(3n+3) {
        padding: 27px 24px 28px
    }

    .amenity-grid article>i {
        right: 24px;
        top: 27px
    }
}

.amenity-grid article:hover>i,
.amenity-grid article:focus>i,
.amenity-grid article.is-amenity-open>i {
    background: transparent
}

.hero-image {
    animation: roomIntroBreathingZoom 9s ease-in-out infinite alternate;
    transform-origin: center center;
    will-change: transform
}

.gallery-item {
    cursor: pointer
}

.gallery-item:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 4px
}

.gallery-lightbox[hidden] {
    display: none
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(3, 20, 33, .94);
    backdrop-filter: blur(8px);
    display: grid;
    place-items: center;
    padding: 70px 24px 24px;
    animation: lightboxFadeIn .28s ease-out both
}

.gallery-lightbox img {
    display: block;
    max-width: min(1200px, 94vw);
    max-height: calc(100vh - 100px);
    max-height: calc(100dvh - 100px);
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .4);
    animation: lightboxImageIn .42s cubic-bezier(.2, .75, .25, 1) both
}

.gallery-lightbox-close {
    position: fixed;
    top: 18px;
    right: 22px;
    z-index: 201;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font: 300 34px/1 var(--sans);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .2s, transform .2s;
    animation: lightboxCloseIn .38s .12s ease-out both
}

.gallery-lightbox-close:hover {
    background: #fff;
    color: var(--blue);
    transform: rotate(90deg)
}

.gallery-lightbox-close:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px
}

.gallery-lightbox.is-closing {
    pointer-events: none;
    animation: lightboxFadeOut .24s ease-in both
}

.gallery-lightbox.is-closing img {
    animation: lightboxImageOut .26s ease-in both
}

.gallery-lightbox.is-closing .gallery-lightbox-close {
    animation: lightboxCloseOut .2s ease-in both
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes lightboxImageIn {
    from {
        opacity: 0;
        transform: scale(.9) translateY(18px)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

@keyframes lightboxCloseIn {
    from {
        opacity: 0;
        transform: scale(.75) rotate(-45deg)
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@keyframes lightboxFadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes lightboxImageOut {
    from {
        opacity: 1;
        transform: scale(1) translateY(0)
    }

    to {
        opacity: 0;
        transform: scale(.92) translateY(14px)
    }
}

@keyframes lightboxCloseOut {
    from {
        opacity: 1;
        transform: scale(1) rotate(0)
    }

    to {
        opacity: 0;
        transform: scale(.7) rotate(45deg)
    }
}

@media(prefers-reduced-motion:reduce) {

    .gallery-lightbox,
    .gallery-lightbox img,
    .gallery-lightbox-close {
        animation: none
    }
}

@media(max-width:800px) {
    .gallery-lightbox {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        padding: 64px 16px 20px
    }

    .gallery-lightbox img {
        flex: 0 1 auto;
        width: auto;
        max-width: 100%;
        max-height: calc(100vh - 84px);
        max-height: calc(100dvh - 84px);
        margin: auto
    }

    .gallery-lightbox-close {
        top: max(12px, env(safe-area-inset-top));
        right: max(12px, env(safe-area-inset-right))
    }
}

.gallery-lightbox-nav {
    position: fixed;
    top: 50%;
    z-index: 202;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    background: rgba(4, 25, 41, .58);
    color: #fff;
    font: 300 42px/1 var(--sans);
    cursor: pointer;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    transition: background .2s, color .2s, transform .2s
}

.gallery-lightbox-prev {
    left: 24px
}

.gallery-lightbox-next {
    right: 24px
}

.gallery-lightbox-nav:hover {
    background: #fff;
    color: var(--blue);
    transform: translateY(-50%) scale(1.08)
}

.gallery-lightbox-nav:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px
}

.gallery-lightbox.is-closing .gallery-lightbox-nav {
    animation: lightboxFadeOut .18s ease-in both
}

.gallery-lightbox img.is-switching {
    animation: lightboxImageSwitch .3s cubic-bezier(.2, .75, .25, 1) both
}

@keyframes lightboxImageSwitch {
    from {
        opacity: 0;
        transform: scale(.97)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@media(max-width:800px) {
    .gallery-lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 36px;
        background: rgba(4, 25, 41, .72)
    }

    .gallery-lightbox-prev {
        left: 10px
    }

    .gallery-lightbox-next {
        right: 10px
    }
}

@media(prefers-reduced-motion:reduce) {

    .gallery-lightbox img.is-switching,
    .gallery-lightbox.is-closing .gallery-lightbox-nav {
        animation: none
    }
}

/* Why Valley Forge */
.why-us {
    min-height: 680px;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
    background: var(--blue-deep);
    color: #fff
}

.why-us-visual {
    position: relative;
    width: fit-content;
    max-width: calc(100% - 6vw);
    min-height: 0;
    margin: 80px 0 80px 6vw;
    align-self: center;
    overflow: hidden;
    background: #fff;
    color: var(--blue-deep)
}

.why-us-image-frame {
    position: relative;
    display: grid;
    width: fit-content;
    max-width: 100%;
    overflow: hidden;
    background: #e9eef2
}

.why-us-visual img {
    position: relative;
    grid-area: 1 / 1;
    width: auto;
    max-width: 100%;
    height: auto;
    transform: scale(1);
    animation: whyUsPhotoIn 1.2s cubic-bezier(.2, .65, .25, 1) both;
    transition: transform .7s cubic-bezier(.2, .65, .25, 1)
}

.why-us-visual:hover img {
    transform: scale(1.015)
}

.why-us-image-shade {
    position: relative;
    grid-area: 1 / 1;
    background: linear-gradient(90deg, rgba(8, 34, 55, .05), rgba(8, 34, 55, .18)), linear-gradient(0deg, rgba(7, 29, 48, .7), transparent 48%)
}

.why-us-visual figcaption {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 26px 24px
}

.why-us-visual figcaption span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted)
}

.why-us-visual figcaption strong {
    max-width: 260px;
    font: 400 24px/1.1 var(--serif);
    text-align: right;
    color: var(--blue)
}

.why-us-copy {
    padding: 110px clamp(45px, 7vw, 120px);
    align-self: center
}

.why-us .section-number {
    margin-bottom: 42px
}

.why-us h2 {
    color: #fff;
    font-size: clamp(48px, 4.4vw, 70px)
}

.why-us h2 em {
    color: #a8d7f4
}

.why-us-copy>p {
    max-width: 600px;
    margin: 34px 0 38px;
    color: rgba(255, 255, 255, .76);
    font-size: 16px;
    line-height: 1.85
}

.why-us-link {
    color: #fff;
    border-color: rgba(255, 255, 255, .25)
}

@keyframes whyUsPhotoIn {
    from {
        transform: scale(1.06)
    }

    to {
        transform: scale(1)
    }
}

@media(max-width:1100px) {
    .why-us {
        padding: 0;
        grid-template-columns: .9fr 1.1fr
    }

    .why-us-visual {
        margin: 64px 0 64px 5vw
    }

    .why-us-copy {
        padding: 80px 5vw
    }

}

@media(max-width:800px) {
    .why-us {
        padding: 0;
        grid-template-columns: 1fr;
        min-height: 0
    }

    .why-us-visual {
        min-height: 0;
        width: auto;
        max-width: none;
        height: auto;
        margin: 0 24px 64px;
        grid-row: 2
    }

    .why-us-visual img {
        object-position: center
    }

    .why-us-visual figcaption {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 18px 20px 20px
    }

    .why-us-visual figcaption strong {
        max-width: none;
        font-size: 22px;
        text-align: left
    }

    .why-us-copy {
        padding: 76px 24px 68px
    }

    .why-us h2 {
        font-size: clamp(49px, 14vw, 70px)
    }

    .why-us-copy>p {
        margin: 28px 0 32px;
        font-size: 15px
    }

}

@media(prefers-reduced-motion:reduce) {
    .why-us-visual,
    .why-us-visual img {
        animation: none;
        clip-path: none;
        transform: none;
        transition: none
    }

}

/* Why-us carousel: 70% imagery / 30% copy */
.why-us {
    grid-template-columns: minmax(0, 7fr) minmax(300px, 3fr)
}

.why-us-visual {
    width: auto;
    max-width: none;
    margin: 56px 3vw 56px 5vw;
    background: #fff
}

.why-us-image-frame {
    display: block;
    width: 100%;
    max-width: none;
    height: clamp(440px, 42vw, 650px);
    background: #071f33
}

.why-us-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(3%);
    transition: opacity .9s ease, transform 1.1s cubic-bezier(.2, .65, .25, 1), visibility 0s linear .9s
}

.why-us-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition-delay: 0s;
    z-index: 1
}

.why-us-visual .why-us-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: none;
    transform: scale(1.025);
    transition: transform 5.5s ease
}

.why-us-visual .why-us-slide.is-active img {
    transform: scale(1)
}

.why-us-visual:hover .why-us-slide.is-active img {
    transform: scale(1.012)
}

.why-us-image-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(5, 25, 41, .3), transparent 38%)
}

.why-us-carousel-controls {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    display: flex;
    gap: 8px
}

.why-us-carousel-controls button {
    width: 42px;
    height: 42px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 50%;
    background: rgba(7, 31, 51, .72);
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    transition: background .25s ease, transform .25s ease
}

.why-us-carousel-controls button:hover,
.why-us-carousel-controls button:focus-visible {
    background: var(--blue);
    transform: scale(1.06)
}

.why-us-visual figcaption {
    position: relative;
    min-height: 104px;
    display: block;
    padding: 24px 26px;
    overflow: hidden
}

.why-us-visual figcaption .why-us-caption {
    position: absolute;
    top: 22px;
    left: 26px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .55s ease, transform .65s cubic-bezier(.2, .65, .25, 1)
}

.why-us-visual figcaption .why-us-caption.is-active {
    opacity: 1;
    transform: none
}

.why-us-visual figcaption .why-us-caption small {
    color: var(--muted);
    font: 700 10px/1.4 var(--sans);
    letter-spacing: .18em;
    text-transform: uppercase
}

.why-us-visual figcaption .why-us-caption strong {
    max-width: none;
    color: var(--blue);
    font: 400 27px/1.1 var(--serif);
    letter-spacing: normal;
    text-transform: none;
    text-align: left
}

.why-us-visual figcaption .why-us-carousel-count {
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aabb8;
    font: 500 11px/1 var(--sans);
    letter-spacing: .14em
}

.why-us-carousel-count b {
    color: var(--blue);
    font-size: 15px
}

.why-us-copy {
    padding: 80px 3.5vw 80px 1vw
}

.why-us h2 {
    font-size: clamp(42px, 3.3vw, 58px)
}

.why-us-copy>p {
    font-size: 15px;
    line-height: 1.75
}

@media(max-width:1100px) {
    .why-us {
        grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr)
    }

    .why-us-visual {
        margin: 48px 3vw 48px 4vw
    }

    .why-us-copy {
        padding: 68px 3vw 68px 0
    }

    .why-us-image-frame {
        height: clamp(400px, 48vw, 570px)
    }
}

@media(max-width:800px) {
    .why-us {
        grid-template-columns: 1fr
    }

    .why-us-copy {
        padding: 72px 24px 54px
    }

    .why-us-visual {
        width: auto;
        max-width: none;
        margin: 0 24px 64px
    }

    .why-us-image-frame {
        height: clamp(340px, 78vw, 520px)
    }

    .why-us-visual figcaption {
        min-height: 96px;
        padding: 20px
    }

    .why-us-visual figcaption .why-us-caption {
        top: 19px;
        left: 20px;
        gap: 3px
    }

    .why-us-visual figcaption .why-us-caption strong {
        font-size: 23px
    }

    .why-us-visual figcaption .why-us-carousel-count {
        right: 20px
    }

    .why-us h2 {
        font-size: clamp(46px, 13vw, 64px)
    }
}

@media(prefers-reduced-motion:reduce) {
    .why-us-slide,
    .why-us-slide.is-active,
    .why-us-caption,
    .why-us-caption.is-active {
        transition: none;
        transform: none
    }
}

@media(max-width:800px) {
    .nav-actions {
        gap: 8px
    }

    .language-switcher {
        width: 70px;
        height: 36px
    }

    .language-switcher::before {
        width: 30px
    }

    .language-switcher.is-spanish::before {
        transform: translateX(32px)
    }
}

@media(prefers-reduced-motion:reduce) {
    .language-switcher,
    .language-switcher::before,
    .language-switcher span {
        animation: none;
        transition: none
    }
}
