/* Silver Ridge — Alpine Futurism (single-property) */
:root {
    /* ~30% wider content container */
    --sr-max: 1560px;
    --sr-radius-sm: 12px;
    --sr-radius-md: 18px;
    --sr-radius-lg: 26px;
    --sr-radius-pill: 9999px;

    --sr-font-body: 'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;
    --sr-font-display: 'Sora', system-ui, -apple-system, Segoe UI, sans-serif;

    --sr-ink: #0c1622;
    --sr-ink2: rgba(12, 22, 34, 0.76);
    --sr-ink3: rgba(12, 22, 34, 0.56);

    --sr-snow: #f7fbff;
    --sr-snow2: #eef6ff;
    --sr-glass: rgba(255, 255, 255, 0.56);
    --sr-glass2: rgba(255, 255, 255, 0.42);
    --sr-stroke: rgba(11, 22, 35, 0.08);
    --sr-stroke2: rgba(11, 22, 35, 0.14);

    --sr-blue: #4aa7ff;
    --sr-blue2: #2b7cff;
    /* Keep mint as a subtle highlight (not an equal primary) */
    --sr-mint: rgba(70, 230, 210, 0.75);
    --sr-whatsapp: #25d366;

    --sr-shadow-sm: 0 10px 26px rgba(12, 22, 34, 0.08);
    --sr-shadow-md: 0 24px 70px rgba(12, 22, 34, 0.14);
    --sr-shadow-lg: 0 44px 140px rgba(12, 22, 34, 0.20);

    --sr-ease: cubic-bezier(.2, .9, .2, 1);
    --sr-ease2: cubic-bezier(.15, 1, .2, 1);
    --sr-dur-1: 220ms;
    --sr-dur-2: 520ms;
    --sr-dur-3: 900ms;

    --sr-bg-mesh:
        radial-gradient(900px 500px at 12% 18%, rgba(74, 167, 255, 0.22) 0%, rgba(74, 167, 255, 0.0) 65%),
        radial-gradient(800px 520px at 80% 20%, rgba(70, 230, 210, 0.18) 0%, rgba(70, 230, 210, 0.0) 62%),
        radial-gradient(900px 540px at 55% 70%, rgba(43, 124, 255, 0.16) 0%, rgba(43, 124, 255, 0.0) 62%),
        linear-gradient(180deg, var(--sr-snow) 0%, var(--sr-snow2) 100%);
}

html.theme-light { color-scheme: light; }
html.theme-dark { color-scheme: dark; }

html.theme-dark {
    --sr-ink: #eaf3ff;
    --sr-ink2: rgba(234, 243, 255, 0.78);
    --sr-ink3: rgba(234, 243, 255, 0.58);
    --sr-snow: #070e15;
    --sr-snow2: #08111b;
    --sr-glass: rgba(14, 26, 40, 0.58);
    --sr-glass2: rgba(14, 26, 40, 0.42);
    --sr-stroke: rgba(255, 255, 255, 0.09);
    --sr-stroke2: rgba(255, 255, 255, 0.15);
    --sr-shadow-sm: 0 16px 60px rgba(0, 0, 0, 0.32);
    --sr-shadow-md: 0 30px 110px rgba(0, 0, 0, 0.42);
    --sr-shadow-lg: 0 52px 180px rgba(0, 0, 0, 0.55);
    --sr-bg-mesh:
        radial-gradient(900px 520px at 12% 18%, rgba(74, 167, 255, 0.18) 0%, rgba(74, 167, 255, 0.0) 65%),
        radial-gradient(800px 520px at 82% 22%, rgba(70, 230, 210, 0.14) 0%, rgba(70, 230, 210, 0.0) 62%),
        radial-gradient(920px 560px at 55% 72%, rgba(43, 124, 255, 0.14) 0%, rgba(43, 124, 255, 0.0) 62%),
        linear-gradient(180deg, var(--sr-snow) 0%, var(--sr-snow2) 100%);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    overflow-x: hidden;
    font-family: var(--sr-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--sr-ink2);
    background: var(--sr-bg-mesh);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

:focus-visible {
    outline: 2px solid rgba(74, 167, 255, 0.85);
    outline-offset: 3px;
    border-radius: 10px;
}

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

a { color: var(--sr-blue2); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ----- Header (glass dock) ----- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(247, 251, 255, 0.62);
    border-bottom: 1px solid var(--sr-stroke);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
html.theme-dark .site-header {
    background: rgba(7, 14, 21, 0.55);
}

.header-inner {
    max-width: var(--sr-max);
    margin: 0 auto;
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.header-logo,
.header-project { line-height: 0; display: inline-flex; align-items: center; }
.header-logo-img { height: 34px; width: auto; object-fit: contain; }
.header-project-img { height: 40px; width: auto; object-fit: contain; }
.header-logo:hover,
.header-project:hover { opacity: 0.9; text-decoration: none; }

.header-nav {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
}
.header-nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--sr-ink3);
    padding: 0.52rem 0.75rem;
    border-radius: var(--sr-radius-pill);
    transition: background var(--sr-dur-1) var(--sr-ease), color var(--sr-dur-1) var(--sr-ease), transform var(--sr-dur-1) var(--sr-ease);
    text-decoration: none;
}
.header-nav-link:hover {
    color: var(--sr-ink);
    background: rgba(255, 255, 255, 0.58);
    transform: translateY(-1px);
    text-decoration: none;
}
html.theme-dark .header-nav-link:hover { background: rgba(255, 255, 255, 0.06); }
.header-nav-link.active { color: var(--sr-ink); background: rgba(74, 167, 255, 0.12); }
html.theme-dark .header-nav-link.active { background: rgba(74, 167, 255, 0.16); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-divider { width: 1px; height: 22px; background: var(--sr-stroke); }

.theme-toggle {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: var(--sr-radius-pill);
    border: 1px solid var(--sr-stroke);
    background: rgba(255, 255, 255, 0.55);
    color: var(--sr-ink);
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform var(--sr-dur-1) var(--sr-ease), background var(--sr-dur-1) var(--sr-ease), border-color var(--sr-dur-1) var(--sr-ease);
}
html.theme-dark .theme-toggle { background: rgba(255, 255, 255, 0.06); }
.theme-toggle:hover { transform: translateY(-1px); border-color: var(--sr-stroke2); }
.theme-toggle-icon { position: absolute; inset: 0; display: grid; place-items: center; transition: opacity var(--sr-dur-1) var(--sr-ease); }
.theme-toggle-sun::before { content: '◐'; font-weight: 700; }
.theme-toggle-moon::before { content: '◑'; font-weight: 700; }
html.theme-light .theme-toggle-sun { opacity: 1; }
html.theme-light .theme-toggle-moon { opacity: 0; pointer-events: none; }
html.theme-dark .theme-toggle-sun { opacity: 0; pointer-events: none; }
html.theme-dark .theme-toggle-moon { opacity: 1; }

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.52rem 1.05rem;
    font-size: 0.85rem;
    font-weight: 750;
    letter-spacing: 0.02em;
    color: #061019 !important;
    border-radius: var(--sr-radius-pill);
    border: 1px solid rgba(74, 167, 255, 0.35);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.55) 100%);
    box-shadow: var(--sr-shadow-sm);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform var(--sr-dur-1) var(--sr-ease), box-shadow var(--sr-dur-1) var(--sr-ease);
    text-decoration: none;
    white-space: nowrap;
}
html.theme-dark .header-cta {
    color: var(--sr-ink) !important;
    border-color: rgba(74, 167, 255, 0.25);
    background: linear-gradient(180deg, rgba(14, 26, 40, 0.78) 0%, rgba(14, 26, 40, 0.42) 100%);
}
.header-cta:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--sr-shadow-md); }

