/* ========================================================================
   The Sahl Gate · Sapphire — Home page stylesheet
   --------------------------------------------------------------------
   All custom utility classes are prefixed with `.sg-` (sahl-gate) so that
   nothing leaks into the rest of the Blazor app or collides with Bootstrap.
   Brand tokens are defined as CSS custom properties (sampled from the
   official Sapphire logo: deep royal sapphire blue).
   ======================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Allura&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ====================== 1. BRAND TOKENS ===================== */
:root {
    --sg-sapphire:        #103E8E; /* primary brand color (logo) */
    --sg-sapphire-deep:   #0A2A6B; /* hover / pressed state */
    --sg-sapphire-ink:    #06173E; /* deepest — footer + headlines */
    --sg-sapphire-light:  #1E55B5; /* lighter accent */
    --sg-sapphire-soft:   #E8EEF8; /* tinted background */

    --sg-cream:           #FBF9F4;
    --sg-bone:            #F4F1EA;

    --sg-sand:            #65d7d7;
    --sg-sand-light:      #9ee8e8;
    --sg-sand-dark:       #3d9e9e;

    --sg-gold:            #52c9c9;

    --sg-panel-top:       #132743;
    --sg-panel-mid:       #102038;
    --sg-panel-deep:      #0d1a30;
    --sg-panel-border:    rgba(101, 215, 215, 0.14);
    --sg-panel-card-gradient: linear-gradient(135deg, #101e36 0%, #0a1528 55%, #040c18 100%);

    --sg-tracking-widest: 0.28em;

    --sg-section-eyebrow-size: clamp(0.8125rem, 0.55vw + 0.72rem, 1rem);
    --sg-section-eyebrow-tracking: 0.28em;
}

/* Section eyebrows — Sapphire, Our edge, Our Projects, Our Trusted Partners */
.sg-section-eyebrow,
.sg-statement__eyebrow,
.sg-pillars__eyebrow,
.sg-projects-intro__eyebrow,
.sg-partners-intro__eyebrow,
.sg-location__eyebrow,
.sg-ushow-section__title {
    font-size: var(--sg-section-eyebrow-size);
    letter-spacing: var(--sg-section-eyebrow-tracking);
}

.sg-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 0 0 clamp(3rem, 6vw, 4.5rem);
    font-family: inherit;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--sg-sand-dark);
}
.sg-section-eyebrow::before,
.sg-section-eyebrow::after {
    content: '';
    width: 2.75rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sg-sand));
}
.sg-section-eyebrow::after {
    background: linear-gradient(90deg, var(--sg-sand), transparent);
}

/* ====================== 2. PAGE RESET (scoped) =============== */
/* `.sg-page` wraps the whole Home component so global app
   styles (Bootstrap, app.css body font, etc.) don't leak in.    */

.sg-page {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-weight: 300;
    line-height: 1.5;
    color: var(--sg-sapphire-ink);
    background: var(--sg-cream);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
    max-width: 100%;
}

.sg-page,
.sg-page * { box-sizing: border-box; }

.sg-page h1, .sg-page h2, .sg-page h3, .sg-page h4, .sg-page p { margin: 0; }
.sg-page a:not(.sg-btn) { color: inherit; text-decoration: none; }
.sg-page ul { list-style: none; padding: 0; margin: 0; }
.sg-page img { max-width: 100%; height: auto; display: block; }
.sg-page button { font-family: inherit; cursor: pointer; }

.sg-page { scroll-behavior: smooth; }

.sg-page section[id],
.sg-page footer[id] {
    scroll-margin-top: calc(var(--sg-nav-h, 3.5rem) + 0.75rem);
}

/* Visually hidden but accessible to screen readers */
.sg-visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

/* ====================== 3. CONTAINER ========================= */
.sg-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}
@media (min-width: 768px)  { .sg-container { padding: 0 2rem; } }
@media (min-width: 1280px) { .sg-container { padding: 0 2.5rem; } }

/* ====================== 4. NAVIGATION (premium dark) ========= */
.sg-nav {
    --sg-nav-h: 3.5rem;
    --sg-corp-emerald: #005b52;
    --sg-corp-emerald-deep: #004a44;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    overflow-x: clip;
    color: rgba(255, 255, 255, 0.92);
    background: var(--sg-panel-card-gradient);
    border-bottom: 1px solid var(--sg-panel-border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.24);
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}
.sg-nav--scrolled {
    background: var(--sg-panel-card-gradient);
    border-bottom-color: rgba(101, 215, 215, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.32);
}
/* max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 + py-5 / py-6 */
.sg-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-sizing: border-box;
    max-width: 80rem;
    margin: 0 auto;
    height: var(--sg-nav-h);
    min-height: var(--sg-nav-h);
    max-height: var(--sg-nav-h);
    padding: 0.5rem 1rem;
}
@media (min-width: 640px) {
    .sg-nav__inner { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
    .sg-nav {
        --sg-nav-h: 3.75rem;
    }
    .sg-nav__inner {
        padding-top: 0.625rem;
        padding-bottom: 0.625rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
.sg-nav__logo-link {
    display: inline-flex;
    align-items: center;
    align-self: center;
    flex-shrink: 0;
    z-index: 52;
    line-height: 0;
}
.sg-nav__logo {
    display: block;
    height: 2.25rem;
    max-height: 2.5rem;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 1px 6px rgba(101, 215, 215, 0.28));
}

/* Burger — mobile / tablet */
.sg-nav__toggle-check {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.sg-nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    z-index: 52;
    flex-shrink: 0;
}
.sg-nav__toggle:hover {
    background: transparent;
}
.sg-nav__toggle-bar {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.sg-nav__toggle-check:checked + .sg-nav__toggle .sg-nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.sg-nav__toggle-check:checked + .sg-nav__toggle .sg-nav__toggle-bar:nth-child(2) {
    opacity: 0;
}
.sg-nav__toggle-check:checked + .sg-nav__toggle .sg-nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 1536px) {
    .sg-nav__toggle { display: none; }
}

/* Mobile drawer */
.sg-nav__backdrop {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--sg-nav-h);
    z-index: 49;
    background: rgba(2, 6, 23, 0.55);
    cursor: pointer;
}
.sg-nav:has(.sg-nav__toggle-check:checked) .sg-nav__backdrop {
    display: block;
}
.sg-page:has(.sg-nav__toggle-check:checked) {
    overflow: hidden;
}

.sg-nav__list {
    display: none;
    position: fixed;
    top: var(--sg-nav-h);
    left: 0;
    right: 0;
    z-index: 51;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 1rem 1.25rem 1.5rem;
    list-style: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--sg-panel-card-gradient);
    border-bottom: 1px solid var(--sg-panel-border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.36);
    max-height: calc(100vh - var(--sg-nav-h));
    overflow-y: auto;
}
.sg-nav__toggle-check:checked ~ .sg-nav__list {
    display: flex;
}
.sg-nav__list li {
    border-bottom: 1px solid rgba(101, 215, 215, 0.1);
}
.sg-nav__list li:last-child {
    border-bottom: none;
}
.sg-page .sg-nav__list a,
.sg-page .sg-nav__list a:visited {
    display: block;
    padding: 0.9375rem 0.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}
.sg-page .sg-nav__list a:hover {
    color: var(--sg-sand-light);
}
.sg-nav__list-cta {
    display: block;
    margin-top: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(101, 215, 215, 0.12);
    border-bottom: none !important;
}
.sg-nav__cta--in-menu {
    justify-content: center;
    width: 100%;
}

/* Mobile / tablet / laptop — drawer nav + hotline in menu */
@media (max-width: 1535.98px) {
    .sg-nav__cta--bar {
        display: none !important;
    }
    .sg-page .sg-nav__list a.sg-nav__cta--in-menu,
    .sg-page .sg-nav__list a.sg-nav__cta--in-menu:visited {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        width: 100%;
        margin-top: 0.25rem;
        padding: 1.125rem 1.5rem;
        border: none;
        border-radius: 0;
        background: linear-gradient(135deg, var(--sg-corp-emerald) 0%, #004a44 100%);
        font-size: 0.875rem;
        font-weight: 600;
        letter-spacing: 0.16em;
        color: #fff;
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 0.12) inset,
            0 10px 28px rgba(0, 91, 82, 0.28);
    }
    .sg-page .sg-nav__list a.sg-nav__cta--in-menu:hover {
        color: #fff;
        background: linear-gradient(135deg, #006b61 0%, var(--sg-corp-emerald-deep) 100%);
        transform: translateY(-1px);
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 0.12) inset,
            0 14px 32px rgba(0, 91, 82, 0.34);
    }
    .sg-nav__cta--in-menu .sg-nav__cta-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
    .sg-nav__list {
        padding: 1.25rem 1.5rem 1.75rem 1.75rem;
    }
    .sg-page .sg-nav__list a:not(.sg-nav__cta) {
        padding: 1rem 1rem 1rem 1.5rem;
        font-size: 0.8125rem;
        letter-spacing: 0.08em;
    }
}

@media (min-width: 1536px) {
    .sg-nav__inner {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        column-gap: 1.25rem;
        max-width: 90rem;
    }
    .sg-nav__logo-link {
        grid-column: 1;
        grid-row: 1;
    }
    .sg-nav__backdrop { display: none !important; }
    .sg-nav__list {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        position: static;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        align-self: center;
        justify-content: center;
        gap: 1.125rem;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        max-height: none;
        overflow: visible;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        line-height: 1;
    }
    .sg-nav__list li {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        border-bottom: none;
    }
    .sg-nav__list li.sg-nav__list-cta {
        display: none;
    }
    .sg-page .sg-nav__list a {
        display: inline-flex;
        align-items: center;
        padding: 0;
        color: rgba(255, 255, 255, 0.88);
        font-weight: inherit;
        letter-spacing: inherit;
        white-space: nowrap;
    }
    .sg-page .sg-nav__list a:hover {
        color: var(--sg-sand-light);
    }
}
@media (min-width: 1680px) {
    .sg-nav__inner {
        column-gap: 1.5rem;
    }
    .sg-nav__list {
        gap: 1.5rem;
        font-size: 0.8125rem;
        letter-spacing: 0.06em;
    }
}
@media (min-width: 1920px) {
    .sg-nav__list {
        gap: 2rem;
    }
}

@media (min-width: 1536px) and (max-width: 1679.98px) {
    .sg-nav__logo {
        height: 2rem;
    }
    .sg-page a.sg-nav__cta,
    .sg-page a.sg-nav__cta:visited {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }
}
.sg-page a.sg-nav__cta,
.sg-page a.sg-nav__cta:visited {
    display: inline-flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.125rem;
    border: 1px solid var(--sg-corp-emerald);
    border-radius: 0.5rem;
    background: var(--sg-corp-emerald);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
    text-decoration: none;
    z-index: 52;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 91, 82, 0.22);
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.sg-nav__cta-icon {
    width: 1.0625rem;
    height: 1.0625rem;
    flex-shrink: 0;
    stroke: currentColor;
}
.sg-nav__cta-label {
    font-variant-numeric: tabular-nums;
}
.sg-nav__cta--bar {
    display: none;
}
@media (min-width: 1536px) {
    .sg-nav__cta--bar {
        display: inline-flex;
        grid-column: 3;
        grid-row: 1;
    }
    .sg-nav__cta--in-menu {
        display: none !important;
    }
}
.sg-page a.sg-nav__cta:hover {
    background: var(--sg-corp-emerald-deep);
    border-color: var(--sg-corp-emerald-deep);
    color: #fff;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 91, 82, 0.28);
}

/* ====================== 5. HERO ============================== */
.sg-hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 32rem;
    width: 100%;
    overflow: hidden;
    background: var(--sg-cream);
    isolation: isolate;
}
@media (min-width: 768px) {
    .sg-hero {
        min-height: 720px;
    }
}
.sg-hero__slides {
    position: absolute;
    inset: 0;
}
.sg-hero__slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.sg-hero__slide--active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.sg-hero__slide--leaving {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}
.sg-hero__media-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.sg-hero__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 1;
    transform: none;
}
/* Override .sg-page img { height: auto } so hero fills the viewport on mobile */
.sg-page img.sg-hero__media {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    transform: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
@media (max-width: 767px) {
    .sg-page img.sg-hero__media {
        object-position: center 42%;
    }
    .sg-hero__overlay {
        background:
            linear-gradient(180deg, rgba(6, 23, 62, 0.32) 0%, rgba(6, 23, 62, 0.06) 42%, rgba(6, 23, 62, 0.5) 100%),
            linear-gradient(90deg, rgba(6, 23, 62, 0.28) 0%, transparent 50%);
    }
    .sg-hero__slide {
        transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    }
}
.sg-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(6, 23, 62, 0.5) 0%, rgba(6, 23, 62, 0.12) 45%, rgba(6, 23, 62, 0.4) 100%),
        linear-gradient(90deg, rgba(6, 23, 62, 0.45) 0%, rgba(6, 23, 62, 0.05) 55%);
    pointer-events: none;
}
@keyframes sg-hero-title-in {
    from {
        opacity: 0;
        transform: translateY(-2.75rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes sg-hero-title-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-1.75rem);
    }
}
@keyframes sg-hero-desc-in {
    from {
        opacity: 0;
        transform: translateY(2.25rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes sg-hero-desc-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(1.5rem);
    }
}

/* Vertical side-mark (editorial detail) */
.sg-hero__sidemark {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 1.75rem;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    display: none;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.36em;
    white-space: nowrap;
    font-weight: 400;
}
@media (min-width: 1280px) { .sg-hero__sidemark { display: flex; } }
.sg-hero__sidemark-divider {
    display: block;
    width: 2rem;
    height: 1px;
    background: rgba(255,255,255,0.4);
}

.sg-hero__content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--sg-nav-h, 3rem) + 1.5rem) 1.5rem 3rem;
    box-sizing: border-box;
    pointer-events: none;
}
.sg-hero__copy {
    width: 100%;
    max-width: min(52rem, 94vw);
    text-align: center;
}
.sg-hero__line {
    display: block;
    opacity: 0;
    transform: translateY(1.5rem);
    will-change: opacity, transform;
}
.sg-hero__content .sg-hero__line:nth-child(1) {
    animation: sg-hero-title-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}
.sg-hero__content .sg-hero__line:nth-child(2) {
    animation: sg-hero-title-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}
.sg-hero__content .sg-hero__bridge {
    animation: sg-hero-desc-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}
.sg-hero__content .sg-hero__line:nth-child(4) {
    animation: sg-hero-title-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}
