:root {
    --ink: #151b1d;
    --muted: #697170;
    --paper: #fffdf8;
    --canvas: #ebe8e1;
    --bone: #f7f2ea;
    --mist: #e7eeea;
    --teal: #0f4c5c;
    --teal-dark: #0a3440;
    --copper: #a8663b;
    --blue: #143d66;
    --line: rgba(21, 27, 29, .12);
    --line-strong: rgba(21, 27, 29, .2);
    --shadow-soft: 0 18px 60px rgba(21, 27, 29, .07);
    --radius-sm: 8px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --space-section: clamp(5rem, 9vw, 9rem);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--canvas);
    color: var(--ink);
    font-family: "Nunito Sans", "Avenir Next", Avenir, ui-sans-serif, system-ui, sans-serif;
    line-height: 1.6;
    margin: 0;
}

body.nav-open {
    overflow: hidden;
}

main {
    background: var(--paper);
    box-shadow: 0 0 0 1px rgba(21, 27, 29, .04);
    margin: 0 auto;
    max-width: 1440px;
    overflow: hidden;
    padding-top: 0;
}

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

a {
    color: var(--teal);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--copper);
    outline-offset: 4px;
}

.container {
    margin-inline: auto;
    max-width: 1220px;
    width: min(88vw, 1220px);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -.75rem;
}

.col {
    padding-inline: .75rem;
}

.s12 {
    width: 100%;
}

.responsive-img {
    height: auto;
    max-width: 100%;
}

.right {
    margin-left: auto;
}

.hide-on-med-and-down {
    display: flex;
}

.skip-link {
    background: var(--ink);
    color: #fff;
    left: 1rem;
    padding: .7rem 1rem;
    position: fixed;
    top: -5rem;
    z-index: 10000;
}

.skip-link:focus {
    top: 1rem;
}

.navbar-fixed {
    height: 0;
    position: relative;
    z-index: 60;
}

.navbar-fixed nav {
    left: 50%;
    max-width: 1440px;
    position: fixed;
    right: auto;
    top: clamp(.75rem, 1.5vw, 1.15rem);
    transform: translateX(-50%);
    width: 100%;
}

.site-nav {
    background: transparent;
    box-shadow: none;
    height: auto;
    line-height: normal;
}

.site-nav.is-scrolled {
    background: transparent;
}

.nav-wrapper {
    align-items: center;
    background: rgba(255, 253, 248, .62);
    backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: 999px;
    box-shadow: 0 18px 54px rgba(21, 27, 29, .12);
    display: flex;
    min-height: 58px;
    padding: 0 .5rem 0 1.25rem;
    transition: background .22s ease, border-color .22s ease, box-shadow .22s ease;
    width: min(90vw, 1220px);
}

.site-nav.is-scrolled .nav-wrapper {
    background: rgba(255, 253, 248, .78);
    border-color: rgba(255, 255, 255, .72);
    box-shadow: 0 16px 48px rgba(21, 27, 29, .14);
}

.brand-logo {
    display: inline-flex;
    flex: 0 1 auto;
    margin-right: auto;
}

.site-nav .brand-logo {
    color: var(--ink);
    font-size: .96rem;
    font-weight: 800;
    letter-spacing: .01em;
    line-height: 1;
    max-width: 34vw;
    overflow: hidden;
    position: static;
    transform: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-nav ul {
    align-items: center;
    display: flex;
    gap: .28rem;
    margin: 0;
}

.site-nav li,
.mobile-menu li {
    list-style: none;
}

.site-nav ul a {
    border-radius: 999px;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    font-size: .88rem;
    font-weight: 700;
    height: 38px;
    letter-spacing: 0;
    line-height: 1;
    padding: 0 .95rem;
    transition: background .18s ease, color .18s ease;
}

.site-nav ul a:hover,
.site-nav ul a:focus {
    background: rgba(21, 27, 29, .06);
}

.nav-cta {
    border: 1px solid rgba(21, 27, 29, .62);
    display: inline-flex;
    height: 40px;
    line-height: 1;
    margin-left: .35rem;
    padding-inline: 1.18rem;
}

.mobile-menu-trigger {
    align-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    height: 48px;
    justify-content: center;
    margin-left: auto;
    padding: 0;
    width: 48px;
}

.mobile-menu-trigger span {
    background: var(--ink);
    display: block;
    height: 2px;
    transition: transform .18s ease, opacity .18s ease;
    width: 25px;
}

.mobile-menu {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    left: 50%;
    margin: 0;
    max-width: 520px;
    min-height: auto;
    padding: 1.1rem 1.4rem;
    position: fixed;
    opacity: 0;
    pointer-events: none;
    top: 5rem;
    transform: translate(-50%, -1rem);
    transition: opacity .18s ease, transform .22s ease, visibility .18s ease;
    visibility: hidden;
    width: min(90vw, 520px);
    z-index: 80;
}

.mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
}