.header-toggle {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--sr-radius-sm);
    border: 1px solid var(--sr-stroke);
    background: rgba(255, 255, 255, 0.52);
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
html.theme-dark .header-toggle { background: rgba(255, 255, 255, 0.06); }
.header-toggle::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.15rem;
    height: 12px;
    transform: translate(-50%, -50%);
    background: linear-gradient(to bottom, var(--sr-ink) 0 2px, transparent 2px 5px, var(--sr-ink) 5px 7px, transparent 7px 10px, var(--sr-ink) 10px 12px);
    opacity: 0.75;
}

@media (max-width: 900px) {
    .header-nav { display: none; }
    .header-toggle { display: inline-flex; }
}
@media (max-width: 768px) {
    .header-inner { padding: 0.7rem 0.9rem; }
    .header-project-img { height: 32px; }
    .header-logo-img { height: 28px; }
    .header-divider { display: none; }
    .header-nav {
        order: 10;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 0.75rem 0.9rem 0.95rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.3rem;
        background: rgba(247, 251, 255, 0.95);
        border-bottom: 1px solid rgba(11, 22, 35, 0.14);
        box-shadow: 0 22px 70px rgba(12, 22, 34, 0.16);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }
    html.theme-dark .header-nav {
        background: rgba(7, 14, 21, 0.92);
        border-bottom-color: rgba(255, 255, 255, 0.12);
        box-shadow: 0 26px 90px rgba(0, 0, 0, 0.55);
    }
    .header-nav.is-open { display: flex; }
}

/* ----- Base layout ----- */
.site-main { min-height: 60vh; }

/* Legacy pages (enquiry/legal) keep .section semantics */
.section,
.sr-section {
    max-width: var(--sr-max);
    margin: 0 auto;
    padding: clamp(2.25rem, 4.6vw, 4.2rem) 1.1rem;
}
.sr-section-alt { position: relative; }
.sr-section-alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.0) 60%);
    pointer-events: none;
}
html.theme-dark .sr-section-alt::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.0) 62%);
}

/* Editorial split + overlap accents (non-hero) */
.sr-split { position: relative; }
.sr-split--overlap .sr-feature {
    transform: translateY(-14px);
}
@media (max-width: 900px) {
    .sr-split--overlap .sr-feature { transform: none; }
}

.sr-feature {
    position: relative;
}
.sr-feature::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: calc(var(--sr-radius-lg) - 10px);
    pointer-events: none;
    border: 1px solid rgba(74,167,255,0.18);
}
html.theme-dark .sr-feature::after { border-color: rgba(74,167,255,0.22); }

/* ----- Typography helpers ----- */
.section-title,
.sr-h2 {
    margin: 0;
    font-family: var(--sr-font-display);
    letter-spacing: -0.02em;
    color: var(--sr-ink);
    font-weight: 750;
    font-size: clamp(1.65rem, 2.3vw, 2.25rem);
    line-height: 1.1;
}
.sr-hero-title {
    margin: 0.2rem 0 0;
    font-family: var(--sr-font-display);
    letter-spacing: -0.03em;
    color: var(--sr-ink);
    font-weight: 780;
    font-size: clamp(2.05rem, 4vw, 3.3rem);
    line-height: 1.05;
}
.section-subtitle,
.sr-lede {
    margin: 0.85rem 0 0;
    color: var(--sr-ink2);
    font-size: 1.05rem;
    max-width: 70ch;
}
.sr-body { margin: 0.9rem 0 0; color: var(--sr-ink2); max-width: 72ch; }
.sr-clamp-2,
.sr-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sr-clamp-2 { -webkit-line-clamp: 2; }
.sr-clamp-3 { -webkit-line-clamp: 3; }
.sr-label,
.sr-hero-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sr-ink3);
    font-weight: 750;
}
.sr-h3 { margin: 0; font-family: var(--sr-font-display); color: var(--sr-ink); font-size: 1.05rem; letter-spacing: -0.01em; }

/* ----- Glass primitives ----- */
.sr-glass {
    background: var(--sr-glass);
    border: 1px solid var(--sr-stroke);
    border-radius: var(--sr-radius-lg);
    box-shadow: var(--sr-shadow-sm);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.sr-glass { position: relative; }
.sr-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26);
}
html.theme-dark .sr-glass::before { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10); }