.sg-hero__bridge {
    display: block;
    margin: -0.1em 0 -0.05em;
    padding-left: clamp(0.5rem, 6vw, 3.5rem);
    line-height: 0.8;
    opacity: 0;
    transform: translateY(1.25rem);
    will-change: opacity, transform;
}
.sg-hero__slide:not(.sg-hero__slide--active):not(.sg-hero__slide--leaving) .sg-hero__media {
    animation: none;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .sg-hero__slide {
        transition: none;
    }
    .sg-hero__media,
    .sg-hero__line,
    .sg-hero__bridge {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}
.sg-hero__nav {
    position: absolute;
    inset: 0;
    z-index: 12;
    pointer-events: none;
}
.sg-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(6, 23, 62, 0.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--sg-sand-light);
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.sg-hero__arrow svg {
    width: 1.5rem;
    height: 1.5rem;
}
.sg-hero__arrow--prev { left: clamp(0.75rem, 3vw, 2rem); }
.sg-hero__arrow--next { right: clamp(0.75rem, 3vw, 2rem); }
.sg-hero__arrow:hover {
    color: var(--sg-sand-light);
    background: rgba(6, 23, 62, 0.82);
    opacity: 1;
}
.sg-hero__arrow--prev:hover { transform: translateY(-50%) translateX(-3px); }
.sg-hero__arrow--next:hover { transform: translateY(-50%) translateX(3px); }
.sg-hero__arrow--prev:active {
    transform: translateY(-50%) translateX(-3px) scale(0.94);
}
.sg-hero__arrow--next:active {
    transform: translateY(-50%) translateX(3px) scale(0.94);
}
@media (min-width: 768px) {
    .sg-hero__arrow {
        width: 3rem;
        height: 3rem;
    }
    .sg-hero__arrow svg {
        width: 1.75rem;
        height: 1.75rem;
    }
    .sg-hero__arrow--prev { left: 2rem; }
    .sg-hero__arrow--next { right: 2rem; }
}
.sg-hero__tagline {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.0625rem, 0.65vw + 0.9rem, 1.375rem);
    font-weight: 300;
    line-height: 1.55;
    margin: clamp(1rem, 2vw, 1.5rem) 0 0;
    max-width: 36rem;
    letter-spacing: 0.02em;
    text-align: left;
}
.sg-hero__note {
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.6;
    margin-top: 1.25rem;
    max-width: 28rem;
}
.sg-hero__eyebrow {
    color: rgba(255,255,255,0.9);
    font-size: clamp(0.625rem, 0.6vw + 0.45rem, 0.75rem);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 400;
    white-space: nowrap;
}
.sg-hero__eyebrow::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 1px;
    background: var(--sg-sand-light);
    flex-shrink: 0;
}
.sg-hero__headline {
    color: #fff;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.01em;
    text-transform: none;
    margin: 0;
}
.sg-hero__headline--premium {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.97);
    text-shadow: 0 2px 28px rgba(6, 23, 62, 0.42);
}
.sg-hero__headline--premium .sg-hero__line {
    font-size: clamp(2rem, 4.5vw + 0.35rem, 4.5rem);
    letter-spacing: -0.025em;
    color: inherit;
}
.sg-hero__headline--premium .sg-hero__line--accent {
    color: var(--sg-sand-light);
}
.sg-hero__headline--premium .sg-hero__accent {
    font-style: normal;
    color: var(--sg-sand-light);
}
.sg-hero__headline--premium .sg-hero__line + .sg-hero__line {
    margin-top: 0.08em;
}
@media (max-width: 767px) {
    .sg-hero__content {
        padding-left: 2.75rem;
        padding-right: 2.75rem;
    }
    .sg-hero__copy {
        max-width: 100%;
    }
    .sg-hero__headline--premium .sg-hero__line {
        font-size: clamp(2.625rem, 11.5vw + 0.35rem, 3.75rem);
        line-height: 1.05;
    }
    .sg-hero__headline--premium .sg-hero__script,
    .sg-hero__script {
        font-size: clamp(4.5rem, 20vw + 0.25rem, 6.25rem);
        line-height: 0.72;
    }
    .sg-hero__bridge {
        padding-left: clamp(0.75rem, 4vw, 1.75rem);
        margin: -0.05em 0 0;
    }
}
@media (min-width: 1280px) {
    .sg-hero__headline--premium .sg-hero__line {
        font-size: clamp(2.75rem, 3.5vw + 0.5rem, 4.75rem);
    }
}
.sg-hero__headline--premium .sg-hero__script {
    color: var(--sg-sand);
    text-shadow: 0 2px 20px rgba(6, 23, 62, 0.35);
}
.sg-hero__script {
    font-family: 'Allura', cursive;
    color: var(--sg-sand-light);
    font-size: clamp(3.25rem, 11vw + 0.25rem, 7.5rem);
    line-height: 0.75;
    font-weight: 400;
    display: inline-block;
}

.sg-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
@media (min-width: 640px) {
    .sg-hero__actions { flex-direction: row; align-items: center; gap: 2rem; }
}
.sg-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255,255,255,0.7);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: var(--sg-tracking-widest);
}
@media (min-width: 768px) {
    .sg-hero__scroll { display: flex; }
}
.sg-hero__scroll-line {
    display: block;
    width: 1px;
    height: 2.5rem;
    background: rgba(255,255,255,0.5);
}

/* ====================== 6. BUTTONS / LINKS =================== */
.sg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 1.125rem 2.25rem;
    border: 1px solid transparent;
    transition: background-color .3s, color .3s, border-color .3s;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
}
.sg-btn:hover,
.sg-btn:focus,
.sg-btn:visited {
    text-decoration: none;
}
.sg-btn--primary,
.sg-btn--primary:hover,
.sg-btn--primary:visited {
    background: var(--sg-sapphire);
    color: #fff;
}
.sg-btn--primary:hover { background: var(--sg-sapphire-deep); }
.sg-btn--primary .sg-btn__arrow { stroke: #fff; }

.sg-btn--lg {
    padding: 1.375rem 2.75rem;
    font-size: 0.875rem;
    letter-spacing: 0.22em;
}

.sg-btn--dark,
.sg-btn--dark:hover,
.sg-btn--dark:visited {
    background: var(--sg-sapphire-ink);
    color: #fff;
}
.sg-btn--dark:hover { background: var(--sg-sapphire); }
.sg-btn--dark .sg-btn__arrow { stroke: #fff; }

.sg-btn--ghost {
    background: transparent;
    color: var(--sg-sapphire);
    border-color: var(--sg-sapphire);
}
.sg-btn--ghost:hover { background: var(--sg-sapphire); color: #fff; }

.sg-btn__arrow {
    width: 1rem;
    height: 1rem;
    transition: transform .3s;
}
.sg-btn:hover .sg-btn__arrow { transform: translateX(4px); }

/* Subtle hover-underline link (used inside hero + cards) */
.sg-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 400;
    white-space: nowrap;
}
.sg-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 1px;
    width: 100%;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.sg-link:hover::after { transform: scaleX(1); }
.sg-link--quiet { color: rgba(255,255,255,0.9); }

/* ====================== 6b. STATEMENT (below hero) ============= */
.sg-statement {
    position: relative;
    background: var(--sg-cream);
    padding: clamp(3rem, 6.5vh, 4.75rem) 0 clamp(2.75rem, 5.5vh, 4.25rem);
    text-align: center;
    overflow: hidden;
}
/* Soft vignette — depth without noise */
.sg-statement::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 55% at 50% 0%, rgba(16, 62, 142, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 50% 100%, rgba(101, 215, 215, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.sg-statement__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
}
.sg-statement__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 0 0 clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    text-transform: uppercase;
    color: var(--sg-sand-dark);
}
.sg-statement__eyebrow::before,
.sg-statement__eyebrow::after {
    content: '';
    width: 2.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sg-sand));
}
.sg-statement__eyebrow::after {
    background: linear-gradient(90deg, var(--sg-sand), transparent);
}
.sg-statement__title {
    margin: 0;
    max-width: 52rem;
    color: var(--sg-sapphire-ink);
    font-weight: 500;
    font-size: clamp(1.875rem, 3.2vw + 0.75rem, 3.125rem);
    line-height: 1.18;
    letter-spacing: -0.025em;
}
.sg-statement__title-line {
    display: block;
}
.sg-statement__title-line + .sg-statement__title-line {
    margin-top: 0.12em;
}
.sg-statement__text {
    margin: clamp(2.25rem, 4.5vw, 3rem) 0 0;
    max-width: 38rem;
    font-size: clamp(1rem, 0.45vw + 0.9rem, 1.125rem);
    font-weight: 400;
    line-height: 1.75;
    color: #5a6478;
    letter-spacing: 0.01em;
}
.sg-page a.sg-statement__cta,
.sg-page a.sg-statement__cta:visited {
    color: #5a6478;
    text-decoration: none;
}
.sg-statement__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-top: clamp(2.25rem, 4.5vw, 3rem);
    padding: 0.9375rem 1.75rem;
    border-radius: 999px;
    border: 1px solid rgba(6, 23, 62, 0.1);
    background: rgba(255, 255, 255, 0.72);
    box-shadow:
        0 1px 2px rgba(6, 23, 62, 0.04),
        0 8px 24px rgba(6, 23, 62, 0.06);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    transition:
        color .35s ease,
        border-color .35s ease,
        background-color .35s ease,
        box-shadow .35s ease,
        transform .35s ease;
}
.sg-page a.sg-statement__cta:hover {
    color: var(--sg-sapphire-ink);
}
.sg-statement__cta:hover {
    border-color: rgba(16, 62, 142, 0.22);
    background: #fff;
    box-shadow:
        0 2px 4px rgba(6, 23, 62, 0.06),
        0 12px 32px rgba(6, 23, 62, 0.1);
    transform: translateY(-2px);
}
.sg-statement__cta-icon {
    width: 1rem;
    height: 1rem;
    transition: transform .35s ease;
}
.sg-statement__cta:hover .sg-statement__cta-icon {
    transform: translateX(3px);
}
@media (min-width: 768px) {
    .sg-statement__text { max-width: 42rem; }
}

.sg-statement__stats-wrap {
    position: relative;
    width: min(100%, 72rem);
    margin: clamp(2rem, 4vw, 2.75rem) auto 0;
    padding-top: clamp(1.75rem, 3.5vw, 2.5rem);
}
.sg-statement__stats-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 42rem);
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(101, 215, 215, 0.18) 18%,
        rgba(6, 23, 62, 0.12) 50%,
        rgba(101, 215, 215, 0.18) 82%,
        transparent
    );
}
.sg-statement__stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 3rem);
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}
@media (min-width: 640px) {
    .sg-statement__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(0.75rem, 2.5vw, 3rem);
    }
}
.sg-statement__stat {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: clamp(0.5rem, 1.5vw, 1rem) clamp(0.35rem, 1.2vw, 1.25rem);
}
@media (min-width: 640px) {
    .sg-statement__stat:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 12%;
        right: 0;
        width: 1px;
        height: 76%;
        background: linear-gradient(
            180deg,
            transparent,
            rgba(101, 215, 215, 0.28) 22%,
            rgba(6, 23, 62, 0.1) 50%,
            rgba(101, 215, 215, 0.28) 78%,
            transparent
        );
    }
}
@media (max-width: 639px) {
    .sg-statement__stat:not(:last-child) {
        padding-bottom: clamp(2rem, 4vw, 2.5rem);
        border-bottom: 1px solid rgba(101, 215, 215, 0.16);
    }

    .sg-statement__stat-label {
        max-width: none;
    }
}
.sg-statement__stat-value {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.14em;
    margin: 0;
    line-height: 1;
}
.sg-statement__stat-num {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(3.25rem, 6vw + 1rem, 5.5rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--sg-sand-dark);
    text-shadow: 0 0 40px rgba(101, 215, 215, 0.22);
}
.sg-statement__stat-unit {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.375rem, 2vw + 0.5rem, 2.125rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--sg-sand-dark);
}
.sg-statement__stat-label {
    margin: clamp(1rem, 2vw, 1.375rem) 0 0;
    max-width: 11rem;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.0625rem, 1.2vw + 0.75rem, 1.375rem);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: var(--sg-sapphire-ink);
}
@media (min-width: 768px) {
    .sg-statement__stats-wrap { width: min(100%, 68rem); }
    .sg-statement__stat-label { max-width: none; }
}
@media (min-width: 1024px) {
    .sg-statement__stats-wrap { width: min(100%, 76rem); }
    .sg-statement__stats { gap: clamp(2rem, 6vw, 5rem); }
}

/* ====================== 6b2. MAKE IT YOURS (premium offers) ===== */
.sg-offers {
    --sg-corp-emerald: #005b52;
    --sg-corp-emerald-deep: #004a44;
    position: relative;
    background: #fff;
    padding: clamp(4rem, 8vh, 6.5rem) 0 clamp(4.5rem, 9vh, 7rem);
    overflow: hidden;
}
.sg-offers::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 55% at 50% 0%, rgba(101, 215, 215, 0.07) 0%, transparent 58%),
        radial-gradient(ellipse 60% 45% at 50% 100%, rgba(16, 62, 142, 0.04) 0%, transparent 52%);
    pointer-events: none;
}
.sg-offers__wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 56rem;
    margin-inline: auto;
    text-align: center;
}
.sg-page .sg-offers__wrap .sg-section-eyebrow {
    margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
.sg-offers__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 3rem);
    width: 100%;
}
@media (min-width: 640px) {
    .sg-offers__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
    }
}
.sg-offers__stat {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 3vw, 2rem);
}
@media (min-width: 640px) {
    .sg-offers__stat:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 12%;
        right: 0;
        bottom: 12%;
        width: 1px;
        background: linear-gradient(
            180deg,
            transparent 0%,
            rgba(101, 215, 215, 0.35) 18%,
            rgba(101, 215, 215, 0.35) 82%,
            transparent 100%
        );
    }
}
.sg-offers__value {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.14em;
    margin: 0;
    line-height: 1;
}
.sg-offers__num {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(3.25rem, 6vw + 1rem, 5.5rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--sg-sand-dark);
    text-shadow: 0 0 40px rgba(101, 215, 215, 0.22);
}
.sg-offers__suffix {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.375rem, 2vw + 0.5rem, 2.125rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--sg-sand-dark);
}
.sg-offers__label {
    margin: clamp(1rem, 2vw, 1.375rem) 0 0;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.0625rem, 1.2vw + 0.75rem, 1.375rem);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: var(--sg-sapphire-ink);
}
.sg-offers__cta-wrap {
    margin-top: clamp(3rem, 6vw, 4.5rem);
}
.sg-page a.sg-offers__cta,
.sg-page a.sg-offers__cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(100%, 16rem);
    padding: 0.9375rem 2.5rem;
    border-radius: 999px;
    border: 1.5px solid var(--sg-corp-emerald);
    background: var(--sg-corp-emerald);
    color: #fff;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(1rem, 0.5vw + 0.9rem, 1.125rem);
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 91, 82, 0.22);
    transition:
        color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sg-page a.sg-offers__cta:hover {
    color: #fff;
    background: var(--sg-corp-emerald-deep);
    border-color: var(--sg-corp-emerald-deep);
    box-shadow: 0 6px 20px rgba(0, 91, 82, 0.28);
    transform: translateY(-2px);
}
@media (max-width: 639px) {
    .sg-offers__stat:not(:last-child) {
        padding-bottom: clamp(2rem, 4vw, 2.5rem);
        border-bottom: 1px solid rgba(101, 215, 215, 0.16);
    }
}

