@font-face {
    font-family: "GT Sectra Display";
    src: url("/fonts/GT_Sectra_Display_Regular.woff2") format("woff2");
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Optima nova LT Pro";
    src: url("/fonts/Optima_nova_LT_Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* ============================================================
   ROOT / BASE / RESET
   ============================================================ */
:root {
    --navy: #15264a;
    --navy-deep: #122039;
    --coral-blue: #21507f;
    --white: #ffffff;
    --muted: rgba(255, 255, 255, 0.55);

    /* Below-hero palette */
    --sand: #e6dfd0;
    --sand-deep: #ece5d8;
    --ink: #213a5c;
    --slate: #61707f;
    --line: #d6cdbd;
    --accent: #b3895c;
    --navy-ink: #0c1730;
    --accent-deep: #8f6437;

    --font-serif: "GT Sectra Display", Georgia, "Times New Roman", serif;
    --font-sans:
        "Optima nova LT Pro", Optima, "Segoe UI", Helvetica, Arial, sans-serif;
    --navy-text: #1e2342;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overscroll-behavior-x: none; /* stops the elastic horizontal bounce */
}

body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--white);
    background: var(--navy);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
    pointer-events: none; /* blocks right-click, drag, open-in-new-tab */
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none; /* stops the iOS long-press save menu */
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
.b1-body {
    text-wrap: pretty;
}
.br-mobile {
    display: none; /* hidden on desktop */
}

@media (max-width: 900px) {
    .br-mobile {
        display: inline; /* line break appears on mobile */
    }
}

.br-desktop {
    display: none; /* hidden on desktop */
}

@media (min-width: 900px) {
    .br-desktop {
        display: inline; /* line break appears on mobile */
    }
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}
/* ============================================================
   SCROLL REVEAL (shared)
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.85s cubic-bezier(0.2, 0.6, 0.2, 1),
        transform 0.85s cubic-bezier(0.2, 0.6, 0.2, 1);
    will-change: opacity, transform;
}

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

.reveal--d1 {
    transition-delay: 0.1s;
}
.reveal--d2 {
    transition-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================================
   SHARED TYPE UTILITIES (below-hero)
   ============================================================ */
.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.body-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.95;
    color: var(--slate);
}

/* Animated line-arrow link (replaces the SVG chevrons) */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ink);
    transition: color 0.3s ease;
}

.link-arrow .arw {
    position: relative;
    width: 30px;
    height: 1px;
    background: currentColor;
    transition: width 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.link-arrow .arw::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.link-arrow:hover {
    color: var(--accent);
}
.link-arrow:hover .arw {
    width: 46px;
}

/* Small diamond divider */
.flourish {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.flourish::before,
.flourish::after {
    content: "";
    height: 1px;
    width: 48px;
    background: var(--line);
}
.flourish i {
    display: block;
    width: 6px;
    height: 6px;
    border: 1px solid var(--accent);
    transform: rotate(45deg);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition:
        background 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        backdrop-filter 0.6s ease;
    will-change: background, padding;
}

/* Gradient at the very top so dark logo/controls read over the hero */
.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.32),
        rgba(0, 0, 0, 0)
    );
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

/* Frosted white header on scroll */
.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px) saturate(1.15);
    -webkit-backdrop-filter: blur(16px) saturate(1.15);
    box-shadow: 0 8px 34px rgba(20, 38, 74, 0.09);
}

.site-header.is-scrolled::before {
    opacity: 0;
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    padding: 26px 85px;
    transition: padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.is-scrolled .header-inner {
    padding: 15px 85px;
}

/* Logo — left aligned, two versions swapped by state */
.header-logo {
    position: relative;
    display: block;
    width: 148px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-logo img {
    width: 100%;
    height: auto;
    transition: opacity 0.55s ease;
}

.header-logo__dark {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.site-header.is-scrolled .header-logo {
    width: 124px;
}

.site-header.is-scrolled .header-logo__light {
    opacity: 0;
}
.site-header.is-scrolled .header-logo__dark {
    opacity: 1;
}

/* Persistent primary nav (desktop) */
.header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
}

.header-nav a {
    position: relative;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    transition: color 0.45s ease;
}

.header-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.header-nav a:hover {
    color: var(--accent);
}

.header-nav a:hover::after {
    width: 100%;
}

.site-header.is-scrolled .header-nav a {
    color: var(--ink);
}

.site-header.is-scrolled .header-nav a:hover {
    color: var(--accent);
}

/* Hamburger toggle — right, custom two-line */
.nav-toggle {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 30px;
    height: 20px;
    margin-left: 46px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle__line {
    position: absolute;
    left: 0;
    height: 1.5px;
    background: var(--white);
    transition:
        background 0.45s ease,
        width 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.nav-toggle__line:first-child {
    top: 4px;
    width: 100%;
}

.nav-toggle__line:last-child {
    bottom: 4px;
    width: 66%;
}

.nav-toggle:hover .nav-toggle__line:last-child {
    width: 100%;
}

.site-header.is-scrolled .nav-toggle__line {
    background: var(--ink);
}

/* Animated bottom border (desktop, transparent state) */
.header-rule {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background: rgba(255, 255, 255, 0.7);
    transition: width 2.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.site-header.rule-in .header-rule {
    width: 100%;
}

.site-header.is-scrolled .header-rule {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hide persistent nav on smaller screens (lives in the overlay menu) */
@media (max-width: 992px) {
    .header-nav {
        display: none;
    }
    .nav-toggle {
        margin-left: auto;
    }
}
/* ============================================================
   FULL-SCREEN DROP-DOWN NAV
   ============================================================ */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 200;
    transform: translateY(-100%);
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
    overflow: hidden;
}

.nav-overlay.open {
    transform: translateY(0);
}
/* nav overlay — Residences splits into two items on mobile */
.nav-links .nav-item--mob {
    display: none;
}

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

    .nav-links .nav-item--mob {
        display: block;
    }
}

.nav-close {
    position: absolute;
    top: 30px;
    right: 45px;
    z-index: 3;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-close span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--white);
    transition: background 0.3s ease;
}

.nav-close span:first-child {
    transform: rotate(45deg);
}
.nav-close span:last-child {
    transform: rotate(-45deg);
}

.nav-close:hover span {
    background: var(--accent);
}

.nav-overlay__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}
/* Right half — image */
.nav-overlay__right {
    background: var(--navy) url("/images/home/place.webp") center/cover
        no-repeat;
}

/* Left half — links on navy */
.nav-overlay__left {
    background: var(--navy-deep);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 80px;
}

/* Logo at the top of the panel */
.nav-logo {
    display: block;
    width: 150px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(-12px);
    transition:
        opacity 0.6s ease 0.15s,
        transform 0.6s ease 0.15s;
}

.nav-overlay.open .nav-logo {
    opacity: 1;
    transform: none;
}

.nav-logo img {
    width: 100%;
    height: auto;
}

/* Two-column link grid */
.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
    row-gap: 0;
}

.nav-links li {
    overflow: hidden;
}

.nav-links li + li {
    margin-top: 0;
}

.nav-links a,
.nav-link--soon {
    display: inline-block;
    padding: 9px 0;
    font-family: var(--font-serif);
    font-size: 2rem;
    letter-spacing: 0.5px;
    color: var(--white);
    transform: translateY(110%);
    transition:
        color 0.3s ease,
        transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.nav-overlay.open .nav-links a,
.nav-overlay.open .nav-link--soon {
    transform: translateY(0);
}

/* Stagger — covers up to 8 items */
.nav-overlay.open .nav-links li:nth-child(1) a {
    transition-delay: 0.22s;
}
.nav-overlay.open .nav-links li:nth-child(2) a {
    transition-delay: 0.28s;
}
.nav-overlay.open .nav-links li:nth-child(3) a {
    transition-delay: 0.34s;
}
.nav-overlay.open .nav-links li:nth-child(4) a {
    transition-delay: 0.4s;
}
.nav-overlay.open .nav-links li:nth-child(5) a {
    transition-delay: 0.46s;
}
.nav-overlay.open .nav-links li:nth-child(6) a {
    transition-delay: 0.52s;
}
.nav-overlay.open .nav-links li:nth-child(7) a {
    transition-delay: 0.58s;
}
.nav-overlay.open .nav-links li:nth-child(8) .nav-link--soon {
    transition-delay: 0.64s;
}

.nav-links a:hover {
    color: var(--accent);
}
/* Team — coming soon, non-clickable */
.nav-link--soon {
    color: rgba(255, 255, 255, 0.4);
    cursor: default;
}

.nav-link--soon em {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    vertical-align: middle;
    margin-left: 12px;
}

/* Footer block */
.nav-foot {
    margin-top: 44px;
    opacity: 0;
    transition: opacity 0.5s ease 0.6s;
}

.nav-overlay.open .nav-foot {
    opacity: 1;
}

.nav-foot__links {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 26px;
}

.nav-foot__links a {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.nav-foot__links a:hover {
    color: var(--accent);
}

.nav-tagline {
    font-family: var(--font-sans);
    font-size: 0.66rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px;
}

.nav-social {
    display: flex;
    gap: 18px;
}

.nav-social a {
    color: rgba(255, 255, 255, 0.7);
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.nav-social a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.nav-social svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .header-inner {
        padding: 18px 24px;
    }
    .site-header.is-scrolled .header-inner {
        padding: 13px 24px;
    }
    .header-logo {
        width: 122px;
    }
    .site-header.is-scrolled .header-logo {
        width: 106px;
    }
    .header-rule {
        display: none;
    }

    /* Single column — no image on mobile */
    .nav-overlay__inner {
        grid-template-columns: 1fr;
    }
    .nav-overlay__right {
        display: none;
    }
    .nav-overlay__left {
        padding: 90px 36px 50px;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .nav-logo {
        width: 124px;
        margin-bottom: 34px;
    }
    /* Links back to one column on mobile */
    .nav-links {
        grid-template-columns: 1fr;
    }
    .nav-links a,
    .nav-link--soon {
        font-size: 1.7rem;
        padding: 6px 0;
    }
    .nav-close {
        right: 24px;
    }
}

@media (max-width: 480px) {
    .nav-links a,
    .nav-link--soon {
        font-size: 1.5rem;
    }
    .nav-foot {
        margin-top: 32px;
    }
    .nav-foot__links {
        gap: 18px;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    position: relative;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 55px 45px 70px;
    text-align: center;
    overflow: hidden;
}

/* Full-footer background image */
.footer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: url("/images/home/footer-bg.jpg") center/cover no-repeat;
}
.footer-credit-link {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-credit-link:hover,
.footer-credit-link:focus-visible {
    opacity: 0.75;
}
/* Fade: blend into the navy above, darken toward the bottom for legibility */
.footer-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        var(--navy) 0%,
        rgba(21, 38, 74, 0.6) 26%,
        rgba(21, 38, 74, 0.45) 58%,
        rgba(18, 32, 57, 0.9) 100%
    );
}

.back-to-top {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: capitalize;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.back-to-top:hover {
    color: var(--white);
}

.back-to-top svg {
    width: 26px;
    height: 26px;
    color: var(--muted);
}

.footer-brand {
    position: relative;
    z-index: 2;
    margin: 42px auto 0;
    max-width: 300px;
}

.footer-brand img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Link columns */
.footer-nav {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 56px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-col__title {
    font-family: var(--font-sans);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.footer-col ul li + li {
    margin-top: 12px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col a {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 0.4px;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-address {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.72);
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 980px;
    margin: 28px auto 0;
}

.footer-credit,
.footer-copy {
    font-size: 0.68rem;
    letter-spacing: 2px;
    color: var(--muted);
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 45px 24px 40px;
    }
    .footer-brand {
        margin-top: 34px;
        max-width: 240px;
    }
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 24px;
        margin-top: 44px;
        padding-bottom: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        margin-top: 26px;
    }
    .footer-legal {
        order: 3;
    }
    .footer-copy {
        order: 2;
    }
}

@media (max-width: 480px) {
    .footer-credit,
    .footer-copy {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }
    .footer-brand {
        max-width: 210px;
    }
    .footer-nav {
        gap: 30px 20px;
    }
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal a {
    font-size: 0.68rem;
    letter-spacing: 2px;
    color: var(--muted);
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-legal__sep {
    color: var(--muted);
    font-size: 0.68rem;
}
/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #0d2a3a;
    overflow: hidden;
    overscroll-behavior-x: none;
    touch-action: pan-y;
}

.hero-poster {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #0d2a3a url("/images/home/hero.webp") center center/cover
        no-repeat;
}

@keyframes heroZoom {
    from {
        transform: scale(1.06);
    }
    to {
        transform: scale(1.16);
    }
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero-video.is-playing video {
    opacity: 1;
}

/* Richer overlay: deeper at top + bottom, lets the middle breathe */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(13, 26, 48, 0.5) 0%,
        rgba(13, 26, 48, 0.12) 38%,
        rgba(13, 26, 48, 0.28) 75%,
        rgba(13, 26, 48, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

/* Eyebrow above the title */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0;
    animation: heroRise 1s ease 0.3s forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: "";
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

.hero-logo {
    display: block;
    width: clamp(340px, 60vw, 520px);
    margin: 0 auto;
    opacity: 0;
    animation: heroRise 1.1s ease 0.45s forwards;
}

.hero-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 30px rgba(0, 0, 0, 0.3));
}

.hero-divider {
    width: 70px;
    height: 1px;
    margin: 28px auto 22px;
    background: rgba(255, 255, 255, 0.45);
    opacity: 0;
    animation: heroRise 1s ease 0.7s forwards;
}

.hero-subtitle {
    font-size: clamp(0.78rem, 2vw, 1rem);
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: heroRise 1s ease 0.8s forwards;
}

.hero-subtitle span {
    margin: 0 8px;
    color: var(--accent);
}

@keyframes heroRise {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.8);
    animation: heroBounce 2.4s infinite ease-in-out;
    transition: color 0.3s ease;
}

.hero-scroll:hover {
    color: var(--white);
}

.hero-scroll svg {
    width: 34px;
    height: 34px;
}

@keyframes heroBounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-eyebrow,
    .hero-title,
    .hero-divider,
    .hero-subtitle {
        opacity: 1;
        animation: none;
    }
    .hero-scroll {
        animation: none;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 560px;
    }
    .hero-logo {
        width: clamp(280px, 78vw, 460px);
    }

    .hero-eyebrow {
        letter-spacing: 3px;
        margin-bottom: 20px;
    }
    .hero-subtitle {
        letter-spacing: 3.5px;
    }
    .hero-scroll svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }
    .hero-logo {
        width: 82vw;
    }
    .hero-eyebrow::before,
    .hero-eyebrow::after {
        width: 18px;
    }
    .hero-subtitle {
        letter-spacing: 2.5px;
        font-size: 0.7rem;
    }
    .hero-scroll {
        bottom: 26px;
    }
}

/* ============================================================
   PAGE baner
   ============================================================ */
.res-hero {
    position: relative;
    height: 78vh;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #0d2a3a;
}

.res-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #0d2a3a url("/images/home/cottages.jpg") center/cover no-repeat;
    transform: scale(1.06);
    animation: heroZoom 20s ease-out forwards;
}
.res-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(13, 26, 48, 0.72) 0%,
        rgba(13, 26, 48, 0.48) 45%,
        rgba(13, 26, 48, 0.8) 100%
    );
}