.mobile-menu a {
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
    padding: 1rem .35rem;
    text-align: left;
}

.mobile-nav-backdrop {
    background: rgba(21, 27, 29, .36);
    inset: 0;
    position: fixed;
    z-index: 70;
}

.mobile-nav-backdrop[hidden] {
    display: none;
}

.btn-large,
.btn-flat {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    justify-content: center;
    min-height: 48px;
    padding: 0 1.35rem;
    text-transform: none;
}

.primary-cta {
    background: var(--ink);
    box-shadow: none;
    color: #fff;
    font-weight: 800;
}

.primary-cta:hover,
.primary-cta:focus {
    background: var(--teal-dark);
    box-shadow: none;
    color: #fff;
}

.secondary-cta {
    border: 1px solid currentColor;
    color: inherit;
    font-weight: 800;
}

.section {
    padding: var(--space-section) 0;
    scroll-margin-top: 6rem;
}

#faq-title {
    scroll-margin-top: 6rem;
}

.eyebrow {
    color: var(--copper);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .14em;
    margin: 0 0 .8rem;
    text-transform: uppercase;
}

h1,
h2 {
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    letter-spacing: 0;
    margin: 0;
}

h2 {
    font-size: clamp(2.35rem, 5vw, 5rem);
    font-weight: 600;
    line-height: .98;
}

.lead {
    color: var(--muted);
    font-size: clamp(1.02rem, 1.5vw, 1.18rem);
    line-height: 1.72;
}

.hero {
    border-radius: var(--radius-lg);
    isolation: isolate;
    margin: 1rem auto 0;
    max-width: 1408px;
    min-height: calc(100svh - 104px);
    overflow: hidden;
    position: relative;
    width: min(calc(100% - 2rem), 1408px);
}