/* ====================== 6b3. CONSTRUCTION UPDATES (premium) ===== */
.sg-updates {
    position: relative;
    background: var(--sg-cream);
    padding: clamp(4rem, 8vh, 6.5rem) 0 clamp(4.5rem, 9vh, 7rem);
    overflow: hidden;
}
.sg-updates::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 75% 50% at 18% 12%, rgba(101, 215, 215, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 70% 48% at 82% 88%, rgba(16, 62, 142, 0.04) 0%, transparent 52%);
    pointer-events: none;
}
.sg-updates__wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 72rem;
    margin-inline: auto;
    text-align: center;
}
.sg-page .sg-updates__wrap .sg-section-eyebrow {
    margin-bottom: clamp(3.5rem, 7vw, 5rem);
}
.sg-updates__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 2.75rem);
    width: 100%;
}
@media (min-width: 900px) {
    .sg-updates__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(1.75rem, 3vw, 2.25rem);
    }
}
.sg-update {
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow:
        0 0 0 1px rgba(6, 23, 62, 0.05),
        0 14px 40px rgba(6, 23, 62, 0.07);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (pointer: fine) {
    .sg-update:hover {
        transform: translateY(-4px);
        box-shadow:
            0 0 0 1px rgba(101, 215, 215, 0.1),
            0 22px 52px rgba(6, 23, 62, 0.11);
    }
}
.sg-update__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--sg-bone);
}
.sg-update__media--live::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(6, 23, 62, 0.18) 0%, transparent 28%, transparent 72%, rgba(6, 23, 62, 0.28) 100%);
}
.sg-update__slides {
    position: absolute;
    inset: 0;
}
.sg-update__slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.sg-update__slide--active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
}
.sg-page img.sg-update__img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    cursor: zoom-in;
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.sg-update__slide--active .sg-update__img {
    transform: scale(1);
}
@media (hover: hover) and (pointer: fine) {
    .sg-update:hover .sg-update__slide--active .sg-update__img {
        transform: scale(1.04);
    }
}
.sg-update__date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    padding: 0.4375rem 0.875rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--sg-sapphire-ink);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    box-shadow: 0 4px 16px rgba(6, 23, 62, 0.1);
}
.sg-update__expand {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(6, 23, 62, 0.52);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.35s ease, transform 0.35s ease;
}
.sg-update__expand svg {
    width: 1rem;
    height: 1rem;
}
.sg-update__expand:hover {
    background: rgba(6, 23, 62, 0.72);
    transform: scale(1.06);
}
.sg-update__arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(6, 23, 62, 0.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--sg-sand-light);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.35s ease, background-color 0.35s ease, transform 0.35s ease;
}
.sg-update__media:hover .sg-update__arrow,
.sg-update__media:focus-within .sg-update__arrow {
    opacity: 1;
}
.sg-update__arrow svg {
    width: 1.125rem;
    height: 1.125rem;
}
.sg-update__arrow--prev { left: 0.875rem; }
.sg-update__arrow--next { right: 0.875rem; }
.sg-update__arrow:hover {
    background: rgba(6, 23, 62, 0.82);
    color: var(--sg-sand-light);
}
.sg-update__arrow--prev:hover { transform: translateY(-50%) translateX(-2px); }
.sg-update__arrow--next:hover { transform: translateY(-50%) translateX(2px); }
.sg-update__counter {
    position: absolute;
    left: 50%;
    bottom: 0.875rem;
    z-index: 3;
    transform: translateX(-50%);
    padding: 0.3125rem 0.6875rem;
    border-radius: 999px;
    background: rgba(6, 23, 62, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1;
}
.sg-update__body {
    padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 1.875rem) clamp(1.5rem, 3vw, 2rem);
    background: #fff;
}
.sg-update__text {
    margin: 0;
    font-size: clamp(0.9375rem, 0.35vw + 0.86rem, 1.0625rem);
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: #4a5568;
}
@media (max-width: 899px) {
    .sg-update__arrow {
        opacity: 1;
        background: rgba(6, 23, 62, 0.38);
    }
}

/* ====================== 6c. PILLARS (Life at Sahl Gate — luxury cards) */
.sg-pillars {
    position: relative;
    background: var(--sg-cream);
    padding: clamp(4rem, 8vh, 6rem) 0 clamp(4.5rem, 9vh, 6.5rem);
}
.sg-pillars .sg-container {
    max-width: 92rem;
}
.sg-pillars__header {
    text-align: center;
    margin-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
}
.sg-pillars__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--sg-sand-dark);
}
.sg-pillars__eyebrow::before,
.sg-pillars__eyebrow::after {
    content: '';
    width: 2.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sg-sand));
}
.sg-pillars__eyebrow::after {
    background: linear-gradient(90deg, var(--sg-sand), transparent);
}
.sg-pillars__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
}
@media (min-width: 640px) {
    .sg-pillars__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .sg-pillars .sg-container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .sg-pillars__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}
@media (min-width: 1280px) {
    .sg-pillars__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.375rem;
    }
}
@media (min-width: 1440px) {
    .sg-pillars .sg-container {
        max-width: 96rem;
    }
}
.sg-pillar {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 17.5rem;
    padding: clamp(1.75rem, 2vw, 2.125rem) clamp(1.75rem, 2.2vw, 2.25rem);
    background: #fff;
    border: 1px solid rgba(6, 23, 62, 0.06);
    border-radius: 0.75rem; /* rounded-xl */
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(6, 23, 62, 0.04),
        0 4px 16px rgba(6, 23, 62, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}
.sg-pillar:hover {
    transform: translateY(-0.5rem); /* hover:-translate-y-2 */
    border-color: rgba(101, 215, 215, 0.35);
    box-shadow:
        0 4px 8px rgba(6, 23, 62, 0.04),
        0 20px 40px rgba(6, 23, 62, 0.1);
}
@media (max-width: 767.98px) {
    .sg-pillar {
        min-height: auto;
        padding: 1.5rem;
    }
    .sg-pillar__icon {
        margin-bottom: 1rem;
    }
    .sg-pillar__title {
        margin-bottom: 0.625rem;
    }
    .sg-pillar__watermark {
        font-size: 3.75rem;
        right: 0.5rem;
        bottom: 0.125rem;
    }
}
.sg-pillar__watermark {
    position: absolute;
    right: 0.75rem;
    bottom: 0.25rem;
    z-index: 0;
    font-size: clamp(4.5rem, 10vw, 6.5rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #f3f4f6;
    opacity: 0.55;
    pointer-events: none;
    user-select: none;
}
.sg-pillar__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}
.sg-pillar__icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1.25rem;
    color: var(--sg-sapphire-ink);
}
.sg-pillar__icon-svg {
    width: 1.75rem;
    height: 1.75rem;
    stroke: currentColor;
    opacity: 0.88;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.sg-pillar:hover .sg-pillar__icon-svg {
    opacity: 1;
    transform: translateY(-2px);
}
.sg-pillar__title {
    margin: 0 0 0.875rem;
    font-size: clamp(0.75rem, 0.3vw + 0.68rem, 0.875rem);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sg-sapphire-ink);
}
.sg-pillar__text {
    margin: 0;
    flex: 1;
    font-size: clamp(0.8125rem, 0.2vw + 0.76rem, 0.875rem);
    font-weight: 400;
    line-height: 1.7;
    color: #5a6478;
    letter-spacing: 0.01em;
}
/* Bottom accent line — expands on hover */
.sg-pillar__accent {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 3px;
    background: linear-gradient(90deg, var(--sg-sapphire) 0%, var(--sg-gold) 50%, var(--sg-sand) 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.sg-pillar:hover .sg-pillar__accent {
    transform: scaleX(1);
}

/* ====================== 6d. PROJECTS SHOWCASE (luxury) ======= */
.sg-projects {
    --sg-corp-navy: #0d233a;
    --sg-corp-emerald: #005b52;
    --sg-corp-emerald-deep: #004a44;
    --sg-corp-emerald-soft: rgba(0, 91, 82, 0.06);
    position: relative;
    background: var(--sg-cream);
    overflow: visible;
}
.sg-projects::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 60% at 15% 20%, rgba(16, 62, 142, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 80% 55% at 85% 80%, rgba(201, 184, 150, 0.12) 0%, transparent 50%);
    pointer-events: none;
}
.sg-projects-intro {
    position: relative;
    z-index: 1;
    padding: clamp(5rem, 10vh, 7.5rem) 0 clamp(3.5rem, 7vh, 5rem);
    text-align: center;
    background: transparent;
}
@media (max-width: 767.98px) {
    .sg-projects-intro {
        padding-bottom: clamp(1.25rem, 3vh, 2rem);
    }
}
.sg-projects-intro__inner {
    max-width: 46rem;
    margin: 0 auto;
}
.sg-projects-intro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 0 0 1.75rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--sg-sand-dark);
}
.sg-projects-intro__eyebrow::before,
.sg-projects-intro__eyebrow::after {
    content: '';
    width: 2.75rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sg-sand));
}
.sg-projects-intro__eyebrow::after {
    background: linear-gradient(90deg, var(--sg-sand), transparent);
}
.sg-projects-intro__lead {
    margin: 0;
    font-family: inherit;
    font-size: clamp(1rem, 0.45vw + 0.9rem, 1.125rem);
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: #5a6478;
}
.sg-projects__cards-wrap {
    position: relative;
    z-index: 1;
    padding: 0 0 clamp(5rem, 10vh, 7.5rem);
}
.sg-projects__cards {
    display: grid;
    gap: clamp(2.5rem, 5vw, 3.5rem);
    align-items: stretch;
}
@media (max-width: 1023.98px) {
    .sg-projects__cards {
        gap: 4rem;
    }
}
@media (min-width: 1024px) {
    .sg-projects__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(2.5rem, 3.5vw, 3.25rem);
    }
}
.sg-project {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background:
        linear-gradient(165deg, #ffffff 0%, #f4fbfb 48%, #e8f6f6 100%);
    border: 1px solid rgba(184, 153, 104, 0.22);
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 2px 0 rgba(255, 255, 255, 0.55) inset,
        0 28px 60px rgba(6, 23, 62, 0.07),
        0 8px 24px rgba(6, 23, 62, 0.04);
    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.45s ease;
}
.sg-project::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--sg-gold) 18%,
        var(--sg-sand) 50%,
        var(--sg-gold) 82%,
        transparent 100%
    );
    opacity: 0.85;
    z-index: 3;
    transition: opacity 0.45s ease;
}
.sg-project:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 153, 104, 0.38);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 36px 72px rgba(6, 23, 62, 0.11),
        0 14px 32px rgba(6, 23, 62, 0.06);
}
.sg-project:hover::before {
    opacity: 1;
}
.sg-project__media {
    position: relative;
    padding: clamp(0.875rem, 2vw, 1.125rem) clamp(0.875rem, 2vw, 1.125rem) 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, transparent 100%);
}
.sg-project__media-inner {
    position: relative;
    width: 100%;
    height: 18rem; /* h-72 — uniform image height */
    overflow: hidden;
    border-radius: 10px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.65) inset,
        0 18px 40px rgba(6, 23, 62, 0.14);
}
.sg-project__media-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(6, 23, 62, 0.08) 0%, transparent 38%),
        linear-gradient(0deg, rgba(6, 23, 62, 0.22) 0%, transparent 42%);
    pointer-events: none;
    transition: opacity 0.6s ease;
}
.sg-project__media-inner::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sg-gold), var(--sg-sand-light), transparent);
    opacity: 0.9;
}
.sg-project:hover .sg-project__media-inner::before {
    opacity: 0.75;
}
/* img.sg-project__media-img beats .sg-page img { height: auto } reset */
.sg-page img.sg-project__media-img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
    transition: transform 1.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.sg-project:hover .sg-project__media-img {
    transform: scale(1.08);
}
.sg-project__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: clamp(1.75rem, 3.5vw, 2.375rem) clamp(1.75rem, 3.5vw, 2.375rem) 0;
}
.sg-project__brand {
    margin: 0 0 clamp(1.5rem, 2.5vw, 2rem);
    padding-bottom: clamp(1.15rem, 2vw, 1.5rem);
    border-bottom: 1px solid rgba(184, 153, 104, 0.2);
}
.sg-project__brand::before {
    content: '';
    display: block;
    width: 2.75rem;
    height: 2px;
    margin-bottom: 1.125rem;
    background: linear-gradient(90deg, var(--sg-gold), var(--sg-sand-light));
}
.sg-project__banner-title {
    margin: 0;
    font-size: clamp(0.9375rem, 0.8vw + 0.75rem, 1.125rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1.3;
    color: var(--sg-sapphire-ink);
}
.sg-project__banner-sub {
    margin: 0.625rem 0 0;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sg-sand-dark);
}
/* ul.sg-project__tags beats .sg-page ul { margin: 0 } reset */
.sg-page ul.sg-project__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 1.75rem;
    padding: 0;
    list-style: none;
}
.sg-project__tags li {
    padding: 0.5rem 0.75rem;
    border-radius: 0;
    background: var(--sg-corp-emerald-soft);
    border: 1px solid var(--sg-corp-emerald);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sg-corp-emerald);
    transition: background-color 0.35s ease, border-color 0.35s ease;
}
.sg-project:hover .sg-project__tags li {
    border-color: var(--sg-corp-emerald);
    background: rgba(0, 91, 82, 0.1);
}
/* h3.sg-project__heading beats .sg-page h3 { margin: 0 } reset */
.sg-page h3.sg-project__heading {
    margin: 0 0 1.25rem;
    padding-top: 0.375rem;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.625rem, 2.2vw + 0.65rem, 2.375rem);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: var(--sg-sapphire-ink);
}
.sg-page h3.sg-project__heading span {
    display: block;
}
.sg-page h3.sg-project__heading span + span {
    margin-top: 0.14em;
    font-style: italic;
    font-weight: 400;
    color: var(--sg-sand-dark);
}
.sg-page .sg-project__text {
    margin: 0;
    flex: 1;
    font-size: clamp(0.96875rem, 0.3vw + 0.9rem, 1.0625rem);
    line-height: 1.8;
    letter-spacing: 0.012em;
    color: #5a6478;
    max-width: none;
}
.sg-project__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 1.5rem;
    flex-shrink: 0;
    min-height: 5.25rem;
    margin-top: auto;
    margin-left: calc(-1 * clamp(1.75rem, 3.5vw, 2.375rem));
    margin-right: calc(-1 * clamp(1.75rem, 3.5vw, 2.375rem));
    padding: clamp(1.5rem, 3vw, 1.875rem) clamp(1.75rem, 3.5vw, 2.375rem);
    border-top: 1px solid rgba(184, 153, 104, 0.22);
    background:
        linear-gradient(180deg, rgba(251, 249, 244, 0.35) 0%, rgba(244, 241, 234, 0.92) 100%);
}
.sg-page a.sg-project__discover,
.sg-page a.sg-project__discover:visited {
    position: relative;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--sg-corp-navy);
    text-decoration: none;
    padding-bottom: 0.3rem;
    transition: color 0.45s ease;
}
.sg-project__discover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--sg-corp-navy);
    transform-origin: left;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.45s ease;
}
.sg-project:hover .sg-project__discover {
    color: var(--sg-corp-emerald);
}
.sg-project:hover .sg-project__discover::after {
    background: var(--sg-corp-emerald);
}
.sg-project__discover:hover::after {
    transform: scaleX(0);
    transform-origin: right;
}
/* Register — emerald executive CTA (scoped to project cards) */
.sg-project .sg-btn.sg-btn--primary.sg-project__register,
.sg-project .sg-btn.sg-btn--primary.sg-project__register:visited {
    background: var(--sg-corp-emerald);
    border-color: var(--sg-corp-emerald);
    border-radius: 0;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 10px 28px rgba(0, 91, 82, 0.22);
    transition:
        background-color 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}