/* ----- Buttons (shared: header, hero, enquiry pane) ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--sr-radius-pill);
    padding: 0.78rem 1.15rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--sr-dur-1) var(--sr-ease), box-shadow var(--sr-dur-1) var(--sr-ease), background var(--sr-dur-1) var(--sr-ease), border-color var(--sr-dur-1) var(--sr-ease);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.btn-icon {
    width: 1.05em;
    height: 1.05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-icon svg {
    width: 1.05em;
    height: 1.05em;
    display: block;
}
.btn-primary .btn-icon { color: rgba(7, 17, 27, 0.9); }
.btn-outline .btn-icon { color: var(--sr-blue2); }
.btn-whatsapp .btn-icon { color: #1fa855; }
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--sr-shadow-md); }
.btn:active { transform: translateY(0px); }
.btn-primary {
    color: #07111b !important;
    background: linear-gradient(135deg, rgba(74, 167, 255, 0.92) 0%, rgba(74, 167, 255, 0.72) 60%, rgba(70, 230, 210, 0.42) 100%);
    border-color: rgba(74, 167, 255, 0.35);
}
.btn-outline {
    color: var(--sr-ink) !important;
    background: rgba(255, 255, 255, 0.56);
    border-color: var(--sr-stroke2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
html.theme-dark .btn-outline { background: rgba(255, 255, 255, 0.06); }
.btn-outline:hover { border-color: rgba(74, 167, 255, 0.40); }

/* Light mode: ensure strong contrast on white */
html.theme-light .btn-outline {
    background: rgba(12, 22, 34, 0.06);
    border-color: rgba(12, 22, 34, 0.18);
}
html.theme-light .btn-outline .btn-icon { color: rgba(12, 22, 34, 0.78); }
.btn-whatsapp {
    color: var(--sr-ink) !important;
    background: rgba(255, 255, 255, 0.56);
    border-color: rgba(37, 211, 102, 0.30);
    box-shadow: var(--sr-shadow-sm);
}
html.theme-dark .btn-whatsapp { background: rgba(255, 255, 255, 0.06); }
.btn-whatsapp:hover { box-shadow: var(--sr-shadow-md); border-color: rgba(37, 211, 102, 0.45); }
html.theme-light .btn-whatsapp {
    background: rgba(37, 211, 102, 0.10);
    border-color: rgba(37, 211, 102, 0.30);
}
html.theme-light .btn-whatsapp .btn-icon { color: #178a44; }

/* ----- Hero ----- */
.sr-hero-main {
    position: relative;
    min-height: clamp(520px, 88vh, 940px);
    width: 100%;
    background-image: var(--sr-hero-main);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.sr-hero-main-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 520px at 20% 75%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.0) 62%),
        radial-gradient(900px 520px at 82% 78%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.0) 62%),
        linear-gradient(180deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.50) 100%);
    pointer-events: none;
}
.sr-hero-main-cta {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
}
.sr-hero-main-card {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 0.95rem 1rem;
    max-width: min(520px, calc(100% - 36px));
    background: rgba(255, 255, 255, 0.62);
}
html.theme-dark .sr-hero-main-card { background: rgba(14, 26, 40, 0.62); }
.sr-hero-main-card-title {
    font-family: var(--sr-font-display);
    font-weight: 860;
    letter-spacing: -0.02em;
    color: var(--sr-ink);
}
.sr-hero-main-card-row {
    margin-top: 0.35rem;
    color: var(--sr-ink2);
    font-weight: 750;
}

@media (max-width: 768px) {
    .sr-hero-main { min-height: 78vh; }
    .sr-hero-main-cta { left: 18px; right: 18px; }
    .sr-hero-main-cta.btn { width: calc(100% - 36px); }
    .sr-hero-main-card { bottom: 86px; }
}

.sr-hero {
    position: relative;
    padding: clamp(2.4rem, 5.5vw, 3.6rem) 0;
    overflow: clip;
}

.sr-hero-split {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.2rem;
    align-items: stretch;
}
@media (max-width: 980px) {
    .sr-hero-split { grid-template-columns: 1fr; }
}

.sr-hero-left {
    border-radius: 0;
    border: 0;
    background:
        radial-gradient(900px 520px at 18% 18%, rgba(74,167,255,0.16) 0%, rgba(74,167,255,0.0) 60%),
        radial-gradient(900px 520px at 78% 28%, rgba(70,230,210,0.08) 0%, rgba(70,230,210,0.0) 62%),
        linear-gradient(180deg, rgba(8, 14, 22, 0.68) 0%, rgba(8, 14, 22, 0.82) 100%);
    box-shadow: none;
    padding: clamp(1.15rem, 2.4vw, 1.6rem) 0;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
html.theme-light .sr-hero-left {
    background:
        radial-gradient(900px 520px at 18% 18%, rgba(74,167,255,0.16) 0%, rgba(74,167,255,0.0) 60%),
        radial-gradient(900px 520px at 78% 28%, rgba(70,230,210,0.08) 0%, rgba(70,230,210,0.0) 62%),
        linear-gradient(180deg, rgba(8, 14, 22, 0.68) 0%, rgba(8, 14, 22, 0.82) 100%);
}

.sr-hero-eyebrow {
    margin: 0 0 0.5rem;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.78);
}
.sr-hero-eyebrow::after {
    content: '';
    display: block;
    width: 64px;
    height: 1px;
    margin: 0.7rem auto 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.0) 0%, rgba(74,167,255,0.55) 45%, rgba(255,255,255,0.0) 100%);
    opacity: 0.9;
}
.sr-hero-left .sr-hero-kicker {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}
.sr-hero-left .sr-hero-title {
    color: #fff;
    margin-top: 0.35rem;
    font-size: clamp(2.05rem, 3.6vw, 3.2rem);
}
.sr-hero-left .sr-hero-sub {
    color: rgba(255, 255, 255, 0.74);
    max-width: 62ch;
    margin-left: auto;
    margin-right: auto;
}
.sr-hero-left .sr-hero-sub strong { color: #fff; }

.sr-hero-left-divider {
    height: 1px;
    margin: 1rem 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.0) 0%, rgba(74,167,255,0.45) 25%, rgba(255,255,255,0.16) 60%, rgba(255,255,255,0.0) 100%);
}

.sr-hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}
.sr-hero-cta { justify-content: center; }
@media (max-width: 520px) {
    .sr-hero-facts { grid-template-columns: 1fr; }
}
.sr-fact {
    border-radius: var(--sr-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.8rem 0.85rem;
}
.sr-fact-value {
    font-family: var(--sr-font-display);
    font-weight: 860;
    letter-spacing: -0.02em;
    color: #fff;
    font-size: 1.35rem;
    line-height: 1.05;
}
.sr-fact-unit {
    margin-left: 0.25rem;
    font-size: 0.85rem;
    font-weight: 850;
    opacity: 0.8;
}
.sr-fact-label {
    margin-top: 0.35rem;
    font-weight: 780;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.68);
}

.sr-hero-left .sr-hero-intro {
    margin-top: 0;
    padding: 0;
    max-width: 80ch;
    margin-left: auto;
    margin-right: auto;
}
.sr-hero-left .sr-intro-head { color: #fff; }
.sr-hero-left .sr-intro-body { color: rgba(255,255,255,0.72); }

.sr-hero-left .sr-hero-cta { margin-top: 1.1rem; }
.sr-hero-left .btn-outline,
.sr-hero-left .btn-whatsapp {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff !important;
}
.sr-hero-left .btn-outline:hover,
.sr-hero-left .btn-whatsapp:hover {
    border-color: rgba(74, 167, 255, 0.45);
}

.sr-hero-right {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    min-height: clamp(340px, 46vw, 560px);
    background: rgba(255,255,255,0.04);
}

.sr-hero-split {
    border-top: 1px solid var(--sr-stroke);
    border-bottom: 1px solid var(--sr-stroke);
}

/* Keep content aligned while hero is full-bleed */
.sr-hero-left > * {
    max-width: var(--sr-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
}

@media (max-width: 980px) {
    .sr-hero-split { gap: 0.9rem; }
    .sr-hero-left { padding: clamp(1.05rem, 3.2vw, 1.4rem) 0; }
}
.sr-hero-right-frame {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 560px at 60% 18%, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.0) 58%),
        linear-gradient(180deg, rgba(7, 14, 21, 0.06) 0%, rgba(7, 14, 21, 0.78) 100%);
}