.res-hero-content {
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

/* Lifestyle hero video */
.res-hero .res-hero-bg {
    background: #0d2a3a url("/images/home/marina-bg.jpg") center/cover no-repeat;
}

.res-hero-video {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.res-hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    min-width: 100%;
    height: 56.25vw;
    min-height: 100%;
    transform: translate(-50%, -50%) scale(1.12);
    opacity: 0;
    transition: opacity 1.4s ease;
}

.res-hero-video.is-playing iframe {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
}

.res-hero-title {
    font-family: var(--font-serif);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: clamp(2rem, 7vw, 4rem);
    line-height: 1.08;
    color: var(--white);
    margin-top: 18px;
    text-wrap: balance;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 560px) {
    .res-hero-title {
        font-size: 3rem;
        letter-spacing: 0.04em;
        line-height: 1.12;
        margin-top: 12px;
    }
}
/* ============================================================
   MARINA RESERVATIONS  (no hero)
   ============================================================ */
.marina-res {
    background: var(--sand);
    /* extra top padding so the fixed header clears the content */
    padding: 170px 24px 120px;
}

.marina-res-inner {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 64px 60px 60px;
    box-shadow: 0 30px 60px rgba(20, 38, 74, 0.08);
}

.marina-res-head {
    text-align: center;
    margin-bottom: 44px;
}

.marina-res-head .sec-rule {
    margin: 20px auto 24px;
}

.marina-res-form .res-field {
    margin-bottom: 22px;
}

.res-field .req {
    color: var(--accent);
}

/* Textarea matches the inputs */
.res-field textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.res-field textarea:focus {
    outline: none;
    border-color: var(--accent);
}

/* Date inputs */
.res-field input[type="date"] {
    font-family: var(--font-sans);
    color: var(--ink);
}

.marina-res-note {
    font-family: var(--font-sans);
    font-size: 0.74rem;
    font-style: italic;
    color: var(--slate);
    margin: 6px 0 26px;
}

.marina-res-form .res-form-btn {
    width: 100%;
}

@media (max-width: 768px) {
    .marina-res {
        padding: 130px 20px 85px;
    }
    .marina-res-inner {
        padding: 44px 28px 40px;
    }
}

@media (max-width: 560px) {
    .marina-res-form .res-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ===========================================================================================
============================= new styles ======================================================
============================================================================================== */
/* ---------- scope ---------- */
.b1 {
    --b1-maxw: 1200px;
    --b1-gutter: clamp(1.15rem, 4.5vw, 3.5rem);
    --b1-sec: clamp(3.5rem, 7vw, 6rem);
    font-family: var(--font-sans);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.b1 *,
.b1 *::before,
.b1 *::after {
    box-sizing: border-box;
}

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

.b1-wrap {
    width: 100%;
    max-width: var(--b1-maxw);
    margin-inline: auto;
    padding-inline: var(--b1-gutter);
}

/* ---------- type ---------- */
.b1-eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin: 0 0 1rem;
}

.b1-h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    line-height: 1.08;
    color: var(--ink);
    margin: 0;
}

.b1--dark .b1-h2 {
    color: #fff;
}

.b1-body {
    font-size: clamp(1rem, 1.15vw, 1.12rem);
    line-height: 1.72;
    color: var(--slate);
    margin: 1.2rem 0 0;
}

.b1--dark .b1-body {
    color: rgba(255, 255, 255, 0.78);
}

.b1-rule {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 1.3rem 0;
}

.b2-rule {
    display: block;
    width: 100%; /* match the visual width you want */
    height: auto;
    margin: 22px 0; /* keep whatever vertical rhythm you had */
}

.b1-rule--c {
    margin-inline: auto;
}

/* ---------- buttons ---------- */
.b1-btn,
.b1-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 2.2rem;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    transition:
        background 0.35s,
        color 0.35s,
        border-color 0.35s,
        transform 0.35s;
}

.b1-btn {
    background: var(--navy);
    color: #fff;
    border: 1px solid var(--navy);
}

.b1-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.b1-ghost {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--navy);
}

.b1-ghost:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
}

.b1--dark .b1-btn {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
}

.b1--dark .b1-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.b1--dark .b1-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.b1--dark .b1-ghost:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* ---------- arrow link ---------- */
.b1-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1.6rem;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
}

.b1--dark .b1-link {
    color: #fff;
}

.b1-arw {
    width: 36px;
    height: 1px;
    background: var(--accent);
    position: relative;
    transition: width 0.35s;
}

.b1-arw::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 1px solid var(--accent);
    border-right: 1px solid var(--accent);
    transform: translateY(-50%) rotate(45deg);
}

.b1-link:hover .b1-arw {
    width: 52px;
}

/* ---------- coral texture (navy sections) ---------- */
.b1-coraltex {
    position: absolute;
    inset: 0;
    background-image: url("{{ asset('images/coral-patterns/BRI Coral Pattern_White_RGB.png') }}");
    background-size: clamp(260px, 30vw, 380px);
    background-repeat: repeat;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

/* ---------- reveal ---------- */
.b1-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.b1-reveal.is-in {
    opacity: 1;
    transform: none;
}

.b1-reveal.d1 {
    transition-delay: 0.1s;
}

.b1-reveal.d2 {
    transition-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
    .b1-reveal,
    .b1-btn,
    .b1-ghost,
    .b1-arw {
        transition: none;
    }

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

/* =========================================================
                                                                                                                       1 · MANIFESTO  (white · compact · coral square block)
                                                                                                                    ========================================================= */
.b1-intro {
    background: #fff;
    padding-block: clamp(3rem, 6vw, 5rem);
}

.b1-intro__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.b1-intro__statement {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.24;
    color: var(--navy);
    margin: 0.4rem 0 0;
}

.b1-intro__statement em {
    font-style: italic;
    color: var(--accent);
}

.b1-intro__flourish {
    display: block;
    width: 80px;
    height: 1px;
    background: var(--line);
    margin: 1.8rem 0;
    position: relative;
}

.home-spacing {
    display: block;
    width: 80px;
    height: 1px;
    margin: 1rem 0;
    position: relative;
}

.b1-intro__flourish::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 50%;
    width: 7px;
    height: 7px;
    background: var(--accent);
    transform: translate(-50%, -50%) rotate(45deg);
}

/* navy coral square with white logo centred */
/* image square with white logo centred */
.b1-square {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
    background: var(--navy);
}

.b1-square__img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.b1-square::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(18, 32, 57, 0.5);
}

.b1-square__logo {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 52%;
    height: auto;
    z-index: 2;
}
.b1-intro__framed {
    position: relative; /* belt & braces */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 4vw, 3.5rem);
    max-width: 62rem;
    margin-inline: auto;
    text-align: center;
}

.b1-intro__inner {
    position: relative;
    z-index: 1;
}

.b1-intro__inner::before {
    content: "";
    position: absolute;
    inset: -6rem -12rem;
    background: radial-gradient(
        ellipse 60% 55% at 50% 45%,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.85) 35%,
        rgba(255, 255, 255, 0.5) 62%,
        rgba(255, 255, 255, 0) 85%
    );
    filter: blur(28px);
    z-index: -1;
    pointer-events: none;
}

.b1-intro__inner .b1-intro__statement {
    margin-inline: auto;
    max-width: 34ch;
    text-wrap: balance;
}

.b1-intro__inner .b1-btn {
    margin-top: 2.25rem;
}

/* frames flank the text, don't shrink away */
.b1-intro__framed .quote-frame-1 {
    position: static; /* ← the actual fix */
    inset: auto; /* clear any left/right/top from the team rules */
    flex: 0 0 auto;
    align-self: center;
    width: clamp(50px, 6vw, 70px);
    height: auto;
    transform: none; /* if --r was mirrored via transform, re-add below */
}

.b1-intro__framed .quote-frame-1--r {
    transform: scaleX(-1);
}
/* stack on mobile — frames go above/below, or hide them */
@media (max-width: 720px) {
    .b1-intro__framed {
        flex-direction: column;
        gap: 1.5rem;
    }
    .b1-intro__framed .quote-frame-1 {
        max-width: 120px;
    }
}
/* =========================================================
                                                                                                                       2 · RESORT  (navy · single image + text)
                                                                                                                    ========================================================= */
.b1-resort {
    position: relative;
    background: var(--navy);
    color: #fff;
    padding-block: var(--b1-sec);
    overflow: hidden;
}

.b1-split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.b1-split2 {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0px;
    align-items: center;
}

.b1-split--rev .b1-split__media {
    order: 2;
}

.team-first-fix {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
}

.team-first-fix-img {
    width: 100% !important;
    max-width: clamp(300px, 30vw, 440px) !important;
    height: auto !important;
    margin: 0 !important;
}

@media (max-width: 720px) {
    .team-first-fix-img {
        max-width: clamp(200px, 55vw, 300px) !important;
    }
}
/* single image with optional centred logo */
.b1-shot {
    position: relative;
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
}

.b1-shot::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.b1-shot img {
    width: 100%;
    height: clamp(320px, 42vw, 500px);
    object-fit: cover;
    transition: transform 1.1s ease;
}

.b1-shot--scrim::after {
    content: "";
    position: absolute;
    inset: 0;
}