.sg-project .sg-btn.sg-btn--primary.sg-project__register:hover,
.sg-project:hover .sg-btn.sg-btn--primary.sg-project__register {
    background: var(--sg-corp-emerald-deep);
    border-color: var(--sg-corp-emerald-deep);
    color: #fff;
    box-shadow: 0 12px 32px rgba(0, 91, 82, 0.28);
}
.sg-project .sg-btn.sg-btn--primary.sg-project__register .sg-btn__arrow {
    stroke: #fff;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sg-project:hover .sg-btn.sg-btn--primary.sg-project__register .sg-btn__arrow,
.sg-project .sg-btn.sg-btn--primary.sg-project__register:hover .sg-btn__arrow {
    transform: translateX(0.25rem);
}
.sg-project__register {
    padding: 1.0625rem 1.875rem;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
}

/* ====================== 6d-b. AVAILABLE UNITS ================== */
.sg-projects__cards--units {
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
    .sg-projects__cards--units {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.sg-unit {
    display: flex;
    flex-direction: column;
    height: 100%;
    background:
        linear-gradient(165deg, #ffffff 0%, #f4fbfb 48%, #e8f6f6 100%);
    border: 1px solid rgba(184, 153, 104, 0.22);
    border-radius: 14px;
    overflow: visible;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 28px 60px rgba(6, 23, 62, 0.07),
        0 8px 24px rgba(6, 23, 62, 0.04);
    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.45s ease;
}
.sg-unit:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 153, 104, 0.38);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 36px 72px rgba(6, 23, 62, 0.11),
        0 14px 32px rgba(6, 23, 62, 0.06);
}
.sg-unit__gallery {
    position: relative;
    padding: clamp(0.875rem, 2vw, 1.125rem) clamp(0.875rem, 2vw, 1.125rem) 0;
}
.sg-unit__media {
    position: relative;
    height: clamp(14rem, 34vw, 18rem);
    overflow: hidden;
    border-radius: 10px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.65) inset,
        0 18px 40px rgba(6, 23, 62, 0.14);
    background: var(--sg-bone);
}
.sg-unit__slides {
    position: relative;
    height: clamp(14rem, 34vw, 18rem);
    overflow: hidden;
    border-radius: 10px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.65) inset,
        0 18px 40px rgba(6, 23, 62, 0.14);
    background: var(--sg-bone);
}
.sg-unit__slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.sg-unit__slide--active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
}
.sg-unit__media .sg-unit__img,
.sg-unit__slide--active .sg-unit__img {
    opacity: 1;
}
.sg-page img.sg-unit__img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    cursor: zoom-in;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.sg-unit:hover .sg-unit__slide--active .sg-unit__img {
    transform: scale(1.03);
}
.sg-unit__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(6, 23, 62, 0.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--sg-sand-light);
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}
.sg-unit__arrow svg {
    width: 1.25rem;
    height: 1.25rem;
}
.sg-unit__arrow--prev { left: 1.25rem; }
.sg-unit__arrow--next { right: 1.25rem; }
.sg-unit__arrow:hover {
    color: var(--sg-sand-light);
    background: rgba(6, 23, 62, 0.82);
}
.sg-unit__arrow--prev:hover { transform: translateY(-50%) translateX(-2px); }
.sg-unit__arrow--next:hover { transform: translateY(-50%) translateX(2px); }
.sg-unit__expand {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(6, 23, 62, 0.52);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.35s ease, transform 0.35s ease;
}
.sg-unit__expand svg {
    width: 1rem;
    height: 1rem;
}
.sg-unit__expand:hover {
    background: rgba(6, 23, 62, 0.72);
    transform: scale(1.06);
}
.sg-unit__dots {
    position: absolute;
    left: 50%;
    bottom: 0.65rem;
    z-index: 2;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    background: rgba(6, 23, 62, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.sg-unit__dot {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.sg-unit__dot--active {
    background: var(--sg-sand-light);
    transform: scale(1.15);
}
.sg-unit__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.875rem;
    padding: clamp(1.5rem, 3vw, 2rem);
}
.sg-page h3.sg-unit__title {
    margin: 0;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.5rem, 1.8vw + 0.75rem, 2rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--sg-sapphire-ink);
}
.sg-page .sg-unit__text {
    margin: 0;
    flex: 1;
    font-size: clamp(0.9375rem, 0.25vw + 0.88rem, 1.03125rem);
    line-height: 1.75;
    color: #5a6478;
}
.sg-unit__cta {
    align-self: flex-start;
    margin-top: 0.5rem;
}
.sg-unit .sg-btn.sg-btn--primary.sg-unit__register,
.sg-unit .sg-btn.sg-btn--primary.sg-unit__register:visited {
    background: var(--sg-corp-emerald);
    border-color: var(--sg-corp-emerald);
    border-radius: 0;
    color: #fff;
    text-transform: uppercase;
    padding: 1.0625rem 1.875rem;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    box-shadow: none;
    transition:
        background-color 0.4s ease,
        border-color 0.4s ease;
}
.sg-unit .sg-btn.sg-btn--primary.sg-unit__register:hover,
.sg-unit:hover .sg-btn.sg-btn--primary.sg-unit__register {
    background: var(--sg-corp-emerald-deep);
    border-color: var(--sg-corp-emerald-deep);
    color: #fff;
    box-shadow: none;
}
.sg-unit .sg-btn.sg-btn--primary.sg-unit__register .sg-btn__arrow {
    stroke: #fff;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sg-unit:hover .sg-btn.sg-btn--primary.sg-unit__register .sg-btn__arrow,
.sg-unit .sg-btn.sg-btn--primary.sg-unit__register:hover .sg-btn__arrow {
    transform: translateX(0.25rem);
}

/* Premium image lightbox */
.sg-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 3vw, 2rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}
.sg-lightbox--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
body.sg-lightbox-open {
    overflow: hidden;
}
.sg-lightbox[hidden] {
    display: flex;
}
.sg-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 40%, rgba(16, 62, 142, 0.18) 0%, transparent 55%),
        rgba(6, 23, 62, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.sg-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 72rem);
    max-height: 92vh;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1.25rem);
    transform: translateY(1rem) scale(0.96);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.sg-lightbox--open .sg-lightbox__dialog {
    transform: translateY(0) scale(1);
}
.sg-lightbox__frame {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    max-height: min(78vh, 52rem);
    padding: 0.35rem;
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(158, 232, 232, 0.35));
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.18) inset,
        0 32px 80px rgba(0, 0, 0, 0.45);
}
.sg-lightbox__frame--zoomable {
    overflow: hidden;
    cursor: zoom-in;
    touch-action: none;
}
.sg-lightbox__frame--zoomed {
    cursor: grab;
}
.sg-lightbox__frame--panning {
    cursor: grabbing;
}
.sg-lightbox__frame--zoomable .sg-lightbox__img {
    transform-origin: center center;
    will-change: transform;
}
.sg-lightbox__zoom {
    position: absolute;
    left: 50%;
    bottom: clamp(5.25rem, 11vh, 6.75rem);
    transform: translateX(-50%);
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(6, 23, 62, 0.78);
    border: 1px solid rgba(158, 232, 232, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.sg-lightbox__zoom[hidden] {
    display: none !important;
}
.sg-lightbox__zoom-btn {
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.55rem;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
}
.sg-lightbox__zoom-btn:hover {
    background: rgba(101, 215, 215, 0.22);
    color: var(--sg-sand-light);
}
.sg-lightbox__zoom-btn[data-sg-lightbox-zoom-reset] {
    min-width: 3.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}
.sg-lightbox__frame::before {
    content: '';
    position: absolute;
    inset: 0.35rem;
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    pointer-events: none;
    z-index: 1;
}
.sg-page img.sg-lightbox__img {
    display: block;
    width: 100%;
    max-height: min(78vh, 52rem);
    max-width: none;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    background: #06173e;
}
.sg-lightbox__meta {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: center;
    color: #fff;
}
.sg-lightbox__title {
    margin: 0;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.25rem, 1.5vw + 0.75rem, 1.75rem);
    font-weight: 500;
    letter-spacing: -0.02em;
}
.sg-lightbox__counter {
    margin: 0.35rem 0 0;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sg-sand-light);
}
.sg-lightbox__close {
    position: absolute;
    top: -0.25rem;
    right: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}
.sg-lightbox__close svg {
    width: 1.5rem;
    height: 1.5rem;
}
.sg-lightbox__close:hover {
    color: #fff;
    transform: scale(1.05);
}
.sg-lightbox__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(6, 23, 62, 0.62);
    color: var(--sg-sand-light);
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.sg-lightbox__arrow svg {
    width: 1.75rem;
    height: 1.75rem;
}
.sg-lightbox__arrow:hover {
    color: var(--sg-sand-light);
    background: rgba(6, 23, 62, 0.82);
}
.sg-lightbox__arrow--prev:hover { transform: translateX(-3px); }
.sg-lightbox__arrow--next:hover { transform: translateX(3px); }
.sg-lightbox__arrow--hidden {
    opacity: 0;
    pointer-events: none;
}
@media (max-width: 767px) {
    .sg-lightbox {
        padding:
            max(0.75rem, env(safe-area-inset-top))
            max(0.75rem, env(safe-area-inset-right))
            max(0.75rem, env(safe-area-inset-bottom))
            max(0.75rem, env(safe-area-inset-left));
    }

    .sg-lightbox__dialog {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: minmax(0, 1fr) auto auto;
        width: 100%;
        max-height: 100%;
        gap: 0.75rem;
    }

    .sg-lightbox__frame {
        grid-column: 1;
        grid-row: 1;
        min-height: 0;
        max-height: none;
    }

    .sg-page img.sg-lightbox__img {
        max-height: min(62vh, 44rem);
    }

    /* One toolbar row: prev | zoom | next — no overlap */
    .sg-lightbox__zoom {
        position: static;
        transform: none;
        grid-row: 2;
        grid-column: 1;
        justify-self: center;
        z-index: auto;
    }

    .sg-lightbox__arrow--prev,
    .sg-lightbox__arrow--next {
        grid-row: 2;
        align-self: center;
        z-index: 2;
    }

    .sg-lightbox__arrow--prev {
        grid-column: 1;
        justify-self: start;
        margin-right: 0;
        margin-left: 0.25rem;
    }

    .sg-lightbox__arrow--next {
        grid-column: 1;
        justify-self: end;
        margin-left: 0;
        margin-right: 0.25rem;
    }

    .sg-lightbox__meta {
        grid-row: 3;
    }

    .sg-lightbox__close {
        position: fixed;
        top: max(0.75rem, env(safe-area-inset-top));
        right: max(0.75rem, env(safe-area-inset-right));
        z-index: 5;
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 50%;
        background: rgba(6, 23, 62, 0.72);
    }
}
@media (prefers-reduced-motion: reduce) {
    .sg-lightbox,
    .sg-lightbox__dialog,
    .sg-page img.sg-unit__img {
        transition: none;
    }
}

/* ====================== 6d. SITE OVERVIEW (bird's-eye + map) ===== */
.sg-site {
    position: relative;
    padding: clamp(3.5rem, 8vh, 6rem) 0;
    overflow: hidden;
    isolation: isolate;
}
.sg-site__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.sg-site__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    transform: scale(1.03);
}
.sg-site__bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 23, 62, 0.42) 0%, rgba(2, 6, 23, 0.68) 48%, rgba(4, 12, 32, 0.84) 100%),
        radial-gradient(ellipse 85% 55% at 50% 38%, rgba(101, 215, 215, 0.14) 0%, transparent 58%);
}
.sg-site__container {
    position: relative;
    z-index: 1;
    max-width: 58rem;
}
.sg-site__panel {
    margin: 0 auto;
    border-radius: 1.35rem;
    overflow: hidden;
    background: var(--sg-panel-card-gradient);
    border: 1px solid var(--sg-panel-border);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 28px 70px rgba(0, 0, 0, 0.42),
        0 10px 28px rgba(6, 23, 62, 0.32);
}
.sg-site__card {
    margin: 0;
    padding: clamp(2rem, 4vw, 3rem) clamp(1.35rem, 3.2vw, 2.75rem) clamp(1.5rem, 2.8vw, 2.25rem);
    border-radius: 0;
    border: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}