.sr-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    transform: translateZ(0);
}
.sr-hero-bg-track {
    position: absolute;
    inset: 0;
    height: 200%;
    width: 100%;
    animation: srHeroSlideUp 18s var(--sr-ease2) infinite;
    will-change: transform;
}
.sr-hero-bg-panel {
    height: 50%;
    width: 100%;
    background-size: cover;
    background-position: center;
    filter: saturate(1.05) contrast(1.02);
}
.sr-hero-bg-panel-1 { background-image: var(--sr-hero-bg-1); }
.sr-hero-bg-panel-2 { background-image: var(--sr-hero-bg-2); }
html.theme-dark .sr-hero-bg-panel { filter: saturate(1.1) contrast(1.05); }

@keyframes srHeroSlideUp {
    0% { transform: translate3d(0, 0%, 0); }
    46% { transform: translate3d(0, 0%, 0); }
    54% { transform: translate3d(0, -50%, 0); }
    100% { transform: translate3d(0, -50%, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .sr-hero-bg-track { animation: none; }
}

/* old full-bleed hero overlay styles removed in split hero */
.sr-metric {
    padding: 0.9rem 1rem;
    border-radius: var(--sr-radius-md);
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid var(--sr-stroke);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
html.theme-dark .sr-metric { background: rgba(255, 255, 255, 0.06); }
.sr-metric-value {
    font-family: var(--sr-font-display);
    color: var(--sr-ink);
    font-weight: 820;
    letter-spacing: -0.02em;
    font-size: 1.35rem;
    line-height: 1.05;
}
.sr-metric-unit { font-size: 0.85rem; font-weight: 800; opacity: 0.75; margin-left: 0.25rem; }
.sr-metric-label { margin-top: 0.35rem; color: var(--sr-ink3); font-weight: 750; font-size: 0.85rem; }

@media (max-width: 720px) {
    .sr-hero-metrics { grid-template-columns: 1fr; max-width: 520px; }
}

/* ----- Transitions between sections ----- */
.sr-transition {
    max-width: var(--sr-max);
    margin: 0 auto;
    padding: 0 1.1rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.85;
}
.sr-transition-line {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--sr-stroke2) 18%, var(--sr-stroke2) 82%, transparent 100%);
}
.sr-transition-peak {
    width: 28px;
    height: 10px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(74, 167, 255, 0.55) 0%, rgba(74, 167, 255, 0.28) 70%, rgba(70, 230, 210, 0.18) 100%);
    filter: blur(0.2px);
}

/* ----- Grids + cards ----- */
.sr-grid { display: grid; gap: clamp(1rem, 2vw, 2rem); }
.sr-grid-2 { grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 900px) { .sr-grid-2 { grid-template-columns: 1fr; } }

.sr-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: calc(var(--sr-radius-lg) - 8px);
    background-image: var(--sr-media-bg);
    background-size: cover;
    background-position: center;
    border: 1px solid var(--sr-stroke);
}
.sr-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(12,22,34,0.10) 100%);
    pointer-events: none;
}
.sr-card-body { padding: 1rem 1.05rem 1.1rem; }
.sr-card-title { font-family: var(--sr-font-display); color: var(--sr-ink); font-weight: 800; letter-spacing: -0.02em; }
.sr-card-copy { margin-top: 0.5rem; color: var(--sr-ink2); }

.sr-cards {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
@media (max-width: 900px) { .sr-cards { grid-template-columns: 1fr; } }
.sr-card { overflow: hidden; }

/* Featured amenities layout */
.sr-cards-feature {
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-areas:
        "a b"
        "a c";
    gap: 1rem;
}
.sr-cards-feature > article:nth-child(1) { grid-area: a; }
.sr-cards-feature > article:nth-child(2) { grid-area: b; }
.sr-cards-feature > article:nth-child(3) { grid-area: c; }
.sr-cards-feature > article:nth-child(1) .sr-card-media { aspect-ratio: 16 / 11; }
@media (max-width: 900px) {
    .sr-cards-feature { grid-template-columns: 1fr; grid-template-areas: "a" "b" "c"; }
}

.sr-cards-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media (max-width: 1100px) { .sr-cards-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .sr-cards-5 { grid-template-columns: 1fr; } }
.sr-mini { padding: 1.05rem; }
.sr-mini-ic {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--sr-stroke);
    background: rgba(255, 255, 255, 0.28);
    display: grid;
    place-items: center;
    color: var(--sr-blue2);
    margin: 0 0 0.75rem;
}
html.theme-dark .sr-mini-ic { background: rgba(255, 255, 255, 0.06); }
.sr-mini-ic svg { width: 22px; height: 22px; }
.sr-mini-title { font-family: var(--sr-font-display); color: var(--sr-ink); font-weight: 780; letter-spacing: -0.01em; }
.sr-mini-copy { margin-top: 0.35rem; color: var(--sr-ink2); }

.sr-list { margin: 1rem 0 0; padding-left: 1.1rem; }
.sr-list li { margin: 0.55rem 0; }
.sr-list strong { color: var(--sr-ink); }