.b1-shot .b1-shot__logo {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 500px;
    max-width: 50%;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

/* =========================================================
                                                                                                                       3 · RESIDENCES  (white · 3 cards)
                                                                                                                    ========================================================= */
.b1-res {
    background: #fff;
    padding-block: var(--b1-sec);
}

.b1-res__head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem 2rem;
    margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

.b1-res__head-r {
    max-width: 420px;
}

.b1-res__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 1.8vw, 1.5rem);
}

.b1-card {
    position: relative;
    display: block;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 4 / 5;
}

.b1-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s ease;
}

.b1-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(18, 32, 57, 0.78),
        rgba(18, 32, 57, 0.04) 55%
    );
}

.b1-card:hover img {
    transform: scale(1.06);
}

.b1-card__label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.3rem;
    z-index: 2;
    text-align: center;
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 1.8vw, 1.55rem);
    color: #fff;
}

.b1-card__label::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: var(--accent);
    margin: 0.55rem auto 0;
    transition: width 0.4s;
}

.b1-card:hover .b1-card__label::after {
    width: 54px;
}

/* =========================================================
                                                                                                                       4 · MARINA (navy)  ·  5 · ISLAND (white)  — features
                                                                                                                    ========================================================= */
.b1-marina {
    position: relative;
    background: var(--navy-deep);
    color: #fff;
    padding-block: var(--b1-sec);
    overflow: hidden;
}

.b1-island {
    background: #fff;
    padding-block: var(--b1-sec);
}

/* =========================================================
                                                                                                                       6 · BRAND PILLARS  (bg.png background band)
                                                                                                                    ========================================================= */
.b1-pillars {
    position: relative;
    padding-block: clamp(4rem, 8vw, 7rem);
    background:
        linear-gradient(rgba(18, 32, 57, 0.62), rgba(18, 32, 57, 0.68)),
        url("../images/home/bg.png") center / cover no-repeat;
    background-color: var(--navy-deep);
    color: #fff;
}
@media (max-width: 720px) {
    .b1-pillars {
        background-image:
            linear-gradient(rgba(18, 32, 57, 0.62), rgba(18, 32, 57, 0.68)),
            url("../images/home/bg2.png");
    }
}

.b1-pillars__head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto clamp(2.4rem, 4vw, 3.4rem);
}
.b1-pillars__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(0.8rem, 1.6vw, 1.4rem);
}

.b1-pillar {
    text-align: center;
    padding: 2rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 4px;
    background: rgba(18, 32, 57, 0.25);
    transition:
        background 0.4s,
        border-color 0.4s,
        transform 0.4s;
}

.b1-pillar:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(179, 137, 92, 0.65);
    transform: translateY(-4px);
}

.b1-pillar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 1.1rem;
    font-size: 1.55rem;
    color: var(--accent);
}

.b1-pillar__icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.b1-pillar__label {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.35;
    color: #fff;
    margin: 0;
    text-wrap: pretty;
}
/* =========================================================
                   7 · TESTIMONIALS  (white · compact grid)
                ========================================================= */
.b1-tst {
    background: #fff;
    padding-block: clamp(3rem, 5vw, 4.5rem);
}

.b1-tst__head {
    text-align: center;
    margin-bottom: clamp(1.6rem, 3vw, 2.2rem);
}

.b1-tst__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.8rem, 1.4vw, 1.2rem);
    max-width: 1200px;
    margin-inline: auto;
}

.b1-tst__card {
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: clamp(1.2rem, 2vw, 1.6rem);
    display: flex;
    flex-direction: column;
}

.b1-tst__stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.8rem;
    color: var(--accent);
}

.b1-tst__stars svg {
    width: 16px;
    height: 16px;
}

.b1-tst__quote {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.5;
    color: var(--navy);
    margin: 0 0 1.1rem;
    flex: 1;
}

.b1-tst__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--line);
}

.b1-tst__avatar {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: #fff;
    font-family: var(--font-serif);
    font-size: 0.92rem;
}

.b1-tst__name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--ink);
    margin: 0;
}

.b1-tst__date {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--slate);
    margin: 0.15rem 0 0;
}

.b1-tst__cta {
    text-align: center;
    margin-top: clamp(1.6rem, 3vw, 2.2rem);
}

/* =========================================================
                                                                                                                       8 · THE KNOWLEDGE  (navy · journal)
                                                                                                                    ========================================================= */
.b1-journal {
    position: relative;
    background: var(--navy);
    color: #fff;
    padding-block: var(--b1-sec);
    overflow: hidden;
}

.b1-journal__head {
    text-align: center;
    margin-bottom: clamp(2.2rem, 4vw, 3rem);
}

.b1-journal__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.3rem, 2.4vw, 2.2rem);
}

.b1-post {
    display: block;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    overflow: hidden;
    transition:
        transform 0.5s,
        border-color 0.5s;
}

.b1-post:hover {
    transform: translateY(-6px);
    border-color: rgba(179, 137, 92, 0.6);
}

.b1-post__figure {
    position: relative;
    margin: 0;
    overflow: hidden;
}

.b1-post__figure img {
    width: 100%;
    height: clamp(220px, 26vw, 320px);
    object-fit: cover;
    transition: transform 1.1s ease;
}

.b1-post:hover .b1-post__figure img {
    transform: scale(1.05);
}

.b1-post__date {
    position: absolute;
    left: 1.1rem;
    top: 1.1rem;
    z-index: 2;
    background: rgba(18, 32, 57, 0.9);
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.5rem 0.9rem;
    border-radius: 2px;
}

.b1-post__body {
    padding: clamp(1.5rem, 2.4vw, 2.1rem);
}

.b1-post__title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.3rem, 1.9vw, 1.6rem);
    line-height: 1.3;
    color: #fff;
    margin: 0 0 1.2rem;
}

.b1-post .b1-link {
    margin-top: 0;
    color: #fff;
}

.b1-journal__cta {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: clamp(2rem, 3.5vw, 2.8rem);
}

/* =========================================================
   9 · INSTAGRAM  (navy)
   ========================================================= */
.b1-ig {
    position: relative;
    background: var(--navy);
    color: #fff;
    padding-block: var(--b1-sec);
    overflow: hidden;
}

.b1-ig__head {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: clamp(2rem, 3.5vw, 2.8rem);
}

/* fallbacks in case .b1--dark doesn't already flip these */
.b1-ig .b1-eyebrow {
    color: var(--accent);
}

.b1-ig .b1-h2 {
    color: #fff;
}

.b1-ig .b1-rule--c {
    background: rgba(255, 255, 255, 0.35);
}

.b1-ig__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(0.5rem, 1vw, 0.9rem);
}

.b1-ig__tile {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: border-color 0.5s;
}

.b1-ig__tile:hover {
    border-color: rgba(179, 137, 92, 0.6);
}

.b1-ig__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.b1-ig__tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(18, 32, 57, 0);
    transition: background 0.4s;
}

.b1-ig__tile:hover img {
    transform: scale(1.08);
}

.b1-ig__tile:hover::after {
    background: rgba(18, 32, 57, 0.55);
}

.b1-ig__ico {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transform: scale(0.8);
    transition:
        opacity 0.4s,
        transform 0.4s;
}

.b1-ig__ico svg {
    width: 28px;
    height: 28px;
}

.b1-ig__tile:hover .b1-ig__ico {
    opacity: 1;
    transform: scale(1);
}

.b1-ig__social {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: clamp(2rem, 3.5vw, 2.8rem);
}

.b1-ig__social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    transition:
        background 0.4s,
        color 0.4s,
        border-color 0.4s,
        transform 0.4s;
}

.b1-ig__social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--navy);
    transform: translateY(-3px);
}

.b1-ig__social svg {
    width: 20px;
    height: 20px;
}
/* =========================================================
                                                                                                                       RESPONSIVE  ·  mobile-first care
                                                                                                                    ========================================================= */

@media (max-width: 900px) {
    .b1-intro__grid,
    .b1-split,
    .b1-res__grid {
        grid-template-columns: 1fr;
    }

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

    .b1-split--rev .b1-split__media {
        order: 0;
    }

    .b1-intro__grid {
        gap: 2rem;
    }

    .b1-square {
        max-width: 340px;
        margin-inline: auto;
        width: 100%;
    }

    .b1-pillars__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .b1-ig__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .b1-shot img {
        height: clamp(280px, 60vw, 420px);
    }
}

@media (max-width: 560px) {
    .b1 {
        --b1-sec: clamp(3rem, 12vw, 4rem);
    }

    .b1-res__grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .b1-card {
        aspect-ratio: 16 / 11;
    }

    .b1-res__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .b1-btn,
    .b1-ghost {
        width: 100%;
    }

    .b1-intro__flourish {
        margin: 1.4rem 0;
    }

    .b1-shot__logo {
        width: min(60%, 200px);
    }

    .b1-tst__grid {
        grid-template-columns: 1fr;
    }
}
/* ---- section shells ---- */
.ls-sec-1 {
    padding-block: var(--b1-sec);
}

.ls-navy-1 {
    position: relative;
    background: var(--navy-deep);
    color: #fff;
    overflow: hidden;
}

.ls-navy-1--bg {
    position: relative;
    padding-block: clamp(4rem, 8vw, 7rem);
    background:
        linear-gradient(rgba(18, 32, 57, 0.72), rgba(18, 32, 57, 0.78)),
        url("../images/home/bg.png") center / cover no-repeat;
    background-color: var(--navy-deep);
    color: #fff;
}
@media (max-width: 720px) {
    .ls-navy-1--bg {
        background-image:
            linear-gradient(rgba(18, 32, 57, 0.72), rgba(18, 32, 57, 0.78)),
            url("../images/home/bg2.png");
    }
}

.ls-white-1 {
    background: #fff;
}

/* ---------- light section patterns ---------- */
.ls-white-1--pattern,
.ls-white-1--pattern2 {
    position: relative;
    isolation: isolate; /* section becomes its own stacking context */
}

.ls-white-1--pattern::after,
.ls-white-1--pattern2::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: auto; /* aspect-ratio drives the height, so nothing clips */
    background-size: 100% auto;
    background-repeat: no-repeat;
    filter: brightness(0.8);
    pointer-events: none;
    z-index: -1; /* behind all content, above the section bg */
}

/* bottom */
.ls-white-1--pattern::after {
    bottom: 0;
    aspect-ratio: 16 / 5; /* set to bg-bottom-pattern.svg's viewBox ratio */
    background-image: url("../icons/bg-bottom-pattern.svg");
    background-position: bottom center;
}

/* top */
.ls-white-1--pattern2::after {
    top: 0;
    aspect-ratio: 16 / 4; /* set to bg-top-pattern.svg's viewBox ratio */
    background-image: url("../icons/bg-top-pattern.svg");
    background-position: top center;
}

/* ---------- dark section patterns ---------- */
.ls-dark-1--pattern,
.ls-dark-1--pattern2,
.ls-dark-1--pattern3 {
    position: relative;
    isolation: isolate;
}

.ls-dark-1--pattern::after,
.ls-dark-1--pattern2::after,
.ls-dark-1--pattern3::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: auto;
    background-size: 100% auto;
    background-repeat: no-repeat;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

/* bottom */
.ls-dark-1--pattern::after {
    bottom: 0;
    aspect-ratio: 16 / 5; /* set to bg-bottom-blue.svg's viewBox ratio */
    background-image: url("../icons/bg-bottom-blue.svg");
    background-position: bottom center;
}

/* top */
.ls-dark-1--pattern2::after {
    top: 0;
    aspect-ratio: 16 / 4; /* set to design-top-blue.svg's viewBox ratio */
    background-image: url("../icons/design-top-blue.svg");
    background-position: top center;
}

/* bottom coral */
.ls-dark-1--pattern3::after {
    bottom: 0;
    aspect-ratio: 16 / 4; /* set to blue-coral1.svg's viewBox ratio */
    background-image: url("../icons/blue-coral1.svg");
    background-position: bottom center;
}

/* keep content above the pattern */
.ls-dark-1--pattern > .b1-wrap,
.ls-dark-1--pattern2 > .b1-wrap,
.ls-dark-1--pattern3 > .b1-wrap {
    position: relative;
    z-index: 1;
}