.sg-site__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.sg-site__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sg-site__logo {
    height: clamp(1.5rem, 3.4vw, 2rem);
    width: auto;
    max-width: min(10.5rem, 52vw);
    object-fit: contain;
    filter: drop-shadow(0 1px 6px rgba(101, 215, 215, 0.28));
}
.sg-site__title {
    margin: clamp(1.5rem, 3.2vw, 2.125rem) 0 0;
    max-width: 32rem;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.3125rem, 2.1vw, 1.75rem);
    font-weight: 500;
    line-height: 1.34;
    letter-spacing: -0.015em;
    color: #fff;
}
.sg-site__title-line {
    display: block;
}
.sg-site__title-line + .sg-site__title-line {
    margin-top: 0.18em;
}
.sg-site__title-accent {
    font-style: normal;
    color: var(--sg-sand-light);
}
.sg-site__title::after {
    content: '';
    display: block;
    width: min(100%, 16rem);
    height: 1px;
    margin: clamp(1.375rem, 2.8vw, 1.75rem) auto 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(101, 215, 215, 0.35) 20%,
        rgba(255, 255, 255, 0.22) 50%,
        rgba(101, 215, 215, 0.35) 80%,
        transparent
    );
}
.sg-site__lead {
    margin: clamp(1.125rem, 2.2vw, 1.5rem) 0 0;
    max-width: 31rem;
    font-size: clamp(0.8125rem, 0.95vw, 0.9375rem);
    font-weight: 300;
    line-height: 1.85;
    letter-spacing: 0.02em;
    color: rgba(186, 198, 215, 0.82);
}
.sg-site__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
    margin: clamp(2rem, 4vw, 2.75rem) 0 0;
    padding: clamp(1.5rem, 3vw, 2rem) 0 0;
    border-top: 1px solid rgba(101, 215, 215, 0.12);
}
@media (min-width: 768px) {
    .sg-site__stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: clamp(1rem, 2vw, 1.5rem);
    }
}
.sg-site__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(0.35rem, 1vw, 0.75rem);
    border-radius: 0.875rem;
    transition: background-color 0.35s ease, transform 0.35s ease;
}
@media (hover: hover) {
    .sg-site__stat:hover {
        background: rgba(255, 255, 255, 0.06);
        transform: translateY(-2px);
    }
}
.sg-site__stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}
.sg-site__stat-icon i {
    font-size: clamp(1.5rem, 3.5vw, 1.875rem);
    line-height: 1;
    color: #fff;
}
.sg-site__stat-value {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.12em;
    margin: 0;
    line-height: 1;
}
.sg-site__stat-num {
    font-size: clamp(1.75rem, 3.5vw, 2.375rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--sg-sand-light);
    text-shadow: 0 0 24px rgba(101, 215, 215, 0.35);
}
.sg-site__stat-suffix {
    font-size: clamp(0.6875rem, 1.2vw, 0.8125rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    color: rgba(158, 232, 232, 0.88);
}
.sg-site__stat-label {
    margin: 0.5rem 0 0;
    max-width: 8.5rem;
    font-size: clamp(0.6875rem, 1.1vw, 0.8125rem);
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.02em;
    color: rgba(203, 213, 225, 0.78);
}
@media (min-width: 768px) {
    .sg-site__stat-label { max-width: none; }
}
.sg-site__map-wrap {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-top: 1px solid rgba(101, 215, 215, 0.1);
    background: #040c18;
}
.sg-site__map-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(13, 26, 48, 0.5) 0%, transparent 14%);
    pointer-events: none;
}
.sg-page img.sg-site__map {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    max-width: none;
}

/* ====================== 6d2. DISCOVER THE AREA (interactive) === */
.sg-discover {
    position: relative;
    background: var(--sg-cream);
    overflow-x: clip;
}
.sg-discover__frame {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.sg-discover__stage {
    position: relative;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    cursor: default;
}
.sg-discover__caption {
    display: none;
}
.sg-page img.sg-discover__img {
    width: 100%;
    height: auto;
    max-width: none;
    display: block;
    object-fit: contain;
    object-position: center center;
}
.sg-discover__vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(4, 12, 32, 0.55) 0%, rgba(4, 12, 32, 0.12) 34%, transparent 58%),
        linear-gradient(180deg, rgba(2, 6, 18, 0.2) 0%, transparent 18%, transparent 82%, rgba(2, 6, 18, 0.28) 100%),
        radial-gradient(ellipse 90% 70% at 50% 50%, transparent 44%, rgba(2, 6, 18, 0.16) 100%);
}
.sg-discover__header {
    position: relative;
    z-index: 3;
    pointer-events: none;
}
.sg-discover__header::before {
    content: '';
    position: absolute;
    inset: -1.25rem -1.75rem;
    z-index: -1;
    border-radius: 0.35rem;
    background: linear-gradient(135deg, rgba(4, 12, 32, 0.72) 0%, rgba(4, 12, 32, 0.28) 55%, transparent 100%);
    pointer-events: none;
}
.sg-discover__title {
    margin: 0;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.75rem, 3.8vw, 3.125rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}
.sg-discover__subtitle {
    margin: clamp(0.5rem, 1.2vw, 0.875rem) 0 0;
    font-size: clamp(0.75rem, 1.1vw, 0.9375rem);
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}
.sg-discover__hotspots {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.sg-discover__hotspot {
    --sg-hotspot-size: clamp(0.875rem, 1.65vw, 1.25rem);
    position: absolute;
    left: var(--sg-x);
    top: var(--sg-y);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(var(--sg-hotspot-size) * 3.2);
    height: calc(var(--sg-hotspot-size) * 3.2);
    padding: 0;
    border: none;
    background: transparent;
    transform: translate(-50%, -50%);
    cursor: pointer;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.sg-discover__halo {
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(101, 215, 215, 0.28) 0%, rgba(101, 215, 215, 0.08) 42%, transparent 72%);
    opacity: 0.65;
    transform: scale(0.92);
    transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}
.sg-discover__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow: 0 0 14px rgba(101, 215, 215, 0.1);
    opacity: 0;
    animation: sg-discover-pulse 3.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.sg-discover__ring--delay {
    animation-delay: 1.2s;
}
.sg-discover__ring--delay2 {
    animation-delay: 2.4s;
}
.sg-discover__dot {
    position: relative;
    z-index: 2;
    width: var(--sg-hotspot-size);
    height: var(--sg-hotspot-size);
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.96);
    background:
        radial-gradient(circle at 32% 28%, #fff 0%, rgba(255, 255, 255, 0.94) 38%, rgba(232, 240, 252, 0.88) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.28),
        0 1px 2px rgba(255, 255, 255, 0.45) inset,
        0 2px 10px rgba(0, 0, 0, 0.22),
        0 0 18px rgba(101, 215, 215, 0.18);
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.45s ease;
}
.sg-discover__dot::before {
    content: '';
    position: absolute;
    inset: -42%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.45s ease,
        opacity 0.45s ease;
}
.sg-discover__dot::after {
    content: '';
    position: absolute;
    inset: 30%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(16, 62, 142, 0.92) 0%, var(--sg-sapphire-ink) 68%, var(--sg-sapphire-deep) 100%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28) inset;
    transition:
        background 0.45s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease;
}
.sg-discover__label {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 0.65rem);
    z-index: 4;
    min-width: max-content;
    max-width: min(14rem, 52vw);
    padding: 0.5625rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(6, 23, 62, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
    font-size: clamp(0.6875rem, 1vw, 0.8125rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 0.35rem) scale(0.96);
    transition:
        opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.38s;
    box-shadow:
        0 0 0 1px rgba(101, 215, 215, 0.08) inset,
        0 12px 32px rgba(0, 0, 0, 0.32);
}
.sg-discover__label::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -0.35rem;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(6, 23, 62, 0.82);
    transform: translateX(-50%) rotate(45deg);
}
@media (min-width: 768px) {
    .sg-discover__header {
        position: absolute;
        top: clamp(1.5rem, 4vw, 3.25rem);
        left: clamp(1.25rem, 4vw, 3.5rem);
        z-index: 10;
        max-width: min(22rem, 72vw);
    }
}
@media (hover: hover) and (pointer: fine) {
    .sg-discover__hotspot:hover,
    .sg-discover__hotspot:focus-visible {
        z-index: 4;
    }
    .sg-discover__hotspot:hover .sg-discover__halo,
    .sg-discover__hotspot:focus-visible .sg-discover__halo {
        opacity: 1;
        transform: scale(1.35);
    }
    .sg-discover__hotspot:hover .sg-discover__dot,
    .sg-discover__hotspot:focus-visible .sg-discover__dot {
        transform: scale(1.12);
        border-color: #fff;
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.42),
            0 1px 3px rgba(255, 255, 255, 0.55) inset,
            0 4px 16px rgba(0, 0, 0, 0.28),
            0 0 0 5px rgba(101, 215, 215, 0.24),
            0 0 28px rgba(101, 215, 215, 0.38);
    }
    .sg-discover__hotspot:hover .sg-discover__dot::before,
    .sg-discover__hotspot:focus-visible .sg-discover__dot::before {
        transform: scale(1.08);
        border-color: rgba(158, 232, 232, 0.72);
        opacity: 1;
    }
    .sg-discover__hotspot:hover .sg-discover__dot::after,
    .sg-discover__hotspot:focus-visible .sg-discover__dot::after {
        background:
            radial-gradient(circle at 35% 30%, var(--sg-sand-light) 0%, var(--sg-sand-dark) 72%, var(--sg-sapphire-deep) 100%);
        box-shadow: 0 0 8px rgba(101, 215, 215, 0.45) inset;
        transform: scale(0.92);
    }
    .sg-discover__hotspot:hover .sg-discover__ring,
    .sg-discover__hotspot:focus-visible .sg-discover__ring {
        animation-play-state: paused;
        opacity: 0;
    }
    .sg-discover__hotspot:hover .sg-discover__label,
    .sg-discover__hotspot:focus-visible .sg-discover__label {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0) scale(1);
    }
}
.sg-discover__hotspot--active {
    z-index: 4;
}
.sg-discover__hotspot--active .sg-discover__halo {
    opacity: 1;
    transform: scale(1.35);
}
.sg-discover__hotspot--active .sg-discover__dot {
    transform: scale(1.12);
    border-color: #fff;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.42),
        0 1px 3px rgba(255, 255, 255, 0.55) inset,
        0 4px 16px rgba(0, 0, 0, 0.28),
        0 0 0 5px rgba(101, 215, 215, 0.24),
        0 0 28px rgba(101, 215, 215, 0.38);
}
.sg-discover__hotspot--active .sg-discover__dot::before {
    transform: scale(1.08);
    border-color: rgba(158, 232, 232, 0.72);
    opacity: 1;
}
.sg-discover__hotspot--active .sg-discover__dot::after {
    background:
        radial-gradient(circle at 35% 30%, var(--sg-sand-light) 0%, var(--sg-sand-dark) 72%, var(--sg-sapphire-deep) 100%);
    box-shadow: 0 0 8px rgba(101, 215, 215, 0.45) inset;
    transform: scale(0.92);
}
.sg-discover__hotspot--active .sg-discover__ring {
    animation-play-state: paused;
    opacity: 0;
}
.sg-discover__hotspot--active .sg-discover__label {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
}
@media (max-width: 767px) {
    .sg-discover {
        background: var(--sg-panel-card-gradient);
    }
    .sg-discover__header {
        padding: clamp(1.35rem, 5vw, 1.75rem) clamp(1.25rem, 4vw, 1.5rem) clamp(1rem, 3vw, 1.25rem);
        background: var(--sg-panel-card-gradient);
    }
    .sg-discover__header::before {
        display: none;
    }
    .sg-discover__title {
        font-size: clamp(1.5rem, 6.5vw, 2rem);
    }
    .sg-discover__vignette {
        background:
            linear-gradient(180deg, rgba(2, 6, 18, 0.12) 0%, transparent 14%, transparent 86%, rgba(2, 6, 18, 0.22) 100%),
            radial-gradient(ellipse 90% 70% at 50% 50%, transparent 44%, rgba(2, 6, 18, 0.12) 100%);
    }
    .sg-discover__hotspot .sg-discover__label {
        bottom: auto;
        top: calc(100% + 0.55rem);
    }
    .sg-discover__hotspot .sg-discover__label::after {
        bottom: auto;
        top: -0.35rem;
        transform: translateX(-50%) rotate(225deg);
    }
    .sg-discover__caption {
        display: block;
        margin: 0;
        padding: 0.875rem 1.25rem 1.25rem;
        text-align: center;
        font-size: 0.8125rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        color: rgba(255, 255, 255, 0.92);
        background: var(--sg-panel-card-gradient);
        border-top: 1px solid rgba(101, 215, 215, 0.14);
        animation: sg-discover-caption-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }
}
@keyframes sg-discover-caption-in {
    from {
        opacity: 0;
        transform: translateY(0.35rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes sg-discover-pulse {
    0% {
        transform: scale(0.72);
        opacity: 0.72;
    }
    65%, 100% {
        transform: scale(1.55);
        opacity: 0;
    }
}
@media (prefers-reduced-motion: reduce) {
    .sg-discover__ring {
        animation: none;
        opacity: 0.28;
    }
    .sg-discover__halo {
        opacity: 0.45;
    }
    .sg-discover__dot,
    .sg-discover__dot::before,
    .sg-discover__label {
        transition: none;
    }
}

/* ====================== 6d3. AMENITIES (premium three-column) === */
.sg-amenities {
    position: relative;
    background: var(--sg-cream);
    padding: clamp(3rem, 6vh, 4.5rem) 0 clamp(3.5rem, 7vh, 5rem);
    border-top: 1px solid rgba(101, 215, 215, 0.14);
    overflow: hidden;
}
.sg-amenities::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 12% 20%, rgba(101, 215, 215, 0.06) 0%, transparent 52%),
        radial-gradient(ellipse 65% 45% at 88% 80%, rgba(16, 62, 142, 0.04) 0%, transparent 48%);
    pointer-events: none;
}
.sg-amenities__wrap {
    position: relative;
    z-index: 1;
    max-width: 92rem;
    margin-inline: auto;
}
.sg-amenities__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 3.5rem);
    width: 100%;
    max-width: 68rem;
    margin-inline: auto;
}
@media (min-width: 768px) {
    .sg-amenities__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
    }
}
.sg-amenities__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
@media (min-width: 768px) {
    .sg-amenities__column {
        padding: 0 clamp(1.5rem, 3vw, 2.75rem);
    }
    .sg-amenities__column:not(:last-child) {
        border-right: 1px solid rgba(101, 215, 215, 0.14);
    }
    .sg-amenities__column:first-child {
        padding-left: 0;
    }
    .sg-amenities__column:last-child {
        padding-right: 0;
    }
}
.sg-amenities__heading {
    display: inline-flex;
    align-items: center;
    margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
    padding: 0.6875rem 1.625rem;
    border-radius: 999px;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.015em;
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--sg-sand-dark) 0%,
        #3a9e9e 42%,
        var(--sg-sand-dark) 100%
    );
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.14) inset,
        0 6px 22px rgba(101, 215, 215, 0.28),
        0 2px 8px rgba(6, 23, 62, 0.08);
}
.sg-amenities__list {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
.sg-amenities__item {
    position: relative;
    margin: 0;
    padding: 0.6875rem 0 0.6875rem 1.375rem;
    font-size: clamp(0.875rem, 0.35vw + 0.82rem, 0.96875rem);
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: #4a5568;
    border-bottom: 1px solid rgba(6, 23, 62, 0.06);
    transition: color 0.3s ease, padding-left 0.3s ease;
}
.sg-amenities__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.3125rem;
    height: 0.3125rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sg-sand-light) 0%, var(--sg-sand) 100%);
    box-shadow: 0 0 10px rgba(101, 215, 215, 0.35);
    transform: translateY(-50%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sg-amenities__item:last-child {
    border-bottom: none;
}
@media (hover: hover) and (pointer: fine) {
    .sg-amenities__item:hover {
        color: var(--sg-sapphire-ink);
        padding-left: 1.5rem;
    }
    .sg-amenities__item:hover::before {
        transform: translateY(-50%) scale(1.2);
        box-shadow: 0 0 14px rgba(101, 215, 215, 0.5);
    }
}
@media (max-width: 767px) {
    .sg-amenities {
        padding-top: clamp(2.25rem, 5vw, 3rem);
    }
    .sg-amenities__column:not(:last-child) {
        padding-bottom: clamp(2rem, 4vw, 2.5rem);
        border-bottom: 1px solid rgba(101, 215, 215, 0.12);
    }
}

/* ====================== 6d2. THE DEVELOPER (Sapphire) ============= */
.sg-developer {
    position: relative;
    background: #fff;
    padding: clamp(4rem, 8vh, 6.5rem) 0 clamp(4.5rem, 9vh, 7rem);
    overflow: hidden;
}
.sg-developer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 55% at 12% 18%, rgba(101, 215, 215, 0.08) 0%, transparent 52%),
        radial-gradient(ellipse 75% 50% at 88% 82%, rgba(16, 62, 142, 0.05) 0%, transparent 48%);
    pointer-events: none;
}
.sg-developer__wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 72rem;
    margin-inline: auto;
    text-align: center;
}
.sg-page .sg-developer__wrap .sg-section-eyebrow {
    margin-bottom: clamp(2.75rem, 5.5vw, 3.75rem);
}
.sg-developer__panel {
    width: 100%;
    padding: clamp(2.25rem, 4.5vw, 3.25rem);
    border-radius: 1.25rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
    border: 1px solid rgba(101, 215, 215, 0.16);
    box-shadow:
        0 0 0 1px rgba(6, 23, 62, 0.03),
        0 18px 48px rgba(6, 23, 62, 0.07);
}
@media (min-width: 768px) {
    .sg-developer__panel {
        padding: clamp(2.75rem, 5vw, 4rem);
    }
}
.sg-developer__intro {
    max-width: 44rem;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}