.sr-chip-row { margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sr-pill {
    border-radius: var(--sr-radius-pill);
    border: 1px solid var(--sr-stroke);
    background: rgba(255, 255, 255, 0.55);
    padding: 0.45rem 0.75rem;
    font-weight: 750;
    color: var(--sr-ink2);
}
html.theme-dark .sr-pill { background: rgba(255, 255, 255, 0.06); }
.sr-pill strong { color: var(--sr-ink); }

/* Intro card */
.sr-intro { padding: 1.2rem 1.2rem 1.25rem; }
.sr-intro-head { font-family: var(--sr-font-display); font-weight: 800; color: var(--sr-ink); letter-spacing: -0.02em; font-size: 1.15rem; }
.sr-intro-body { margin: 0.75rem 0 0; color: var(--sr-ink2); }

.sr-more-btn {
    margin-top: 0.65rem;
    border: 0;
    background: transparent;
    color: var(--sr-blue2);
    font-weight: 850;
    letter-spacing: 0.01em;
    cursor: pointer;
    padding: 0;
}
.sr-more-btn:hover { text-decoration: underline; }
html.theme-dark .sr-more-btn { color: rgba(255,255,255,0.82); }

/* Quote card */
.sr-quote { padding: 1.25rem; position: relative; overflow: hidden; }
.sr-quote-mark { position: absolute; top: -8px; left: 14px; font-family: var(--sr-font-display); font-size: 4rem; opacity: 0.20; color: var(--sr-ink); }
.sr-quote-text { font-family: var(--sr-font-display); color: var(--sr-ink); font-weight: 820; letter-spacing: -0.02em; font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.15; }
.sr-quote-sub { margin-top: 0.75rem; color: var(--sr-ink3); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.78rem; }

/* Promise card */
.sr-promise { padding: 1.25rem; }
.sr-promise-title { font-family: var(--sr-font-display); color: var(--sr-ink); font-weight: 820; letter-spacing: -0.02em; }
.sr-promise .sr-list { margin-top: 0.75rem; }
.sr-promise-foot { margin-top: 0.9rem; color: var(--sr-ink2); }

/* Ridge canvas */
.sr-ridge-wrap { padding: 1.05rem; }
.sr-ridge-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 0.6rem; }
.sr-ridge-title { font-family: var(--sr-font-display); font-weight: 860; font-size: 1.8rem; color: var(--sr-ink); letter-spacing: -0.02em; }
.sr-ridge-sub { color: var(--sr-ink3); font-weight: 750; }
.sr-ridge-canvas { width: 100%; height: auto; display: block; border-radius: calc(var(--sr-radius-lg) - 8px); border: 1px solid var(--sr-stroke); background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.10) 100%); }
html.theme-dark .sr-ridge-canvas { background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%); }
.sr-ridge-legend { display: flex; gap: 1rem; align-items: center; margin-top: 0.65rem; color: var(--sr-ink3); font-weight: 750; font-size: 0.85rem; }
.sr-dot { width: 10px; height: 10px; border-radius: 99px; display: inline-block; margin-right: 0.35rem; vertical-align: -1px; }
.sr-dot-home { background: rgba(74, 167, 255, 0.85); box-shadow: 0 0 0 3px rgba(74, 167, 255, 0.15); }
.sr-dot-peak { background: rgba(70, 230, 210, 0.85); box-shadow: 0 0 0 3px rgba(70, 230, 210, 0.15); }

/* Gallery */
.sr-gallery { margin-top: 1.25rem; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem; }
@media (max-width: 860px) { .sr-gallery { grid-template-columns: 1fr; } }
.sr-gallery-item { border-radius: var(--sr-radius-lg); overflow: hidden; border: 1px solid var(--sr-stroke); background: rgba(255,255,255,0.35); box-shadow: var(--sr-shadow-sm); }
.sr-gallery-item img { width: 100%; height: 100%; display: block; object-fit: cover; aspect-ratio: 16 / 10; }
.sr-gallery-item:hover { transform: translateY(-1px); transition: transform var(--sr-dur-1) var(--sr-ease); }
.sr-gallery-cta { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Carousel (scroll cue + progress dots) */
.sr-carousel { margin-top: 1.15rem; }
.sr-carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 0.85rem;
    overflow-x: auto;
    padding: 0.25rem 0.15rem 0.65rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.sr-carousel-track::-webkit-scrollbar { display: none; }
.sr-carousel-item {
    scroll-snap-align: center;
    border-radius: var(--sr-radius-lg);
    overflow: hidden;
    border: 1px solid var(--sr-stroke);
    box-shadow: var(--sr-shadow-sm);
    background: rgba(255,255,255,0.12);
}
.sr-carousel-item img { width: 100%; height: 100%; display: block; object-fit: cover; aspect-ratio: 16 / 10; }
.sr-carousel-ui { margin-top: 0.65rem; display: flex; justify-content: center; }
.sr-carousel-dots { display: inline-flex; gap: 0.4rem; padding: 0.3rem 0.45rem; border-radius: var(--sr-radius-pill); border: 1px solid var(--sr-stroke); background: rgba(255,255,255,0.40); }
html.theme-dark .sr-carousel-dots { background: rgba(255,255,255,0.06); }
.sr-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: rgba(12,22,34,0.22);
    cursor: pointer;
}
html.theme-dark .sr-carousel-dot { background: rgba(255,255,255,0.22); }
.sr-carousel-dot.is-active { background: rgba(74,167,255,0.88); }

@media (max-width: 768px) {
    .sr-carousel-track { grid-auto-columns: 86%; }
}

/* Editorial gallery grid */
.sr-gallery-editorial {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.9rem;
}
.sr-gallery-editorial .sr-gallery-item { grid-column: span 6; }
.sr-gallery-item--wide { grid-column: span 8; }
.sr-gallery-item--tall { grid-column: span 4; }
.sr-gallery-item--tall img { aspect-ratio: 10 / 14; }
@media (max-width: 860px) {
    .sr-gallery-editorial { grid-template-columns: 1fr; }
    .sr-gallery-editorial .sr-gallery-item,
    .sr-gallery-item--wide,
    .sr-gallery-item--tall { grid-column: auto; }
    .sr-gallery-item--tall img { aspect-ratio: 16 / 10; }
}

/* Location (reference-style split) */
.sr-loc-split {
    margin-top: 1.25rem;
    border-radius: var(--sr-radius-lg);
    overflow: hidden;
    border: 1px solid var(--sr-stroke);
    box-shadow: var(--sr-shadow-lg);
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 520px;
}
@media (max-width: 980px) {
    .sr-loc-split { grid-template-columns: 1fr; min-height: 0; }
}