/* mobile — scale the artwork up beyond the section width */
@media (max-width: 720px) {
    /* dark */
    .ls-dark-1--pattern::after,
    .ls-dark-1--pattern2::after,
    .ls-dark-1--pattern3::after {
        background-size: 300% auto;
    }

    .ls-dark-1--pattern::after {
        aspect-ratio: 5.33 / 5;
    }

    .ls-dark-1--pattern2::after,
    .ls-dark-1--pattern3::after {
        aspect-ratio: 5.33 / 4;
    }

    /* light — scaled a little harder */
    .ls-white-1--pattern::after,
    .ls-white-1--pattern2::after {
        background-size: 400% auto;
    }

    .ls-white-1--pattern::after {
        aspect-ratio: 4 / 5;
    }

    .ls-white-1--pattern2::after {
        aspect-ratio: 4 / 4;
    }
}
/* top — asset is pre-baked at ~70% alpha, so bump to match the bottom */
.ls-dark-1--pattern2::after {
    opacity: 0.71;
}
.ls-narrow-1 {
    max-width: 850px;
    margin-inline: auto;
    text-align: center;
}
.team-heading-width {
    max-width: 850px;
}

.ls-narrow-1 em,
.feel-lede-1 em {
    font-style: italic;
    color: var(--accent);
}

.ls-head-1 {
    text-align: center;
    margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

/* ---- anchor strip ---- */
.ls-anchors-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.9rem, 3vw, 2.4rem);
    padding: 1.05rem var(--b1-gutter);
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.ls-anchors-1 a {
    position: relative;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    padding-block: 0.3rem;
}

.ls-anchors-1 a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.35s;
}

.ls-anchors-1 a:hover::after,
.ls-anchors-1 a:focus-visible::after,
.ls-anchors-1 a.is-active::after {
    width: 100%;
}

.ls-anchors-1 a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 2px;
}

/* ---- mobile: one scrollable line ---- */
@media (max-width: 720px) {
    .ls-anchors-1 {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 1.6rem;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
        scroll-padding-inline: var(--b1-gutter);
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;

        /* 1 + 2: white covers, pinned to the content, hide the shadow at each true end
           3 + 4: shadows, pinned to the element, revealed as soon as you scroll away */
        background:
            linear-gradient(to right, #fff 40%, rgba(255, 255, 255, 0)) left
                center,
            linear-gradient(to left, #fff 40%, rgba(255, 255, 255, 0)) right
                center,
            radial-gradient(
                    farthest-side at 0 50%,
                    rgba(20, 40, 60, 0.16),
                    rgba(20, 40, 60, 0)
                )
                left center,
            radial-gradient(
                    farthest-side at 100% 50%,
                    rgba(20, 40, 60, 0.16),
                    rgba(20, 40, 60, 0)
                )
                right center,
            #fff;
        background-repeat: no-repeat;
        background-size:
            2.4rem 100%,
            2.4rem 100%,
            1rem 100%,
            1rem 100%;
        background-attachment: local, local, scroll, scroll;
    }

    .ls-anchors-1::-webkit-scrollbar {
        display: none;
    }

    .ls-anchors-1 a {
        flex: 0 0 auto;
        scroll-snap-align: start;
        letter-spacing: 0.12em;
        padding-block: 0.6rem;
    }

    .ls-anchors-1 a:last-child {
        padding-inline-end: var(--b1-gutter);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ls-anchors-1 a::after {
        transition: none;
    }
}
/* ---- mood cards ---- */
.moods-grid-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 1.8vw, 1.5rem);
}

.mood-card-1 {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    text-decoration: none;
    aspect-ratio: 3 / 4;
}

.mood-card-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s ease;
}

.mood-card-1::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(18, 32, 57, 0.88),
        rgba(18, 32, 57, 0.12) 62%
    );
}

.mood-card-1:hover img {
    transform: scale(1.06);
}

.mood-body-1 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: clamp(1.3rem, 2vw, 1.8rem);
    text-align: center;
}

.mood-title-1 {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    color: #fff;
    margin-bottom: 0.5rem;
}

.mood-title-1::after {
    content: "";
    display: block;
    width: 34px;
    height: 2px;
    background: var(--accent);
    margin: 0.6rem auto 0.8rem;
    transition: width 0.4s;
}

.mood-card-1:hover .mood-title-1::after {
    width: 58px;
}

.mood-sub-1 {
    display: block;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.84);
    max-width: 26ch;
    margin-inline: auto;
}

/* ---- feel amenity lists ---- */
.feel-lede-1 {
    font-size: clamp(1.05rem, 1.3vw, 1.18rem);
    line-height: 1.75;
    margin-top: 1.2rem;
}

.feel-lists-1 {
    margin-top: 1.8rem;
}

.feel-list-1 {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 2;
    column-gap: 2rem;
}

.feel-list-1 li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    font-size: 1rem;
    line-height: 1.45;
    color: var(--slate);
    break-inside: avoid;
}

.feel-list-1 li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    transform: none;
    top: 0.55em;
    background: var(--accent);
    transform: rotate(45deg);
}

.b1--dark .feel-list-1 li {
    color: rgba(255, 255, 255, 0.82);
}

.feel-soon-1 {
    margin: 1.8rem 0 0.9rem;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
}

.feel-list-1--soon li {
    opacity: 0.82;
}

/* ---- village band ---- */
.village-1 {
    position: relative;
    text-align: center;
    padding-block: clamp(4.5rem, 9vw, 8rem);
    background:
        linear-gradient(rgba(18, 32, 57, 0.78), rgba(18, 32, 57, 0.86)),
        url("/images/village/Side-View-Fam-3.webp") center / cover no-repeat;
    background-color: var(--navy-deep);
    color: #fff;
}

.village-inner-1 {
    max-width: 640px;
    margin-inline: auto;
}

/* ---- cross links ---- */
.cross-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2vw, 1.6rem);
}

.cross-card-1 {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    text-decoration: none;
    min-height: clamp(300px, 36vw, 400px);
}

.cross-card-1 img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s ease;
}

.cross-card-1::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(18, 32, 57, 0.82),
        rgba(18, 32, 57, 0.22)
    );
}

.cross-card-1:hover img {
    transform: scale(1.05);
}

.cross-body-1 {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.6rem, 2.6vw, 2.4rem);
}

.cross-eyebrow-1 {
    font-size: 0.74rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

.cross-title-1 {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    line-height: 1.16;
    color: #fff;
    margin: 0 0 1.1rem;
}

.cross-link-1 {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
}

/* ---- contact form ---- */
.contact-1 {
    max-width: 690px;
    margin-inline: auto;
    text-align: center;
}

.form-1 {
    margin-top: 2rem;
    text-align: left;
}

.field-row-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.field-1 {
    margin-bottom: 1.1rem;
}

.field-1 label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: 0.5rem;
}

.field-1 input {
    width: 100%;
    height: 52px;
    padding: 0 1rem;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: #fff;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--ink);
    transition: border-color 0.3s;
}

.field-1 input:focus {
    outline: none;
    border-color: var(--accent);
}

.form-success-1 {
    background: rgba(179, 137, 92, 0.12);
    border: 1px solid var(--accent);
    color: var(--navy);
    padding: 0.9rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.form-error-1 {
    color: #b3261e;
    font-size: 0.85rem;
    margin: -0.4rem 0 1rem;
}

.form-btn-1 {
    margin-top: 0.5rem;
    width: 100%;
}

/* ---- village gallery modal ---- */
.vmodal-1 {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.vmodal-1.is-open {
    display: flex;
}

.vmodal-backdrop-1 {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 33, 0.93);
}

.vmodal-close-1 {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    z-index: 3;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #fff;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    transition:
        background 0.3s,
        border-color 0.3s;
}

.vmodal-close-1:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.vmodal-stage-1 {
    position: relative;
    z-index: 2;
    width: min(92vw, 1100px);
    overflow: hidden;
    border-radius: 4px;
}

.vmodal-track-1 {
    display: flex;
    transition: transform 0.5s ease;
}

.vslide-1 {
    flex: 0 0 100%;
    margin: 0;
}

.vslide-1 img {
    width: 100%;
    height: min(74vh, 720px);
    object-fit: cover;
    display: block;
}

.vmodal-nav-1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    cursor: pointer;
    transition:
        background 0.3s,
        border-color 0.3s;
}

.vmodal-nav-1:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.vmodal-nav-1::before {
    content: "";
    width: 11px;
    height: 11px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.vmodal-nav-prev-1 {
    left: 1.2rem;
}

.vmodal-nav-prev-1::before {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.vmodal-nav-next-1 {
    right: 1.2rem;
}

.vmodal-nav-next-1::before {
    transform: rotate(45deg);
    margin-right: 4px;
}

.vmodal-count-1 {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

/* ---- responsive ---- */
@media (max-width: 900px) {
    .moods-grid-1,
    .cross-1 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .field-row-1 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .feel-list-1 {
        columns: 1;
    }

    .vmodal-nav-1 {
        width: 42px;
        height: 42px;
    }
}

/* ---- coordinates + spec band ---- */
.coords-1 {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(2.4rem, 4vw, 3.4rem);
}

.coords-anchor-1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
    color: var(--accent);
}

.coords-anchor-1 img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.specs-1 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(0.8rem, 1.6vw, 1.4rem);
}

.spec-1 {
    text-align: center;
    padding: clamp(1.6rem, 2.4vw, 2.2rem) 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 4px;
    background: rgba(18, 32, 57, 0.25);
    transition:
        border-color 0.4s,
        transform 0.4s;
}

.spec-1:hover {
    border-color: rgba(179, 137, 92, 0.6);
    transform: translateY(-4px);
}

.spec-value-1 {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1;
    color: #fff;
    margin: 0;
}

.spec-label-1 {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
    margin: 0.9rem 0 0.6rem;
}

.spec-sub-1 {
    font-size: 0.86rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}

/* ---- feel subhead (services label above list) ---- */
.feel-subhead-1 {
    margin: 1.8rem 0 0.9rem;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--navy);
}

.b1--dark .feel-subhead-1 {
    color: #fff;
}

/* ---- rental & ownership cards ---- */
.own-grid-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.3rem, 2.4vw, 2.2rem);
}

.own-card-1 {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.own-figure-1 {
    margin: 0;
    overflow: hidden;
}

.own-figure-1 img {
    width: 100%;
    height: clamp(240px, 30vw, 340px);
    object-fit: cover;
    transition: transform 1.1s ease;
}

.own-card-1:hover .own-figure-1 img {
    transform: scale(1.05);
}

.own-body-1 {
    padding: clamp(1.6rem, 2.6vw, 2.4rem);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.own-title-1 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.4rem, 2vw, 1.7rem);
    line-height: 1.2;
    color: var(--navy);
    margin: 0 0 1rem;
}

.own-body-1 .b1-link {
    margin-top: auto;
    padding-top: 1.4rem;
}

/* ---- residences cross-link band ---- */
.mres-1 {
    position: relative;
    text-align: center;
    padding-block: clamp(4.5rem, 9vw, 8rem);
    background:
        linear-gradient(rgba(18, 32, 57, 0.74), rgba(18, 32, 57, 0.84)),
        url("../images/home/cottages.jpg") center / cover no-repeat;
    background-color: var(--navy-deep);
    color: #fff;
}

.mres-inner-1 {
    max-width: 680px;
    margin-inline: auto;
}

/* ---- responsive ---- */
@media (max-width: 900px) {
    .specs-1 {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 560px) {
    .specs-1 {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .spec-1 {
        display: grid;
        grid-template-columns: 5.4rem 1fr;
        column-gap: 1.1rem;
        align-items: center;
        text-align: left;
        padding: 1.2rem 1.3rem;
    }

    .spec-value-1 {
        grid-row: 1 / span 2;
        font-size: 1.5rem;
        line-height: 1.1;
        color: var(--accent);
        overflow-wrap: anywhere;
    }

    .spec-label-1 {
        align-self: end;
        font-size: 0.68rem;
        letter-spacing: 0.14em;
        color: #fff;
        margin: 0 0 0.2rem;
    }

    .spec-sub-1 {
        align-self: start;
        font-size: 0.83rem;
        line-height: 1.45;
        margin: 0;
    }
}

/* ---- opening hours block ---- */
.hours-1 {
    margin-top: 1.8rem;
    border-left: 2px solid var(--accent);
    padding-left: 1.2rem;
}

.hours-title-1 {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
    margin: 0 0 0.7rem;
}

.hours-1 p {
    display: flex;
    justify-content: space-between;
    gap: 1.2rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--slate);
    margin: 0 0 0.4rem;
}

.hours-1 p span {
    font-weight: 600;
    color: var(--ink);
}

.b1--dark .hours-1 p {
    color: rgba(255, 255, 255, 0.8);
}

.b1--dark .hours-1 p span {
    color: #fff;
}

.fineprint-1 {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--slate);
    margin-top: 1.4rem;
}