.hero::after {
    background:
        linear-gradient(90deg, rgba(10, 19, 21, .78), rgba(10, 19, 21, .34) 52%, rgba(10, 19, 21, .06)),
        linear-gradient(0deg, rgba(10, 19, 21, .34), rgba(10, 19, 21, 0) 48%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.hero picture,
.hero img {
    height: calc(100svh - 104px);
    min-height: 680px;
    width: 100%;
}

.hero img {
    object-fit: cover;
}

.hero-content {
    bottom: clamp(3rem, 7vw, 6rem);
    color: #fff;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-kicker {
    align-items: center;
    color: rgba(255, 255, 255, .86);
    display: flex;
    flex-wrap: wrap;
    font-size: .78rem;
    font-weight: 900;
    gap: .65rem;
    letter-spacing: .14em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-kicker span + span::before {
    content: "/";
    margin-right: .65rem;
    opacity: .7;
}

.hero h1 {
    font-size: clamp(3.7rem, 8vw, 7.8rem);
    font-weight: 600;
    line-height: .88;
    max-width: 940px;
}

.hero-copy {
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1.02rem, 1.8vw, 1.32rem);
    line-height: 1.65;
    margin: 1.25rem 0 0;
    max-width: 650px;
}

.hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 2rem;
}

.hero .primary-cta {
    background: #fff;
    color: var(--ink);
}

.hero .primary-cta:hover,
.hero .primary-cta:focus {
    background: var(--bone);
    color: var(--ink);
}

.intro-band {
    background: var(--paper);
}

.intro-layout,
.split-feature,
.location-layout,
.booking-panel,
.faq-layout {
    align-items: center;
    display: grid;
    gap: clamp(2rem, 5vw, 5rem);
    grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
}

.intro-copy {
    max-width: 650px;
}

.intro-mosaic {
    display: grid;
    gap: .8rem;
    grid-template-columns: 1fr 1fr;
}

.intro-mosaic img {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.intro-mosaic .intro-mosaic-large {
    aspect-ratio: 4 / 5;
    grid-row: span 2;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 2rem;
}

.trust-strip span,
.booking-microcopy span {
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    font-size: .88rem;
    font-weight: 800;
    padding: .65rem .9rem;
}

.apartment-section {
    background: var(--bone);
}

.feature-media {
    position: relative;
}

.feature-image {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.feature-note {
    background: rgba(255, 253, 248, .92);
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: var(--radius-md);
    bottom: 1rem;
    box-shadow: var(--shadow-soft);
    left: 1rem;
    max-width: min(360px, calc(100% - 2rem));
    padding: 1.15rem;
    position: absolute;
}

.feature-note span {
    color: var(--copper);
    display: block;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .12em;
    margin-bottom: .35rem;
    text-transform: uppercase;
}

.feature-note strong {
    display: block;
    line-height: 1.45;
}

.feature-copy {
    max-width: 620px;
}

.detail-list {
    margin: 2rem 0 0;
}

.detail-list li {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 1rem;
    grid-template-columns: 7rem 1fr;
    list-style: none;
    padding: 1.25rem 0;
}

.detail-list li:last-child {
    border-bottom: 1px solid var(--line);
}

.detail-list strong {
    color: var(--ink);
}

.detail-list span {
    color: var(--muted);
}

.amenities-panel {
    margin-top: clamp(4rem, 7vw, 7rem);
}

.compact-heading {
    align-items: end;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: .7fr 1fr;
    margin-bottom: 2rem;
}

.compact-heading h2 {
    font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.amenity-grid {
    display: grid;
    gap: .8rem;
    grid-template-columns: repeat(4, 1fr);
}

.amenity-item,
.nearby-item {
    background: rgba(255, 253, 248, .72);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--ink);
    font-weight: 800;
    min-height: 5rem;
    padding: 1rem;
}

.gallery-section {
    background: var(--paper);
}

.section-heading {
    margin-bottom: 2.6rem;
    max-width: 780px;
}

.gallery-heading {
    display: block;
    max-width: 760px;
}

.gallery-heading .lead {
    margin-top: 1.2rem;
    max-width: 620px;
}

.gallery-grid {
    display: grid;
    gap: .8rem;
    grid-template-columns: repeat(4, 1fr);
}

.gallery-grid figure {
    margin: 0;
    overflow: hidden;
}

.gallery-grid img {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    width: 100%;
}

.gallery-grid figure:hover img {
    transform: scale(1.025);
}

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

.gallery-ocean {
    grid-column: auto;
}

.gallery-ocean img {
    aspect-ratio: 1 / 1;
    object-position: center bottom;
}

.location-section {
    background: var(--mist);
}

.location-card {
    background: rgba(255, 253, 248, .7);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: var(--radius-lg);
    display: grid;
    gap: .9rem;
    padding: .9rem;
}

.nearby-panel {
    display: grid;
    gap: .75rem;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 0;
}

.nearby-item {
    background: #fff;
    min-height: 5.8rem;
}

.map-panel {
    aspect-ratio: 16 / 7;
    background: var(--mist);
    border-radius: var(--radius-md);
    min-height: 220px;
    overflow: hidden;
}

.map-panel iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
}

.location-address {
    color: var(--ink);
    font-style: normal;
    font-weight: 800;
    line-height: 1.55;
    margin: 1.4rem 0 1rem;
}

.map-link {
    color: var(--teal);
}

.booking-section {
    background: var(--bone);
}

.booking-copy {
    max-width: 660px;
}

.booking-microcopy {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 2rem;
}

.booking-actions {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-board {
    background: rgba(255, 253, 248, .86);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    gap: .9rem;
    padding: clamp(1rem, 2vw, 1.35rem);
}

.airbnb-feature-card {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0)),
        var(--ink);
    border: 1px solid rgba(21, 27, 29, .9);
    border-radius: var(--radius-md);
    display: grid;
    gap: 1.1rem;
    grid-template-columns: 3.8rem minmax(0, 1fr);
    min-height: 9.2rem;
    padding: clamp(1.2rem, 2.2vw, 1.7rem);
    text-decoration: none;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.airbnb-feature-card:hover,
.airbnb-feature-card:focus {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, 0)),
        var(--teal-dark);
    border-color: rgba(10, 52, 64, .9);
    color: #fff;
    transform: translateY(-2px);
}