.sr-loc-left {
    background:
        radial-gradient(900px 560px at 18% 18%, rgba(74,167,255,0.16) 0%, rgba(74,167,255,0.0) 60%),
        radial-gradient(900px 560px at 78% 22%, rgba(70,230,210,0.08) 0%, rgba(70,230,210,0.0) 62%),
        linear-gradient(180deg, rgba(8, 14, 22, 0.70) 0%, rgba(8, 14, 22, 0.88) 100%);
    color: rgba(255,255,255,0.86);
    padding: clamp(1.2rem, 2.6vw, 1.8rem);
}
.sr-loc-left .sr-label { color: rgba(255,255,255,0.72); }
.sr-loc-left .sr-h2 { color: #fff; }
.sr-loc-left .sr-lede { color: rgba(255,255,255,0.72); }

.sr-loc-advantages {
    margin-top: 1.1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
@media (max-width: 1200px) {
    .sr-loc-advantages { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
    .sr-loc-advantages { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
    .sr-loc-advantages { grid-template-columns: 1fr; }
}

.sr-loc-adv {
    text-align: center;
    padding: 0.95rem 0.85rem;
    border-radius: var(--sr-radius-md);
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
}
.sr-loc-adv-ic {
    width: 42px;
    height: 42px;
    margin: 0 auto 0.6rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.18);
    display: grid;
    place-items: center;
    color: rgba(255,255,255,0.90);
    background: rgba(255,255,255,0.05);
}
.sr-loc-adv-ic svg { width: 22px; height: 22px; }
.sr-loc-adv-t { font-weight: 860; letter-spacing: -0.01em; color: #fff; }
.sr-loc-adv-s { margin-top: 0.25rem; color: rgba(255,255,255,0.68); font-weight: 700; font-size: 0.92rem; line-height: 1.35; }

.sr-loc-right { background: rgba(255,255,255,0.03); }
.sr-loc-map { position: relative; height: 100%; }
.location-map { width: 100%; height: 100%; min-height: 520px; border: 0; display: block; }
@media (max-width: 980px) { .location-map { min-height: 420px; } }

/* Final band */
.sr-final { padding-top: 1.2rem; }
.sr-final-inner { padding: 1.35rem 1.25rem; }

/* ----- Forms (enquiry page + bottom pane) ----- */
.form-section { max-width: 720px; }
.form-group { margin: 0 0 1rem; }
.form-group label { display: block; font-weight: 800; color: var(--sr-ink); margin-bottom: 0.35rem; }
.required { color: rgba(43, 124, 255, 0.95); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    border: 1px solid var(--sr-stroke2);
    background: rgba(255, 255, 255, 0.60);
    color: var(--sr-ink);
    outline: none;
    transition: border-color var(--sr-dur-1) var(--sr-ease), box-shadow var(--sr-dur-1) var(--sr-ease), background var(--sr-dur-1) var(--sr-ease);
}
html.theme-dark .form-group input,
html.theme-dark .form-group select,
html.theme-dark .form-group textarea { background: rgba(255, 255, 255, 0.06); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
    border-color: rgba(255, 80, 120, 0.55);
    box-shadow: 0 0 0 4px rgba(255, 80, 120, 0.14);
}
.form-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.75rem; }
.form-group-checkbox { display: flex; gap: 0.65rem; align-items: flex-start; }
.form-group-checkbox input { width: 18px; height: 18px; margin-top: 0.2rem; }
.form-note { font-size: 0.9rem; color: var(--sr-ink3); margin-top: 0.85rem; }

.alert { padding: 0.9rem 1rem; border-radius: var(--sr-radius-md); border: 1px solid var(--sr-stroke); background: rgba(255, 255, 255, 0.55); box-shadow: var(--sr-shadow-sm); }
.alert-success { border-color: rgba(70, 230, 210, 0.35); }
.alert-error { border-color: rgba(255, 80, 120, 0.40); background: rgba(255, 80, 120, 0.08); color: var(--sr-ink); }

/* Fixed bottom enquiry pane */
body.has-enquiry-pane { padding-bottom: 56px; }
body.has-enquiry-pane.enquiry-pane-open { padding-bottom: min(85vh, 540px); }
.enquiry-pane {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(247, 251, 255, 0.72);
    border-top: 1px solid var(--sr-stroke);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: var(--sr-radius-lg) var(--sr-radius-lg) 0 0;
    box-shadow: var(--sr-shadow-md);
}
html.theme-dark .enquiry-pane { background: rgba(7, 14, 21, 0.72); }
.enquiry-pane.is-open {
    background: rgba(247, 251, 255, 0.92);
}
html.theme-dark .enquiry-pane.is-open {
    background: rgba(7, 14, 21, 0.92);
}
.enquiry-pane-toggle {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 0.9rem 1.1rem;
    font-family: var(--sr-font-display);
    font-weight: 820;
    letter-spacing: -0.02em;
    color: var(--sr-ink);
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
}
.enquiry-pane-toggle::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-55%) rotate(45deg);
    opacity: 0.7;
}
.enquiry-pane.is-open .enquiry-pane-toggle::after {
    transform: translateY(-40%) rotate(-135deg);
}
html.theme-dark .enquiry-pane-toggle {
    color: rgba(255, 255, 255, 0.92);
}
html.theme-dark .enquiry-pane-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
}
.enquiry-pane-inner { max-height: 0; overflow: hidden; transition: max-height var(--sr-dur-2) var(--sr-ease2); }
.enquiry-pane.is-open .enquiry-pane-inner { max-height: min(85vh, 520px); overflow-y: auto; }
.enquiry-pane-form { padding: 0 1.1rem 1.1rem; max-width: var(--sr-max); margin: 0 auto; }
.enquiry-pane.is-open .enquiry-pane-form {
    padding-top: 0.75rem;
}

/* Ensure form readability on the pane background */
.enquiry-pane .form-group label { color: var(--sr-ink); }
html.theme-dark .enquiry-pane .form-group label { color: rgba(255,255,255,0.88); }
html.theme-dark .enquiry-pane .form-note { color: rgba(255,255,255,0.62); }
html.theme-dark .enquiry-pane .form-group-checkbox label { color: rgba(255,255,255,0.74); }

html.theme-dark .enquiry-pane .form-group input,
html.theme-dark .enquiry-pane .form-group select,
html.theme-dark .enquiry-pane .form-group textarea {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(255,255,255,0.92);
}

.enquiry-pane.is-open .enquiry-pane-fields {
    gap: 1rem 1.1rem;
}
.enquiry-pane.is-open .enquiry-pane-actions {
    padding-top: 0.25rem;
}
.enquiry-pane-fields { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.9rem; margin-bottom: 0.85rem; }
.enquiry-pane-fields .form-group-checkbox { grid-column: 1 / -1; }
.enquiry-pane-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.enquiry-pane-actions .btn { padding: 0.7rem 1rem; }
@media (max-width: 768px) {
    .enquiry-pane-fields { grid-template-columns: 1fr; }
    body.has-enquiry-pane.enquiry-pane-open { padding-bottom: min(85vh, 560px); }
}

/* Legal pages */
.legal-content { max-width: 72ch; margin: 0 auto; }
.legal-content h2 { font-family: var(--sr-font-display); color: var(--sr-ink); }
.legal-content p, .legal-content ul { color: var(--sr-ink2); }

/* Footer */
.site-footer {
    margin-top: 3rem;
    padding: 2.4rem 1.1rem;
    background:
        radial-gradient(900px 460px at 15% 20%, rgba(74, 167, 255, 0.16) 0%, rgba(74, 167, 255, 0.0) 62%),
        radial-gradient(760px 420px at 82% 25%, rgba(70, 230, 210, 0.12) 0%, rgba(70, 230, 210, 0.0) 62%),
        linear-gradient(180deg, rgba(12, 22, 34, 0.05) 0%, rgba(12, 22, 34, 0.10) 100%);
    border-top: 1px solid var(--sr-stroke);
}
.footer-inner { max-width: var(--sr-max); margin: 0 auto; text-align: center; }
.footer-brand { font-family: var(--sr-font-display); color: var(--sr-ink); font-weight: 820; margin: 0 0 0.4rem; }
.footer-promise { margin: 0 auto 1rem; color: var(--sr-ink3); max-width: 64ch; }
.footer-disclaimer { margin: 0 auto 1rem; max-width: 980px; color: var(--sr-ink3); font-size: 0.92rem; }
.footer-nav { display: flex; justify-content: center; gap: 1rem; margin: 0.75rem 0 0.5rem; }
.footer-copy { margin: 0.5rem 0 0; color: var(--sr-ink3); font-size: 0.9rem; }