.b1--dark .fineprint-1 {
    color: rgba(255, 255, 255, 0.7);
}

/* ---- action buttons row ---- */
.actions-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.actions-1 .b1-btn,
.actions-1 .b1-ghost {
    min-height: 50px;
    padding: 0 1.9rem;
}

/* ---- residences cross-link band ---- */
.mres-1 {
    position: relative;
    text-align: center;
    padding-block: clamp(4.5rem, 9vw, 8rem);
    background:
        linear-gradient(rgba(18, 32, 57, 0.74), rgba(18, 32, 57, 0.84)),
        url("../images/home/inspired2.jpg") center / cover no-repeat;
    background-color: var(--navy-deep);
    color: #fff;
}

.mres-inner-1 {
    max-width: 680px;
    margin-inline: auto;
}

@media (max-width: 560px) {
    .actions-1 .b1-btn,
    .actions-1 .b1-ghost {
        width: 100%;
    }
}

/* ---- member privileges (tabs) ---- */
.priv-tabs-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem clamp(1.2rem, 2.6vw, 2rem);
    border-bottom: 1px solid var(--line);
    margin-bottom: clamp(2.2rem, 3.5vw, 3.2rem);
}

.priv-tab-1 {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--slate);
    padding: 0 0 1rem;
    transition: color 0.3s;
}

.priv-tab-1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.35s;
}

.priv-tab-1:hover {
    color: var(--navy);
}

.priv-tab-1.is-active {
    color: var(--navy);
}

.priv-tab-1.is-active::after {
    width: 100%;
}

.priv-grid-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.priv-figure-1 {
    position: relative;
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
}

.priv-figure-1 img {
    width: 100%;
    height: clamp(320px, 42vw, 480px);
    object-fit: cover;
}

.priv-panel-title-1 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.15;
    color: var(--navy);
    margin: 0 0 1.2rem;
}

/* ---- residences cross-link band ---- */
.mres-1 {
    position: relative;
    text-align: center;
    padding-block: clamp(4.5rem, 9vw, 8rem);
    background:
        linear-gradient(rgba(18, 32, 57, 0.74), rgba(18, 32, 57, 0.84)),
        url("/images/home/lifestyle-active-img.jpg") center / cover no-repeat;
    background-color: var(--navy-deep);
    color: #fff;
}

.mres-inner-1 {
    max-width: 680px;
    margin-inline: auto;
}

@media (max-width: 900px) {
    .priv-grid-1 {
        grid-template-columns: 1fr;
    }
}
.priv-figure-1 img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.priv-figure-1 img[hidden] {
    display: none;
}

.priv-figure-1 {
    aspect-ratio: 4 / 3;
    height: auto;
}
/* ---- highlight cards ---- */
.hi-grid-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.6rem);
}

.hi-card-1 {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    transition:
        transform 0.5s,
        box-shadow 0.5s;
}

.b1--dark .hi-card-1 {
    background: var(--navy);
    border-color: rgba(255, 255, 255, 0.12);
}

.hi-card-1 img {
    width: 100%;
    height: clamp(220px, 26vw, 300px);
    object-fit: cover;
    transition: transform 1.1s ease;
}

.hi-card-body-1 {
    padding: clamp(1.4rem, 2.2vw, 1.9rem);
}

.hi-card-title-1 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    line-height: 1.2;
    color: var(--navy);
    margin: 0 0 0.7rem;
}

.b1--dark .hi-card-title-1 {
    color: #fff;
}

.hi-card-text-1 {
    font-size: 1rem;
    line-height: 1.55;
    color: var(--slate);
    margin: 0;
}

.b1--dark .hi-card-text-1 {
    color: rgba(255, 255, 255, 0.78);
}

/* ---- marine video ---- */
.hi-video-1 {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.hi-video-1 video {
    display: block;
    width: 100%;
    height: clamp(320px, 42vw, 500px);
    object-fit: cover;
}

/* ---- getting here: steps ---- */
.hi-steps-1 {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.hi-step-1 {
    display: flex;
    gap: 1.3rem;
    align-items: flex-start;
}

.hi-step-num-1 {
    flex: 0 0 auto;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    line-height: 1;
    color: var(--accent);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    border-radius: 50%;
    text-align: center;
    padding-bottom: 0.15em; /* optical nudge for serif figures */
    box-sizing: border-box;
}

.hi-step-title-1 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--navy);
    margin: 0.2rem 0 0.5rem;
}

.b1--dark .hi-step-title-1 {
    color: #fff;
}

.hi-map-1 {
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
}

.hi-map-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- flight times ---- */
.hi-flights-1 {
    margin-top: clamp(2.6rem, 4vw, 3.6rem);
    padding-top: clamp(2.4rem, 4vw, 3.2rem);
    border-top: 1px solid var(--line);
}

.b1--dark .hi-flights-1 {
    border-color: rgba(255, 255, 255, 0.14);
}

.hi-flights-title-1 {
    text-align: center;
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
    margin: 0 0 1.8rem;
}

.hi-flights-grid-1 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(0.8rem, 1.6vw, 1.3rem);
}

.hi-flight-1 {
    text-align: center;
    padding: 1.4rem 0.6rem;
    border: 1px solid var(--line);
    border-radius: 4px;
    transition:
        border-color 0.4s,
        transform 0.4s;
}

.b1--dark .hi-flight-1 {
    border-color: rgba(255, 255, 255, 0.14);
}

.hi-flight-icon-1 {
    display: block;
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

.hi-flight-city-1 {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.b1--dark .hi-flight-city-1 {
    color: #fff;
}

.hi-flight-time-1 {
    display: block;
    font-size: 0.84rem;
    color: var(--slate);
}

.b1--dark .hi-flight-time-1 {
    color: rgba(255, 255, 255, 0.68);
}

/* ---- residences cross-link band ---- */
.mres-1 {
    position: relative;
    text-align: center;
    padding-block: clamp(4.5rem, 9vw, 8rem);
    background:
        linear-gradient(rgba(18, 32, 57, 0.74), rgba(18, 32, 57, 0.84)),
        url("/images/home/villa-03.jpg") center / cover no-repeat;
    background-color: var(--navy-deep);
    color: #fff;
}

.mres-inner-1 {
    max-width: 680px;
    margin-inline: auto;
}

/* getting-here two-column layout — BASE (must come first) */
.hi-getting-grid-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

/* ---- responsive (must come AFTER the base) ---- */
@media (max-width: 900px) {
    .hi-grid-1,
    .hi-getting-grid-1 {
        grid-template-columns: 1fr;
    }

    .hi-getting-grid-1 .hi-steps-1 {
        order: 1;
    }

    .hi-getting-grid-1 .hi-map-1 {
        order: 2;
    }

    .hi-flights-grid-1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 560px) {
    .hi-grid-1 {
        grid-template-columns: 1fr;
    }

    .hi-flights-grid-1 {
        grid-template-columns: 1fr 1fr;
    }
}
/* ---- pull quotes ---- */
.quote-1 {
    max-width: 920px;
    margin: clamp(2.6rem, 5vw, 4rem) auto;
    text-align: center;
    padding-block: 40px;
}

.quote-1::before {
    content: "";
    display: block;
    width: 46px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto 1.6rem;
    position: relative;
}

.quote-1 p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.35rem, 2.4vw, 1.95rem);
    line-height: 1.42;
    color: var(--navy);
    margin: 0 0 1.3rem;
}

.b1--dark .quote-1 p {
    color: #fff;
}

.quote-1 cite {
    display: block;
    font-style: normal;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
}
.milestones-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    margin: clamp(2.5rem, 5vw, 4rem) auto 0;
    max-width: 62rem;
    padding-block: 40px;
}

.milestone-1 {
    text-align: center;
    padding-inline: clamp(0.5rem, 1.5vw, 1.5rem);
    position: relative;
}

/* Vertical divider between columns */
.milestone-1:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 6%;
    height: 62%;
    right: calc(clamp(1.5rem, 4vw, 3.5rem) / -2);
    width: 1px;
    background: var(--line);
}

.milestone-icon-1 {
    width: 76px;
    height: auto;
    margin: 0 auto clamp(0.9rem, 1.6vw, 1.3rem);
    display: block;
}

.milestone-title-1 {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    margin: 0 0 0.7rem;
    color: var(--ink);
}

.milestone-text-1 {
    font-family: var(--font-sans);
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    line-height: 1.65;
    max-width: 24ch;
    margin: 0 auto;
    color: var(--slate);
}

@media (max-width: 720px) {
    .milestones-1 {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 6vw, 2.75rem);
    }

    .milestone-1:not(:last-child)::after {
        top: auto;
        height: 1px;
        bottom: calc(clamp(2rem, 6vw, 2.75rem) / -2);
        right: auto;
        left: 20%;
        width: 60%;
    }
}
.quote-1--framed {
    position: relative;
    padding-inline: clamp(3.5rem, 11vw, 8.5rem);
}

.quote-frame-1 {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(40px, 6vw, 78px);
    height: auto;
    pointer-events: none;
}

.quote-frame-1--l {
    left: 0;
}

.quote-frame-1--r {
    right: 0;
    transform: translateY(-50%) scaleX(-1); /* mirror so the frame faces inward */
}

@media (max-width: 620px) {
    .quote-frame-1 {
        display: none; /* frames crowd the text on narrow screens */
    }
    .quote-1--framed {
        padding-inline: 0;
    }
}
/* ---- frameless feature photo (PNG carries its own frame) ---- */
.team-photo-1 {
    margin: 0;
}

.team-photo-1 img {
    width: 100%;
    height: auto;
}

.team-caption-1 {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--accent);
    margin: 0 0 1.1rem;
}

/* ---- wide family photo ---- */
.team-wide-1 {
    margin: clamp(2.6rem, 5vw, 4rem) 0 0;
    text-align: center;
}

.team-wide-frame-1 {
    border-radius: 4px;
    overflow: hidden;
}

.team-wide-frame-1 img {
    width: 100%;
    height: clamp(320px, 42vw, 520px);
    object-fit: cover;
}

.team-wide-cap-1 {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.2rem;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--navy);
}

.b1--dark .team-wide-cap-1 {
    color: #fff;
}

.team-wide-cap-1::before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--accent);
}

/* ---- firm grids ---- */
.firms-grid-1 {
    --fg: clamp(0.9rem, 1.6vw, 1.3rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--fg);
}

.firm-1 {
    flex: 0 1 calc((100% - var(--fg)) / 2);
    text-align: center;
    padding: clamp(1.8rem, 2.6vw, 2.4rem) 1.2rem;
    border: 1px solid var(--line);
    border-radius: 4px;
    transition:
        border-color 0.4s,
        transform 0.4s;
}

.b1--dark .firm-1 {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
}

.firm-name-1 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.15rem, 1.6vw, 1.35rem);
    line-height: 1.25;
    color: var(--navy);
    margin: 0 0 0.6rem;
}

.b1--dark .firm-name-1 {
    color: #fff;
}

.firm-role-1 {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
    margin: 0;
}

/* ---- residences cross-link band ---- */
.mres-1 {
    position: relative;
    text-align: center;
    padding-block: clamp(4.5rem, 9vw, 8rem);
    background:
        linear-gradient(rgba(18, 32, 57, 0.74), rgba(18, 32, 57, 0.84)),
        url("/images/home/villa-02.jpg") center / cover no-repeat;
    background-color: var(--navy-deep);
    color: #fff;
}

.mres-inner-1 {
    max-width: 680px;
    margin-inline: auto;
}

@media (max-width: 900px) {
    .firm-1 {
        flex-basis: calc((100% - var(--fg)) / 2);
    }
}

@media (max-width: 560px) {
    .firm-1 {
        flex-basis: 100%;
    }
}