.airbnb-mark {
    align-items: center;
    background: rgba(255, 255, 255, .14);
    border-radius: 999px;
    display: flex;
    height: 3.8rem;
    justify-content: center;
    width: 3.8rem;
}

.airbnb-mark img {
    filter: brightness(0) invert(1);
    height: auto;
    width: 2rem;
}

.airbnb-feature-copy {
    display: grid;
    gap: .22rem;
    min-width: 0;
}

.booking-tag {
    color: #e7c9ad;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.airbnb-feature-title {
    color: #fff;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 900;
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.airbnb-feature-note {
    color: rgba(255, 255, 255, .82);
    font-size: .95rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.booking-platform-label {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 900;
    margin: .4rem 0 -.2rem;
    text-align: center;
}

.booking-platform-strip {
    display: grid;
    gap: .7rem;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.platform-link {
    align-content: center;
    background: rgba(255, 255, 255, .56);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--ink);
    display: grid;
    min-height: 5.9rem;
    padding: .85rem;
    text-align: center;
    text-decoration: none;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.platform-link:hover,
.platform-link:focus {
    background: #fff;
    border-color: rgba(15, 76, 92, .26);
    color: var(--ink);
    transform: translateY(-1px);
}

.platform-logo {
    align-items: center;
    display: flex;
    height: 3.2rem;
    justify-content: center;
    min-width: 0;
}

.platform-logo img {
    display: block;
    height: auto;
    max-height: 3.2rem;
    max-width: min(8.8rem, 100%);
    object-fit: contain;
}

.concierge-line {
    align-items: center;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: .55rem .85rem;
    justify-content: center;
    padding: .25rem .4rem 0;
    text-align: center;
}

.concierge-line span {
    font-size: .92rem;
    font-weight: 800;
}

.concierge-line > span:first-child {
    flex: 1 0 100%;
}

.concierge-links {
    align-items: center;
    display: inline-flex;
    gap: .7rem;
    justify-content: center;
}

.concierge-line a {
    border-bottom: 1px solid rgba(15, 76, 92, .35);
    color: var(--teal);
    font-size: .95rem;
    font-weight: 900;
}

.concierge-separator {
    background: rgba(21, 27, 29, .24);
    display: inline-block;
    height: 1rem;
    width: 1px;
}

.booking-note {
    color: var(--muted);
    font-weight: 800;
}

.faq-section {
    background: var(--paper);
}

.faq-layout {
    align-items: start;
    grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr);
}

.faq-intro {
    display: grid;
    gap: 1.15rem;
}

.faq-list {
    display: grid;
    gap: .75rem;
    padding-top: .25rem;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.35rem;
}

.faq-list summary {
    cursor: pointer;
    font-size: 1.04rem;
    font-weight: 900;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    float: right;
    font-weight: 900;
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list p {
    color: var(--muted);
    margin: .9rem 0 0;
}

.faq-visual {
    margin: 1.3rem 0 0;
}

.faq-visual img {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    height: auto;
    object-fit: cover;
    width: min(100%, 420px);
}

.faq-visual figcaption {
    color: var(--muted);
    font-size: .9rem;
    font-weight: 800;
    margin-top: .75rem;
}

.footer-grid,
.footer-bottom {
    display: grid;
    gap: 2rem;
}

.sister-section {
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 3.5rem 0;
}

.sister-panel {
    align-items: center;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.15fr .85fr;
}

.sister-brand {
    align-items: center;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(140px, 230px) 1fr;
}

.sister-brand img {
    height: auto;
    max-width: 230px;
    width: 100%;
}

.sister-section h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.sister-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    justify-content: flex-start;
    margin-top: 1.2rem;
}

.sister-location {
    color: var(--teal);
    font-weight: 900;
    margin-bottom: 0;
}

.site-footer {
    background: var(--ink);
    color: #fff;
    padding: 4.5rem 0 2rem;
}

.footer-grid {
    align-items: start;
    grid-template-columns: minmax(0, 1.1fr) minmax(220px, .8fr) minmax(220px, .7fr);
}

.site-footer h2 {
    font-size: clamp(1.9rem, 3vw, 2.9rem);
    max-width: 520px;
}

.site-footer p {
    color: rgba(255, 255, 255, .72);
}

.footer-contact {
    color: rgba(255, 255, 255, .72);
    display: grid;
    gap: .7rem;
}

.footer-label {
    color: rgba(255, 255, 255, .9) !important;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .14em;
    margin: 0;
    text-transform: uppercase;
}

.footer-contact address {
    color: rgba(255, 255, 255, .78);
    font-style: normal;
    font-weight: 800;
    line-height: 1.55;
}

.footer-contact a {
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus {
    color: #e7c9ad;
}

.footer-nav {
    background: transparent;
    box-shadow: none;
    display: block;
    height: auto;
    line-height: normal;
}

.footer-link {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    display: block;
    font-weight: 800;
    padding: .7rem 0;
}

.footer-link:hover,
.footer-link:focus {
    background: transparent;
    color: #e7c9ad;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .64);
    font-size: .9rem;
    margin-top: 3rem;
    padding-top: 1.25rem;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

@media (max-width: 992px) {
    main {
        padding-top: 0;
    }

    .site-nav {
        height: auto;
        line-height: normal;
    }

    .nav-wrapper {
        min-height: 56px;
        padding: 0 .45rem 0 1rem;
        width: min(92vw, 1220px);
    }

    .hide-on-med-and-down {
        display: none;
    }

    .mobile-menu-trigger {
        display: inline-flex;
    }

    .l5,
    .l6 {
        width: 100%;
    }

    .offset-l1 {
        margin-left: 0;
    }

    .hero {
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        margin-top: 0;
        min-height: 100svh;
        width: 100%;
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(10, 19, 21, .18), rgba(10, 19, 21, .78));
    }

    .hero picture,
    .hero img {
        height: 100svh;
        min-height: 700px;
    }

    .intro-layout,
    .split-feature,
    .location-layout,
    .booking-panel,
    .faq-layout,
    .sister-panel,
    .footer-grid,
    .footer-bottom,
    .compact-heading,
    .gallery-heading {
        grid-template-columns: 1fr;
    }

    .gallery-heading .lead {
        margin-top: 0;
    }

    .amenity-grid,
    .gallery-grid,
    .nearby-panel {
        grid-template-columns: repeat(2, 1fr);
    }

    .sister-brand {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(90vw, 1220px);
    }

    .section {
        padding: 4.5rem 0;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 15vw, 4.8rem);
    }

    .hero-content {
        bottom: 2.2rem;
    }

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

    .hero-actions a,
    .booking-actions a {
        text-align: center;
        width: 100%;
    }

    .intro-mosaic,
    .amenity-grid,
    .gallery-grid,
    .nearby-panel,
    .booking-platform-strip {
        grid-template-columns: 1fr;
    }

    .intro-mosaic .intro-mosaic-large,
    .gallery-feature,
    .gallery-ocean {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-ocean img {
        aspect-ratio: 1 / 1;
    }

    .feature-note {
        margin-top: .85rem;
        max-width: none;
        position: static;
    }

    .detail-list li {
        grid-template-columns: 1fr;
    }

    .airbnb-feature-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .airbnb-mark {
        justify-self: center;
    }

    .footer-grid {
        gap: 2.4rem;
    }
}

@media (min-width: 993px) {
    .mobile-menu-trigger,
    .mobile-menu {
        display: none;
    }

    .l5 {
        width: 41.6666666667%;
    }

    .l6 {
        width: 50%;
    }

    .offset-l1 {
        margin-left: 8.3333333333%;
    }
}

@media (min-width: 993px) and (max-width: 1120px) {
    .site-nav .brand-logo {
        max-width: 26vw;
    }

    .site-nav ul a {
        padding-inline: .7rem;
    }
}