/* ----- Mobile UX (best practices) ----- */
@media (max-width: 768px) {
    /* Keep comfortable gutters */
    .section,
    .sr-section { padding-left: 0.95rem; padding-right: 0.95rem; }

    /* Hero: stack with clear hierarchy */
    .sr-hero { padding-top: 1.15rem; padding-bottom: 1.15rem; }
    .sr-hero-split { gap: 0.85rem; }
    .sr-hero-left { text-align: center; }
    .sr-hero-left .sr-hero-title { font-size: clamp(1.75rem, 6vw, 2.4rem); }
    .sr-hero-left .sr-hero-sub { font-size: 0.98rem; }
    .sr-hero-right { min-height: 320px; }

    /* CTA: large tap targets, full-width */
    .sr-hero-cta { flex-direction: column; align-items: stretch; }
    .sr-hero-cta .btn { width: 100%; justify-content: center; }

    /* Facts: avoid cramped 3-up on small devices */
    .sr-hero-facts { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
    /* Slightly tighter vertical rhythm */
    .sr-hero-left-divider { margin: 0.85rem 0; }
    .sr-fact { padding: 0.75rem 0.8rem; }
    .sr-fact-value { font-size: 1.25rem; }
}

@media (hover: none) and (pointer: coarse) {
    /* Don’t rely on hover for affordances */
    .btn:hover { transform: none; }
}

@media (max-width: 768px) {
    /* Location split: keep the left panel readable + grid sensible */
    .sr-loc-left { padding: 1.1rem; }
    .sr-loc-advantages { gap: 0.85rem; }
}

@media (max-width: 600px) {
    /* Enquiry drawer actions: full width for thumb reach */
    .enquiry-pane-actions { flex-direction: column; align-items: stretch; }
    .enquiry-pane-actions .btn { width: 100%; justify-content: center; }
}

/* ----- Motion system hooks (JS toggles .is-revealed) ----- */
[data-reveal] {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity var(--sr-dur-2) var(--sr-ease2), transform var(--sr-dur-2) var(--sr-ease2);
    will-change: opacity, transform;
}
[data-reveal="fade"] { transform: translateY(0); }
.is-revealed[data-reveal] { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
    .btn, .header-nav-link, .header-cta, .sr-chip { transition: none !important; }
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 0.5em;
    color: var(--color-heading);
    letter-spacing: 0.02em;
}

.section-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 0.5rem;
}
.section-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 2rem;
}
.section-alt {
    background: var(--color-warm);
}

.section-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--color-bg);
    max-width: var(--max-width);
    margin: 0 auto;
}
.section-divider-line {
    flex: 1;
    height: 0;
    border-top: 1px solid var(--color-accent);
    opacity: 0.5;
}
.section-divider img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
}
/* Divider before alternate (warm) section matches that section’s background */
.section-divider:has(+ .section-alt) {
    background: var(--color-warm);
}
.section-divider:has(+ .section-alt) .section-divider-line {
    border-top-color: var(--color-accent);
}

.highlights-text {
    margin-bottom: 0;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}
.lifestyle-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
}
.lifestyle-grid img:hover {
    transform: scale(1.02);
}
@media (max-width: 768px) {
    .lifestyle-grid {
        grid-template-columns: 1fr;
    }
}

.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
    align-items: flex-start;
}
.location-advantages {
    flex: 1 1 280px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-content: start;
}
.location-advantage-card {
    text-align: center;
    padding: 1.25rem 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.location-advantage-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.location-advantage-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
    color: var(--color-accent);
}
.location-advantage-icon svg {
    width: 100%;
    height: 100%;
}
.location-advantage-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    margin: 0;
    line-height: 1.35;
}
@media (max-width: 480px) {
    .location-advantages {
        grid-template-columns: 1fr;
    }
}

.location-map-wrap {
    flex: 1 1 320px;
    min-width: 280px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.location-map {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}
.location-map-cta {
    margin: 1rem 0 0;
}
.location-map-cta .btn {
    font-size: 14px;
}

.gallery-cta {
    margin: 1.5rem 0 0;
}

/* Hero */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-color: var(--color-accent);
    background-image: linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.55) 100%),
        var(--hero-bg, url('../images/plan-night.png'));
    background-size: auto, cover;
    background-position: center, center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2.5rem 1.5rem;
    max-width: 40rem;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 400;
    margin: 0 0 0.5rem;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
    letter-spacing: 0.02em;
}
.hero-label {
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 0.5rem;
    opacity: .9;
}
.hero-tagline {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.75em;
    margin: 0 0 1rem;
    opacity: .95;
}
.hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    font-size: 15px;
    opacity: .95;
}
.hero-features li {
    margin-bottom: 0.35rem;
}
.hero-features li::before {
    content: '\2014 ';
}
/* Legacy button styles removed (conflicted with Alpine system) */

/* About */
.about-text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 28px;
    max-width: 65ch;
    margin: 0;
    color: var(--color-text);
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.amenity-card {
    background: var(--color-surface);
    padding: 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.amenity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.amenity-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
}
.amenity-card-body {
    padding: 1.25rem 1.5rem;
}
.amenity-card h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    margin: 0 0 0.5rem;
    font-size: 20px;
    color: var(--color-accent);
}
.amenity-card p {
    font-size: 15px;
    color: var(--color-text-muted);
    margin: 0;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.gallery-grid a {
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-grid a:hover {
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.gallery-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.gallery-grid a:hover img {
    transform: scale(1.03);
}

/* Enquiry CTA block */
.enquiry-cta {
    background: var(--color-accent);
    color: #fff;
    text-align: center;
    padding: clamp(2.5rem, 5vw, 3.5rem) 1.5rem;
    border-radius: 0;
}
.enquiry-cta .section-title,
.enquiry-cta .section-subtitle {
    color: inherit;
    margin-bottom: 1rem;
}
.enquiry-cta .section-subtitle {
    opacity: .9;
}
.enquiry-cta .hero-cta {
    margin-top: 1rem;
}
.enquiry-cta .btn-outline {
    border-color: #fff;
    color: #fff;
}
.enquiry-cta .btn-outline:hover {
    background: rgba(255,255,255,.2);
}

/* Form */
.form-section {
    max-width: 32rem;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 1.25rem;
}
/* Legacy form styles removed (conflicted with Alpine system) */
.form-group-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}
.form-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.form-note {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
}
.form-note a {
    color: var(--color-accent);
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}
.alert-success {
    background: rgba(26, 141, 138, 0.08);
    border: 1px solid var(--color-accent);
    color: var(--color-text-muted);
    border-radius: var(--radius-sm);
}
.alert-error {
    background: #ffebee;
    border: 1px solid #ef9a9a;
    color: #b71c1c;
}

/* Legal pages */
.legal-content {
    max-width: 65ch;
    margin: 0 auto;
}
.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-heading);
    margin: 2rem 0 0.75rem;
}
.legal-content p,
.legal-content ul {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75em;
    color: var(--color-text-muted);
    margin: 0 0 1rem;
}
.legal-content ul {
    padding-left: 1.5rem;
}