.resform-wrap-1 {
    max-width: 760px;
    margin-inline: auto;
}

.resform-card-1 {
    margin-top: clamp(1.8rem, 3vw, 2.6rem);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: clamp(1.6rem, 3vw, 2.6rem);
    text-align: left;
}

/* textarea to match .field-1 input */
.field-1 textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: #fff;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink);
    resize: vertical;
    transition: border-color 0.3s;
}

.field-1 textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.req-1 {
    color: var(--accent);
}

.resnote-1 {
    font-size: 0.85rem;
    color: var(--slate);
    margin: 1.2rem 0 1.6rem;
}

/* ---- residence-type overview cards use .b1-card; this is the grid ---- */
.types-grid-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 1.8vw, 1.5rem);
}

/* ---- room / gallery carousel ---- */
.rooms-1 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: clamp(2.2rem, 4vw, 3.4rem);
}

.rooms-viewport-1 {
    flex: 1;
    overflow: hidden;
}

.rooms-track-1 {
    display: flex;
    gap: clamp(0.8rem, 1.5vw, 1.2rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.rooms-track-1::-webkit-scrollbar {
    display: none;
}

.room-1 {
    flex: 0 0 clamp(240px, 32vw, 360px);
    scroll-snap-align: start;
    margin: 0;
}

.room-figure-1 {
    border-radius: 4px;
    overflow: hidden;
}

.room-figure-1 img {
    width: 100%;
    height: clamp(230px, 27vw, 320px);
    object-fit: cover;
}

.room-title-1 {
    margin: 0.9rem 0 0;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--navy);
    text-align: center;
}

.b1--dark .room-title-1 {
    color: #fff;
}

.rooms-arrow-1 {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition:
        background 0.3s,
        border-color 0.3s;
}

.rooms-arrow-1:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.b1--dark .rooms-arrow-1 {
    border-color: rgba(255, 255, 255, 0.3);
    background: transparent;
}

.b1--dark .rooms-arrow-1:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.rooms-arrow-1::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--navy);
    border-right: 2px solid var(--navy);
}

.b1--dark .rooms-arrow-1::before {
    border-color: #fff;
}

.rooms-arrow-1:hover::before {
    border-color: #fff;
}

.rooms-arrow-prev-1::before {
    transform: rotate(-135deg);
    margin-left: 3px;
}

.rooms-arrow-next-1::before {
    transform: rotate(45deg);
    margin-right: 3px;
}
/* ---- mobile: full bleed swipe gallery ---- */
@media (max-width: 720px) {
    .rooms-1 {
        gap: 0;
        margin-inline: calc(var(--b1-gutter) * -1);
    }

    .rooms-arrow-1 {
        display: none;
    }

    .rooms-track-1 {
        gap: 0.7rem;
        padding-inline: var(--b1-gutter);
        scroll-padding-inline: var(--b1-gutter);
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
    }

    .room-1 {
        flex: 0 0 84%;
    }

    .room-figure-1 img {
        height: auto;
        aspect-ratio: 3 / 4;
    }
}
/* ---- rental listing cards ---- */
.rental-grid-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
}

.rental-card-1 {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.5s,
        box-shadow 0.5s;
}

.b1--dark .rental-card-1 {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.rental-card-1:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px -38px rgba(21, 38, 74, 0.5);
}

.rental-figure-1 {
    margin: 0;
    overflow: hidden;
}

.rental-figure-1 img {
    width: 100%;
    height: clamp(220px, 26vw, 280px);
    object-fit: cover;
    transition: transform 1.1s ease;
}

.rental-card-1:hover .rental-figure-1 img {
    transform: scale(1.05);
}

.rental-body-1 {
    padding: clamp(1.4rem, 2.2vw, 1.9rem);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.rental-title-1 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.3rem, 1.8vw, 1.55rem);
    color: var(--navy);
    margin: 0 0 0.7rem;
}

.b1--dark .rental-title-1 {
    color: #fff;
}

.rental-text-1 {
    font-size: 1rem;
    line-height: 1.55;
    color: var(--slate);
    margin: 0 0 1.2rem;
    flex: 1;
}

.b1--dark .rental-text-1 {
    color: rgba(255, 255, 255, 0.78);
}

.rental-body-1 .b1-link {
    margin-top: auto;
}

.mres-1 {
    position: relative;
    text-align: center;
    padding-block: clamp(4.5rem, 9vw, 8rem);
    background:
        linear-gradient(rgba(18, 32, 57, 0.74), rgba(18, 32, 57, 0.84)),
        var(--mres-img, url("/images/home/Exterior-Terrace.jpg")) center / cover
            no-repeat;
    background-color: var(--navy-deep);
    color: #fff;
}

.mres-inner-1 {
    max-width: 680px;
    margin-inline: auto;
}

.priv-tabs-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem clamp(1.2rem, 2.6vw, 2rem);
    border-bottom: 1px solid var(--line);
    margin-bottom: clamp(2.2rem, 3.5vw, 3.2rem);
}

.b1--dark .priv-tabs-1 {
    border-color: rgba(255, 255, 255, 0.14);
}

.priv-tab-1 {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--slate);
    padding: 0 0 1rem;
    transition: color 0.3s;
}

.b1--dark .priv-tab-1 {
    color: rgba(255, 255, 255, 0.6);
}

.priv-tab-1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.35s;
}

.priv-tab-1:hover,
.priv-tab-1.is-active {
    color: var(--navy);
}

.b1--dark .priv-tab-1:hover,
.b1--dark .priv-tab-1.is-active {
    color: #fff;
}

.priv-tab-1.is-active::after {
    width: 100%;
}

.priv-grid-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.priv-figure-1 {
    position: relative;
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.priv-figure-1 img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* beats the global `.b1 img { display:block }` so hidden panels stay hidden */
.priv-figure-1 img[hidden] {
    display: none;
}

/* ---- responsive ---- */
@media (max-width: 900px) {
    .types-grid-1,
    .rental-grid-1,
    .priv-grid-1 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .room-1 {
        flex-basis: 80%;
    }
}

/* =========================================================
   LEGAL PAGES (Privacy Policy + Terms) — additions
   Paste into your global stylesheet. All `-1` suffixed.
========================================================= */

.legal-updated-1 {
    margin: 1rem 0 0;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.legal-1 {
    max-width: 820px;
    margin-inline: auto;
}

.legal-lead-1 {
    font-size: clamp(1.1rem, 1.4vw, 1.22rem);
    line-height: 1.75;
    color: var(--ink);
    margin: 0 0 2.4rem;
}

/* table of contents */
.legal-toc-1 {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: clamp(1.5rem, 2.6vw, 2.2rem);
    margin: 0 0 3rem;
}

.legal-toc-1 p {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
    margin: 0 0 1.1rem;
}

.legal-toc-1 ol {
    margin: 0;
    padding-left: 1.2rem;
    columns: 2;
    column-gap: 2.4rem;
}

.legal-toc-1 li {
    margin-bottom: 0.55rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.legal-toc-1 a {
    color: var(--navy);
    text-decoration: none;
}

.legal-toc-1 a:hover {
    color: var(--accent);
}

/* article body */
.legal-1 h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    line-height: 1.2;
    color: var(--navy);
    margin: 2.8rem 0 1rem;
    padding-top: 1.8rem;
    border-top: 1px solid var(--line);
    scroll-margin-top: 100px;
}

.legal-1 h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.legal-1 h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ink);
    margin: 1.7rem 0 0.6rem;
}

.legal-1 p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--slate);
    margin: 0 0 1.1rem;
}

.legal-1 strong {
    color: var(--ink);
    font-weight: 600;
}

.legal-1 a {
    color: var(--navy);
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 3px;
}

.legal-1 ul {
    list-style: none;
    margin: 0 0 1.3rem;
    padding: 0;
}

.legal-1 ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.65rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--slate);
}

.legal-1 ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--accent);
    transform: rotate(45deg);
}

.legal-note-1 {
    margin-top: 2.6rem;
    padding: clamp(1.2rem, 2vw, 1.6rem);
    border-left: 2px solid var(--accent);
    background: rgba(179, 137, 92, 0.06);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--slate);
}

@media (max-width: 560px) {
    .legal-toc-1 ol {
        columns: 1;
    }
}

.ls-white-1--pattern {
    position: relative;
}

.ls-white-1--pattern::after {
    /* ...your existing rules... */
    z-index: 0;
}

.ls-white-1--pattern .b1-wrap {
    position: relative;
    z-index: 1;
}

.ls-white-1--pattern2 {
    position: relative;
}

.ls-white-1--pattern2::after {
    /* ...your existing rules... */
    z-index: 0;
}

.ls-white-1--pattern2 .b1-wrap {
    position: relative;
    z-index: 1;
}

/* ---- milestones (refined) ---- */
.milestones-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 64rem;
    margin: clamp(3rem, 5vw, 4.5rem) auto 0;
    padding-block: clamp(1.5rem, 3vw, 2.5rem);
}

.milestone-1 {
    text-align: center;
    padding: clamp(0.8rem, 2vw, 1.6rem) clamp(1.4rem, 3vw, 2.6rem);
    position: relative;
}

/* inset vertical divider */
.milestone-1:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 14%;
    bottom: 14%;
    right: 0;
    width: 1px;
    background: var(--line);
}

/* fixed height balances icons regardless of each PNG's aspect ratio */
.milestone-icon-1 {
    width: auto;
    height: 54px;
    max-width: 72px;
    object-fit: contain;
    margin: 0 auto clamp(1rem, 1.6vw, 1.3rem);
    display: block;
    opacity: 0.95;
}

.milestone-title-1 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.3rem, 1.9vw, 1.55rem);
    letter-spacing: 0.01em;
    color: var(--navy);
    margin: 0 0 0.7rem;
}

.milestone-title-1::after {
    content: "";
    display: block;
    width: 26px;
    height: 1px;
    background: var(--accent);
    margin: 0.75rem auto 0;
}

.milestone-text-1 {
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 1.1vw, 0.96rem);
    line-height: 1.7;
    max-width: 25ch;
    margin: 0 auto;
    color: var(--slate);
}

/* ---- feature caption (refined) ---- */
.team-caption-1 {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
    margin: 0 0 1.1rem;
}

/* ---- pull quote (refined) ---- */
.quote-1 {
    max-width: 900px;
    margin: clamp(3rem, 6vw, 5rem) auto;
    text-align: center;
}

.quote-1::before {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto 1.8rem;
}

.quote-1 p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    line-height: 1.5;
    color: var(--navy);
    margin: 0 0 1.5rem;
}

.b1--dark .quote-1 p {
    color: #fff;
}

.quote-1 cite {
    display: block;
    font-style: normal;
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
}

.quote-1--framed {
    position: relative;
    padding-inline: clamp(3.5rem, 11vw, 8rem);
}

.quote-frame-1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(38px, 5.5vw, 70px);
    height: auto;
    opacity: 0.85;
    pointer-events: none;
}

.quote-frame-1--l {
    left: 0;
}
.quote-frame-1--r {
    right: 0;
    transform: translateY(-50%) scaleX(-1);
}

/* ---- wide family photo (refined) ---- */
.team-wide-1 {
    margin: clamp(3rem, 5vw, 4.5rem) 0 0;
    text-align: center;
}

.team-wide-frame-1 {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 34px 80px -50px rgba(21, 38, 74, 0.55);
}

.team-wide-frame-1 img {
    width: 100%;
    height: clamp(340px, 44vw, 560px);
    object-fit: cover;
}

.team-wide-cap-1 {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.3rem;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--navy);
}

.b1--dark .team-wide-cap-1 {
    color: #fff;
}

.team-wide-cap-1::before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--accent);
}
@media (max-width: 900px) {
    .b1-split2 {
        display: flex;
        flex-direction: column;
    }
    .b1-split2 .team-first-fix {
        order: 2;
        margin-top: clamp(1.8rem, 5vw, 2.5rem); /* space above the photo */
    }
    .b1-split2 > div:not(.team-first-fix) {
        order: 1;
    }
}
@media (max-width: 820px) {
    .quote-1--framed {
        padding-inline: clamp(2.4rem, 12vw, 4rem);
    }
    .quote-frame-1 {
        width: clamp(26px, 8vw, 40px);
    }
    .quote-frame-1--l {
        left: -0.5rem;
    }
    .quote-frame-1--r {
        right: -0.5rem;
    }
}
@media (max-width: 720px) {
    .milestones-1 {
        grid-template-columns: 1fr;
    }
    .milestone-1 {
        padding-block: clamp(1.6rem, 5vw, 2.2rem);
    }
    .milestone-1:not(:last-child)::after {
        top: auto;
        bottom: 0;
        right: auto;
        left: 25%;
        width: 50%;
        height: 1px;
    }
}