.sg-developer__brand {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(1.75rem, 3.5vw, 2.25rem);
}
.sg-page img.sg-developer__logo {
    width: auto;
    height: clamp(2.75rem, 5vw, 3.5rem);
    max-width: min(100%, 14rem);
    object-fit: contain;
}
.sg-page .sg-developer__title {
    margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.625rem, 2.8vw + 0.65rem, 2.625rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--sg-sapphire-ink);
}
.sg-developer__lead {
    margin: 0;
    font-size: clamp(1rem, 0.45vw + 0.9rem, 1.125rem);
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: #5a6478;
}
.sg-developer__offices {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
@media (min-width: 768px) {
    .sg-developer__offices {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(1rem, 2vw, 1.5rem);
    }
}
.sg-developer__office {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: clamp(1.25rem, 2.5vw, 1.625rem);
    border-radius: 0.875rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(101, 215, 215, 0.12);
    box-shadow: 0 8px 24px rgba(6, 23, 62, 0.04);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
    .sg-developer__office:hover {
        transform: translateY(-3px);
        border-color: rgba(101, 215, 215, 0.28);
        box-shadow: 0 14px 32px rgba(6, 23, 62, 0.08);
    }
}
.sg-developer__office-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 0.875rem;
    border-radius: 50%;
    background: rgba(101, 215, 215, 0.12);
    color: var(--sg-sand-dark);
    font-size: 0.9375rem;
}
.sg-developer__office-title {
    margin: 0 0 0.625rem;
    font-size: clamp(0.9375rem, 0.35vw + 0.85rem, 1.0625rem);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: var(--sg-sapphire-ink);
}
.sg-developer__office-address {
    margin: 0;
    font-size: clamp(0.875rem, 0.3vw + 0.8rem, 0.9375rem);
    font-weight: 400;
    line-height: 1.65;
    color: #5a6478;
}
.sg-developer__contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-top: clamp(1.75rem, 3.5vw, 2.25rem);
    border-top: 1px solid rgba(101, 215, 215, 0.14);
}
@media (min-width: 640px) {
    .sg-developer__contact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}
.sg-developer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    background: rgba(101, 215, 215, 0.06);
    border: 1px solid rgba(101, 215, 215, 0.12);
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
    .sg-developer__contact-item:hover {
        background: rgba(101, 215, 215, 0.1);
        border-color: rgba(101, 215, 215, 0.24);
        transform: translateY(-1px);
    }
    .sg-page .sg-developer__contact-item:hover .sg-developer__contact-value {
        color: var(--sg-sand-dark);
    }
}
.sg-developer__contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(6, 23, 62, 0.06);
    color: var(--sg-sand-dark);
    font-size: 0.9375rem;
}
.sg-developer__contact-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.125rem;
    min-width: 0;
}
.sg-developer__contact-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sg-sand-dark);
}
.sg-developer__contact-value {
    font-size: clamp(0.9375rem, 0.35vw + 0.85rem, 1.0625rem);
    font-weight: 500;
    line-height: 1.3;
    color: var(--sg-sapphire-ink);
    transition: color 0.3s ease;
    word-break: break-word;
}

/* ====================== 6e. TRUSTED PARTNERS (luxury) ========= */
.sg-partners {
    position: relative;
    background: var(--sg-cream);
    overflow: hidden;
}
.sg-partners::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 85% 55% at 10% 15%, rgba(16, 62, 142, 0.04) 0%, transparent 52%),
        radial-gradient(ellipse 75% 50% at 90% 85%, rgba(201, 184, 150, 0.1) 0%, transparent 48%);
    pointer-events: none;
}
.sg-partners-intro {
    position: relative;
    z-index: 1;
    padding: clamp(4.5rem, 9vh, 6.5rem) 0 clamp(2.75rem, 5.5vh, 4rem);
    text-align: center;
}
.sg-partners-intro__inner {
    max-width: 44rem;
    margin: 0 auto;
}
.sg-partners-intro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 0 0 1.75rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--sg-sand-dark);
}
.sg-partners-intro__eyebrow::before,
.sg-partners-intro__eyebrow::after {
    content: '';
    width: 2.75rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sg-sand));
}
.sg-partners-intro__eyebrow::after {
    background: linear-gradient(90deg, var(--sg-sand), transparent);
}
.sg-partners-intro__lead {
    margin: 0;
    font-size: clamp(1rem, 0.45vw + 0.9rem, 1.125rem);
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: #5a6478;
}
.sg-partners__grid-wrap {
    position: relative;
    z-index: 1;
    padding: 0 0 clamp(5rem, 10vh, 7.5rem);
}
/* grid-cols-1 md:grid-cols-3 gap-8 */
.sg-partners__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}
@media (min-width: 768px) {
    .sg-partners__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
/* Card — white, rounded-2xl, shadow-sm, p-8, hover lift */
.sg-partner-card {
    --sg-partner-title-color: #334155; /* slate-700 — visibly softer than .sg-page ink */
    --sg-partner-body-color: #64748b;   /* slate-500 */
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 2rem;
    text-align: center;
    color: var(--sg-partner-body-color);
    background: #fff;
    border: 1px solid rgba(6, 23, 62, 0.06);
    border-radius: 1rem;
    box-shadow:
        0 1px 2px rgba(6, 23, 62, 0.04),
        0 4px 16px rgba(6, 23, 62, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}
.sg-partner-card:hover {
    transform: translateY(-0.25rem);
    border-color: rgba(184, 153, 104, 0.22);
    box-shadow:
        0 4px 8px rgba(6, 23, 62, 0.05),
        0 12px 28px rgba(6, 23, 62, 0.1);
}
/* Logo slot — w-full h-20 flex center mb-6 */
.sg-partner-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 5rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}
.sg-partner-card__logo-img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}
/* Partners: stop inheriting .sg-page { color: --sg-sapphire-ink } (#06173E) */
.sg-page #partners .sg-partner-card {
    color: var(--sg-partner-body-color);
}
/* Title — slate-700 + font-semibold */
.sg-page #partners .sg-partner-card > h3.sg-partner-card__name {
    margin: 0 0 0.75rem;
    font-family: inherit;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: var(--sg-partner-title-color) !important;
}
/* Body — slate-500 + leading-relaxed */
.sg-page #partners .sg-partner-card > p.sg-partner-card__text {
    margin: 0;
    flex: 1;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.625;
    letter-spacing: 0.01em;
    color: var(--sg-partner-body-color) !important;
}

/* ====================== 7. SECTION SHELL ===================== */
.sg-section { padding: 7rem 0; }
@media (min-width: 768px) {
    .sg-section { padding: 10rem 0; }
}
.sg-section--cream    { background: var(--sg-cream); }
.sg-section--bone     { background: var(--sg-bone); padding: 6rem 0; }
.sg-section--sapphire { background: var(--sg-sapphire); color: #fff; }

.sg-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: var(--sg-tracking-widest);
    color: var(--sg-sapphire);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.sg-eyebrow::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 1px;
    background: currentColor;
}
.sg-eyebrow--light { color: var(--sg-sand-light); }

.sg-heading {
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--sg-sapphire-ink);
    font-size: 2.25rem;
}
@media (min-width: 768px)  { .sg-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .sg-heading { font-size: 3.75rem; } }
.sg-heading--white { color: #fff; }

.sg-heading__script {
    font-family: 'Allura', cursive;
    color: var(--sg-sapphire);
    font-size: 3rem;
    display: block;
    margin-top: 0.5rem;
}
@media (min-width: 768px)  { .sg-heading__script { font-size: 3.75rem; } }
@media (min-width: 1024px) { .sg-heading__script { font-size: 4.5rem; } }
.sg-heading__script--inline { display: inline; }
.sg-heading__script--light  { color: var(--sg-sand-light); }

.sg-prose {
    font-size: 1rem;
    line-height: 1.9;
    font-weight: 300;
    color: rgba(6, 23, 62, 0.75);
    margin-top: 2rem;
    max-width: 36rem;
}
@media (min-width: 768px) { .sg-prose { font-size: 1.125rem; } }
.sg-prose + .sg-prose { margin-top: 1.5rem; }
.sg-prose--light { color: rgba(255,255,255,0.75); }

/* ====================== 8. CONCEPT SECTION =================== */
.sg-concept__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .sg-concept__grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
}
.sg-concept__copy    { max-width: 36rem; }
.sg-concept__heading { margin-bottom: 2.5rem; }

.sg-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(201, 184, 150, 0.4);
}
.sg-stats__num {
    font-size: 1.875rem;
    font-weight: 300;
    color: var(--sg-sapphire-ink);
}
@media (min-width: 768px) { .sg-stats__num { font-size: 2.25rem; } }
.sg-stats__num span { color: var(--sg-gold); }
.sg-stats__label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: var(--sg-tracking-widest);
    color: rgba(6, 23, 62, 0.6);
    margin-top: 0.5rem;
}

.sg-concept__media { position: relative; }
.sg-concept__img-wrap {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
}
.sg-concept__img-wrap::after {
    /* subtle warm vignette to feel editorial */
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(11,30,63,0) 60%, rgba(11,30,63,0.18) 100%);
    pointer-events: none;
}
.sg-concept__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Big editorial numeral (01) anchored top-right */
.sg-concept__numeral {
    position: absolute;
    top: -2.5rem;
    right: -0.5rem;
    font-family: 'Allura', cursive;
    font-size: clamp(5rem, 8vw, 9rem);
    color: var(--sg-sapphire);
    opacity: 0.12;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

.sg-concept__tag {
    display: none;
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: var(--sg-sapphire);
    color: #fff;
    padding: 1.5rem 2rem;
    min-width: 14rem;
}
@media (min-width: 768px) { .sg-concept__tag { display: block; } }
.sg-concept__tag-decor {
    display: block;
    width: 1.75rem;
    height: 1px;
    background: var(--sg-sand-light);
    margin-bottom: 1rem;
}
.sg-concept__tag-script {
    font-family: 'Allura', cursive;
    font-size: 2.25rem;
    line-height: 1;
    color: #fff;
}
.sg-concept__tag-label {
    font-size: 0.625rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-top: 0.75rem;
    color: rgba(255,255,255,0.85);
}

/* ====================== 9. AMENITIES (legacy cards — unused) === */

.sg-amenity {
    background: var(--sg-sapphire);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    min-height: 280px;
    justify-content: space-between;
    transition: background-color .5s;
}
@media (min-width: 768px) { .sg-amenity { padding: 2.75rem 2.5rem; min-height: 300px; } }
.sg-amenity:hover { background: var(--sg-sapphire-deep); }

.sg-amenity__icon {
    width: 2.75rem;
    height: 2.75rem;
    color: var(--sg-sand-light);
    stroke-width: 1.1;
}
.sg-amenity__num {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(230, 220, 201, 0.75);
    margin-bottom: 0.5rem;
}
.sg-amenity__title {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.sg-amenity__desc {
    font-size: 0.8125rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin-top: 0.625rem;
}

/* ====================== 10. UNIT CARDS ======================== */
.sg-units__header { max-width: 48rem; margin-bottom: 5rem; }
.sg-units__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px)  { .sg-units__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .sg-units__grid { gap: 2.5rem; } }

.sg-card { display: block; }
.sg-card__img-wrap {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: rgba(201, 184, 150, 0.2);
    margin-bottom: 1.75rem;
    position: relative;
}
.sg-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}
.sg-card:hover .sg-card__img { transform: scale(1.06); }
.sg-card__badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(6,23,62,0.85);
    color: #fff;
    font-size: 0.625rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    padding: 0.5rem 0.875rem;
    font-weight: 500;
}

.sg-card__title {
    font-size: 1.625rem;
    font-weight: 300;
    color: var(--sg-sapphire-ink);
    margin-bottom: 1rem;
    letter-spacing: -0.015em;
}
@media (min-width: 768px) { .sg-card__title { font-size: 2rem; } }
.sg-card__desc {
    font-size: 0.875rem;
    line-height: 1.9;
    font-weight: 300;
    color: rgba(6, 23, 62, 0.65);
    max-width: 24rem;
    margin-bottom: 1.5rem;
}

/* Specs row — three small data points */
.sg-card__specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 1.25rem 0;
    margin-bottom: 1.5rem;
    border-top: 1px solid rgba(201, 184, 150, 0.4);
    border-bottom: 1px solid rgba(201, 184, 150, 0.4);
}
.sg-card__specs li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.sg-card__specs span {
    font-size: 0.625rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sg-sand-dark);
}
.sg-card__specs strong {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--sg-sapphire-ink);
    letter-spacing: -0.005em;
}
.sg-card__cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: var(--sg-tracking-widest);
    font-weight: 500;
    color: var(--sg-sapphire);
}
.sg-card__cta::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 1px;
    width: 100%;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.sg-card__cta:hover::after { transform: scaleX(1); }