/* Fixed bottom enquiry pane */
body.has-enquiry-pane {
    padding-bottom: 56px;
}
body.has-enquiry-pane.enquiry-pane-open {
    padding-bottom: min(85vh, 540px);
}
.enquiry-pane {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-surface);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    border-top: 1px solid var(--color-border);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transition: box-shadow var(--transition);
}
.enquiry-pane-toggle {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-accent);
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease;
    position: relative;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.enquiry-pane-toggle:hover {
    background: var(--color-warm);
    color: var(--color-accent-hover);
}
.enquiry-pane-inner {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.enquiry-pane.is-open .enquiry-pane-inner {
    max-height: min(85vh, 520px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
.enquiry-pane-form {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}
.enquiry-pane-fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1.25rem;
    margin-bottom: 1rem;
}
.enquiry-pane-fields .form-group-checkbox {
    grid-column: 1 / -1;
}
.enquiry-pane-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.5rem;
    padding-bottom: 0.25rem;
}
.enquiry-pane-actions .btn {
    font-size: 14px;
}
@media (max-width: 768px) {
    .enquiry-pane-fields {
        grid-template-columns: 1fr;
    }
    body.has-enquiry-pane.enquiry-pane-open {
        padding-bottom: min(85vh, 560px);
    }
}

/* Footer */
.site-footer {
    position: relative;
    color: #ccc;
    padding: 2rem 1.5rem;
    margin-top: 3rem;
    background-color: var(--color-dark);
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.65) 100%),
        var(--footer-bg, url('../images/footer-backdrop.png'));
    background-size: auto, cover;
    background-position: center, center;
    background-repeat: no-repeat;
}
.site-footer .footer-inner {
    position: relative;
    z-index: 1;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}
.footer-brand {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    margin: 0 0 0.5rem;
}
.footer-promise {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin: 0 auto 1rem;
    max-width: 480px;
    text-align: center;
}
.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 1rem;
}
.footer-disclaimer p {
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.5;
    color: #aaa;
    margin: 0;
}
.footer-nav {
    margin: 0.5rem 0;
}
.footer-nav a {
    font-family: var(--font-body);
    color: #aaa;
    margin: 0 0.75rem;
    transition: color 0.3s;
}
.footer-nav a:hover {
    color: var(--color-accent);
}
.footer-copy {
    font-family: var(--font-body);
    font-size: 14px;
    margin: 0.5rem 0 0;
    color: #888;
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
    .header-inner {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .section {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

@media (max-width: 900px) {
    .location-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    .location-advantages {
        flex: 1 1 auto;
        width: 100%;
    }
    .location-map-wrap {
        flex: 1 1 auto;
        min-width: 100%;
        order: -1;
    }
    .location-map {
        height: 320px;
    }
    .amenities-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    .site-main {
        min-height: 50vh;
    }
    .section {
        padding-top: 2rem;
        padding-bottom: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .section-label {
        font-size: 12px;
        letter-spacing: 2px;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .section-subtitle {
        font-size: 0.875rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }
    .about-text {
        font-size: 1rem;
        line-height: 1.65;
    }
    .hero {
        min-height: 75vh;
    }
    .hero-content {
        padding: 1.75rem 1rem;
    }
    .hero-title {
        font-size: 1.75rem;
    }
    .hero-tagline {
        font-size: 1rem;
    }
    .hero-features {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }
    .hero-cta {
        gap: 0.5rem;
        flex-direction: column;
        width: 100%;
        max-width: 20rem;
        margin: 0 auto;
    }
    .hero-cta .btn {
        width: 100%;
        padding: 0.65rem 1.25rem;
        font-size: 0.875rem;
    }
    .section-divider {
        padding: 1rem 1rem;
        gap: 0.75rem;
    }
    .section-divider img {
        width: 32px;
        height: 32px;
    }
    .lifestyle-grid {
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    .location-map {
        height: 280px;
    }
    .location-advantage-card {
        padding: 1rem 0.75rem;
    }
    .location-advantage-text {
        font-size: 13px;
    }
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .amenity-card-body {
        padding: 1rem 1.25rem;
    }
    .amenity-card h3 {
        font-size: 1.125rem;
    }
    .amenity-card p {
        font-size: 0.9375rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .gallery-cta {
        margin-top: 1rem;
    }
    .gallery-cta .btn {
        width: 100%;
        max-width: 18rem;
    }
    .enquiry-cta {
        padding: 2rem 1rem;
    }
    .enquiry-cta .section-title {
        font-size: 1.375rem;
    }
    .enquiry-cta .section-subtitle {
        font-size: 0.9375rem;
    }
    .enquiry-cta .hero-cta {
        flex-direction: column;
        gap: 0.5rem;
    }
    .enquiry-cta .hero-cta .btn {
        width: 100%;
        max-width: 18rem;
    }
    .enquiry-pane-form {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 1.25rem;
    }
    .enquiry-pane-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .enquiry-pane-actions .btn {
        width: 100%;
    }
    .site-footer {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }
    .footer-brand {
        font-size: 1rem;
    }
    .footer-promise {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
    }
    .footer-disclaimer p {
        font-size: 11px;
    }
    .footer-nav a {
        display: inline-block;
        margin: 0.25rem 0.5rem 0.25rem 0;
    }
    .footer-copy {
        font-size: 0.8125rem;
    }
}

@media (max-width: 600px) {
    .section {
        padding-top: 1.75rem;
        padding-bottom: 1.75rem;
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }
    .section-title {
        font-size: 1.375rem;
    }
    .hero {
        min-height: 70vh;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .location-map {
        height: 250px;
    }
    .form-section {
        max-width: 100%;
    }
    .form-actions {
        flex-direction: column;
    }
    .form-actions .btn,
    .form-actions a {
        width: 100%;
    }
    body.has-enquiry-pane {
        padding-bottom: 52px;
    }
    body.has-enquiry-pane.enquiry-pane-open {
        padding-bottom: min(80vh, 520px);
    }
    .enquiry-pane-toggle {
        padding: 0.75rem 1rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 380px) {
    .header-actions {
        gap: 0.5rem;
    }
    .header-divider {
        display: none;
    }
    .header-project-img {
        max-width: 90px;
        height: 32px;
    }
    .header-cta {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
}