@media (max-width: 620px) {
    .quote-frame-1 {
        display: none !important; /* frames crowd the text on narrow screens */
    }
    .quote-1--framed {
        padding-inline: 0;
    }
}

.firms-grid-1--2col {
    max-width: 720px;
    margin-inline: auto;
}

.firms-grid-1--2col .firm-1 {
    flex-basis: calc((100% - var(--fg)) / 2);
}

@media (max-width: 560px) {
    .firms-grid-1--2col .firm-1 {
        flex-basis: 100%;
    }
}
.menu-modal-1 {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(0.7rem, 3vw, 2rem);
}
.menu-modal-1.is-open {
    display: flex;
}

.menu-modal-1__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 33, 0.9);
}

.menu-modal-1__dialog {
    position: relative;
    z-index: 2;
    width: min(920px, 100%);
    height: min(88vh, 1040px);
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.6);
}

.menu-modal-1__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0.7rem 0.5rem 1.2rem;
    border-bottom: 1px solid var(--line);
}

.menu-tabs-1 {
    display: flex;
    gap: 0.2rem;
}

.menu-tab-1 {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--slate);
    padding: 0.95rem 1rem;
    transition: color 0.3s;
}
.menu-tab-1::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.menu-tab-1.is-active {
    color: var(--navy);
}
.menu-tab-1.is-active::after {
    transform: scaleX(1);
}

.menu-modal-1__close {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    color: var(--navy);
    cursor: pointer;
    transition:
        background 0.3s,
        color 0.3s,
        border-color 0.3s;
}
.menu-modal-1__close:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.menu-modal-1__stage {
    flex: 1;
    position: relative;
    background: #f4f4f4;
}
.menu-scroll-1 {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    background: #ecebe6;
    padding: clamp(0.6rem, 2vw, 1.4rem);
    -webkit-overflow-scrolling: touch;
}
.menu-scroll-1[hidden] {
    display: none;
}
.menu-scroll-1 canvas {
    display: block;
    width: 100%;
    max-width: 820px;
    margin: 0 auto 1rem;
    background: #fff;
    box-shadow: 0 10px 30px -14px rgba(0, 0, 0, 0.45);
}
.menu-scroll-1__msg {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--slate);
    font-size: 1rem;
}

/* button needs a pointer since .b1-ghost is normally an <a> */
button.b1-ghost,
button.b1-btn {
    cursor: pointer;
    font: inherit;
}

@media (max-width: 560px) {
    .menu-tab-1 {
        padding: 0.9rem 0.6rem;
        font-size: 0.7rem;
    }
}

.hp-framed-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 4vw, 3.5rem);
    max-width: 67rem;
    margin-inline: auto;
    text-align: center;
}

.hp-framed-1__inner {
    flex: 1 1 auto;
    min-width: 0;
}

.hp-frame-1 {
    position: static; /* stay a flex item — see note */
    flex: 0 0 auto;
    align-self: center;
    width: clamp(50px, 6vw, 70px);
    height: auto;
}

.hp-frame-1--r {
    transform: scaleX(-1); /* drop if frame-navy.png is already mirrored */
}

@media (max-width: 720px) {
    .b1 .hp-frame-1,
    .hp-framed-1 .hp-frame-1 {
        display: none;
    }
    .hp-framed-1 {
        gap: 0;
    }
}
/* =========================================================
   3 · MANIFESTO  (navy · top pattern · khaki frames)
   ========================================================= */
.manifesto-3 {
    position: relative;
    background: var(--navy-deep);
    color: #fff;
    overflow: hidden;
    padding-block: clamp(4rem, 8vw, 7rem);
}

.manifesto-3__wrap {
    position: relative;
    z-index: 1; /* sits above .ls-dark-1--pattern2::after */
    width: min(100% - 2.5rem, 78rem);
    margin-inline: auto;
}

.manifesto-3__framed {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 4vw, 3.5rem);
    max-width: 62rem;
    margin-inline: auto;
    text-align: center;
}

.manifesto-3__inner {
    flex: 1 1 auto;
    min-width: 0;
}

.manifesto-3__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0;
}

.manifesto-3__statement {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.24;
    color: #fff;
    margin: 0.9rem auto 0;
    max-width: 34ch;
    text-wrap: balance;
}

.manifesto-3__statement em {
    font-style: italic;
    color: var(--accent);
}

/* button — khaki outline, fills on hover */
.manifesto-3__btn {
    display: inline-block;
    margin-top: 2.25rem;
    padding: 0.85rem 2.1rem;
    font-family: var(--font-sans);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 2px;
    background: transparent;
    transition:
        background 0.35s ease,
        color 0.35s ease;
}

.manifesto-3__btn:hover,
.manifesto-3__btn:focus-visible {
    background: var(--accent);
    color: var(--navy-deep);
}

/* khaki frames flank the text */
.manifesto-3__frame {
    flex: 0 0 auto;
    align-self: center;
    width: clamp(50px, 6vw, 70px);
    height: auto;
    transform: none;
}

.manifesto-3__frame--r {
    transform: scaleX(-1);
}

@media (max-width: 720px) {
    .manifesto-3__framed {
        flex-direction: column;
        gap: 1.5rem;
    }

    .manifesto-3__frame {
        width: 100px;
        max-width: 120px;
    }
}
/* =========================================================
   MOBILE CARD CAROUSELS  (must stay last — later rules
   redefine .types-grid-1 / .b1-res__grid above)
   ========================================================= */
@media (max-width: 720px) {
    .types-grid-1,
    .b1-res__grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 78%;
        grid-template-columns: none;
        place-content: start;
        gap: 0.9rem;

        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: var(--b1-gutter);
        -webkit-overflow-scrolling: touch;

        margin-inline: calc(var(--b1-gutter) * -1);
        padding-inline: var(--b1-gutter);
        padding-bottom: 0.5rem;

        scrollbar-width: none;
    }

    .types-grid-1::-webkit-scrollbar,
    .b1-res__grid::-webkit-scrollbar {
        display: none;
    }

    .types-grid-1 > .b1-card,
    .b1-res__grid > .b1-card {
        scroll-snap-align: start;
        aspect-ratio: 4 / 5;
    }

    .types-grid-1 > .b1-reveal,
    .b1-res__grid > .b1-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* =========================================================
   BRAND PILLARS — mobile row layout
   (last in file so it beats the 900px 3-col rule above)
   ========================================================= */
@media (max-width: 560px) {
    .b1-pillars__grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .b1-pillar {
        display: flex;
        align-items: center;
        gap: 1.1rem;
        text-align: left;
        padding: 1.15rem 1.3rem;
    }

    .b1-pillar__icon {
        flex: 0 0 auto;
        width: 46px;
        height: 46px;
        margin-bottom: 0;
    }

    .b1-pillar__icon img {
        width: 46px;
        height: 46px;
    }

    .b1-pillar__label {
        font-size: 1.02rem;
        line-height: 1.25;
    }
}
/* =========================================================
   TESTIMONIALS — mobile carousel
   (last in file so it beats the 900px / 560px rules above)
   ========================================================= */
@media (max-width: 720px) {
    .b1-tst__grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 82%;
        grid-template-columns: none;
        place-content: start;
        gap: 0.8rem;

        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: var(--b1-gutter);
        -webkit-overflow-scrolling: touch;

        margin-inline: calc(var(--b1-gutter) * -1);
        padding-inline: var(--b1-gutter);
        padding-bottom: 0.5rem;

        scrollbar-width: none;
    }

    .b1-tst__grid::-webkit-scrollbar {
        display: none;
    }

    .b1-tst__grid > .b1-tst__card {
        scroll-snap-align: start;
    }

    .b1-tst__grid > .b1-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* =========================================================
   MOOD CARDS — mobile carousel
   ========================================================= */
@media (max-width: 720px) {
    .moods-grid-1 {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 78%;
        grid-template-columns: none;
        place-content: start;
        gap: 0.9rem;

        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: var(--b1-gutter);
        -webkit-overflow-scrolling: touch;

        padding-bottom: 0.5rem;
        scrollbar-width: none;
    }

    .moods-grid-1::-webkit-scrollbar {
        display: none;
    }

    .moods-grid-1 > .mood-card-1 {
        scroll-snap-align: start;
        aspect-ratio: 4 / 5;
    }

    .moods-grid-1 > .b1-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* =========================================================
   HIGHLIGHT CARDS — mobile carousel
   ========================================================= */
@media (max-width: 720px) {
    .hi-grid-1 {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 80%;
        grid-template-columns: none;
        place-content: start;
        gap: 0.9rem;

        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: var(--b1-gutter);
        -webkit-overflow-scrolling: touch;

        margin-inline: calc(var(--b1-gutter) * -1);
        padding-inline: var(--b1-gutter);
        padding-bottom: 0.5rem;

        scrollbar-width: none;
    }

    .hi-grid-1::-webkit-scrollbar {
        display: none;
    }

    .hi-grid-1 > .hi-card-1 {
        scroll-snap-align: start;
    }

    .hi-grid-1 > .b1-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    /* no edge bleed inside clipped navy sections */
    .ls-navy-1 .hi-grid-1 {
        margin-inline: 0;
        padding-inline: 0;
    }

    .hi-grid-1 img {
        height: clamp(190px, 46vw, 240px);
    }
}
/* marina hero — keeps the desktop framing, pans right on mobile */
.res-hero .res-hero-bg--marina {
    background-position: center top;
}

@media (max-width: 720px) {
    .res-hero .res-hero-bg--marina {
        background-position: 20% top;
    }
}
/* =========================================================
   INSTAGRAM TILES — mobile carousel
   ========================================================= */
@media (max-width: 720px) {
    .b1-ig__grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 46%;
        grid-template-columns: none;
        place-content: start;
        gap: 0.6rem;

        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        padding-bottom: 0.5rem;
        scrollbar-width: none;
    }

    .b1-ig__grid::-webkit-scrollbar {
        display: none;
    }

    .b1-ig__grid > .b1-ig__tile {
        scroll-snap-align: start;
    }

    .b1-ig__grid.b1-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* two-card variant, keeps the pair centred instead of stretched */
.rental-grid-1--2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 880px;
    margin-inline: auto;
}

.rental-price-1 {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2vw, 1.7rem);
    line-height: 1.1;
    color: var(--accent);
    margin: 0 0 0.9rem;
}

.rental-price-1 span {
    display: block;
    margin-top: 0.35rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.rental-feats-1 {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.1rem;
}

.rental-feats-1 li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.55rem;
    font-size: 0.92rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
}

.rental-feats-1 li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: var(--accent);
    transform: rotate(45deg);
}

.rental-cta-1 {
    text-align: center;
    margin-top: clamp(2rem, 3.5vw, 2.8rem);
}

.rental-cta-note-1 {
    max-width: 46ch;
    margin: 1.1rem auto 0;
    font-size: 0.85rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.6);
    text-wrap: pretty;
}

@media (max-width: 900px) {
    .rental-grid-1--2 {
        grid-template-columns: 1fr;
    }
}
/* ---- carousel slide becomes a button ---- */
.room-open-1 {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: zoom-in;
    position: relative;
    font: inherit;
    color: inherit;
}

.room-zoom-1 {
    position: absolute;
    inset: 0;
    background: rgba(18, 32, 57, 0.28);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.room-open-1:hover .room-zoom-1,
.room-open-1:focus-visible .room-zoom-1 {
    opacity: 1;
}

.room-open-1:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ---- lightbox ---- */
.lb-1 {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.lb-1.is-open-1 {
    opacity: 1;
}

.lb-1[hidden] {
    display: none;
}

.lb-backdrop-1 {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 33, 0.94);
}

.lb-shell-1 {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: clamp(0.8rem, 2vw, 1.6rem);
}

.lb-bar-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex: 0 0 auto;
    padding-bottom: clamp(0.6rem, 1.5vw, 1rem);
}