.sg-card__cta svg { width: 0.875rem; height: 0.875rem; }

/* ====================== 10.4 LOCATION / MASTER PLAN ===================== */
.sg-location {
    background: var(--sg-sapphire-ink);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.sg-location__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}
@media (min-width: 1024px) {
    .sg-location__grid { grid-template-columns: 1.2fr 1fr; gap: 6rem; }
}

.sg-location__media {
    position: relative;
    aspect-ratio: 5 / 4;
    overflow: hidden;
}
.sg-location__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) brightness(0.85);
}
.sg-location__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,23,62,0.55) 0%, rgba(6,23,62,0.1) 50%, rgba(6,23,62,0.55) 100%);
    pointer-events: none;
}
.sg-location__pin {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transform: translate(-50%, -50%);
}
.sg-location__pin-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: var(--sg-sand-light);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(230, 220, 201, 0.25), 0 0 0 14px rgba(230, 220, 201, 0.12);
    animation: sg-pulse 2.4s ease-out infinite;
}
@keyframes sg-pulse {
    0%   { box-shadow: 0 0 0 0   rgba(230, 220, 201, 0.6), 0 0 0 0   rgba(230, 220, 201, 0.3); }
    70%  { box-shadow: 0 0 0 14px rgba(230, 220, 201, 0),    0 0 0 28px rgba(230, 220, 201, 0); }
    100% { box-shadow: 0 0 0 0   rgba(230, 220, 201, 0),    0 0 0 0   rgba(230, 220, 201, 0); }
}
.sg-location__pin-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: #fff;
    background: rgba(6,23,62,0.85);
    padding: 0.5rem 0.875rem;
    white-space: nowrap;
}

.sg-location__list {
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.sg-location__list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: baseline;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.sg-location__list-num {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--sg-sand-light);
    letter-spacing: -0.01em;
    line-height: 1;
    min-width: 4.5rem;
}
.sg-location__list-num small {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: rgba(255,255,255,0.5);
    margin-left: 0.375rem;
    font-weight: 400;
}
.sg-location__list-place {
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

/* ====================== 10.5 SISTER PROJECT ===================== */
.sg-sister__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .sg-sister__grid { grid-template-columns: 1fr 1.1fr; gap: 6rem; }
}
.sg-sister__card {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--sg-sapphire-ink);
}
.sg-sister__media {
    aspect-ratio: 5 / 4;
    overflow: hidden;
}
.sg-sister__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease, opacity .5s ease;
    opacity: 0.85;
}
.sg-sister__card:hover .sg-sister__media img { transform: scale(1.05); opacity: 1; }
.sg-sister__caption {
    position: absolute;
    left: 2rem; right: 2rem; bottom: 2rem;
    color: #fff;
}
.sg-sister__eyebrow {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--sg-sand-light);
    margin-bottom: 0.5rem;
}
.sg-sister__title {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}
@media (min-width: 768px) { .sg-sister__title { font-size: 2.5rem; } }

/* ====================== 11. CTA STRIP ========================= */
.sg-cta__hairline {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sg-sand) 50%, transparent);
    margin-bottom: 4rem;
}
.sg-cta__row {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
@media (min-width: 768px) {
    .sg-cta__row {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}
.sg-cta__heading {
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1.1;
    color: var(--sg-sapphire-ink);
    max-width: 36rem;
    letter-spacing: -0.02em;
}
@media (min-width: 768px)  { .sg-cta__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .sg-cta__heading { font-size: 3.75rem; } }
.sg-cta__heading-script {
    font-family: 'Allura', cursive;
    color: var(--sg-sapphire);
    font-size: 1.1em;
    line-height: 0.7;
    vertical-align: -0.06em;
    padding-left: 0.1em;
}
.sg-cta__sub {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(6,23,62,0.65);
    max-width: 30rem;
    margin-top: 1.5rem;
}
.sg-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}
@media (min-width: 640px) {
    .sg-cta__buttons { flex-direction: row; align-items: center; gap: 2.5rem; }
}

/* ====================== 11. LOCATION (premium map) ============== */
.sg-location {
    position: relative;
    background: #fff;
    padding: clamp(4.5rem, 9vh, 7rem) 0 clamp(4.5rem, 9vh, 6.5rem);
    overflow: hidden;
}
.sg-location::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 55% at 15% 20%, rgba(101, 215, 215, 0.07) 0%, transparent 52%),
        radial-gradient(ellipse 70% 50% at 88% 80%, rgba(16, 62, 142, 0.05) 0%, transparent 48%);
    pointer-events: none;
}
.sg-location__intro {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 52rem;
    margin: 0 auto clamp(3rem, 6vw, 4.25rem);
    text-align: center;
}
.sg-location__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 0 0 clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 500;
    text-transform: uppercase;
    color: var(--sg-sand-dark);
}
.sg-location__eyebrow::before,
.sg-location__eyebrow::after {
    content: '';
    width: 2.75rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sg-sand));
}
.sg-location__eyebrow::after {
    background: linear-gradient(90deg, var(--sg-sand), transparent);
}
.sg-location__title {
    margin: 0;
    color: var(--sg-sapphire-ink);
    font-weight: 500;
    font-size: clamp(1.875rem, 3.2vw + 0.75rem, 3.125rem);
    line-height: 1.18;
    letter-spacing: -0.025em;
}
.sg-location__title-line {
    display: block;
}
.sg-location__title-line + .sg-location__title-line {
    margin-top: 0.12em;
}
.sg-location__lead {
    margin: clamp(1.75rem, 3.5vw, 2.5rem) 0 0;
    max-width: 42rem;
    font-size: clamp(1rem, 0.45vw + 0.9rem, 1.125rem);
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: #5a6478;
}
.sg-location__panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
    max-width: 92rem;
    margin: 0 auto;
}
@media (min-width: 1024px) {
    .sg-location__panel {
        grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
        align-items: stretch;
        gap: clamp(1.75rem, 3vw, 2.25rem);
    }
}
.sg-location__details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border-radius: 0.75rem;
    border: 1px solid rgba(6, 23, 62, 0.06);
    background: rgba(255, 255, 255, 0.88);
    box-shadow:
        0 1px 2px rgba(6, 23, 62, 0.03),
        0 12px 36px rgba(6, 23, 62, 0.06);
}
.sg-location__heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.sg-location__pin {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    color: var(--sg-sand-dark);
    background: linear-gradient(135deg, rgba(101, 215, 215, 0.16) 0%, rgba(101, 215, 215, 0.06) 100%);
}
.sg-location__pin svg {
    width: 1.25rem;
    height: 1.25rem;
}
.sg-location__name {
    margin: 0;
    color: var(--sg-sapphire-ink);
    font-size: clamp(1.25rem, 0.5vw + 1.1rem, 1.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
}
.sg-location__address {
    margin: 0;
    color: #5a6478;
    font-size: 0.96875rem;
    line-height: 1.75;
}
.sg-page a.sg-location__directions,
.sg-page a.sg-location__directions:visited {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: clamp(1.5rem, 3vw, 2rem);
    padding: 0.8125rem 1.375rem;
    border-radius: 999px;
    border: 1px solid rgba(16, 62, 142, 0.12);
    background: rgba(255, 255, 255, 0.9);
    color: var(--sg-sapphire-ink);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(6, 23, 62, 0.06);
    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        background-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}
.sg-page a.sg-location__directions:hover {
    color: var(--sg-sapphire);
    border-color: rgba(16, 62, 142, 0.22);
    background: #fff;
    box-shadow: 0 12px 32px rgba(6, 23, 62, 0.1);
    transform: translateY(-2px);
}
.sg-location__directions svg {
    width: 0.9375rem;
    height: 0.9375rem;
}
.sg-location__map-wrap {
    position: relative;
    min-height: clamp(16rem, 42vw, 22rem);
    overflow: hidden;
    border-radius: 0.75rem;
    background: var(--sg-bone);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.65) inset,
        0 18px 48px rgba(6, 23, 62, 0.12);
}
.sg-location__map-wrap::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sg-gold), var(--sg-sand-light), transparent);
    pointer-events: none;
}
.sg-location__map {
    display: block;
    width: 100%;
    height: 100%;
    min-height: clamp(16rem, 42vw, 22rem);
    border: 0;
}
@media (min-width: 1024px) {
    .sg-location__map-wrap,
    .sg-location__map {
        min-height: 100%;
    }
}

/* ====================== 12. FOOTER (premium slate) ============= */
.sg-footer {
    --sg-footer-bg: #020617;        /* slate-950 */
    --sg-footer-surface: #0f172a;   /* slate-900 */
    --sg-footer-border: #1e293b;    /* slate-800 */
    --sg-footer-link: #94a3b8;      /* slate-400 */
    --sg-footer-accent: #65d7d7;
    --sg-footer-teal: #005b52;      /* brand emerald */
    background: var(--sg-footer-bg);
    color: var(--sg-footer-link);
    padding: 5rem 0;
}
.sg-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 1024px) {
    .sg-footer__grid {
        grid-template-columns: 5fr 2fr 2fr 3fr;
        gap: 4rem;
    }
}
.sg-footer__logo {
    height: 2.25rem;
    width: auto;
    margin-bottom: 2rem;
}
.sg-page p.sg-footer__newsletter-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}
.sg-footer__about {
    color: var(--sg-footer-link);
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.75;
    max-width: 28rem;
}
/* Newsletter — rounded container + solid submit */
.sg-footer__newsletter {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    max-width: 28rem;
    margin-top: 2.5rem;
    padding: 0.25rem;
    background: var(--sg-footer-surface);
    border: 1px solid var(--sg-footer-border);
    border-radius: 0.5rem;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}
.sg-footer__newsletter:focus-within {
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}
.sg-footer__newsletter input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    font-size: 0.875rem;
    padding: 0.75rem 0.875rem;
    color: #fff;
}
.sg-footer__newsletter input::placeholder {
    color: #64748b;
}
.sg-footer__newsletter input:focus {
    outline: none;
}
.sg-page .sg-footer__newsletter-btn,
.sg-footer__newsletter-btn {
    flex-shrink: 0;
    padding: 0.625rem 1.125rem;
    border: none;
    border-radius: 0.375rem;
    background: var(--sg-footer-teal);
    font-family: inherit;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #fff;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.sg-page .sg-footer__newsletter-btn:hover,
.sg-footer__newsletter-btn:hover {
    background: #004a44;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 91, 82, 0.35);
}
.sg-page .sg-footer__newsletter-btn:active,
.sg-footer__newsletter-btn:active {
    transform: translateY(1px);
}

.sg-page h4.sg-footer__title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #fff;
    margin: 0 0 1.75rem;
    font-weight: 700;
}
/* space-y-3 */
.sg-footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.sg-page .sg-footer__list a,
.sg-page .sg-footer__contact-value {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--sg-footer-link);
    transition: color 0.3s ease;
}
.sg-page .sg-footer__list a:hover,
.sg-page .sg-footer__contact-value:hover {
    color: var(--sg-footer-accent);
}

.sg-footer__contact-item {
    margin-bottom: 1.25rem;
}
.sg-footer__contact-label {
    color: #64748b;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.35rem;
}
.sg-page .sg-footer__hotline {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    transition: color 0.3s ease;
}
.sg-page .sg-footer__hotline:hover {
    color: var(--sg-footer-accent);
}

.sg-footer__social {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}
.sg-page .sg-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sg-footer-link);
    transition: color 0.3s ease;
}
.sg-page .sg-footer__social a:hover {
    color: var(--sg-footer-accent);
}
.sg-footer__social svg {
    width: 1.5rem;
    height: 1.5rem;
}

.sg-footer__bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--sg-footer-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}
@media (min-width: 768px) {
    .sg-footer__bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
}
.sg-footer__copy {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.5;
    max-width: 42rem;
}
.sg-footer__attribution {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.65rem 1.35rem 0.55rem;
    border-radius: 999px;
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(96, 165, 250, 0.06) 45%,
        rgba(255, 255, 255, 0.03) 100%
    );
    border: 1px solid rgba(96, 165, 250, 0.18);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 12px 36px rgba(0, 0, 0, 0.22);
}
.sg-footer__attribution-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.32);
}
.sg-page a.sg-footer__attribution-brand,
.sg-page a.sg-footer__attribution-brand:visited {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #60a5fa;
    text-decoration: none;
    line-height: 1.2;
    transition:
        color 0.22s ease,
        filter 0.22s ease,
        text-shadow 0.22s ease;
}
.sg-page a.sg-footer__attribution-brand:hover {
    color: #93c5fd;
    filter: brightness(1.06);
    text-shadow:
        0 0 22px rgba(96, 165, 250, 0.22),
        0 0 44px rgba(96, 165, 250, 0.12);
}
.sg-page a.sg-footer__attribution-brand:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 4px;
    border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
    .sg-page a.sg-footer__attribution-brand {
        transition: none;
    }
}
.sg-footer__legal { display: flex; gap: 2rem; }
.sg-page .sg-footer__legal a {
    color: var(--sg-footer-link);
    transition: color 0.3s ease;
}
.sg-page .sg-footer__legal a:hover {
    color: var(--sg-footer-accent);
}

/* Partners typography — final cascade (not .sg-page ink #06173E) */
.sg-page #partners .sg-partner-card > h3.sg-partner-card__name {
    color: #334155 !important;
}
.sg-page #partners .sg-partner-card > p.sg-partner-card__text {
    color: #64748b !important;
}

/* =====================================================================
   UNIT LAYOUT SHOWCASE — premium floor-plan cards
   ===================================================================== */

.sg-ushow-wrap {
    padding-block: clamp(2rem, 4vw, 3.5rem) clamp(3rem, 6vw, 5rem);
}

.sg-ushow-section + .sg-ushow-section {
    margin-top: clamp(3.5rem, 7vw, 5.5rem);
    padding-top: clamp(3rem, 6vw, 4.5rem);
    border-top: 1px solid rgba(101, 215, 215, 0.12);
}

.sg-ushow-section__head {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.sg-ushow-section__title {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    font-family: inherit;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--sg-sand-dark);
}

.sg-ushow-section__title::before,
.sg-ushow-section__title::after {
    content: '';
    width: clamp(2rem, 5vw, 2.75rem);
    height: 1px;
    flex-shrink: 0;
    background: linear-gradient(90deg, transparent, var(--sg-sand));
}

.sg-ushow-section__title::after {
    background: linear-gradient(90deg, var(--sg-sand), transparent);
}

.sg-ushow-grid {
    display: grid;
    gap: clamp(1.25rem, 2.5vw, 2rem);
}