.lb-count-1 {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.62);
}

.lb-tool-1 {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.3s,
        border-color 0.3s;
}

.lb-tool-1:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
}

.lb-close-1 {
    padding: 0.35rem 0.75rem;
    font-size: 1.5rem;
    line-height: 1;
}

/* ---- single image stage ---- */
.lb-stage-1 {
    flex: 1 1 auto;
    min-height: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-img-1 {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: lbFade-1 0.35s ease;
}

@keyframes lbFade-1 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lb-nav-1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: rgba(10, 18, 33, 0.5);
    cursor: pointer;
    transition:
        background 0.3s,
        border-color 0.3s;
    z-index: 2;
}

.lb-nav-1:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.5);
}

.lb-nav-1::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
}

.lb-prev-1 {
    left: clamp(0.5rem, 2vw, 2rem);
}

.lb-next-1 {
    right: clamp(0.5rem, 2vw, 2rem);
}

.lb-prev-1::before {
    transform: translate(-40%, -50%) rotate(-135deg);
}

.lb-next-1::before {
    transform: translate(-60%, -50%) rotate(45deg);
}

@media (max-width: 640px) {
    .lb-nav-1 {
        width: 38px;
        height: 38px;
    }
}
.b1-note {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
    font-style: italic;
}
.b1-shot figcaption.b1-note {
    margin-top: 0.6rem;
}
.b1-note--light {
    color: rgba(0, 0, 0, 0.42);
}

.b1-note--light {
    color: rgba(0, 0, 0, 0.42);
}
.hh-1 {
    padding-bottom: 0;
    overflow: hidden;
}

.hh-graphic-1 {
    margin: clamp(2.5rem, 6vw, 4.5rem) 0 0;
    line-height: 0;
    text-align: center;
}

.hh-graphic-1 img {
    display: block;
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-inline: auto;
}
.b1-pillars__grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 960px;
    margin-inline: auto;
}

.b1-pillar__text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin: 0.6rem 0 0;
    max-width: 30ch;
    margin-inline: auto;
}

@media (max-width: 720px) {
    .b1-pillars__grid--3 {
        grid-template-columns: 1fr;
    }
}

.ls-sec-1--pb0 {
    padding-bottom: 0;
}
.ls-sec-1--pt-tight {
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
}
.quote-sec-1 .quote-1 {
    padding-block: clamp(2rem, 4vw, 3.25rem);
}
/* ---- team split: photo, copy, quote ---- */
.team-split-1 {
    align-items: start;
}

/* desktop: photo left spanning both rows, copy top right, quote under copy */
.team-split-1 > .team-photo-1 {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.team-split-1 > .team-copy-1 {
    grid-column: 2;
    grid-row: 1;
}

.team-split-1 > .quote-1 {
    grid-column: 2;
    grid-row: 2;
}

/* ---- compact pull quote, used while it sits in a column ---- */
.quote-1--inline {
    max-width: none;
    margin: 0;
    padding-block: 1.5rem;
}
.quote-1--inline::before {
    margin-bottom: 1.1rem;
}

.quote-1--inline p {
    font-size: clamp(1rem, 1.15vw, 1.2rem);
    line-height: 1.55;
    margin-bottom: 0.9rem;
}

.quote-1--inline.quote-1--framed {
    padding-inline: clamp(2.25rem, 4vw, 3.5rem);
}

.quote-1--inline .quote-frame-1 {
    top: 50%;
    height: 100%;
    max-height: 160px;
    width: auto;
}

.quote-1--inline .quote-frame-1--r {
    transform: translateY(-50%) scaleX(-1);
}

.quote-1--inline cite {
    font-size: 0.72rem;
}

/* ---- iPad and below: photo and copy stay side by side, quote drops full width ---- */
@media (max-width: 1024px) {
    .team-split-1 > .team-photo-1 {
        grid-row: 1;
    }

    .team-split-1 > .quote-1 {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .quote-1--inline {
        max-width: 920px;
        margin: clamp(2.6rem, 5vw, 4rem) auto 0;
        padding-block: 40px;
    }

    .quote-1--inline::before {
        margin-bottom: 1.6rem;
    }

    .quote-1--inline p {
        font-size: clamp(1.35rem, 3.2vw, 1.95rem);
        line-height: 1.42;
        margin-bottom: 1.3rem;
    }

    .quote-1--inline.quote-1--framed {
        padding-inline: clamp(3.5rem, 9vw, 8.5rem);
    }

    .quote-1--inline .quote-frame-1 {
        width: clamp(40px, 6vw, 78px);
    }

    .quote-1--inline cite {
        font-size: 0.78rem;
    }
}

/* ---- mobile: photo, then text, then quote ---- */
@media (max-width: 720px) {
    .team-split-1 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .team-split-1 > .team-photo-1 {
        grid-column: 1;
        grid-row: 1;
        order: 0;
    }

    .team-split-1 > .team-copy-1 {
        grid-column: 1;
        grid-row: 2;
        order: 0;
    }

    .team-split-1 > .quote-1 {
        grid-column: 1;
        grid-row: 3;
        order: 0;
    }

    /* scale the quote back down, the 1024 rules are far too big here */
    .quote-1--inline {
        max-width: 100%;
        margin: 0.5rem 0 0;
        padding-block: 1.25rem;
    }

    .quote-1--inline::before {
        margin-bottom: 1rem;
    }

    .quote-1--inline p {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 0.9rem;
    }

    .quote-1--inline.quote-1--framed {
        padding-inline: 0;
    }

    .quote-1--inline cite {
        font-size: 0.7rem;
    }
}
.quote-1--inline::before {
    display: none;
}
/* ============ The History of Briland Club ============ */
.hist-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    column-gap: clamp(2rem, 4.5vw, 4rem);
    row-gap: 0;
    align-items: start;
}

/* desktop placement: image left spanning both rows, copy top right, quote under copy */
.hist-media {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.hist-copy {
    grid-column: 2;
    grid-row: 1;
}
.hist-quote {
    position: relative;
    margin: 1.2rem 0 0;
    padding: 0.5rem clamp(3.25rem, 5.5vw, 4.75rem);
    text-align: center;
}
.hist-quote {
    grid-column: 2;
    grid-row: 2;
}

/* ---- media ---- */
.hist-media {
    margin: 0;
}

.hist-img {
    display: block;
    width: 100%;
    height: auto;
}

.hist-cap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.1rem;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--ink);
}

.hist-cap::before {
    content: "";
    flex: 0 0 auto;
    width: 22px;
    height: 1px;
    background: var(--accent);
}

/* ---- copy (uses the shared b1- text classes) ---- */
.hist-copy .b1-h2 {
    margin-top: 0;
    text-wrap: pretty;
}

.hist-copy .b1-eyebrow {
    margin: 0.7rem 0 1.6rem;
}

.hist-copy .b1-body:last-of-type {
    margin-bottom: 0;
}

/* ---- quote ---- */
.hist-quote {
    position: relative;
    padding: 0.5rem clamp(3.25rem, 5.5vw, 4.75rem);
    text-align: center;
}

.hist-quote-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.55;
    color: var(--navy);
    margin: 0 0 0.9rem;
}

.hist-quote-cite {
    display: block;
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--slate);
}

.hist-quote-frame {
    position: absolute;
    top: 0;
    height: 100%;
    width: auto;
    max-width: 44px;
    transform: none;
    pointer-events: none;
}

.hist-quote-frame--l {
    left: 0;
}

.hist-quote-frame--r {
    right: 0;
    transform: scaleX(-1);
}
/* ---- iPad: image left, text right, quote full width below ---- */
@media (max-width: 1024px) {
    .hist-grid {
        grid-template-columns: 1fr 1fr;
        gap: clamp(1.75rem, 3.5vw, 2.75rem);
    }

    .hist-media {
        grid-column: 1;
        grid-row: 1;
    }

    .hist-copy {
        grid-column: 2;
        grid-row: 1;
    }

    .hist-quote {
        grid-column: 1 / -1;
        grid-row: 2;
        max-width: 720px;
        margin: 2.75rem auto 0;
        padding-inline: 4.75rem;
    }

    .hist-quote-text {
        font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    }

    .hist-quote-frame {
        max-width: 56px;
    }
}

/* ---- below tablet: drop the frames, text takes the full width ---- */
@media (max-width: 900px) {
    .hist-quote {
        padding-inline: 0;
    }

    .hist-quote-frame {
        display: none;
    }
}

/* ---- mobile: image, text, quote stacked ---- */
@media (max-width: 620px) {
    .hist-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .hist-media,
    .hist-copy,
    .hist-quote {
        grid-column: 1;
    }

    .hist-media {
        grid-row: 1;
    }

    .hist-copy {
        grid-row: 2;
    }

    .hist-quote {
        grid-row: 3;
        max-width: 100%;
        margin: 0.5rem 0 0;
    }

    .hist-quote-text {
        font-size: 1.05rem;
    }
}
@media (max-width: 900px) {
    .hist-grid .hist-quote .hist-quote-frame,
    .hist-grid .hist-quote .hist-quote-frame--l,
    .hist-grid .hist-quote .hist-quote-frame--r {
        display: none !important;
    }

    .hist-grid .hist-quote {
        padding-inline: 0;
    }
}
.restypes-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.6rem;
    margin-top: 3rem;
}

.restype-1 {
    flex: 0 1 calc(33.333% - 1.07rem);
    min-width: 270px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 4px;
    overflow: hidden;
    transition:
        transform 0.4s ease,
        border-color 0.4s ease;
}

.restype-1:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.restype-figure-1 {
    display: block;
    position: relative;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.restype-figure-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.restype-1:hover .restype-figure-1 img {
    transform: scale(1.05);
}

.restype-zoom-1 {
    position: absolute;
    right: 0.8rem;
    bottom: 0.8rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.restype-zoom-1::before,
.restype-zoom-1::after {
    content: "";
    position: absolute;
    background: #fff;
}

.restype-zoom-1::before {
    left: 50%;
    top: 11px;
    width: 1px;
    height: 12px;
    transform: translateX(-50%);
}

.restype-zoom-1::after {
    top: 50%;
    left: 11px;
    height: 1px;
    width: 12px;
    transform: translateY(-50%);
}

.restype-1:hover .restype-zoom-1,
.restype-figure-1:focus-visible .restype-zoom-1 {
    opacity: 1;
}

.restype-body-1 {
    padding: 1.4rem 1.5rem 1.7rem;
    flex: 1 1 auto;
}

.restype-title-1 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    line-height: 1.2;
    margin: 0 0 0.7rem;
}

.restype-text-1 {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    opacity: 0.85;
    text-wrap: pretty;
}

.restypes-cta-1 {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 900px) {
    .restype-1 {
        flex: 0 1 calc(50% - 0.8rem);
    }
}

@media (max-width: 620px) {
    .restype-1 {
        flex: 0 1 100%;
    }
}

.contact-grid-1 {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

/* info column */
.cinfo-1 {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--line);
}

.cinfo-1:first-of-type {
    padding-top: 0;
}

.cinfo-icon-1 {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
}

.cinfo-icon-1 svg {
    width: 20px;
    height: 20px;
}

.cinfo-label-1 {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
    margin: 0 0 0.3rem;
}

.cinfo-value-1 {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--ink);
    margin: 0;
}

.cinfo-value-1 a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.3s;
}

.cinfo-value-1 a:hover {
    color: var(--accent);
}

.contact-social-1 {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.contact-social-1 a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition:
        background 0.3s,
        color 0.3s,
        border-color 0.3s,
        transform 0.3s;
}

.contact-social-1 a:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
    transform: translateY(-3px);
}

.contact-social-1 svg {
    width: 20px;
    height: 20px;
}

/* form card */
.contact-form-1 {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: clamp(1.8rem, 3vw, 2.8rem);
}

/* textarea (safe to keep even if already global) */
.field-1 textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: #fff;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink);
    resize: vertical;
    transition: border-color 0.3s;
}

.field-1 textarea:focus {
    outline: none;
    border-color: var(--accent);
}

/* map */
.contact-map-1 {
    height: clamp(320px, 40vw, 460px);
}

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

@media (max-width: 860px) {
    .contact-grid-1 {
        grid-template-columns: 1fr;
    }
}