/* Same wide 2-column layout as Studio — half container width per card */
.sg-ushow-grid--cols-2,
.sg-ushow-grid--cols-3,
.sg-ushow-grid--cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* 3rd card (1 Bedroom) centered on its own row, same width as Studio cards */
.sg-ushow-grid--cols-3 .sg-ushow-card:last-child:nth-child(3) {
    grid-column: 1 / -1;
    width: calc(50% - (clamp(1.25rem, 2.5vw, 2rem) / 2));
    max-width: calc(50% - 0.625rem);
    justify-self: center;
}

/* Single-card sections — same width as one Studio column */
.sg-ushow-grid--cols-1 {
    grid-template-columns: 1fr;
}

.sg-ushow-grid--cols-1 .sg-ushow-card {
    width: 100%;
    max-width: calc(50% - 0.625rem);
    margin-inline: auto;
}

/* ── Card shell — equal row height; caption bar always pinned to bottom ── */
.sg-ushow-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: var(--sg-panel-card-gradient);
    border: 1px solid var(--sg-panel-border);
    border-radius: 1.125rem;
    overflow: hidden;
    transition:
        transform 0.38s cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 0.38s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* top shimmer accent line */
.sg-ushow-card::before {
    content: '';
    position: absolute;
    inset-block-start: 0;
    inset-inline: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--sg-sand) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.38s ease;
    z-index: 2;
}

.sg-ushow-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.35),
        0 28px 64px rgba(0, 0, 0, 0.30),
        0 0 0 1px rgba(101, 215, 215, 0.18);
}

.sg-ushow-card:hover::before {
    opacity: 1;
}

/* ── Floor-plan stage — full image, no crop; letterbox when plans differ in height ── */
.sg-ushow-card__frame {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    background:
        radial-gradient(ellipse 70% 55% at 50% 45%, #ffffff 0%, #f8f7f3 72%, #f1efe8 100%);
    padding: 1.25rem 1.5rem;
    overflow: hidden;
    cursor: zoom-in;
}

.sg-ushow-card__img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.sg-ushow-card:hover .sg-ushow-card__img {
    transform: scale(1.04);
}

/* ── Caption bar — compact, aligned across the row ── */
.sg-ushow-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.15rem 1.5rem 1.4rem;
    flex: 0 0 auto;
    border-top: 1px solid rgba(101, 215, 215, 0.14);
}

.sg-ushow-card__eyebrow {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sg-sand);
}

.sg-ushow-card__name {
    margin: 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    font-weight: 500;
    color: #fff;
    line-height: 1.25;
}

.sg-ushow-card__area {
    margin: 0.35rem 0 0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

/* ── Shared Details button ── */
.sg-ushow__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.sg-ushow-wrap .sg-btn.sg-btn--primary.sg-ushow__cta,
.sg-ushow-wrap .sg-btn.sg-btn--primary.sg-ushow__cta:visited {
    background: var(--sg-corp-emerald);
    border-color: var(--sg-corp-emerald);
    border-radius: 0;
    color: #fff;
    text-transform: uppercase;
    padding: 1.0625rem 1.875rem;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    box-shadow: none;
    transition:
        background-color 0.4s ease,
        border-color 0.4s ease;
}

.sg-ushow-wrap .sg-btn.sg-btn--primary.sg-ushow__cta:hover {
    background: var(--sg-corp-emerald-deep);
    border-color: var(--sg-corp-emerald-deep);
    color: #fff;
    box-shadow: none;
}

.sg-ushow-wrap .sg-btn.sg-btn--primary.sg-ushow__cta .sg-btn__arrow {
    stroke: #fff;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.sg-ushow-wrap .sg-btn.sg-btn--primary.sg-ushow__cta:hover .sg-btn__arrow {
    transform: translateX(0.25rem);
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .sg-ushow-grid--cols-2,
    .sg-ushow-grid--cols-3,
    .sg-ushow-grid--cols-4 {
        grid-template-columns: 1fr;
    }

    .sg-ushow-grid--cols-3 .sg-ushow-card:last-child:nth-child(3),
    .sg-ushow-grid--cols-1 .sg-ushow-card {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 540px) {
    .sg-ushow-card__frame {
        padding: 1.25rem;
    }
}

/* ── Commercial — premium full-width layout ── */
.sg-ushow-commercial {
    padding-block: clamp(3rem, 6vw, 4.5rem) clamp(3rem, 6vw, 5rem);
    border-top: 1px solid rgba(101, 215, 215, 0.12);
    background:
        linear-gradient(180deg, rgba(248, 247, 243, 0.45) 0%, transparent 42%);
}

.sg-ushow-commercial__wrap {
    display: flex;
    flex-direction: column;
    gap: clamp(1.75rem, 3.5vw, 2.5rem);
}

.sg-ushow-commercial__panel {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    background: var(--sg-panel-card-gradient);
    border: 1px solid var(--sg-panel-border);
    box-shadow:
        0 4px 24px rgba(6, 23, 62, 0.12),
        0 24px 64px rgba(6, 23, 62, 0.18);
}

.sg-ushow-commercial__panel::before {
    content: '';
    position: absolute;
    inset-block-start: 0;
    inset-inline: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--sg-sand) 50%, transparent 100%);
    z-index: 2;
}

.sg-ushow-commercial__stage {
    position: relative;
    aspect-ratio: 4 / 3;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
    cursor: zoom-in;
}

.sg-ushow-commercial__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: zoom-in;
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sg-ushow-commercial__stage:hover .sg-ushow-commercial__img {
    transform: scale(1.02);
}

.sg-ushow-commercial__hint {
    position: absolute;
    inset-block-end: 1.25rem;
    inset-inline-end: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(6, 23, 62, 0.72);
    border: 1px solid rgba(158, 232, 232, 0.22);
    color: var(--sg-sand-light);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    pointer-events: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sg-ushow-commercial__hint svg {
    width: 0.95rem;
    height: 0.95rem;
    flex-shrink: 0;
}

.sg-ushow-commercial__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.5rem, 3vw, 2.25rem);
}

.sg-ushow-commercial__eyebrow {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sg-sand);
}

.sg-ushow-commercial__name {
    margin: 0.25rem 0 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 500;
    color: #fff;
    line-height: 1.25;
}

.sg-ushow-commercial__area {
    margin: 0.4rem 0 0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.sg-ushow-commercial .sg-btn.sg-btn--primary.sg-ushow-commercial__cta,
.sg-ushow-commercial .sg-btn.sg-btn--primary.sg-ushow-commercial__cta:visited {
    background: var(--sg-corp-emerald);
    border-color: var(--sg-corp-emerald);
    border-radius: 0;
    color: #fff;
    text-transform: uppercase;
    padding: 1.0625rem 1.875rem;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    box-shadow: none;
    flex-shrink: 0;
    transition:
        background-color 0.4s ease,
        border-color 0.4s ease;
}

.sg-ushow-commercial .sg-btn.sg-btn--primary.sg-ushow-commercial__cta:hover {
    background: var(--sg-corp-emerald-deep);
    border-color: var(--sg-corp-emerald-deep);
    color: #fff;
}

.sg-ushow-commercial .sg-btn.sg-btn--primary.sg-ushow-commercial__cta .sg-btn__arrow {
    stroke: #fff;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.sg-ushow-commercial .sg-btn.sg-btn--primary.sg-ushow-commercial__cta:hover .sg-btn__arrow {
    transform: translateX(0.25rem);
}

@media (max-width: 640px) {
    .sg-ushow-commercial__foot {
        flex-direction: column;
        align-items: flex-start;
    }

    .sg-ushow-commercial__stage {
        aspect-ratio: 5 / 4;
    }

    .sg-ushow-commercial__hint {
        inset-block-end: 0.75rem;
        inset-inline-end: 0.75rem;
    }
}

/* ── Reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
    .sg-ushow-card,
    .sg-ushow-card__img,
    .sg-ushow-commercial__img,
    .sg-ushow-wrap .sg-btn.sg-btn--primary.sg-ushow__cta,
    .sg-ushow-wrap .sg-btn.sg-btn--primary.sg-ushow__cta .sg-btn__arrow,
    .sg-ushow-commercial .sg-btn.sg-btn--primary.sg-ushow-commercial__cta,
    .sg-ushow-commercial .sg-btn.sg-btn--primary.sg-ushow-commercial__cta .sg-btn__arrow,
    .sg-ushow-card::before {
        transition: none;
    }
}

/* ====================== FLOATING CONTACT FAB ====================== */
.sg-contact-fab {
    --sg-fab-emerald: #005b52;
    --sg-fab-emerald-deep: #004a44;
    --sg-fab-whatsapp: #25D366;
    --sg-fab-whatsapp-deep: #1ebe57;
    position: fixed;
    inset-block-end: max(1.25rem, env(safe-area-inset-bottom, 0px));
    inset-inline-end: max(1.25rem, env(safe-area-inset-right, 0px));
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    isolation: isolate;
}

.sg-contact-fab__check {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

.sg-contact-fab__backdrop {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: none;
    margin: 0;
    cursor: default;
    background: transparent;
}

.sg-contact-fab__check:checked ~ .sg-contact-fab__backdrop {
    display: block;
}

.sg-contact-fab__trigger {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0.35rem;
    border: 1px solid rgba(101, 215, 215, 0.28);
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 42%),
        linear-gradient(145deg, #132743 0%, #0a1528 55%, #06101f 100%);
    color: #fff;
    cursor: pointer;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.1) inset,
        0 12px 36px rgba(6, 23, 62, 0.42),
        0 0 0 1px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.45s ease;
}

.sg-contact-fab__trigger:hover,
.sg-contact-fab__check:checked ~ .sg-contact-fab__trigger {
    border-color: rgba(101, 215, 215, 0.5);
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.14) inset,
        0 18px 44px rgba(6, 23, 62, 0.5),
        0 0 28px rgba(0, 91, 82, 0.28);
}

.sg-contact-fab__trigger:focus-visible {
    outline: 2px solid var(--sg-sand, #65d7d7);
    outline-offset: 3px;
}

.sg-contact-fab__rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    overflow: visible;
}

.sg-contact-fab__ring {
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    border: 1px solid rgba(101, 215, 215, 0.45);
    opacity: 0;
    animation: sg-contact-fab-pulse 3.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.sg-contact-fab__check:checked ~ .sg-contact-fab__trigger .sg-contact-fab__ring {
    animation: none;
    opacity: 0;
}

.sg-contact-fab__ring:nth-child(2) {
    animation-delay: 1.1s;
}

.sg-contact-fab__icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--sg-fab-emerald) 0%, var(--sg-fab-emerald-deep) 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.18) inset,
        0 8px 20px rgba(0, 91, 82, 0.4);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.sg-contact-fab__trigger:hover .sg-contact-fab__icon,
.sg-contact-fab__check:checked ~ .sg-contact-fab__trigger .sg-contact-fab__icon {
    transform: scale(1.06);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.22) inset,
        0 10px 24px rgba(0, 91, 82, 0.5);
}

.sg-contact-fab__icon svg {
    grid-area: 1 / 1;
    width: 1.125rem;
    height: 1.125rem;
    stroke: #fff;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.sg-contact-fab__icon-close {
    opacity: 0;
    transform: rotate(-45deg) scale(0.85);
}

.sg-contact-fab__check:checked ~ .sg-contact-fab__trigger .sg-contact-fab__icon-open {
    opacity: 0;
    transform: rotate(45deg) scale(0.85);
}

.sg-contact-fab__check:checked ~ .sg-contact-fab__trigger .sg-contact-fab__icon-close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.sg-contact-fab__menu {
    position: absolute;
    inset-block-end: calc(100% + 0.75rem);
    inset-inline-end: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 14.5rem;
    padding: 0.45rem;
    border: 1px solid rgba(101, 215, 215, 0.22);
    border-radius: 1.25rem;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, transparent 40%),
        linear-gradient(145deg, #132743 0%, #0a1528 55%, #06101f 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 18px 48px rgba(6, 23, 62, 0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0.6rem) scale(0.96);
    transition:
        opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.3s;
}

.sg-contact-fab__check:checked ~ .sg-contact-fab__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.sg-contact-fab__option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.65rem 0.85rem 0.65rem 0.65rem;
    border-radius: 0.9rem;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.sg-contact-fab__option:hover,
.sg-contact-fab__option:focus-visible {
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(-2px);
}

.sg-contact-fab__option:focus-visible {
    outline: 2px solid var(--sg-sand, #65d7d7);
    outline-offset: 2px;
}

.sg-contact-fab__option-icon {
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    flex-shrink: 0;
    border-radius: 50%;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.16) inset;
}

.sg-contact-fab__option--call .sg-contact-fab__option-icon {
    background: linear-gradient(145deg, var(--sg-fab-emerald) 0%, var(--sg-fab-emerald-deep) 100%);
    color: #fff;
}

.sg-contact-fab__option--whatsapp .sg-contact-fab__option-icon {
    background: linear-gradient(145deg, var(--sg-fab-whatsapp) 0%, var(--sg-fab-whatsapp-deep) 100%);
    color: #fff;
}

.sg-contact-fab__option-icon svg {
    width: 1.1rem;
    height: 1.1rem;
}

.sg-contact-fab__option--call .sg-contact-fab__option-icon svg {
    stroke: #fff;
}

.sg-contact-fab__option-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.sg-contact-fab__option-label {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.15;
    color: #fff;
}

.sg-contact-fab__option-meta {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

@keyframes sg-contact-fab-pulse {
    0% {
        opacity: 0.55;
        transform: scale(1);
    }
    70% {
        opacity: 0;
        transform: scale(1.12);
    }
    100% {
        opacity: 0;
        transform: scale(1.12);
    }
}

@media (max-width: 480px) {
    .sg-contact-fab {
        inset-block-end: max(1rem, env(safe-area-inset-bottom, 0px));
        inset-inline-end: max(1rem, env(safe-area-inset-right, 0px));
    }

    .sg-contact-fab__trigger {
        padding: 0.3rem;
    }

    .sg-contact-fab__icon {
        width: 2.25rem;
        height: 2.25rem;
    }

    .sg-contact-fab__icon svg {
        width: 1rem;
        height: 1rem;
    }

    .sg-contact-fab__menu {
        min-width: 12rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sg-contact-fab__trigger,
    .sg-contact-fab__icon,
    .sg-contact-fab__icon svg,
    .sg-contact-fab__option,
    .sg-contact-fab__menu {
        transition: none;
    }

    .sg-contact-fab__ring {
        animation: none;
        opacity: 0;
    }

    .sg-contact-fab__trigger:hover,
    .sg-contact-fab__check:checked ~ .sg-contact-fab__trigger,
    .sg-contact-fab__option:hover,
    .sg-contact-fab__option:focus-visible {
        transform: none;
    }
}
