/*
 * GOLDSTEIN RESIDENCE — CONSOLIDATED STYLESHEET
 * Shared website styles. Cookie consent styles remain in liquid-consent.css.
 */


/* ========================================================================== 
   GLOBAL HEADER AND BASE
   ========================================================================== */

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

html,
body{
    margin:0;
    padding:0;
}

.gs-header{
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    width:100%;
    font-family:'Montserrat',sans-serif;
    background:transparent;
    border-bottom:1px solid transparent;
    transition:background 300ms ease,border-color 300ms ease,box-shadow 300ms ease;
}

.gs-header-inner{
    width:100%;
    max-width:1480px;
    min-height:94px;
    margin:0 auto;
    padding:0 55px;
    display:grid;
    grid-template-columns:180px 1fr 280px;
    align-items:center;
    transition:min-height 300ms ease;
}

.gs-header-logo{
    display:inline-flex;
    justify-self:start;
    align-items:center;
    position:relative;
}

.gs-header-logo img{
    display:block;
    width:auto;
    height:48px;
    transition:opacity 250ms ease;
}

.gs-header-logo-dark{
    position:absolute;
    left:0;
    opacity:0;
    pointer-events:none;
}

.gs-header-nav{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:50px;
}

.gs-header-nav a,
.gs-header-phone{
    color:#ffffff;
    font-size:12px;
    font-weight:600;
    line-height:1.4;
    text-decoration:none;
    transition:color 250ms ease;
}

.gs-header-nav a.is-active{
    color:#d7b273;
}

.gs-header-phone{
    font-size:17px;
    font-weight:700;
}

.gs-header-contact{
    justify-self:end;
    display:flex;
    align-items:center;
    gap:18px;
}

.gs-header-socials{
    display:flex;
    align-items:center;
    gap:7px;
}

.gs-header-socials a{
    width:34px;
    height:34px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#d7b273;
    border:1px solid rgba(215,178,115,0.45);
    background:rgba(255,255,255,0.035);
    text-decoration:none;
    transition:background 250ms ease,color 250ms ease,transform 250ms ease,border-color 250ms ease;
}

.gs-header-socials a:hover{
    color:#292e30;
    background:#d7b273;
    border-color:#d7b273;
    transform:translateY(-2px);
}

.gs-header-socials svg,
.gs-header-mobile-socials svg{
    width:16px;
    height:16px;
    fill:currentColor;
}

.gs-header-socials a:nth-child(2) svg,
.gs-header-mobile-socials a:nth-child(2) svg{
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
}

.gs-header-socials .gs-header-icon-fill,
.gs-header-mobile-socials .gs-header-icon-fill{
    fill:currentColor;
    stroke:none;
}

.gs-header-mobile-socials{
    display:none;
}

.gs-header-burger{
    display:none;
    width:44px;
    height:44px;
    padding:0;
    border:1px solid rgba(215,178,115,0.45);
    background:rgba(255,255,255,0.04);
    color:#d7b273;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    transition:background 250ms ease,border-color 250ms ease;
}

.gs-header-burger span{
    display:block;
    width:20px;
    height:1.5px;
    background:currentColor;
    transition:transform 250ms ease,opacity 200ms ease;
}

.gs-header.is-scrolled{
    background:rgba(255,255,255,0.98);
    border-bottom-color:rgba(215,178,115,0.20);
    box-shadow:0 12px 36px rgba(24,29,31,0.10);
    backdrop-filter:blur(12px);
}

.gs-header.is-scrolled .gs-header-inner{
    min-height:78px;
}

.gs-header.is-scrolled .gs-header-logo-light{
    opacity:0;
}

.gs-header.is-scrolled .gs-header-logo-dark{
    opacity:1;
}

.gs-header.is-scrolled .gs-header-nav a,
.gs-header.is-scrolled .gs-header-phone{
    color:#53585a;
}

.gs-header.is-scrolled .gs-header-socials a{
    color:#53585a;
    background:#ffffff;
    border-color:rgba(215,178,115,0.50);
}

.gs-header.is-scrolled .gs-header-socials a:hover{
    color:#292e30;
    background:#d7b273;
}

.gs-header.is-scrolled .gs-header-nav a.is-active,
.gs-header.is-scrolled .gs-header-nav a:hover,
.gs-header.is-scrolled .gs-header-phone:hover{
    color:#c2974b;
}

.gs-header.is-scrolled .gs-header-burger,
.gs-header.menu-open .gs-header-burger{
    color:#53585a;
    background:#ffffff;
    border-color:rgba(215,178,115,0.55);
}

.gs-header.menu-open{
    background:rgba(255,255,255,0.99);
    border-bottom-color:rgba(215,178,115,0.20);
    box-shadow:0 12px 36px rgba(24,29,31,0.10);
}

.gs-header.menu-open .gs-header-logo-light{
    opacity:0;
}

.gs-header.menu-open .gs-header-logo-dark{
    opacity:1;
}

.gs-header.menu-open .gs-header-phone{
    color:#53585a;
}

.gs-header.menu-open .gs-header-burger span:nth-child(1){
    transform:translateY(6.5px) rotate(45deg);
}

.gs-header.menu-open .gs-header-burger span:nth-child(2){
    opacity:0;
}

.gs-header.menu-open .gs-header-burger span:nth-child(3){
    transform:translateY(-6.5px) rotate(-45deg);
}

@media(max-width:1100px){
    .gs-header-inner{
        padding:0 35px;
        grid-template-columns:150px 1fr 240px;
    }

    .gs-header-nav{
        gap:24px;
    }
}

@media(max-width:768px){
    .gs-header-inner{
        min-height:72px;
        padding:0 25px;
        grid-template-columns:1fr auto auto;
        gap:16px;
    }

    .gs-header-logo img{
        height:40px;
    }

    .gs-header-nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        display:flex;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        padding:10px 25px 22px;
        background:rgba(255,255,255,0.99);
        border-top:1px solid rgba(215,178,115,0.14);
        border-bottom:1px solid rgba(215,178,115,0.22);
        box-shadow:0 20px 36px rgba(24,29,31,0.12);
        opacity:0;
        visibility:hidden;
        transform:translateY(-10px);
        pointer-events:none;
        transition:opacity 250ms ease,visibility 250ms ease,transform 250ms ease;
    }

    .gs-header-nav a,
    .gs-header.is-scrolled .gs-header-nav a{
        width:100%;
        padding:15px 0;
        color:#53585a;
        font-size:13px;
        border-bottom:1px solid rgba(83,88,90,0.10);
    }

    .gs-header-nav a:last-child{
        border-bottom:none;
    }

    .gs-header-mobile-socials{
        display:block;
        padding:20px 0 4px;
    }

    .gs-header-mobile-socials > span{
        display:block;
        margin-bottom:12px;
        color:#c2974b;
        font-size:10px;
        font-weight:700;
        letter-spacing:2.5px;
        text-transform:uppercase;
    }

    .gs-header-mobile-socials > div{
        display:flex;
        gap:9px;
    }

    .gs-header-mobile-socials a,
    .gs-header.is-scrolled .gs-header-mobile-socials a{
        width:42px;
        height:42px;
        padding:0;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        color:#53585a;
        border:1px solid rgba(215,178,115,0.48);
        background:#ffffff;
    }

    .gs-header-mobile-socials a:hover{
        color:#292e30;
        background:#d7b273;
    }

    .gs-header-nav a.is-active,
    .gs-header.is-scrolled .gs-header-nav a.is-active{
        color:#c2974b;
    }

    .gs-header.menu-open .gs-header-nav{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
        pointer-events:auto;
    }

    .gs-header-phone{
        font-size:14px;
    }

    .gs-header-socials{
        display:none;
    }

    .gs-header-burger{
        display:flex;
    }
}

@media(max-width:480px){
    .gs-header-inner{
        grid-template-columns:1fr auto;
    }

    .gs-header-contact{
        display:none;
    }
}

@media(prefers-reduced-motion:reduce){
    .gs-header,
    .gs-header-inner,
    .gs-header-logo img,
    .gs-header-nav a,
    .gs-header-phone,
    .gs-header-socials a,
    .gs-header-mobile-socials a,
    .gs-header-burger,
    .gs-header-burger span{
        transition:none !important;
    }
}


/* ========================================================================== 
   HOME HERO
   ========================================================================== */

.gs-hero-signature{
    position:relative;
    min-height:860px;
    width:100%;
    overflow:hidden;
    display:flex;
    align-items:center;
    background:#34393b;
    font-family:'Montserrat',sans-serif;
}

.gs-hero-media{
    position:absolute;
    inset:0;
    z-index:1;
}

.gs-hero-photo{
    position:absolute;
    inset:-7%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transform:scale(1.08);
    animation:gsHeroFade 18s ease-in-out infinite;
}

.gs-photo-one{
    background-image:url('../assets/images/banner/goldstein_banner_1.jpg');
}

.gs-photo-two{
    background-image:url('../assets/images/banner/goldstein_banner_2.jpg');
    animation-delay:9s;
}

.gs-hero-shade{
    position:absolute;
    inset:0;
    z-index:2;
    background:
        radial-gradient(circle at 72% 42%, rgba(215,178,115,0.12), transparent 28%),
        linear-gradient(to right, rgba(18,20,22,0.86) 0%, rgba(18,20,22,0.58) 45%, rgba(18,20,22,0.72) 100%),
        linear-gradient(to bottom, rgba(18,20,22,0.38), rgba(18,20,22,0.86));
}

.gs-hero-inner{
    position:relative;
    z-index:4;
    width:100%;
    max-width:1480px;
    margin:0 auto;
    padding:145px 55px 180px;
    display:grid;
    grid-template-columns:1.05fr 360px;
    gap:70px;
    align-items:center;
}

.gs-hero-kicker{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
    color:#d7b273;
    font-size:10px;
    font-weight:700;
    letter-spacing:4px;
}

.gs-hero-kicker span{
    width:44px;
    height:1px;
    background:#d7b273;
}

.gs-hero-copy h1{
    max-width:850px;
    margin:0;
    color:#ffffff;
    font-family:'Playfair Display',serif;
    font-size:76px;
    line-height:1.03;
    font-weight:600;
}

.gs-hero-copy p{
    max-width:720px;
    margin:28px 0 0;
    color:rgba(255,255,255,0.78);
    font-size:17px;
    line-height:1.85;
    font-weight:300;
}

.gs-hero-actions{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-top:42px;
}

.gs-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 34px;
    border:1px solid #d7b273;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
    text-decoration:none;
    transition:
        color 300ms ease,
        background-color 300ms ease,
        border-color 300ms ease,
        box-shadow 300ms ease,
        transform 300ms ease;
}

.gs-btn-primary{
    background:#d7b273;
    color:#2f3335;
}

.gs-btn-ghost{
    background:rgba(255,255,255,0.025);
    color:#d7b273;
    backdrop-filter:blur(10px);
}

.gs-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 42px rgba(215,178,115,0.18);
}

.gs-btn-primary:hover{
    background:transparent;
    color:#d7b273;
}

.gs-btn-ghost:hover{
    background:#d7b273;
    color:#2f3335;
}

.gs-hero-panel{
    position:relative;
    padding:30px;
    background:rgba(47,52,54,0.68);
    border:1px solid rgba(215,178,115,0.26);
    backdrop-filter:blur(16px);
    box-shadow:0 30px 80px rgba(0,0,0,0.28);
}

.gs-hero-panel:before{
    content:"";
    position:absolute;
    inset:14px -14px -14px 14px;
    border:1px solid rgba(215,178,115,0.18);
    z-index:-1;
}

.gs-panel-top{
    padding-bottom:24px;
    margin-bottom:10px;
    border-bottom:1px solid rgba(215,178,115,0.18);
}

.gs-panel-top span,
.gs-panel-row span{
    display:block;
    color:#d7b273;
    font-size:10px;
    font-weight:700;
    letter-spacing:2.6px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.gs-panel-top strong{
    display:block;
    color:#ffffff;
    font-family:'Playfair Display',serif;
    font-size:44px;
    line-height:1;
    font-weight:600;
}

.gs-panel-row{
    display:flex;
    justify-content:space-between;
    gap:24px;
    padding:20px 0;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.gs-panel-row:last-child{
    border-bottom:none;
    padding-bottom:0;
}

.gs-panel-row strong{
    color:#ffffff;
    font-size:15px;
    font-weight:600;
    text-align:right;
}

.gs-hero-bottom{
    position:absolute;
    left:50%;
    bottom:0;
    z-index:5;
    width:min(1370px, calc(100% - 80px));
    transform:translateX(-50%);
    display:grid;
    grid-template-columns:repeat(3,1fr);
    background:rgba(43,47,49,0.88);
    border:1px solid rgba(215,178,115,0.18);
    backdrop-filter:blur(14px);
}

.gs-hero-bottom div{
    padding:26px 34px;
    border-right:1px solid rgba(215,178,115,0.14);
}

.gs-hero-bottom div:last-child{
    border-right:none;
}

.gs-hero-bottom strong{
    display:block;
    color:#ffffff;
    font-size:17px;
    font-weight:600;
    margin-bottom:6px;
}

.gs-hero-bottom span{
    display:block;
    color:rgba(255,255,255,0.56);
    font-size:13px;
    line-height:1.5;
}

.gs-hero-dust{
    position:absolute;
    inset:0;
    z-index:3;
    pointer-events:none;
}

.gs-hero-dust span{
    position:absolute;
    width:3px;
    height:3px;
    border-radius:50%;
    background:rgba(215,178,115,0.75);
    box-shadow:0 0 14px rgba(215,178,115,0.55);
    opacity:0;
    animation:gsDust 12s linear infinite;
}

.gs-hero-dust span:nth-child(1){left:8%; top:78%; animation-delay:0s;}
.gs-hero-dust span:nth-child(2){left:18%; top:64%; animation-delay:2s;}
.gs-hero-dust span:nth-child(3){left:31%; top:82%; animation-delay:4s;}
.gs-hero-dust span:nth-child(4){left:45%; top:72%; animation-delay:1s;}
.gs-hero-dust span:nth-child(5){left:56%; top:86%; animation-delay:5s;}
.gs-hero-dust span:nth-child(6){left:68%; top:68%; animation-delay:3s;}
.gs-hero-dust span:nth-child(7){left:78%; top:80%; animation-delay:6s;}
.gs-hero-dust span:nth-child(8){left:90%; top:70%; animation-delay:2.5s;}
.gs-hero-dust span:nth-child(9){left:38%; top:44%; animation-delay:7s;}
.gs-hero-dust span:nth-child(10){left:74%; top:38%; animation-delay:8s;}

@keyframes gsHeroFade{
    0%{opacity:0; transform:scale(1.08) translateY(0);}
    8%{opacity:1;}
    44%{opacity:1; transform:scale(1.15) translateY(-22px);}
    56%{opacity:0; transform:scale(1.17) translateY(-32px);}
    100%{opacity:0; transform:scale(1.08) translateY(0);}
}

@keyframes gsDust{
    0%{transform:translateY(40px) translateX(0) scale(.6); opacity:0;}
    18%{opacity:.48;}
    70%{opacity:.28;}
    100%{transform:translateY(-150px) translateX(26px) scale(1); opacity:0;}
}

@media(max-width:1100px){
    .gs-hero-inner{
        grid-template-columns:1fr;
        padding:120px 35px 220px;
    }

    .gs-hero-copy h1{
        font-size:56px;
    }

    .gs-hero-panel{
        max-width:430px;
    }
}

@media(max-width:768px){
    .gs-hero-signature{
        min-height:auto;
    }

    .gs-hero-inner{
        padding:92px 25px 245px;
        gap:45px;
    }

    .gs-hero-copy h1{
        font-size:40px;
    }

    .gs-hero-copy p{
        font-size:15px;
    }

    .gs-btn{
        width:100%;
    }

    .gs-hero-bottom{
        width:calc(100% - 40px);
        grid-template-columns:1fr;
    }

    .gs-hero-bottom div{
        padding:20px 22px;
        border-right:none;
        border-bottom:1px solid rgba(215,178,115,0.14);
    }

    .gs-hero-bottom div:last-child{
        border-bottom:none;
    }
}

@media(prefers-reduced-motion:reduce){
    .gs-hero-photo,
    .gs-hero-dust span,
    .gs-btn{
        animation:none !important;
        transition:none !important;
    }

    .gs-photo-one{
        opacity:1;
    }
}


/* ========================================================================== 
   HOME CONTENT
   ========================================================================== */

.goldstein-premium-overview{
    position:relative;
    width:100%;
    overflow:hidden;
    background:
        radial-gradient(circle at top left, rgba(215,178,115,0.09), transparent 27%),
        radial-gradient(circle at bottom right, rgba(215,178,115,0.07), transparent 30%),
        linear-gradient(135deg,#3f4548 0%,#4b5053 46%,#383e41 100%);
    font-family:'Montserrat',sans-serif;
    padding:105px 0;
    border-top:1px solid rgba(215,178,115,0.10);
    border-bottom:1px solid rgba(215,178,115,0.12);
}

.goldstein-gold-dust{
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    overflow:hidden;
}

.goldstein-gold-dust span{
    position:absolute;
    width:3px;
    height:3px;
    border-radius:50%;
    background:rgba(215,178,115,0.75);
    box-shadow:0 0 12px rgba(215,178,115,0.55);
    opacity:0;
    animation:goldsteinDustFloat 12s linear infinite;
}

.goldstein-gold-dust span:nth-child(1){left:6%; top:82%; animation-delay:0s; animation-duration:13s;}
.goldstein-gold-dust span:nth-child(2){left:14%; top:64%; animation-delay:2s; animation-duration:15s;}
.goldstein-gold-dust span:nth-child(3){left:22%; top:88%; animation-delay:4s; animation-duration:14s;}
.goldstein-gold-dust span:nth-child(4){left:31%; top:72%; animation-delay:1s; animation-duration:16s;}
.goldstein-gold-dust span:nth-child(5){left:39%; top:90%; animation-delay:5s; animation-duration:13s;}
.goldstein-gold-dust span:nth-child(6){left:48%; top:76%; animation-delay:3s; animation-duration:17s;}
.goldstein-gold-dust span:nth-child(7){left:57%; top:86%; animation-delay:6s; animation-duration:14s;}
.goldstein-gold-dust span:nth-child(8){left:66%; top:69%; animation-delay:1.5s; animation-duration:15s;}
.goldstein-gold-dust span:nth-child(9){left:74%; top:92%; animation-delay:4.5s; animation-duration:16s;}
.goldstein-gold-dust span:nth-child(10){left:83%; top:74%; animation-delay:2.5s; animation-duration:13s;}
.goldstein-gold-dust span:nth-child(11){left:91%; top:85%; animation-delay:6.5s; animation-duration:18s;}
.goldstein-gold-dust span:nth-child(12){left:11%; top:45%; animation-delay:7s; animation-duration:17s;}
.goldstein-gold-dust span:nth-child(13){left:28%; top:38%; animation-delay:8s; animation-duration:15s;}
.goldstein-gold-dust span:nth-child(14){left:52%; top:42%; animation-delay:7.5s; animation-duration:16s;}
.goldstein-gold-dust span:nth-child(15){left:69%; top:34%; animation-delay:9s; animation-duration:18s;}
.goldstein-gold-dust span:nth-child(16){left:88%; top:48%; animation-delay:8.5s; animation-duration:14s;}
.goldstein-gold-dust span:nth-child(17){left:36%; top:58%; animation-delay:10s; animation-duration:19s;}
.goldstein-gold-dust span:nth-child(18){left:79%; top:57%; animation-delay:11s; animation-duration:16s;}

@keyframes goldsteinDustFloat{
    0%{transform:translateY(30px) translateX(0) scale(0.6); opacity:0;}
    12%{opacity:0.45;}
    50%{opacity:0.28;}
    85%{opacity:0.55;}
    100%{transform:translateY(-150px) translateX(28px) scale(1); opacity:0;}
}

.goldstein-premium-wrap{
    position:relative;
    z-index:2;
    max-width:1480px;
    margin:0 auto;
    display:grid;
    grid-template-columns:0.95fr 1.05fr;
    align-items:center;
    gap:78px;
    padding:0 55px;
}

.goldstein-premium-visual{
    position:relative;
    min-height:650px;
    overflow:hidden;
    isolation:isolate;
}

.goldstein-premium-visual:before{
    content:"";
    position:absolute;
    inset:18px -18px -18px 18px;
    border:1px solid rgba(215,178,115,0.22);
    z-index:-1;
}

.goldstein-premium-visual img{
    width:100%;
    height:100%;
    min-height:650px;
    object-fit:cover;
    display:block;
    transform:scale(1.01);
    filter:saturate(0.92) contrast(1.04);
    transition:transform 900ms ease, filter 900ms ease;
}

.goldstein-premium-visual:hover img{
    transform:scale(1.055);
    filter:saturate(1) contrast(1.07);
}

.goldstein-premium-visual:after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.02), rgba(0,0,0,0.26)),
        linear-gradient(to right, rgba(0,0,0,0.12), rgba(0,0,0,0.03));
    pointer-events:none;
}

.goldstein-premium-badge{
    position:absolute;
    left:34px;
    bottom:34px;
    z-index:2;
    min-width:230px;
    padding:20px 24px;
    background:rgba(49,53,55,0.82);
    border:1px solid rgba(215,178,115,0.28);
    backdrop-filter:blur(12px);
}

.goldstein-premium-badge span{
    display:block;
    color:#d7b273;
    font-size:10px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:7px;
}

.goldstein-premium-badge strong{
    display:block;
    color:#ffffff;
    font-family:'Playfair Display',serif;
    font-size:26px;
    line-height:1.15;
    font-weight:600;
}

.goldstein-premium-content{
    position:relative;
    max-width:720px;
}

.goldstein-premium-subtitle{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:14px;
    color:#d7b273;
    font-size:10px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

.goldstein-premium-subtitle span{
    width:44px;
    height:1px;
    background:#d7b273;
    opacity:0.75;
}

.goldstein-premium-content h2{
    margin:0;
    color:#ffffff;
    font-family:'Playfair Display',serif;
    font-size:46px;
    line-height:1.14;
    font-weight:600;
    letter-spacing:-0.5px;
}

.goldstein-premium-divider{
    width:56px;
    height:2px;
    background:#d7b273;
    margin:22px 0 24px;
}

.goldstein-premium-content p{
    margin:0 0 18px;
    color:rgba(255,255,255,0.66);
    font-size:15px;
    line-height:1.85;
    font-weight:300;
}

.goldstein-premium-content .goldstein-premium-lead{
    color:rgba(255,255,255,0.80);
}

.goldstein-premium-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin:34px 0 38px;
}

.goldstein-premium-stats div{
    position:relative;
    padding:22px 18px;
    background:rgba(255,255,255,0.035);
    border:1px solid rgba(215,178,115,0.17);
    transition:transform 350ms ease, border-color 350ms ease, background 350ms ease;
}

.goldstein-premium-stats div:hover{
    transform:translateY(-5px);
    border-color:rgba(215,178,115,0.45);
    background:rgba(215,178,115,0.06);
}

.goldstein-premium-stats strong{
    display:block;
    color:#d7b273;
    font-family:'Playfair Display',serif;
    font-size:34px;
    line-height:1;
    font-weight:600;
    margin-bottom:8px;
}

.goldstein-premium-stats span{
    display:block;
    color:rgba(255,255,255,0.62);
    font-size:12px;
    line-height:1.45;
    text-transform:uppercase;
    letter-spacing:1.4px;
}

.goldstein-premium-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px 28px;
}

.goldstein-premium-feature{
    display:flex;
    align-items:flex-start;
    gap:16px;
    padding:22px 20px;
    background:rgba(255,255,255,0.025);
    border-left:1px solid rgba(215,178,115,0.22);
    transition:transform 350ms ease, background 350ms ease, border-color 350ms ease;
}

.goldstein-premium-feature:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,0.045);
    border-color:rgba(215,178,115,0.55);
}

.goldstein-premium-icon{
    width:36px;
    height:36px;
    flex:0 0 36px;
    color:#d7b273;
}

.goldstein-premium-icon svg{
    width:36px;
    height:36px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.35;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.goldstein-premium-feature strong{
    display:block;
    color:#ffffff;
    font-size:16px;
    line-height:1.35;
    font-weight:600;
    margin-bottom:7px;
}

.goldstein-premium-feature span{
    display:block;
    color:rgba(255,255,255,0.58);
    font-size:13px;
    line-height:1.55;
}

.goldstein-premium-cta{
    margin-top:34px;
    padding:22px 0 0;
    border-top:1px solid rgba(215,178,115,0.16);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.goldstein-premium-cta span{
    color:rgba(255,255,255,0.72);
    font-size:14px;
    line-height:1.6;
    font-weight:300;
}

.goldstein-premium-cta a{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 26px;
    color:#2f3335;
    background:#d7b273;
    border:1px solid #d7b273;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
    text-decoration:none;
    transition:background 300ms ease, color 300ms ease, transform 300ms ease;
}

.goldstein-premium-cta a:hover{
    background:transparent;
    color:#d7b273;
    transform:translateY(-2px);
}

.goldstein-premium-glow{
    position:absolute;
    border-radius:50%;
    background:radial-gradient(circle, rgba(215,178,115,0.13) 0%, transparent 72%);
    filter:blur(12px);
    pointer-events:none;
    animation:goldsteinPremiumFloat 13s ease-in-out infinite;
}

.glow-one{
    width:320px;
    height:320px;
    top:-130px;
    right:16%;
}

.glow-two{
    width:250px;
    height:250px;
    bottom:-115px;
    left:9%;
    animation-delay:4s;
}

.glow-three{
    width:170px;
    height:170px;
    top:42%;
    right:4%;
    animation-delay:7s;
}

.goldstein-premium-line{
    position:absolute;
    height:1px;
    background:rgba(215,178,115,0.14);
}

.goldstein-premium-line.line-one{
    width:32%;
    right:-4%;
    top:125px;
    transform:rotate(-7deg);
}

.goldstein-premium-line.line-two{
    width:28%;
    left:-5%;
    bottom:80px;
    transform:rotate(6deg);
}

@keyframes goldsteinPremiumFloat{
    0%{transform:translateY(0) translateX(0); opacity:0.42;}
    50%{transform:translateY(-16px) translateX(9px); opacity:0.75;}
    100%{transform:translateY(0) translateX(0); opacity:0.42;}
}

@media(max-width:1200px){
    .goldstein-premium-wrap{
        grid-template-columns:1fr;
        gap:58px;
    }

    .goldstein-premium-content{
        max-width:none;
    }
}

@media(max-width:768px){
    .goldstein-premium-overview{
        padding:58px 0;
    }

    .goldstein-premium-wrap{
        padding:0 25px;
        gap:38px;
    }

    .goldstein-premium-visual,
    .goldstein-premium-visual img{
        min-height:350px;
    }

    .goldstein-premium-visual:before{
        inset:12px -12px -12px 12px;
    }

    .goldstein-premium-badge{
        left:18px;
        bottom:18px;
        min-width:190px;
        padding:16px 18px;
    }

    .goldstein-premium-badge strong{
        font-size:22px;
    }

    .goldstein-premium-content h2{
        font-size:34px;
    }

    .goldstein-premium-stats{
        grid-template-columns:1fr;
    }

    .goldstein-premium-features{
        grid-template-columns:1fr;
    }

    .goldstein-premium-feature{
        padding:20px 0;
        background:transparent;
    }

    .goldstein-premium-cta{
        align-items:flex-start;
        flex-direction:column;
    }

    .goldstein-premium-cta a{
        width:100%;
    }
}

@media(prefers-reduced-motion:reduce){
    .goldstein-gold-dust span,
    .goldstein-premium-glow,
    .goldstein-premium-visual img,
    .goldstein-premium-feature,
    .goldstein-premium-stats div,
    .goldstein-premium-cta a{
        animation:none !important;
        transition:none !important;
    }
}


/* ========================================================================== 
   HOME LOCATION MAP
   ========================================================================== */

.goldstein-location-map,
.goldstein-location-map * {
    box-sizing: border-box;
}

.goldstein-location-map {
    position: relative;
    overflow: hidden;
    padding: 90px 20px;
    background: #f7f5f0;
    color: #303b40;
    font-family: "Montserrat", sans-serif;
}

.glm-pattern {
    position: absolute;
    inset: 0;
    opacity: .42;
    background-image:
        linear-gradient(rgba(172, 125, 12, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(172, 125, 12, .055) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
}

.goldstein-location-map:before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -190px;
    top: -180px;
    background: radial-gradient(circle, rgba(215, 178, 115, .22), transparent 68%);
    pointer-events: none;
}

.goldstein-location-map:after {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    left: -170px;
    bottom: -170px;
    background: radial-gradient(circle, rgba(73, 82, 82, .12), transparent 70%);
    pointer-events: none;
}

.glm-wrap {
    position: relative;
    z-index: 2;
    max-width: 1380px;
    margin: 0 auto;
}

.glm-top {
    display: grid;
    grid-template-columns: minmax(0, 840px) auto;
    gap: 28px;
    align-items: end;
    margin-bottom: 30px;
}

.glm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #ac7d0c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.glm-eyebrow:after {
    content: "";
    width: 44px;
    height: 1px;
    background: #d7b273;
    display: block;
}

.glm-top h2 {
    margin: 14px 0 18px;
    color: #303b40;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 76px);
    line-height: 1.02;
    letter-spacing: 0;
}

.glm-top p {
    max-width: 780px;
    margin: 0;
    color: #657074;
    font-size: 16px;
    line-height: 1.8;
}

.glm-more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid #d7b273;
    background: #d7b273;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: .25s ease;
    white-space: nowrap;
}

.glm-more-link:hover {
    background: #303b40;
    border-color: #303b40;
    color: #fff;
}

.glm-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.glm-summary div {
    min-height: 104px;
    padding: 22px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(215, 178, 115, .42);
    box-shadow: 0 18px 44px rgba(28, 34, 35, .07);
}

.glm-summary strong {
    display: block;
    margin-bottom: 8px;
    color: #303b40;
    font-family: "Playfair Display", serif;
    font-size: 27px;
    line-height: 1.15;
}

.glm-summary span {
    display: block;
    color: #727c80;
    font-size: 13px;
    line-height: 1.5;
}

.glm-controls {
    margin-bottom: 18px;
    padding: 20px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(215, 178, 115, .42);
    box-shadow: 0 18px 50px rgba(28, 34, 35, .08);
}

.glm-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.glm-filter {
    appearance: none;
    border: 1px solid rgba(215, 178, 115, .55);
    background: #fff;
    color: #344044;
    min-height: 42px;
    padding: 0 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .25s ease;
}

.glm-filter:hover,
.glm-filter.active {
    background: #d7b273;
    color: #fff;
    border-color: #d7b273;
}

.glm-point-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.glm-point {
    appearance: none;
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 54px;
    padding: 12px 14px;
    border: 1px solid rgba(215, 178, 115, .3);
    background: rgba(255, 255, 255, .8);
    color: #303b40;
    text-align: left;
    cursor: pointer;
    transition: .25s ease;
}

.glm-point:hover,
.glm-point.active {
    border-color: rgba(215, 178, 115, .9);
    box-shadow: 0 12px 30px rgba(33, 38, 39, .08);
    transform: translateY(-2px);
}

.glm-point strong {
    font-size: 13px;
    line-height: 1.25;
    font-weight: 700;
}

.glm-dot {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(215, 178, 115, .15);
}

.glm-dot.project { background: #ac7d0c; }
.glm-dot.nature { background: #607c68; }
.glm-dot.services { background: #495252; }
.glm-dot.sport { background: #8b6f42; }
.glm-dot.shops { background: #b8832f; }
.glm-dot.school { background: #7a8d9a; }

.glm-map-card {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(215, 178, 115, .42);
    box-shadow: 0 30px 80px rgba(28, 34, 35, .12);
}

#goldsteinInteractiveMap {
    width: 100%;
    height: 100%;
    min-height: 680px;
    background: #eef0ed;
}

.glm-map-note {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: calc(100% - 48px);
    padding: 13px 16px;
    background: rgba(48, 59, 64, .92);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .4px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .16);
    backdrop-filter: blur(8px);
}

.glm-map-note span {
    width: 8px;
    height: 8px;
    background: #d7b273;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(215, 178, 115, .18);
}

.goldstein-marker {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #303b40;
    border: 3px solid #d7b273;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .22);
}

.goldstein-marker:before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: #d7b273;
}

.goldstein-marker:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 13px;
    height: 13px;
    background: inherit;
    border-right: 3px solid #d7b273;
    border-bottom: 3px solid #d7b273;
    transform: translateX(-50%) rotate(45deg);
}

.goldstein-marker.project { background: #ac7d0c; }
.goldstein-marker.nature { background: #607c68; }
.goldstein-marker.services { background: #495252; }
.goldstein-marker.sport { background: #8b6f42; }
.goldstein-marker.shops { background: #b8832f; }
.goldstein-marker.school { background: #7a8d9a; }

.leaflet-popup-content-wrapper {
    border-radius: 0;
    border: 1px solid rgba(215, 178, 115, .55);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
}

.leaflet-popup-content {
    margin: 0;
    width: 270px !important;
}

.glm-popup {
    padding: 18px;
    font-family: "Montserrat", sans-serif;
}

.glm-popup span {
    display: block;
    margin-bottom: 8px;
    color: #ac7d0c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.glm-popup h4 {
    margin: 0 0 8px;
    color: #303b40;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    line-height: 1.15;
}

.glm-popup p {
    margin: 0 0 14px;
    color: #697479;
    font-size: 13px;
    line-height: 1.6;
}

.glm-popup a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    background: #d7b273;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.leaflet-control-zoom a {
    color: #303b40 !important;
    border-radius: 0 !important;
}

@media (max-width: 1100px) {
    .glm-top {
        grid-template-columns: 1fr;
        align-items: start;
    }

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

    .glm-point-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .goldstein-location-map {
        padding: 70px 16px;
    }

    .glm-top h2 {
        font-size: 42px;
    }

    .glm-summary,
    .glm-point-row {
        grid-template-columns: 1fr;
    }

    .glm-controls {
        padding: 16px;
    }

    .glm-filter {
        flex: 1 1 auto;
    }

    .glm-map-card,
    #goldsteinInteractiveMap {
        min-height: 520px;
    }

    .glm-map-note {
        left: 14px;
        bottom: 14px;
        max-width: calc(100% - 28px);
    }
}


/* ========================================================================== 
   SHARED MINI HERO
   ========================================================================== */

/* GOLDSTEIN MINI HERO BANNER START */

.goldstein-mini-banner{
    position:relative;
    width:100%;
    min-height:300px;
    max-height:300px;
    overflow:hidden;
    background:
        radial-gradient(circle at top left, rgba(172,125,12,0.08), transparent 28%),
        radial-gradient(circle at bottom right, rgba(172,125,12,0.06), transparent 30%),
        linear-gradient(135deg,#43484b 0%,#4a4f52 45%,#404548 100%);
    border-bottom:1px solid rgba(215,178,115,0.12);
    font-family:'Montserrat',sans-serif;
}

/* SUBTLE FLOATING GOLD GLOW */

.goldstein-floating-glow{
    position:absolute;
    border-radius:50%;
    background:radial-gradient(circle, rgba(215,178,115,0.12) 0%, transparent 72%);
    filter:blur(10px);
    pointer-events:none;
    animation:goldsteinFloat 12s ease-in-out infinite;
}

.glow-1{
    width:280px;
    height:280px;
    top:-120px;
    right:18%;
    animation-delay:0s;
}

.glow-2{
    width:220px;
    height:220px;
    bottom:-100px;
    left:12%;
    animation-delay:3s;
}

.glow-3{
    width:160px;
    height:160px;
    top:60px;
    right:40%;
    animation-delay:6s;
}

@keyframes goldsteinFloat{
    0%{
        transform:translateY(0px) translateX(0px);
        opacity:0.45;
    }

    50%{
        transform:translateY(-12px) translateX(8px);
        opacity:0.7;
    }

    100%{
        transform:translateY(0px) translateX(0px);
        opacity:0.45;
    }
}

/* TOP DARK STRIP */

.goldstein-header-space{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:110px;
    background:
        linear-gradient(to bottom,
        rgba(35,38,40,0.95) 0%,
        rgba(50,54,57,0.78) 100%);
    border-bottom:1px solid rgba(215,178,115,0.10);
    z-index:1;
}

.goldstein-mini-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(to right, rgba(0,0,0,0.18), rgba(0,0,0,0.04));
    pointer-events:none;
}

.goldstein-mini-container{
    position:relative;
    z-index:2;
    max-width:1450px;
    height:300px;
    margin:0 auto;
    padding:105px 55px 0;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    align-items:center;
    gap:55px;
}

.goldstein-mini-subtitle{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:10px;
    color:#d7b273;
    font-size:10px;
    font-weight:700;
    letter-spacing:4px;
}

.goldstein-mini-subtitle span{
    width:40px;
    height:1px;
    background:#d7b273;
    opacity:0.7;
}

.goldstein-mini-content h1{
    margin:0;
    color:#ffffff;
    font-family:'Playfair Display',serif;
    font-size:42px;
    line-height:1;
    font-weight:600;
    letter-spacing:-1px;
}

.goldstein-mini-divider{
    width:50px;
    height:2px;
    background:#d7b273;
    margin:14px 0 14px;
}

.goldstein-mini-content p{
    max-width:500px;
    margin:0;
    color:rgba(255,255,255,0.72);
    font-size:15px;
    line-height:1.7;
    font-weight:300;
}

/* FEATURES */

.goldstein-mini-features{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:24px;
}

.goldstein-mini-feature{
    flex:1;
    display:flex;
    align-items:flex-start;
    padding:0 8px 0 20px;
    border-left:1px solid rgba(215,178,115,0.18);
    min-height:64px;
}

.goldstein-mini-feature:first-child{
    border-left:none;
    padding-left:0;
}

.goldstein-mini-text{
    display:flex;
    flex-direction:column;
    gap:6px;
    justify-content:flex-start;
}

.goldstein-mini-text strong{
    display:block;
    color:#ffffff;
    font-size:17px;
    line-height:1.3;
    font-weight:600;
    white-space:nowrap;
    margin:0;
}

.goldstein-mini-text span{
    color:rgba(255,255,255,0.58);
    font-size:13px;
    line-height:1.5;
    margin:0;
}

/* DECORATIVE LINES */

.goldstein-mini-line{
    position:absolute;
    height:1px;
    background:rgba(215,178,115,0.14);
}

.goldstein-mini-line.line-left{
    width:34%;
    left:-4%;
    bottom:36px;
    transform:rotate(7deg);
}

.goldstein-mini-line.line-right{
    width:22%;
    right:-2%;
    top:105px;
    transform:rotate(-8deg);
}

/* RESPONSIVE */

@media(max-width:1100px){

    .goldstein-mini-banner{
        max-height:none;
    }

    .goldstein-mini-container{
        height:auto;
        grid-template-columns:1fr;
        gap:30px;
        padding:135px 30px 40px;
    }

    .goldstein-mini-features{
        flex-wrap:wrap;
    }
}

@media(max-width:768px){

    .goldstein-mini-banner{
        min-height:auto;
        max-height:none;
    }

    .goldstein-header-space{
        display:none;
    }

    .goldstein-mini-container{
        padding:55px 25px 35px;
    }

    .goldstein-mini-content h1{
        font-size:34px;
    }

    .goldstein-mini-features{
        flex-direction:column;
        align-items:flex-start;
        gap:22px;
    }

    .goldstein-mini-feature{
        width:100%;
        padding-left:0;
        border-left:none;
    }

    .goldstein-mini-text strong{
        white-space:normal;
    }
}

/* GOLDSTEIN MINI HERO BANNER END */


/* ========================================================================== 
   LOCATION PAGE
   ========================================================================== */

.goldstein-location-page{
    position:relative;
    width:100%;
    overflow:hidden;
    background:#f7f5f1;
    font-family:'Montserrat',sans-serif;
    color:#33383a;
    padding:95px 0;
}

.goldstein-location-pattern{
    position:absolute;
    inset:0;
    opacity:0.55;
    background-image:
        linear-gradient(rgba(215,178,115,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(215,178,115,0.08) 1px, transparent 1px);
    background-size:44px 44px;
    mask-image:linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 85%);
    pointer-events:none;
}

.goldstein-location-glow{
    position:absolute;
    border-radius:50%;
    background:radial-gradient(circle, rgba(215,178,115,0.16) 0%, transparent 70%);
    filter:blur(18px);
    pointer-events:none;
    animation:goldsteinLocationFloat 14s ease-in-out infinite;
}

.goldstein-location-glow.glow-left{
    width:340px;
    height:340px;
    left:-120px;
    top:180px;
}

.goldstein-location-glow.glow-right{
    width:280px;
    height:280px;
    right:-90px;
    top:620px;
    animation-delay:5s;
}

.goldstein-location-wrap{
    position:relative;
    z-index:2;
    max-width:1450px;
    margin:0 auto;
    padding:0 55px;
}

.goldstein-location-hero{
    display:grid;
    grid-template-columns:0.95fr 1.05fr;
    gap:70px;
    align-items:center;
}

:is(
    .goldstein-location-subtitle,
    .goldstein-financing-subtitle,
    .goldstein-contact-subtitle,
    .goldstein-offer-subtitle,
    .goldstein-table-subtitle
){
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:14px;
    color:#ac7d0c;
    font-size:10px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

:is(
    .goldstein-location-subtitle,
    .goldstein-financing-subtitle,
    .goldstein-contact-subtitle,
    .goldstein-offer-subtitle,
    .goldstein-table-subtitle,
    .goldstein-house-tabs-subtitle,
    .gs-house4-subtitle,
    .gs-house5-subtitle
) span{
    width:44px;
    height:1px;
    background:#ac7d0c;
    opacity:0.75;
}

.goldstein-location-copy h2,
.goldstein-location-heading h2,
.goldstein-location-panel h2{
    margin:0;
    color:#3f4548;
    font-family:'Playfair Display',serif;
    font-weight:600;
}

.goldstein-location-copy h2{
    max-width:720px;
    font-size:56px;
    line-height:1.1;
}

.goldstein-location-copy p,
.goldstein-location-text-grid p,
.goldstein-location-panel p,
.goldstein-location-heading.center p{
    color:rgba(51,56,58,0.74);
    font-size:15px;
    line-height:1.85;
    font-weight:300;
}

.goldstein-location-copy p{
    max-width:690px;
    margin:26px 0 0;
}

.goldstein-location-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    margin-top:38px;
}

.goldstein-location-stats div{
    padding:22px 18px;
    background:rgba(255,255,255,0.72);
    border:1px solid rgba(172,125,12,0.16);
    box-shadow:0 18px 45px rgba(51,56,58,0.06);
    transition:transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.goldstein-location-stats div:hover{
    transform:translateY(-5px);
    border-color:rgba(172,125,12,0.35);
    box-shadow:0 24px 60px rgba(51,56,58,0.10);
}

.goldstein-location-stats strong{
    display:block;
    color:#ac7d0c;
    font-family:'Playfair Display',serif;
    font-size:34px;
    line-height:1;
    font-weight:600;
    margin-bottom:8px;
}

.goldstein-location-stats span{
    display:block;
    color:rgba(51,56,58,0.62);
    font-size:12px;
    line-height:1.45;
    text-transform:uppercase;
    letter-spacing:1.3px;
}

.goldstein-location-main-image,
.goldstein-location-photo,
.goldstein-location-gallery div{
    position:relative;
    overflow:hidden;
    background:#d8d2c7;
}

.goldstein-location-main-image{
    min-height:610px;
    box-shadow:0 30px 80px rgba(51,56,58,0.16);
}

.goldstein-location-main-image:before{
    content:"";
    position:absolute;
    inset:18px -18px -18px 18px;
    border:1px solid rgba(172,125,12,0.24);
    z-index:-1;
}

.goldstein-location-main-image img,
.goldstein-location-photo img,
.goldstein-location-gallery img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    filter:saturate(0.96) contrast(1.03);
    transition:transform 900ms ease, filter 900ms ease;
}

.goldstein-location-main-image img{
    min-height:610px;
}

.goldstein-location-main-image:hover img,
.goldstein-location-photo:hover img,
.goldstein-location-gallery div:hover img{
    transform:scale(1.055);
    filter:saturate(1.04) contrast(1.06);
}

.goldstein-location-image-badge{
    position:absolute;
    left:32px;
    bottom:32px;
    max-width:310px;
    padding:20px 24px;
    background:rgba(63,69,72,0.84);
    border:1px solid rgba(215,178,115,0.30);
    backdrop-filter:blur(12px);
}

.goldstein-location-image-badge span{
    display:block;
    color:#d7b273;
    font-size:10px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:7px;
}

.goldstein-location-image-badge strong{
    display:block;
    color:#ffffff;
    font-family:'Playfair Display',serif;
    font-size:24px;
    line-height:1.2;
    font-weight:600;
}

.goldstein-location-gallery{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:22px;
    margin-top:80px;
}

.goldstein-location-gallery div{
    height:270px;
    box-shadow:0 18px 45px rgba(51,56,58,0.08);
}

.goldstein-location-section{
    margin-top:95px;
}

.goldstein-location-heading{
    max-width:780px;
}

.goldstein-location-heading h2,
.goldstein-location-panel h2{
    font-size:42px;
    line-height:1.16;
}

.goldstein-location-text-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:55px;
    margin-top:28px;
}

.goldstein-location-text-grid p,
.goldstein-location-panel p{
    margin:0;
}

.goldstein-location-feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    margin-top:55px;
}

.goldstein-location-card{
    padding:30px 26px;
    background:rgba(255,255,255,0.74);
    border:1px solid rgba(172,125,12,0.15);
    box-shadow:0 18px 45px rgba(51,56,58,0.06);
    transition:transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.goldstein-location-card:hover{
    transform:translateY(-6px);
    border-color:rgba(172,125,12,0.35);
    box-shadow:0 26px 60px rgba(51,56,58,0.10);
}

.goldstein-location-icon{
    width:42px;
    height:42px;
    color:#ac7d0c;
    margin-bottom:20px;
}

.goldstein-location-icon svg{
    width:42px;
    height:42px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.35;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.goldstein-location-card strong{
    display:block;
    color:#3f4548;
    font-size:17px;
    line-height:1.35;
    font-weight:600;
    margin-bottom:9px;
}

.goldstein-location-card span{
    display:block;
    color:rgba(51,56,58,0.62);
    font-size:13px;
    line-height:1.65;
    font-weight:300;
}

.goldstein-location-split,
.goldstein-location-sport{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:65px;
    align-items:center;
    margin-top:105px;
}

.goldstein-location-photo{
    min-height:470px;
    box-shadow:0 28px 70px rgba(51,56,58,0.13);
}

.goldstein-location-photo img{
    min-height:470px;
}

.goldstein-location-panel{
    padding:44px 48px;
    background:rgba(255,255,255,0.78);
    border:1px solid rgba(172,125,12,0.16);
    box-shadow:0 22px 60px rgba(51,56,58,0.07);
}

.goldstein-location-panel p{
    margin-top:20px;
}

.goldstein-location-amenities{
    margin-top:105px;
    padding:70px 55px;
    background:
        radial-gradient(circle at top left, rgba(215,178,115,0.10), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,0.82), rgba(255,255,255,0.58));
    border:1px solid rgba(172,125,12,0.16);
    box-shadow:0 24px 70px rgba(51,56,58,0.07);
}

.goldstein-location-heading.center{
    max-width:820px;
    margin:0 auto;
    text-align:center;
}

.goldstein-location-heading.center .goldstein-location-subtitle{
    justify-content:center;
}

.goldstein-location-heading.center p{
    max-width:720px;
    margin:22px auto 0;
}

.goldstein-amenity-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    margin-top:42px;
}

.goldstein-amenity-grid div{
    padding:18px 16px;
    background:rgba(255,255,255,0.72);
    border:1px solid rgba(172,125,12,0.13);
    color:#3f4548;
    font-size:14px;
    line-height:1.4;
    font-weight:500;
    text-align:center;
    transition:background 280ms ease, border-color 280ms ease, transform 280ms ease;
}

.goldstein-amenity-grid div:hover{
    transform:translateY(-3px);
    background:#ffffff;
    border-color:rgba(172,125,12,0.32);
}

.goldstein-location-panel.dark{
    background:
        radial-gradient(circle at top left, rgba(215,178,115,0.10), transparent 34%),
        linear-gradient(135deg,#3f4548 0%,#4b5053 52%,#383e41 100%);
    border:1px solid rgba(215,178,115,0.20);
}

.goldstein-location-panel.dark h2{
    color:#ffffff;
}

.goldstein-location-panel.dark p{
    color:rgba(255,255,255,0.70);
}

.goldstein-location-photo.sport{
    min-height:520px;
}

.goldstein-location-photo.sport img{
    min-height:520px;
}

@keyframes goldsteinLocationFloat{
    0%{transform:translateY(0) translateX(0); opacity:0.42;}
    50%{transform:translateY(-18px) translateX(10px); opacity:0.74;}
    100%{transform:translateY(0) translateX(0); opacity:0.42;}
}

@media(max-width:1200px){
    .goldstein-location-hero,
    .goldstein-location-split,
    .goldstein-location-sport{
        grid-template-columns:1fr;
        gap:48px;
    }

    .goldstein-location-feature-grid{
        grid-template-columns:1fr 1fr;
    }

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

@media(max-width:768px){
    .goldstein-location-page{
        padding:58px 0;
    }

    .goldstein-location-wrap{
        padding:0 25px;
    }

    .goldstein-location-copy h2{
        font-size:38px;
    }

    .goldstein-location-heading h2,
    .goldstein-location-panel h2{
        font-size:32px;
    }

    .goldstein-location-stats,
    .goldstein-location-gallery,
    .goldstein-location-text-grid,
    .goldstein-location-feature-grid,
    .goldstein-amenity-grid{
        grid-template-columns:1fr;
    }

    .goldstein-location-main-image,
    .goldstein-location-main-image img{
        min-height:360px;
    }

    .goldstein-location-image-badge{
        left:18px;
        bottom:18px;
        max-width:260px;
        padding:16px 18px;
    }

    .goldstein-location-image-badge strong{
        font-size:21px;
    }

    .goldstein-location-gallery{
        margin-top:45px;
    }

    .goldstein-location-gallery div{
        height:250px;
    }

    .goldstein-location-section,
    .goldstein-location-split,
    .goldstein-location-sport,
    .goldstein-location-amenities{
        margin-top:65px;
    }

    .goldstein-location-photo,
    .goldstein-location-photo img,
    .goldstein-location-photo.sport,
    .goldstein-location-photo.sport img{
        min-height:330px;
    }

    .goldstein-location-panel,
    .goldstein-location-amenities{
        padding:34px 24px;
    }
}

@media(prefers-reduced-motion:reduce){
    .goldstein-location-glow,
    .goldstein-location-main-image img,
    .goldstein-location-photo img,
    .goldstein-location-gallery img,
    .goldstein-location-card,
    .goldstein-location-stats div,
    .goldstein-amenity-grid div{
        animation:none !important;
        transition:none !important;
    }
}


/* ========================================================================== 
   FINANCING PAGE
   ========================================================================== */

.goldstein-financing-page{
    position:relative;
    width:100%;
    overflow:hidden;
    background:#f7f5f1;
    font-family:'Montserrat',sans-serif;
    color:#33383a;
    padding:95px 0;
}

.goldstein-financing-pattern{
    position:absolute;
    inset:0;
    opacity:0.55;
    background-image:
        linear-gradient(rgba(215,178,115,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(215,178,115,0.08) 1px, transparent 1px);
    background-size:44px 44px;
    mask-image:linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 85%);
    pointer-events:none;
}

.goldstein-financing-glow{
    position:absolute;
    border-radius:50%;
    background:radial-gradient(circle, rgba(215,178,115,0.16) 0%, transparent 70%);
    filter:blur(18px);
    pointer-events:none;
    animation:goldsteinFinancingFloat 14s ease-in-out infinite;
}

.goldstein-financing-glow.glow-one{
    width:340px;
    height:340px;
    left:-120px;
    top:170px;
}

.goldstein-financing-glow.glow-two{
    width:280px;
    height:280px;
    right:-90px;
    top:620px;
    animation-delay:5s;
}

.goldstein-financing-wrap{
    position:relative;
    z-index:2;
    max-width:1450px;
    margin:0 auto;
    padding:0 55px;
}

.goldstein-financing-hero{
    display:grid;
    grid-template-columns:1fr 390px;
    gap:76px;
    align-items:center;
}

.goldstein-financing-copy h2,
.goldstein-financing-intro h2,
.goldstein-financing-note h2{
    margin:0;
    color:#3f4548;
    font-family:'Playfair Display',serif;
    font-weight:600;
}

.goldstein-financing-copy h2{
    max-width:790px;
    font-size:60px;
    line-height:1.08;
}

.goldstein-financing-copy p,
.goldstein-financing-intro p,
.goldstein-step-content p,
.goldstein-financing-note p{
    color:rgba(51,56,58,0.74);
    font-size:15px;
    line-height:1.85;
    font-weight:300;
}

.goldstein-financing-copy p{
    max-width:760px;
    margin:26px 0 0;
}

.goldstein-financing-actions{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-top:38px;
}

.goldstein-financing-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:0 30px;
    border:1px solid #ac7d0c;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
    text-decoration:none;
    transition:background 300ms ease, color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.goldstein-financing-btn.primary{
    color:#ffffff;
    background:#ac7d0c;
}

.goldstein-financing-btn.ghost{
    color:#ac7d0c;
    background:rgba(255,255,255,0.64);
}

.goldstein-financing-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 38px rgba(172,125,12,0.16);
}

.goldstein-financing-btn.primary:hover{
    background:#3f4548;
    border-color:#3f4548;
}

.goldstein-financing-btn.ghost:hover{
    background:#ac7d0c;
    color:#ffffff;
}

.goldstein-financing-summary{
    position:relative;
    padding:30px;
    background:rgba(255,255,255,0.82);
    border:1px solid rgba(172,125,12,0.18);
    box-shadow:0 28px 75px rgba(51,56,58,0.12);
}

.goldstein-financing-summary:before{
    content:"";
    position:absolute;
    inset:14px -14px -14px 14px;
    border:1px solid rgba(172,125,12,0.18);
    z-index:-1;
}

.goldstein-summary-top{
    padding-bottom:24px;
    margin-bottom:10px;
    border-bottom:1px solid rgba(172,125,12,0.18);
}

.goldstein-summary-top span,
.goldstein-summary-row span{
    display:block;
    color:#ac7d0c;
    font-size:10px;
    font-weight:700;
    letter-spacing:2.6px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.goldstein-summary-top strong{
    display:block;
    color:#3f4548;
    font-family:'Playfair Display',serif;
    font-size:38px;
    line-height:1.08;
    font-weight:600;
}

.goldstein-summary-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:20px 0;
    border-bottom:1px solid rgba(51,56,58,0.08);
}

.goldstein-summary-row:last-child{
    border-bottom:none;
    padding-bottom:0;
}

.goldstein-summary-row strong{
    color:#3f4548;
    font-size:16px;
    font-weight:700;
    text-align:right;
}

.goldstein-financing-strip{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:90px;
}

.goldstein-financing-strip div{
    padding:26px 28px;
    background:
        radial-gradient(circle at top left, rgba(215,178,115,0.10), transparent 34%),
        linear-gradient(135deg,#3f4548 0%,#4b5053 52%,#383e41 100%);
    border:1px solid rgba(215,178,115,0.20);
    box-shadow:0 24px 60px rgba(51,56,58,0.12);
    transition:transform 320ms ease, box-shadow 320ms ease;
}

.goldstein-financing-strip div:hover{
    transform:translateY(-5px);
    box-shadow:0 30px 70px rgba(51,56,58,0.16);
}

.goldstein-financing-strip strong{
    display:block;
    color:#ffffff;
    font-size:18px;
    line-height:1.35;
    font-weight:600;
    margin-bottom:7px;
}

.goldstein-financing-strip span{
    display:block;
    color:rgba(255,255,255,0.62);
    font-size:13px;
    line-height:1.55;
}

.goldstein-financing-intro{
    max-width:820px;
    margin-top:95px;
}

.goldstein-financing-intro h2,
.goldstein-financing-note h2{
    font-size:42px;
    line-height:1.16;
}

.goldstein-financing-intro p{
    max-width:760px;
    margin:22px 0 0;
}

.goldstein-financing-timeline{
    position:relative;
    margin-top:55px;
}

.goldstein-financing-timeline:before{
    content:"";
    position:absolute;
    left:86px;
    top:0;
    bottom:0;
    width:1px;
    background:linear-gradient(to bottom, rgba(172,125,12,0.08), rgba(172,125,12,0.42), rgba(172,125,12,0.08));
}

.goldstein-financing-step{
    position:relative;
    display:grid;
    grid-template-columns:170px 1fr;
    gap:36px;
    margin-bottom:26px;
}

.goldstein-financing-step:last-child{
    margin-bottom:0;
}

.goldstein-step-number{
    position:relative;
    z-index:2;
    width:170px;
    min-height:170px;
    padding:24px 18px;
    background:#ffffff;
    border:1px solid rgba(172,125,12,0.24);
    box-shadow:0 22px 55px rgba(51,56,58,0.08);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.goldstein-financing-step:hover .goldstein-step-number{
    transform:translateY(-5px);
    border-color:rgba(172,125,12,0.42);
    box-shadow:0 28px 70px rgba(51,56,58,0.12);
}

.goldstein-step-number span{
    color:rgba(172,125,12,0.48);
    font-size:12px;
    font-weight:700;
    letter-spacing:2.8px;
}

.goldstein-step-number strong{
    color:#ac7d0c;
    font-family:'Playfair Display',serif;
    font-size:38px;
    line-height:1;
    font-weight:600;
}

.goldstein-step-content{
    padding:34px 38px;
    background:rgba(255,255,255,0.78);
    border:1px solid rgba(172,125,12,0.14);
    box-shadow:0 18px 48px rgba(51,56,58,0.06);
    transition:transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.goldstein-financing-step:hover .goldstein-step-content{
    transform:translateY(-3px);
    border-color:rgba(172,125,12,0.30);
    box-shadow:0 26px 62px rgba(51,56,58,0.10);
}

.goldstein-financing-step.final .goldstein-step-content{
    background:
        radial-gradient(circle at top left, rgba(215,178,115,0.10), transparent 34%),
        linear-gradient(135deg,#3f4548 0%,#4b5053 52%,#383e41 100%);
    border:1px solid rgba(215,178,115,0.20);
}

.goldstein-financing-step.final .goldstein-step-content h3{
    color:#ffffff;
}

.goldstein-financing-step.final .goldstein-step-content p{
    color:rgba(255,255,255,0.70);
}

.goldstein-step-label{
    color:#ac7d0c;
    font-size:10px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.goldstein-step-content h3{
    margin:0 0 17px;
    color:#3f4548;
    font-family:'Playfair Display',serif;
    font-size:30px;
    line-height:1.2;
    font-weight:600;
}

.goldstein-step-content p{
    margin:0 0 14px;
}

.goldstein-step-content p:last-child{
    margin-bottom:0;
}

.goldstein-financing-note{
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    gap:42px;
    margin-top:95px;
    padding:56px 60px;
    background:rgba(255,255,255,0.82);
    border:1px solid rgba(172,125,12,0.16);
    box-shadow:0 24px 70px rgba(51,56,58,0.08);
}

.goldstein-financing-note p{
    max-width:760px;
    margin:20px 0 0;
}

@keyframes goldsteinFinancingFloat{
    0%{transform:translateY(0) translateX(0); opacity:0.42;}
    50%{transform:translateY(-18px) translateX(10px); opacity:0.74;}
    100%{transform:translateY(0) translateX(0); opacity:0.42;}
}

@media(max-width:1100px){
    .goldstein-financing-hero,
    .goldstein-financing-note{
        grid-template-columns:1fr;
        gap:48px;
    }

    .goldstein-financing-summary{
        max-width:460px;
    }

    .goldstein-financing-strip{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){
    .goldstein-financing-page{
        padding:58px 0;
    }

    .goldstein-financing-wrap{
        padding:0 25px;
    }

    .goldstein-financing-copy h2{
        font-size:38px;
    }

    .goldstein-financing-intro h2,
    .goldstein-financing-note h2{
        font-size:32px;
    }

    .goldstein-financing-actions{
        flex-direction:column;
    }

    .goldstein-financing-btn{
        width:100%;
    }

    .goldstein-financing-summary{
        max-width:none;
    }

    .goldstein-financing-summary:before{
        inset:10px -10px -10px 10px;
    }

    .goldstein-financing-strip,
    .goldstein-financing-intro,
    .goldstein-financing-note{
        margin-top:65px;
    }

    .goldstein-financing-timeline:before{
        display:none;
    }

    .goldstein-financing-step{
        grid-template-columns:1fr;
        gap:16px;
        margin-bottom:24px;
    }

    .goldstein-step-number{
        width:100%;
        min-height:auto;
        flex-direction:row;
        align-items:center;
        padding:22px 24px;
    }

    .goldstein-step-number strong{
        font-size:34px;
    }

    .goldstein-step-content{
        padding:30px 24px;
    }

    .goldstein-step-content h3{
        font-size:26px;
    }

    .goldstein-financing-note{
        padding:36px 24px;
    }
}

@media(prefers-reduced-motion:reduce){
    .goldstein-financing-glow,
    .goldstein-financing-btn,
    .goldstein-financing-strip div,
    .goldstein-financing-step,
    .goldstein-step-number,
    .goldstein-step-content{
        animation:none !important;
        transition:none !important;
    }
}


/* ========================================================================== 
   CONTACT PAGE
   ========================================================================== */

.goldstein-contact-page{
    position:relative;
    width:100%;
    overflow:hidden;
    background:#f7f5f1;
    font-family:'Montserrat',sans-serif;
    color:#33383a;
    padding:95px 0;
}

.goldstein-contact-pattern{
    position:absolute;
    inset:0;
    opacity:0.55;
    background-image:
        linear-gradient(rgba(215,178,115,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(215,178,115,0.08) 1px, transparent 1px);
    background-size:44px 44px;
    mask-image:linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 85%);
    pointer-events:none;
}

.goldstein-contact-glow{
    position:absolute;
    border-radius:50%;
    background:radial-gradient(circle, rgba(215,178,115,0.16) 0%, transparent 70%);
    filter:blur(18px);
    pointer-events:none;
    animation:goldsteinContactFloat 14s ease-in-out infinite;
}

.goldstein-contact-glow.glow-one{
    width:340px;
    height:340px;
    left:-120px;
    top:160px;
}

.goldstein-contact-glow.glow-two{
    width:280px;
    height:280px;
    right:-90px;
    top:620px;
    animation-delay:5s;
}

.goldstein-contact-wrap{
    position:relative;
    z-index:2;
    max-width:1450px;
    margin:0 auto;
    padding:0 55px;
}

.goldstein-contact-hero{
    display:grid;
    grid-template-columns:1fr 390px;
    gap:76px;
    align-items:center;
}

.goldstein-contact-copy h2,
.goldstein-contact-form-panel h2{
    margin:0;
    color:#3f4548;
    font-family:'Playfair Display',serif;
    font-weight:600;
}

.goldstein-contact-copy h2{
    max-width:780px;
    font-size:60px;
    line-height:1.08;
}

.goldstein-contact-copy p,
.goldstein-contact-badge p,
.goldstein-contact-form-panel p{
    color:rgba(51,56,58,0.74);
    font-size:15px;
    line-height:1.85;
    font-weight:300;
}

.goldstein-contact-copy p{
    max-width:760px;
    margin:26px 0 0;
}

.goldstein-contact-badge{
    position:relative;
    padding:32px 30px;
    background:rgba(255,255,255,0.82);
    border:1px solid rgba(172,125,12,0.18);
    box-shadow:0 28px 75px rgba(51,56,58,0.12);
}

.goldstein-contact-badge:before{
    content:"";
    position:absolute;
    inset:14px -14px -14px 14px;
    border:1px solid rgba(172,125,12,0.18);
    z-index:-1;
}

.goldstein-contact-badge span{
    display:block;
    color:#ac7d0c;
    font-size:10px;
    font-weight:700;
    letter-spacing:2.8px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.goldstein-contact-badge strong{
    display:block;
    color:#3f4548;
    font-family:'Playfair Display',serif;
    font-size:34px;
    line-height:1.15;
    font-weight:600;
}

.goldstein-contact-badge p{
    margin:18px 0 0;
}

.goldstein-contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    margin-top:80px;
}

.goldstein-contact-person{
    padding:34px;
    background:
        radial-gradient(circle at top left, rgba(215,178,115,0.10), transparent 34%),
        linear-gradient(135deg,#3f4548 0%,#4b5053 52%,#383e41 100%);
    border:1px solid rgba(215,178,115,0.20);
    box-shadow:0 24px 60px rgba(51,56,58,0.12);
    transition:transform 320ms ease, box-shadow 320ms ease;
}

.goldstein-contact-person:hover{
    transform:translateY(-5px);
    box-shadow:0 30px 70px rgba(51,56,58,0.16);
}

.goldstein-person-top span{
    display:block;
    color:#d7b273;
    font-size:10px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:9px;
}

.goldstein-person-top strong{
    display:block;
    color:#ffffff;
    font-family:'Playfair Display',serif;
    font-size:34px;
    line-height:1.15;
    font-weight:600;
}

.goldstein-person-info{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:26px;
    padding-top:22px;
    border-top:1px solid rgba(215,178,115,0.18);
}

.goldstein-person-info a{
    color:rgba(255,255,255,0.74);
    font-size:15px;
    line-height:1.5;
    text-decoration:none;
    transition:color 260ms ease;
}

.goldstein-person-info a:hover{
    color:#d7b273;
}

.goldstein-contact-main{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:34px;
    margin-top:80px;
    align-items:stretch;
}

.goldstein-contact-form-panel,
.goldstein-contact-map-panel{
    background:rgba(255,255,255,0.82);
    border:1px solid rgba(172,125,12,0.16);
    box-shadow:0 24px 70px rgba(51,56,58,0.08);
}

.goldstein-contact-form-panel{
    padding:46px 48px;
}

.goldstein-contact-form-panel h2{
    font-size:42px;
    line-height:1.16;
}

.goldstein-contact-form-panel p{
    margin:22px 0 0;
}

.goldstein-contact-form-box{
    margin-top:34px;
}

.goldstein-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px 26px;
}

.goldstein-form-field-full{
    grid-column:1 / -1;
}

.gs-sr-only{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}

.goldstein-contact-form-box input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.goldstein-contact-form-box textarea,
.goldstein-contact-form-box select{
    width:100%;
    min-height:48px;
    padding:12px 15px;
    color:#33383a;
    background:#ffffff;
    border:1px solid rgba(172,125,12,0.18);
    border-radius:0;
    font-family:'Montserrat',sans-serif;
    font-size:14px;
    outline:none;
    transition:border-color 240ms ease, box-shadow 240ms ease;
}

.goldstein-contact-form-box textarea{
    min-height:210px;
    resize:vertical;
}

.goldstein-contact-form-box input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):focus,
.goldstein-contact-form-box textarea:focus,
.goldstein-contact-form-box select:focus{
    border-color:rgba(172,125,12,0.48);
    box-shadow:0 0 0 3px rgba(172,125,12,0.08);
}

.goldstein-contact-form-box [aria-invalid="true"]{
    border-color:#9b2f24;
    box-shadow:0 0 0 3px rgba(155,47,36,0.08);
}

.goldstein-contact-form-box .goldstein-consent{
    display:block;
    margin:20px 0 14px;
}

.goldstein-contact-form-box .goldstein-consent-item{
    margin:0;
}

.goldstein-contact-form-box .goldstein-consent-item label{
    display:flex;
    align-items:flex-start;
    gap:12px;
    cursor:pointer;
}

.goldstein-contact-form-box input[type="checkbox"]{
    appearance:none;
    -webkit-appearance:none;
    width:18px;
    height:18px;
    min-width:18px;
    min-height:18px;
    margin:2px 0 0;
    padding:0;
    background:#ffffff;
    border:1px solid rgba(172,125,12,0.42);
    border-radius:0;
    box-shadow:none;
    cursor:pointer;
    position:relative;
}

.goldstein-contact-form-box input[type="checkbox"]:checked{
    background:#ac7d0c;
    border-color:#ac7d0c;
}

.goldstein-contact-form-box input[type="checkbox"]:checked:after{
    content:"";
    position:absolute;
    left:5px;
    top:2px;
    width:5px;
    height:10px;
    border:solid #ffffff;
    border-width:0 2px 2px 0;
    transform:rotate(45deg);
}

.goldstein-contact-form-box .goldstein-consent-label{
    color:rgba(51,56,58,0.78);
    font-size:14px;
    line-height:1.55;
    font-weight:600;
}

.goldstein-contact-form-box .goldstein-consent-label a{
    color:#ac7d0c;
    text-decoration:none;
}

.goldstein-contact-form-box .goldstein-consent-label a:hover{
    text-decoration:underline;
}

.goldstein-contact-form-box input[type="submit"],
.goldstein-contact-form-box button{
    width:auto;
    min-height:50px;
    padding:0 30px;
    color:#ffffff;
    background:#ac7d0c;
    border:1px solid #ac7d0c;
    border-radius:0;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
    cursor:pointer;
    transition:background 300ms ease, border-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.goldstein-contact-form-box input[type="submit"]:hover,
.goldstein-contact-form-box button:hover{
    background:#3f4548;
    border-color:#3f4548;
    transform:translateY(-2px);
    box-shadow:0 16px 38px rgba(172,125,12,0.16);
}

.goldstein-form-actions{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.goldstein-form-status{
    flex:1 1 260px;
    margin:0;
    padding:14px 16px;
    color:#33383a;
    border:1px solid rgba(172,125,12,0.28);
    font-size:13px;
    line-height:1.6;
}

.goldstein-form-status[hidden]{
    display:none;
}

.goldstein-honeypot{
    position:absolute;
    left:-10000px;
    width:1px;
    height:1px;
    overflow:hidden;
}

.goldstein-contact-form-box button:disabled{
    cursor:wait;
    opacity:.68;
    transform:none;
}

.goldstein-form-status.is-success{
    border-color:rgba(22,130,54,.38);
    color:#126a2d;
    background:rgba(22,130,54,.06);
}

.goldstein-form-status.is-error{
    border-color:rgba(155,47,36,.38);
    color:#8c2f27;
    background:rgba(155,47,36,.05);
}

.goldstein-contact-map-panel{
    display:flex;
    flex-direction:column;
    min-height:100%;
}

.goldstein-map-header{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:28px 30px;
    border-bottom:1px solid rgba(172,125,12,0.14);
}

.goldstein-map-header span{
    display:block;
    color:#ac7d0c;
    font-size:10px;
    font-weight:700;
    letter-spacing:2.8px;
    text-transform:uppercase;
    margin-bottom:7px;
}

.goldstein-map-header strong{
    display:block;
    color:#3f4548;
    font-family:'Playfair Display',serif;
    font-size:28px;
    line-height:1.15;
    font-weight:600;
}

.goldstein-map-header a{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:0 22px;
    color:#ac7d0c;
    background:rgba(255,255,255,0.64);
    border:1px solid rgba(172,125,12,0.26);
    font-size:11px;
    font-weight:700;
    letter-spacing:1.4px;
    text-transform:uppercase;
    text-decoration:none;
    transition:background 260ms ease, color 260ms ease, transform 260ms ease;
}

.goldstein-map-header a:hover{
    background:#ac7d0c;
    color:#ffffff;
    transform:translateY(-2px);
}

.goldstein-contact-map{
    position:relative;
    flex:1 1 auto;
    min-height:690px;
    overflow:hidden;
    background:#ddd6ca;
}

.goldstein-contact-map iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
    filter:saturate(0.85) contrast(1.02);
}

@keyframes goldsteinContactFloat{
    0%{transform:translateY(0) translateX(0); opacity:0.42;}
    50%{transform:translateY(-18px) translateX(10px); opacity:0.74;}
    100%{transform:translateY(0) translateX(0); opacity:0.42;}
}

@media(max-width:1100px){
    .goldstein-contact-hero,
    .goldstein-contact-main{
        grid-template-columns:1fr;
        gap:48px;
    }

    .goldstein-contact-badge{
        max-width:480px;
    }

    .goldstein-contact-map{
        min-height:520px;
    }
}

@media(max-width:768px){
    .goldstein-contact-page{
        padding:58px 0;
    }

    .goldstein-contact-wrap{
        padding:0 25px;
    }

    .goldstein-contact-copy h2{
        font-size:38px;
    }

    .goldstein-contact-grid{
        grid-template-columns:1fr;
        margin-top:55px;
    }

    .goldstein-contact-main{
        margin-top:55px;
    }

    .goldstein-contact-form-panel{
        padding:34px 24px;
    }

    .goldstein-contact-form-panel h2{
        font-size:32px;
    }

    .goldstein-form-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .goldstein-form-field-full{
        grid-column:auto;
    }

    .goldstein-map-header{
        align-items:flex-start;
        flex-direction:column;
        padding:24px 22px;
    }

    .goldstein-map-header a,
    .goldstein-contact-form-box input[type="submit"],
    .goldstein-contact-form-box button{
        width:100%;
    }

    .goldstein-contact-map{
        min-height:430px;
    }
}

@media(prefers-reduced-motion:reduce){
    .goldstein-contact-glow,
    .goldstein-contact-person,
    .goldstein-map-header a,
    .goldstein-contact-form-box input,
    .goldstein-contact-form-box textarea,
    .goldstein-contact-form-box select,
    .goldstein-contact-form-box button{
        animation:none !important;
        transition:none !important;
    }
}


/* ========================================================================== 
   OFFER PAGE
   ========================================================================== */

.goldstein-offer-page{
    position:relative;
    width:100%;
    overflow:hidden;
    background:#f7f5f1;
    font-family:'Montserrat',sans-serif;
    color:#33383a;
    padding:95px 0 0;
}

.goldstein-offer-pattern{
    position:absolute;
    inset:0;
    opacity:0.5;
    background-image:
        linear-gradient(rgba(215,178,115,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(215,178,115,0.08) 1px, transparent 1px);
    background-size:44px 44px;
    mask-image:linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 90%);
    pointer-events:none;
}

.goldstein-offer-glow{
    position:absolute;
    border-radius:50%;
    background:radial-gradient(circle, rgba(215,178,115,0.15) 0%, transparent 70%);
    filter:blur(18px);
    pointer-events:none;
    animation:goldsteinOfferFloat 14s ease-in-out infinite;
}

.goldstein-offer-glow.glow-one{
    width:340px;
    height:340px;
    left:-120px;
    top:150px;
}

.goldstein-offer-glow.glow-two{
    width:280px;
    height:280px;
    right:-90px;
    top:560px;
    animation-delay:5s;
}

.goldstein-offer-wrap{
    position:relative;
    z-index:2;
    max-width:1450px;
    margin:0 auto;
    padding:0 55px;
}

.goldstein-offer-hero{
    display:grid;
    grid-template-columns:1fr 360px;
    gap:70px;
    align-items:center;
}

.goldstein-offer-copy h2,
.goldstein-map-title h2{
    margin:0;
    color:#3f4548;
    font-family:'Playfair Display',serif;
    font-weight:600;
}

.goldstein-offer-copy h2{
    max-width:850px;
    font-size:58px;
    line-height:1.08;
}

.goldstein-offer-copy p,
.goldstein-offer-badge p{
    color:rgba(51,56,58,0.74);
    font-size:15px;
    line-height:1.85;
    font-weight:300;
}

.goldstein-offer-copy p{
    max-width:780px;
    margin:26px 0 0;
}

.goldstein-offer-badge{
    position:relative;
    padding:30px;
    background:#ffffff;
    border:1px solid rgba(172,125,12,0.18);
    box-shadow:0 24px 60px rgba(51,56,58,0.09);
}

.goldstein-offer-badge:before{
    content:"";
    position:absolute;
    inset:12px -12px -12px 12px;
    border:1px solid rgba(172,125,12,0.16);
    z-index:-1;
}

.goldstein-offer-badge span{
    display:block;
    color:#ac7d0c;
    font-size:10px;
    font-weight:700;
    letter-spacing:2.8px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.goldstein-offer-badge strong{
    display:block;
    color:#3f4548;
    font-family:'Playfair Display',serif;
    font-size:34px;
    line-height:1.15;
    font-weight:600;
}

.goldstein-offer-badge p{
    margin:18px 0 0;
}

.goldstein-map-title{
    margin-top:76px;
    padding:32px 34px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    background:#ffffff;
    border:1px solid rgba(172,125,12,0.16);
    border-bottom:none;
    box-shadow:0 18px 45px rgba(51,56,58,0.06);
}

.goldstein-map-title h2{
    font-size:34px;
    line-height:1.15;
}

.goldstein-map-title a{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 24px;
    color:#ac7d0c;
    background:#ffffff;
    border:1px solid rgba(172,125,12,0.26);
    font-size:11px;
    font-weight:700;
    letter-spacing:1.4px;
    text-transform:uppercase;
    text-decoration:none;
    transition:background 260ms ease, color 260ms ease, transform 260ms ease;
}

.goldstein-map-title a:hover{
    background:#ac7d0c;
    color:#ffffff;
    transform:translateY(-2px);
}

.goldstein-offer-map-shell{
    max-width:1450px;
    margin:0 auto 90px;
    padding:0 55px;
}

.goldstein-offer-map-shell .goldstein-offer-map-card{
    padding:34px;
    background:#ffffff;
    border:1px solid rgba(172,125,12,0.16);
    border-top:none;
    box-shadow:0 30px 80px rgba(51,56,58,0.10);
}

.goldstein-offer-map-shell img,
.goldstein-offer-map-shell svg{
    max-width:100%;
    height:auto;
}

@keyframes goldsteinOfferFloat{
    0%{transform:translateY(0) translateX(0); opacity:0.42;}
    50%{transform:translateY(-18px) translateX(10px); opacity:0.74;}
    100%{transform:translateY(0) translateX(0); opacity:0.42;}
}

@media(max-width:1100px){
    .goldstein-offer-hero{
        grid-template-columns:1fr;
        gap:48px;
    }

    .goldstein-offer-badge{
        max-width:480px;
    }
}

@media(max-width:768px){
    .goldstein-offer-page{
        padding:58px 0 0;
    }

    .goldstein-offer-wrap,
    .goldstein-offer-map-shell{
        padding:0 25px;
    }

    .goldstein-offer-copy h2{
        font-size:38px;
    }

    .goldstein-map-title{
        margin-top:56px;
        padding:24px 22px;
        align-items:flex-start;
        flex-direction:column;
    }

    .goldstein-map-title h2{
        font-size:28px;
    }

    .goldstein-map-title a{
        width:100%;
    }

    .goldstein-offer-map-shell .goldstein-offer-map-card{
        padding:18px;
    }
}


/* ========================================================================== 
   OFFER IMAGE MAP
   ========================================================================== */

.goldstein-offer-map-card{
    position:relative;
}

.goldstein-offer-map-legend{
    display:flex;
    justify-content:flex-end;
    gap:22px;
    margin-bottom:18px;
    color:#53585a;
    font-size:12px;
    font-weight:600;
}

.goldstein-offer-map-legend span{
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.goldstein-offer-map-legend i{
    width:11px;
    height:11px;
    border-radius:50%;
    box-shadow:0 0 0 5px rgba(172,125,12,0.10);
}

.goldstein-offer-map-legend i.available{background:#168236;}
.goldstein-offer-map-legend i.reserved{background:#ac7d0c;}
.goldstein-offer-map-legend i.sold{background:#a13b31;}

.goldstein-offer-map-scroll{
    width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    scrollbar-color:#d7b273 #f0ece3;
}

.goldstein-offer-map-stage{
    position:relative;
    min-width:900px;
    overflow:hidden;
}

.goldstein-offer-map-stage > img{
    width:100%;
    height:auto;
    display:block;
}

.goldstein-offer-hotspots{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}

.goldstein-house-shape polygon{
    fill:transparent;
    stroke:rgba(172,125,12,0.28);
    stroke-width:7;
    vector-effect:non-scaling-stroke;
    cursor:pointer;
    transition:fill 220ms ease,stroke 220ms ease;
}

.goldstein-house-shape.available:hover polygon,
.goldstein-house-shape.available:focus polygon{
    fill:rgba(22,130,54,0.32);
    stroke:#168236;
}

.goldstein-house-shape.reserved polygon{
    fill:rgba(215,178,115,0.38);
    stroke:rgba(172,125,12,0.78);
}

.goldstein-house-shape.reserved:hover polygon,
.goldstein-house-shape.reserved:focus polygon{
    fill:rgba(215,178,115,0.60);
    stroke:#ac7d0c;
}

.goldstein-house-shape.sold polygon{
    fill:rgba(161,59,49,0.42);
    stroke:rgba(161,59,49,0.70);
}

.goldstein-house-shape.sold:hover polygon,
.goldstein-house-shape.sold:focus polygon{
    fill:rgba(161,59,49,0.65);
    stroke:#8c2f27;
}

.goldstein-house-shape:focus{
    outline:none;
}

.goldstein-offer-map-tooltip{
    position:absolute;
    top:20px;
    z-index:4;
    min-width:180px;
    padding:13px 16px;
    color:#ffffff;
    background:rgba(47,58,63,0.95);
    border:1px solid rgba(215,178,115,0.42);
    box-shadow:0 15px 35px rgba(0,0,0,0.20);
    pointer-events:none;
    transform:translateX(-50%);
}

.goldstein-offer-map-tooltip strong,
.goldstein-offer-map-tooltip span{
    display:block;
}

.goldstein-offer-map-tooltip strong{
    margin-bottom:5px;
    font-family:'Playfair Display',serif;
    font-size:18px;
}

.goldstein-offer-map-tooltip span{
    color:rgba(255,255,255,0.72);
    font-size:11px;
    line-height:1.5;
}

.goldstein-offer-map-tooltip .status{
    margin-top:4px;
    color:#d7b273;
    font-weight:700;
    letter-spacing:.4px;
}

.goldstein-offer-map-hint{
    margin:16px 0 0;
    color:rgba(51,56,58,0.62);
    font-size:12px;
    line-height:1.6;
    text-align:center;
}

@media(max-width:768px){
    .goldstein-offer-map-legend{
        justify-content:flex-start;
    }

    .goldstein-offer-map-stage{
        min-width:760px;
    }
}

@media(prefers-reduced-motion:reduce){
    .goldstein-house-shape polygon{
        transition:none !important;
    }
}


/* ========================================================================== 
   OFFER TABLE
   ========================================================================== */

.goldstein-table-page{
    position:relative;
    width:100%;
    background:#f7f5f1;
    font-family:'Montserrat',sans-serif;
    color:#33383a;
    padding:0 0 95px;
}

.goldstein-table-wrap{
    max-width:1450px;
    margin:0 auto;
    padding:0 55px;
}

.goldstein-table-heading{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:34px;
    margin-bottom:28px;
}

.goldstein-table-heading h2{
    margin:0;
    color:#3f4548;
    font-family:'Playfair Display',serif;
    font-size:42px;
    line-height:1.16;
    font-weight:600;
}

.goldstein-table-heading p{
    max-width:360px;
    margin:0;
    color:rgba(51,56,58,0.74);
    font-size:15px;
    line-height:1.75;
    font-weight:300;
    text-align:right;
}

.goldstein-filters{
    display:flex;
    justify-content:flex-end;
    gap:14px;
    margin-bottom:24px;
    flex-wrap:wrap;
}

.goldstein-filters select{
    height:48px;
    min-width:220px;
    padding:0 16px;
    border:1px solid rgba(172,125,12,0.25);
    background:#ffffff;
    color:#33383a;
    font-size:14px;
    outline:none;
    transition:border-color 250ms ease, box-shadow 250ms ease;
}

.goldstein-filters select:focus{
    border-color:#ac7d0c;
    box-shadow:0 0 0 3px rgba(172,125,12,0.10);
}

.goldstein-table-container{
    width:100%;
    overflow-x:auto;
    background:#ffffff;
    border:1px solid rgba(172,125,12,0.14);
    box-shadow:0 24px 70px rgba(51,56,58,0.08);
    line-height:0;
}

#goldsteinTable{
    width:100%;
    margin:0;
    border-collapse:collapse;
    text-align:center;
    background:#ffffff;
    line-height:normal;
}

#goldsteinTable thead{
    background:
        radial-gradient(circle at top left, rgba(215,178,115,0.10), transparent 34%),
        linear-gradient(135deg,#3f4548 0%,#4b5053 52%,#383e41 100%);
}

#goldsteinTable th{
    padding:20px 15px;
    font-size:13px;
    font-weight:700;
    color:#ffffff;
    white-space:nowrap;
    text-transform:uppercase;
    letter-spacing:1.1px;
    border-right:1px solid rgba(255,255,255,0.20);
}

#goldsteinTable th:last-child{
    border-right:none;
}

#goldsteinTable td{
    padding:19px 15px;
    font-size:15px;
    color:#33383a;
    border-right:1px solid rgba(51,56,58,0.08);
    border-bottom:1px solid rgba(51,56,58,0.08);
    white-space:nowrap;
}

.goldstein-house-link{
    color:inherit;
    font-weight:700;
    text-decoration:none;
}

.goldstein-house-link:focus-visible{
    outline:2px solid #ac7d0c;
    outline-offset:4px;
}

#goldsteinTable td:last-child{
    border-right:none;
}

#goldsteinTable tbody tr:last-child td{
    border-bottom:none;
}

#goldsteinTable tbody tr{
    transition:background 250ms ease, opacity 250ms ease;
    cursor:pointer;
}

#goldsteinTable tbody tr:nth-child(even):not(.sold-row){
    background:rgba(247,245,241,0.74);
}

#goldsteinTable tbody tr:hover{
    background:rgba(172,125,12,0.08);
}

#goldsteinTable tbody tr:focus-within{
    background:rgba(172,125,12,0.08);
}

#goldsteinTable tbody tr.sold-row{
    background:rgba(238,236,232,0.68);
    opacity:0.78;
}

#goldsteinTable tbody tr.sold-row td{
    color:rgba(51,56,58,0.56);
}

#goldsteinTable tbody tr.sold-row:hover{
    background:rgba(210,207,201,0.55);
    opacity:0.92;
}

#goldsteinTable tbody tr.reserved-row{
    background:rgba(215,178,115,0.09);
}

#goldsteinTable tbody tr.reserved-row:hover{
    background:rgba(215,178,115,0.16);
}

.status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:108px;
    min-height:30px;
    padding:0 12px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.1px;
    text-transform:uppercase;
    border:1px solid currentColor;
}

.status.available{
    color:#168236;
    background:rgba(25,140,58,0.07);
}

.status.reserved{
    color:#ac7d0c;
    background:rgba(172,125,12,0.08);
}

.status.sold{
    color:#777777;
    background:rgba(255,255,255,0.44);
}

@media(max-width:1100px){
    .goldstein-table-heading{
        align-items:flex-start;
        flex-direction:column;
    }

    .goldstein-table-heading p{
        max-width:none;
        text-align:left;
    }
}

@media(max-width:768px){
    .goldstein-table-page{
        padding:0 0 58px;
    }

    .goldstein-table-wrap{
        padding:0 25px;
    }

    .goldstein-table-heading h2{
        font-size:32px;
    }

    .goldstein-filters{
        justify-content:flex-start;
    }

    .goldstein-filters select{
        width:100%;
    }

    #goldsteinTable th,
    #goldsteinTable td{
        padding:14px 12px;
        font-size:14px;
    }
}


/* ========================================================================== 
   COMPANY DATA
   ========================================================================== */

.goldstein-company-data,
    .goldstein-company-data * {
      box-sizing: border-box;
    }

    .goldstein-company-data {
      position: relative;
      overflow: hidden;
      padding: 96px 20px;
      background: #f7f5f0;
      color: #303b40;
      font-family: "Montserrat", sans-serif;
    }

    .gcd-pattern {
      position: absolute;
      inset: 0;
      opacity: .42;
      background-image:
        linear-gradient(rgba(172, 125, 12, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(172, 125, 12, .055) 1px, transparent 1px);
      background-size: 42px 42px;
      pointer-events: none;
    }

    .goldstein-company-data:before {
      content: "";
      position: absolute;
      width: 520px;
      height: 520px;
      right: -190px;
      top: -170px;
      background: radial-gradient(circle, rgba(215, 178, 115, .22), transparent 68%);
      pointer-events: none;
    }

    .goldstein-company-data:after {
      content: "";
      position: absolute;
      width: 460px;
      height: 460px;
      left: -170px;
      bottom: -170px;
      background: radial-gradient(circle, rgba(73, 82, 82, .12), transparent 70%);
      pointer-events: none;
    }

    .gcd-wrap {
      position: relative;
      z-index: 2;
      max-width: 1220px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(360px, 500px) minmax(0, 1fr);
      gap: 70px;
      align-items: center;
    }

    .gcd-image {
      position: relative;
      min-height: 620px;
      overflow: hidden;
      border: 1px solid rgba(215, 178, 115, .45);
      box-shadow: 0 30px 80px rgba(28, 34, 35, .16);
      background: #303b40;
    }

    .gcd-image:before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      background:
        linear-gradient(180deg, rgba(48, 59, 64, .08), rgba(48, 59, 64, .36)),
        linear-gradient(90deg, rgba(48, 59, 64, .16), transparent 55%);
      pointer-events: none;
    }

    .gcd-image img {
      width: 100%;
      height: 100%;
      min-height: 620px;
      display: block;
      object-fit: cover;
      transform: scale(1.02);
    }

    .gcd-image-label {
      position: absolute;
      left: 24px;
      bottom: 24px;
      z-index: 3;
      padding: 13px 16px;
      background: rgba(48, 59, 64, .9);
      border: 1px solid rgba(215, 178, 115, .55);
      backdrop-filter: blur(8px);
    }

    .gcd-image-label span {
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .gcd-content {
      position: relative;
    }

    .gcd-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      color: #ac7d0c;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 6px;
      text-transform: uppercase;
    }

    .gcd-eyebrow:after {
      content: "";
      width: 44px;
      height: 1px;
      background: #d7b273;
      display: block;
    }

    .gcd-content h2 {
      margin: 14px 0 18px;
      color: #303b40;
      font-family: "Playfair Display", serif;
      font-size: clamp(42px, 5vw, 72px);
      line-height: 1.02;
      letter-spacing: 0;
    }

    .gcd-content h2:after {
      content: "";
      display: block;
      width: 86px;
      height: 2px;
      margin-top: 22px;
      background: #d7b273;
    }

    .gcd-intro {
      max-width: 620px;
      margin-bottom: 28px;
    }

    .gcd-intro p {
      margin: 0;
      color: #657074;
      font-size: 16px;
      line-height: 1.8;
    }

    .gcd-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .gcd-card,
    .gcd-register {
      background: rgba(255, 255, 255, .9);
      border: 1px solid rgba(215, 178, 115, .42);
      box-shadow: 0 18px 44px rgba(28, 34, 35, .07);
    }

    .gcd-card {
      min-height: 118px;
      padding: 22px;
    }

    .gcd-card-main {
      grid-column: span 2;
    }

    .gcd-card span,
    .gcd-register span {
      display: block;
      margin-bottom: 10px;
      color: #ac7d0c;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .gcd-card strong {
      display: block;
      color: #303b40;
      font-family: "Playfair Display", serif;
      font-size: 28px;
      line-height: 1.18;
      letter-spacing: 0;
    }

    .gcd-card p {
      margin: 10px 0 0;
      color: #657074;
      font-size: 14px;
      line-height: 1.75;
    }

    .gcd-register {
      margin-top: 14px;
      padding: 22px;
    }

    .gcd-register p {
      margin: 0;
      color: #657074;
      font-size: 14px;
      line-height: 1.75;
    }

    .gcd-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .gcd-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 24px;
      text-decoration: none;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: .25s ease;
    }

    .gcd-btn-primary {
      background: #d7b273;
      border: 1px solid #d7b273;
      color: #fff;
    }

    .gcd-btn-primary:hover {
      background: #303b40;
      border-color: #303b40;
      color: #fff;
    }

    .gcd-btn-secondary {
      background: transparent;
      border: 1px solid rgba(215, 178, 115, .75);
      color: #303b40;
    }

    .gcd-btn-secondary:hover {
      background: #303b40;
      border-color: #303b40;
      color: #fff;
    }

    @media (max-width: 1050px) {
      .gcd-wrap {
        grid-template-columns: 1fr;
        gap: 42px;
      }

      .gcd-image,
      .gcd-image img {
        min-height: 500px;
      }
    }

    @media (max-width: 640px) {
      .goldstein-company-data {
        padding: 70px 16px;
      }

      .gcd-image,
      .gcd-image img {
        min-height: 420px;
      }

      .gcd-content h2 {
        font-size: 42px;
      }

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

      .gcd-card-main {
        grid-column: span 1;
      }

      .gcd-card strong {
        font-size: 25px;
      }

      .gcd-btn {
        width: 100%;
      }
    }


/* ========================================================================== 
   TERMS
   ========================================================================== */

.goldstein-terms,
    .goldstein-terms * {
      box-sizing: border-box;
    }

    .goldstein-terms {
      position: relative;
      overflow: hidden;
      padding: 96px 20px;
      background: #f7f5f0;
      color: #303b40;
      font-family: "Montserrat", sans-serif;
    }

    .gt-pattern {
      position: absolute;
      inset: 0;
      opacity: .42;
      background-image:
        linear-gradient(rgba(172, 125, 12, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(172, 125, 12, .055) 1px, transparent 1px);
      background-size: 42px 42px;
      pointer-events: none;
    }

    .goldstein-terms:before {
      content: "";
      position: absolute;
      width: 520px;
      height: 520px;
      right: -190px;
      top: -170px;
      background: radial-gradient(circle, rgba(215, 178, 115, .22), transparent 68%);
      pointer-events: none;
    }

    .goldstein-terms:after {
      content: "";
      position: absolute;
      width: 460px;
      height: 460px;
      left: -170px;
      bottom: -170px;
      background: radial-gradient(circle, rgba(73, 82, 82, .12), transparent 70%);
      pointer-events: none;
    }

    .gt-wrap {
      position: relative;
      z-index: 2;
      max-width: 1240px;
      margin: 0 auto;
    }

    .gt-hero {
      max-width: 900px;
      margin-bottom: 48px;
    }

    .gt-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      color: #ac7d0c;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 6px;
      text-transform: uppercase;
    }

    .gt-eyebrow:after {
      content: "";
      width: 44px;
      height: 1px;
      background: #d7b273;
      display: block;
    }

    .gt-hero h2 {
      margin: 14px 0 18px;
      color: #303b40;
      font-family: "Playfair Display", serif;
      font-size: clamp(42px, 5vw, 76px);
      line-height: 1.02;
      letter-spacing: 0;
    }

    .gt-hero p {
      max-width: 760px;
      margin: 0;
      color: #657074;
      font-size: 16px;
      line-height: 1.8;
    }

    .gt-layout {
      display: grid;
      grid-template-columns: 340px minmax(0, 1fr);
      gap: 28px;
      align-items: start;
    }

    .gt-side {
      position: sticky;
      top: 30px;
      display: grid;
      gap: 16px;
    }

    .gt-side-card,
    .gt-nav,
    .gt-section {
      background: rgba(255, 255, 255, .9);
      border: 1px solid rgba(215, 178, 115, .42);
      box-shadow: 0 18px 44px rgba(28, 34, 35, .07);
    }

    .gt-side-card {
      padding: 26px;
    }

    .gt-side-card span {
      display: block;
      margin-bottom: 12px;
      color: #ac7d0c;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .gt-side-card strong {
      display: block;
      color: #303b40;
      font-family: "Playfair Display", serif;
      font-size: 30px;
      line-height: 1.18;
    }

    .gt-side-card p {
      margin: 14px 0 0;
      color: #697479;
      font-size: 14px;
      line-height: 1.75;
    }

    .gt-nav {
      padding: 10px;
    }

    .gt-nav a {
      display: flex;
      align-items: center;
      min-height: 46px;
      padding: 0 14px;
      border-bottom: 1px solid rgba(215, 178, 115, .22);
      color: #303b40;
      text-decoration: none;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: .25s ease;
    }

    .gt-nav a:last-child {
      border-bottom: 0;
    }

    .gt-nav a:hover {
      background: #d7b273;
      color: #fff;
    }

    .gt-content {
      display: grid;
      gap: 16px;
    }

    .gt-section {
      position: relative;
      padding: 34px 38px;
      overflow: hidden;
    }

    .gt-section:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 4px;
      height: 100%;
      background: #d7b273;
      opacity: .9;
    }

    .gt-section > span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 46px;
      height: 34px;
      margin-bottom: 16px;
      background: rgba(215, 178, 115, .16);
      color: #ac7d0c;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 3px;
    }

    .gt-section h2 {
      margin: 0 0 14px;
      color: #303b40;
      font-family: "Playfair Display", serif;
      font-size: 34px;
      line-height: 1.16;
      letter-spacing: 0;
    }

    .gt-section p {
      margin: 0;
      color: #657074;
      font-size: 15px;
      line-height: 1.85;
    }

    .gt-section p + p {
      margin-top: 12px;
    }

    @media (max-width: 980px) {
      .gt-layout {
        grid-template-columns: 1fr;
      }

      .gt-side {
        position: relative;
        top: auto;
      }

      .gt-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
      }

      .gt-nav a {
        border: 1px solid rgba(215, 178, 115, .18);
      }
    }

    @media (max-width: 640px) {
      .goldstein-terms {
        padding: 70px 16px;
      }

      .gt-hero h2 {
        font-size: 42px;
      }

      .gt-nav {
        grid-template-columns: 1fr;
      }

      .gt-section {
        padding: 28px 24px;
      }

      .gt-section h2 {
        font-size: 28px;
      }
    }


/* ========================================================================== 
   GDPR
   ========================================================================== */

.goldstein-gdpr,
    .goldstein-gdpr * {
      box-sizing: border-box;
    }

    .goldstein-gdpr {
      position: relative;
      overflow: hidden;
      padding: 96px 20px;
      background: #f7f5f0;
      color: #303b40;
      font-family: "Montserrat", sans-serif;
    }

    .gg-pattern {
      position: absolute;
      inset: 0;
      opacity: .42;
      background-image:
        linear-gradient(rgba(172, 125, 12, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(172, 125, 12, .055) 1px, transparent 1px);
      background-size: 42px 42px;
      pointer-events: none;
    }

    .goldstein-gdpr:before {
      content: "";
      position: absolute;
      width: 520px;
      height: 520px;
      right: -190px;
      top: -170px;
      background: radial-gradient(circle, rgba(215, 178, 115, .22), transparent 68%);
      pointer-events: none;
    }

    .goldstein-gdpr:after {
      content: "";
      position: absolute;
      width: 460px;
      height: 460px;
      left: -170px;
      bottom: -170px;
      background: radial-gradient(circle, rgba(73, 82, 82, .12), transparent 70%);
      pointer-events: none;
    }

    .gg-wrap {
      position: relative;
      z-index: 2;
      max-width: 1260px;
      margin: 0 auto;
    }

    .gg-hero {
      max-width: 940px;
      margin-bottom: 48px;
    }

    .gg-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      color: #ac7d0c;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 6px;
      text-transform: uppercase;
    }

    .gg-eyebrow:after {
      content: "";
      width: 44px;
      height: 1px;
      background: #d7b273;
      display: block;
    }

    .gg-hero h2 {
      margin: 14px 0 18px;
      color: #303b40;
      font-family: "Playfair Display", serif;
      font-size: clamp(42px, 5vw, 76px);
      line-height: 1.02;
      letter-spacing: 0;
    }

    .gg-hero p {
      max-width: 780px;
      margin: 0;
      color: #657074;
      font-size: 16px;
      line-height: 1.8;
    }

    .gg-layout {
      display: grid;
      grid-template-columns: 340px minmax(0, 1fr);
      gap: 28px;
      align-items: start;
    }

    .gg-side {
      position: sticky;
      top: 30px;
      display: grid;
      gap: 16px;
    }

    .gg-contact-card,
    .gg-nav,
    .gg-section {
      background: rgba(255, 255, 255, .9);
      border: 1px solid rgba(215, 178, 115, .42);
      box-shadow: 0 18px 44px rgba(28, 34, 35, .07);
    }

    .gg-contact-card {
      padding: 26px;
    }

    .gg-contact-card span,
    .gg-section > span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
      color: #ac7d0c;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .gg-contact-card strong {
      display: block;
      color: #303b40;
      font-family: "Playfair Display", serif;
      font-size: 30px;
      line-height: 1.18;
    }

    .gg-contact-card p {
      margin: 14px 0 16px;
      color: #697479;
      font-size: 14px;
      line-height: 1.75;
    }

    .gg-contact-card a {
      display: block;
      margin-top: 8px;
      color: #ac7d0c;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
    }

    .gg-nav {
      padding: 10px;
    }

    .gg-nav a {
      display: flex;
      align-items: center;
      min-height: 46px;
      padding: 0 14px;
      border-bottom: 1px solid rgba(215, 178, 115, .22);
      color: #303b40;
      text-decoration: none;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: .25s ease;
    }

    .gg-nav a:last-child {
      border-bottom: 0;
    }

    .gg-nav a:hover {
      background: #d7b273;
      color: #fff;
    }

    .gg-content {
      display: grid;
      gap: 16px;
    }

    .gg-section {
      position: relative;
      padding: 34px 38px;
      overflow: hidden;
    }

    .gg-section:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 4px;
      height: 100%;
      background: #d7b273;
      opacity: .9;
    }

    .gg-section > span {
      min-width: 46px;
      height: 34px;
      padding: 0 10px;
      background: rgba(215, 178, 115, .16);
    }

    .gg-section h2 {
      margin: 0 0 14px;
      color: #303b40;
      font-family: "Playfair Display", serif;
      font-size: 34px;
      line-height: 1.16;
      letter-spacing: 0;
    }

    .gg-section h3 {
      margin: 0 0 12px;
      color: #303b40;
      font-family: "Playfair Display", serif;
      font-size: 24px;
      line-height: 1.18;
    }

    .gg-section p {
      margin: 0;
      color: #657074;
      font-size: 15px;
      line-height: 1.85;
    }

    .gg-section p + p {
      margin-top: 12px;
    }

    .gg-info-grid,
    .gg-data-grid,
    .gg-rights-grid {
      display: grid;
      gap: 12px;
      margin: 22px 0;
    }

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

    .gg-data-grid,
    .gg-rights-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .gg-info-grid div,
    .gg-data-grid div,
    .gg-purpose-list div,
    .gg-rights-grid div,
    .gg-note,
    .gg-contact-strip {
      padding: 20px;
      background: rgba(247, 245, 240, .72);
      border: 1px solid rgba(215, 178, 115, .35);
    }

    .gg-info-grid strong,
    .gg-purpose-list strong,
    .gg-rights-grid strong,
    .gg-note strong,
    .gg-contact-strip strong {
      display: block;
      margin-bottom: 8px;
      color: #303b40;
      font-size: 14px;
      font-weight: 700;
    }

    .gg-info-grid p,
    .gg-purpose-list p,
    .gg-rights-grid p,
    .gg-note p,
    .gg-contact-strip p {
      font-size: 14px;
      line-height: 1.7;
    }

    .gg-purpose-list {
      display: grid;
      gap: 12px;
      margin-top: 22px;
    }

    .gg-data-grid ul {
      margin: 0;
      padding-left: 18px;
      color: #657074;
      font-size: 14px;
      line-height: 1.75;
    }

    .gg-note,
    .gg-contact-strip {
      margin-top: 22px;
      border-left: 4px solid #d7b273;
    }

    @media (max-width: 980px) {
      .gg-layout {
        grid-template-columns: 1fr;
      }

      .gg-side {
        position: relative;
        top: auto;
      }

      .gg-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
      }

      .gg-nav a {
        border: 1px solid rgba(215, 178, 115, .18);
      }
    }

    @media (max-width: 640px) {
      .goldstein-gdpr {
        padding: 70px 16px;
      }

      .gg-hero h2 {
        font-size: 42px;
      }

      .gg-nav,
      .gg-info-grid,
      .gg-data-grid,
      .gg-rights-grid {
        grid-template-columns: 1fr;
      }

      .gg-section {
        padding: 28px 24px;
      }

      .gg-section h2 {
        font-size: 28px;
      }
    }


/* ========================================================================== 
   SHARED HOUSE DETAILS
   ========================================================================== */

:is(.goldstein-house-tabs-section, .gs-house4-section, .gs-house5-section){
    position:relative;
    width:100%;
    overflow:hidden;
    background:#f7f5f1;
    font-family:'Montserrat',sans-serif;
    color:#33383a;
    padding:90px 0;
}

:is(.goldstein-house-tabs-pattern, .gs-house4-pattern, .gs-house5-pattern){
    position:absolute;
    inset:0;
    opacity:0.52;
    background-image:
        linear-gradient(rgba(215,178,115,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(215,178,115,0.08) 1px, transparent 1px);
    background-size:44px 44px;
    mask-image:linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 88%);
    pointer-events:none;
}

.goldstein-house-tabs-glow{
    position:absolute;
    border-radius:50%;
    background:radial-gradient(circle, rgba(215,178,115,0.16) 0%, transparent 70%);
    filter:blur(18px);
    pointer-events:none;
    animation:goldsteinHouseTabsFloat 14s ease-in-out infinite;
}

.goldstein-house-tabs-glow.glow-one{
    width:340px;
    height:340px;
    left:-120px;
    top:170px;
}

.goldstein-house-tabs-glow.glow-two{
    width:280px;
    height:280px;
    right:-90px;
    top:720px;
    animation-delay:5s;
}

:is(.goldstein-house-tabs-wrap, .gs-house4-wrap, .gs-house5-wrap){
    position:relative;
    z-index:2;
    max-width:1280px;
    margin:0 auto;
    padding:0 55px;
}

:is(.goldstein-house-tabs-heading, .gs-house4-heading, .gs-house5-heading){
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

:is(.goldstein-house-tabs-subtitle, .gs-house4-subtitle, .gs-house5-subtitle){
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    margin-bottom:14px;
    color:#ac7d0c;
    font-size:10px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

:is(.goldstein-house-tabs-heading, .gs-house4-heading, .gs-house5-heading) h2{
    margin:0;
    color:#3f4548;
    font-family:'Playfair Display',serif;
    font-size:56px;
    line-height:1.08;
    font-weight:600;
}

:is(.goldstein-house-tabs-heading, .gs-house4-heading, .gs-house5-heading) p{
    max-width:760px;
    margin:22px auto 0;
    color:rgba(51,56,58,0.70);
    font-size:15px;
    line-height:1.85;
    font-weight:300;
}

:is(.goldstein-house-tabs-nav, .gs-house4-tabs, .gs-house5-tabs){
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:36px;
    flex-wrap:wrap;
}

:is(.goldstein-house-tabs-nav, .gs-house4-tabs, .gs-house5-tabs) button{
    min-height:48px;
    padding:0 26px;
    color:#3f4548;
    background:transparent;
    border:1px solid transparent;
    font-family:'Montserrat',sans-serif;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:background 260ms ease, color 260ms ease, border-color 260ms ease, transform 260ms ease;
}

:is(.goldstein-house-tabs-nav, .gs-house4-tabs, .gs-house5-tabs) button:hover{
    color:#ac7d0c;
    border-color:rgba(172,125,12,0.20);
}

:is(.goldstein-house-tabs-nav, .gs-house4-tabs, .gs-house5-tabs) button.active{
    color:#ffffff;
    background:#d7b273;
    border-color:#d7b273;
    transform:translateY(-1px);
}

:is(.goldstein-house-tabs-content, .gs-house4-content, .gs-house5-content){
    margin-top:74px;
}

:is(.goldstein-house-tab-panel, .gs-house4-panel, .gs-house5-panel){
    display:none;
    grid-template-columns:0.95fr 1.05fr;
    gap:64px;
    align-items:start;
    padding:44px;
    background:#ffffff;
    border:1px solid rgba(172,125,12,0.16);
    box-shadow:0 26px 75px rgba(51,56,58,0.09);
}

:is(.goldstein-house-tab-panel, .gs-house4-panel, .gs-house5-panel).active{
    display:grid;
    animation:goldsteinTabFade 360ms ease both;
}

:is(.goldstein-house-tab-text, .gs-house4-text, .gs-house5-text) :is(.goldstein-house-tabs-subtitle, .gs-house4-subtitle, .gs-house5-subtitle){
    justify-content:flex-start;
}

:is(.goldstein-house-tab-text, .gs-house4-text, .gs-house5-text) h2{
    margin:0;
    color:#3f4548;
    font-family:'Playfair Display',serif;
    font-size:42px;
    line-height:1.16;
    font-weight:600;
}

:is(.goldstein-house-tab-text, .gs-house4-text, .gs-house5-text) p{
    margin:18px 0 0;
    color:rgba(51,56,58,0.74);
    font-size:15px;
    line-height:1.85;
    font-weight:300;
}

:is(.goldstein-house-data, .gs-house4-data, .gs-house5-data),
:is(.goldstein-house-rooms, .gs-house4-rooms, .gs-house5-rooms){
    margin-top:28px;
    border-top:1px solid rgba(172,125,12,0.24);
}

:is(.goldstein-house-rooms, .gs-house4-rooms, .gs-house5-rooms){
    margin-top:20px;
}

:is(.goldstein-house-data, .gs-house4-data, .gs-house5-data) div,
:is(.goldstein-house-rooms, .gs-house4-rooms, .gs-house5-rooms) div{
    display:flex;
    justify-content:space-between;
    gap:24px;
    padding:10px 0;
    border-bottom:1px solid rgba(51,56,58,0.08);
}

:is(.goldstein-house-data, .gs-house4-data, .gs-house5-data) span,
:is(.goldstein-house-rooms, .gs-house4-rooms, .gs-house5-rooms) span{
    color:rgba(51,56,58,0.68);
    font-size:14px;
    line-height:1.5;
}

:is(.goldstein-house-data, .gs-house4-data, .gs-house5-data) strong,
:is(.goldstein-house-rooms, .gs-house4-rooms, .gs-house5-rooms) strong{
    color:#3f4548;
    font-size:14px;
    line-height:1.5;
    font-weight:700;
    text-align:right;
    white-space:nowrap;
}

:is(.goldstein-house-price, .gs-house4-price, .gs-house5-price){
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    margin-top:26px;
    padding-top:22px;
    border-top:1px solid rgba(172,125,12,0.24);
}

:is(.goldstein-house-price, .gs-house4-price, .gs-house5-price) span{
    color:#3f4548;
    font-size:13px;
    font-weight:700;
    letter-spacing:1.4px;
    text-transform:uppercase;
}

:is(.goldstein-house-price, .gs-house4-price, .gs-house5-price) strong{
    color:#d24b20;
    font-size:14px;
    font-weight:800;
    letter-spacing:1.2px;
    text-transform:uppercase;
}

:is(.goldstein-house-actions, .gs-house4-actions, .gs-house5-actions){
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:24px;
}

:is(.goldstein-house-actions, .gs-house4-actions, .gs-house5-actions).single{
    grid-template-columns:1fr;
}

:is(.goldstein-house-actions, .gs-house4-actions, .gs-house5-actions) a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:0 24px;
    color:#ffffff;
    background:#ac7d0c;
    border:1px solid #ac7d0c;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.6px;
    text-transform:uppercase;
    text-decoration:none;
    transition:background 280ms ease, color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}

:is(.goldstein-house-actions, .gs-house4-actions, .gs-house5-actions) a:nth-child(2){
    color:#ac7d0c;
    background:#ffffff;
}

:is(.goldstein-house-actions, .gs-house4-actions, .gs-house5-actions) a:hover{
    transform:translateY(-2px);
    background:#3f4548;
    border-color:#3f4548;
    color:#ffffff;
    box-shadow:0 16px 38px rgba(172,125,12,0.16);
}

:is(.goldstein-house-plans, .gs-house4-plans, .gs-house5-plans){
    display:grid;
    grid-template-columns:1fr;
    gap:26px;
    align-content:start;
}

:is(.goldstein-plan-lightbox, .gs-house4-lightbox, .gs-house5-lightbox){
    position:relative;
    display:block;
    width:100%;
    padding:20px;
    background:#f7f5f1;
    border:1px solid rgba(172,125,12,0.13);
    overflow:hidden;
    text-align:left;
    cursor:zoom-in;
}

:is(.goldstein-plan-lightbox, .gs-house4-lightbox, .gs-house5-lightbox):after{
    content:"Zväčšiť";
    position:absolute;
    right:18px;
    top:18px;
    padding:8px 11px;
    color:#ffffff;
    background:rgba(63,69,72,0.82);
    border:1px solid rgba(215,178,115,0.28);
    font-size:10px;
    font-weight:700;
    letter-spacing:1.6px;
    text-transform:uppercase;
    opacity:0;
    transform:translateY(-6px);
    transition:opacity 260ms ease, transform 260ms ease;
}

:is(.goldstein-plan-lightbox, .gs-house4-lightbox, .gs-house5-lightbox):hover:after{
    opacity:1;
    transform:translateY(0);
}

:is(.goldstein-plan-lightbox, .gs-house4-lightbox, .gs-house5-lightbox) img{
    width:100%;
    height:auto;
    display:block;
    filter:saturate(0.96) contrast(1.02);
    transition:transform 700ms ease;
}

:is(.goldstein-plan-lightbox, .gs-house4-lightbox, .gs-house5-lightbox):hover img{
    transform:scale(1.035);
}

:is(.goldstein-plan-lightbox, .gs-house4-lightbox, .gs-house5-lightbox) span{
    display:inline-flex;
    margin-top:14px;
    color:#ac7d0c;
    font-size:10px;
    font-weight:700;
    letter-spacing:2.4px;
    text-transform:uppercase;
}

:is(.goldstein-plan-modal, .gs-house4-modal, .gs-house5-modal){
    position:fixed;
    inset:0;
    z-index:999999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:34px;
    background:rgba(18,20,22,0.88);
    backdrop-filter:blur(10px);
}

:is(.goldstein-plan-modal, .gs-house4-modal, .gs-house5-modal).active{
    display:flex;
}

:is(.goldstein-plan-modal, .gs-house4-modal, .gs-house5-modal) img{
    max-width:min(1180px, 94vw);
    max-height:88vh;
    object-fit:contain;
    background:#ffffff;
    border:1px solid rgba(215,178,115,0.30);
    box-shadow:0 30px 90px rgba(0,0,0,0.42);
}

:is(.goldstein-plan-close, .gs-house4-close, .gs-house5-close){
    position:absolute;
    top:22px;
    right:26px;
    width:44px;
    height:44px;
    color:#ffffff;
    background:rgba(215,178,115,0.18);
    border:1px solid rgba(215,178,115,0.35);
    font-size:32px;
    line-height:1;
    cursor:pointer;
    transition:background 240ms ease, transform 240ms ease;
}

:is(.goldstein-plan-close, .gs-house4-close, .gs-house5-close):hover{
    background:#ac7d0c;
    transform:translateY(-2px);
}

@keyframes goldsteinTabFade{
    from{opacity:0; transform:translateY(10px);}
    to{opacity:1; transform:translateY(0);}
}

@keyframes goldsteinHouseTabsFloat{
    0%{transform:translateY(0) translateX(0); opacity:0.42;}
    50%{transform:translateY(-18px) translateX(10px); opacity:0.74;}
    100%{transform:translateY(0) translateX(0); opacity:0.42;}
}

@media(max-width:1100px){
    :is(.goldstein-house-tab-panel, .gs-house4-panel, .gs-house5-panel){
        grid-template-columns:1fr;
        gap:42px;
    }
}

@media(max-width:768px){
    :is(.goldstein-house-tabs-section, .gs-house4-section, .gs-house5-section){
        padding:58px 0;
    }

    :is(.goldstein-house-tabs-wrap, .gs-house4-wrap, .gs-house5-wrap){
        padding:0 25px;
    }

    :is(.goldstein-house-tabs-heading, .gs-house4-heading, .gs-house5-heading) h2{
        font-size:38px;
    }

    :is(.goldstein-house-tabs-nav, .gs-house4-tabs, .gs-house5-tabs){
        align-items:stretch;
        flex-direction:column;
    }

    :is(.goldstein-house-tabs-nav, .gs-house4-tabs, .gs-house5-tabs) button{
        width:100%;
    }

    :is(.goldstein-house-tabs-content, .gs-house4-content, .gs-house5-content){
        margin-top:42px;
    }

    :is(.goldstein-house-tab-panel, .gs-house4-panel, .gs-house5-panel){
        padding:28px 22px;
    }

    :is(.goldstein-house-tab-text, .gs-house4-text, .gs-house5-text) h2{
        font-size:32px;
    }

    :is(.goldstein-house-data, .gs-house4-data, .gs-house5-data) div,
:is(.goldstein-house-rooms, .gs-house4-rooms, .gs-house5-rooms) div,
:is(.goldstein-house-price, .gs-house4-price, .gs-house5-price){
        align-items:flex-start;
        flex-direction:column;
        gap:5px;
    }

    :is(.goldstein-house-data, .gs-house4-data, .gs-house5-data) strong,
:is(.goldstein-house-rooms, .gs-house4-rooms, .gs-house5-rooms) strong{
        text-align:left;
    }

    :is(.goldstein-house-actions, .gs-house4-actions, .gs-house5-actions){
        grid-template-columns:1fr;
    }

    :is(.goldstein-plan-lightbox, .gs-house4-lightbox, .gs-house5-lightbox){
        padding:14px;
    }

    :is(.goldstein-plan-modal, .gs-house4-modal, .gs-house5-modal){
        padding:18px;
    }

    :is(.goldstein-plan-close, .gs-house4-close, .gs-house5-close){
        top:14px;
        right:14px;
    }
}

@media(prefers-reduced-motion:reduce){
    .goldstein-house-tabs-glow,
:is(.goldstein-plan-lightbox, .gs-house4-lightbox, .gs-house5-lightbox) img,
:is(.goldstein-house-actions, .gs-house4-actions, .gs-house5-actions) a,
:is(.goldstein-house-tabs-nav, .gs-house4-tabs, .gs-house5-tabs) button,
:is(.goldstein-house-tab-panel, .gs-house4-panel, .gs-house5-panel){
        animation:none !important;
        transition:none !important;
    }
}


/* ========================================================================== 
   HOUSE PHOTO STRIP
   ========================================================================== */

.goldstein-photo-strip{
    position:relative;
    width:100%;
    overflow:hidden;
    background:
        radial-gradient(circle at top left, rgba(215,178,115,0.08), transparent 28%),
        linear-gradient(135deg,#3f4548 0%,#4b5053 52%,#383e41 100%);
    font-family:'Montserrat',sans-serif;
    padding:58px 0 0;
    border-top:1px solid rgba(215,178,115,0.16);
    border-bottom:1px solid rgba(215,178,115,0.16);
}

.goldstein-strip-header{
    max-width:1180px;
    margin:0 auto 34px;
    padding:0 35px;
    text-align:center;
}

.goldstein-strip-subtitle{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    margin-bottom:12px;
    color:#d7b273;
    font-size:10px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

.goldstein-strip-subtitle span{
    width:44px;
    height:1px;
    background:#d7b273;
    opacity:0.75;
}

.goldstein-strip-header h2{
    margin:0;
    color:#ffffff;
    font-family:'Playfair Display',serif;
    font-size:42px;
    line-height:1.14;
    font-weight:600;
}

.goldstein-strip-viewport{
    position:relative;
    width:100%;
    overflow:hidden;
}

.goldstein-strip-viewport:before,
.goldstein-strip-viewport:after{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    z-index:3;
    width:140px;
    pointer-events:none;
}

.goldstein-strip-viewport:before{
    left:0;
    background:linear-gradient(to right, #3f4548, rgba(63,69,72,0));
}

.goldstein-strip-viewport:after{
    right:0;
    background:linear-gradient(to left, #3f4548, rgba(63,69,72,0));
}

.goldstein-strip-track{
    display:flex;
    width:max-content;
    animation:goldsteinStripMove 58s linear infinite;
}

.goldstein-strip-viewport:hover .goldstein-strip-track{
    animation-play-state:paused;
}

.goldstein-strip-item{
    position:relative;
    flex:0 0 390px;
    height:255px;
    overflow:hidden;
    background:#2f3335;
    border-left:1px solid rgba(215,178,115,0.16);
}

.goldstein-strip-item img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    filter:saturate(0.96) contrast(1.03);
    transform:scale(1.01);
    transition:transform 700ms ease, filter 700ms ease;
}

.goldstein-strip-item:after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.02), rgba(0,0,0,0.16)),
        linear-gradient(to right, rgba(0,0,0,0.10), transparent);
    pointer-events:none;
}

.goldstein-strip-item:hover img{
    transform:scale(1.08);
    filter:saturate(1.06) contrast(1.07);
}

@keyframes goldsteinStripMove{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@media(max-width:900px){
    .goldstein-strip-header h2{
        font-size:34px;
    }

    .goldstein-strip-item{
        flex-basis:310px;
        height:215px;
    }

    .goldstein-strip-viewport:before,
    .goldstein-strip-viewport:after{
        width:70px;
    }
}

@media(max-width:520px){
    .goldstein-photo-strip{
        padding-top:42px;
    }

    .goldstein-strip-header{
        margin-bottom:26px;
        padding:0 25px;
    }

    .goldstein-strip-header h2{
        font-size:30px;
    }

    .goldstein-strip-item{
        flex-basis:260px;
        height:180px;
    }

    .goldstein-strip-track{
        animation-duration:46s;
    }
}

@media(prefers-reduced-motion:reduce){
    .goldstein-strip-track,
    .goldstein-strip-item img{
        animation:none !important;
        transition:none !important;
    }
}


/* ========================================================================== 
   HOUSE STATUS
   ========================================================================== */

.goldstein-house-price.status-available strong,
.gs-house4-price.status-available strong,
.gs-house5-price.status-available strong{
    color:#168236;
}

.goldstein-house-price.status-reserved strong,
.gs-house4-price.status-reserved strong,
.gs-house5-price.status-reserved strong{
    color:#ac7d0c;
}

.goldstein-house-price.status-sold strong,
.gs-house4-price.status-sold strong,
.gs-house5-price.status-sold strong{
    color:#8c2f27;
}


/* ========================================================================== 
   ERROR 404 PAGE
   ========================================================================== */

.gs-error-body{
    background:#292e30;
}

.gs-error-page{
    min-height:760px;
    color:#ffffff;
    background:#292e30;
    font-family:'Montserrat',sans-serif;
}

.gs-error-hero{
    position:relative;
    display:flex;
    align-items:center;
    min-height:760px;
    padding:180px 0 110px;
    overflow:hidden;
    background:
        radial-gradient(circle at 16% 20%, rgba(215,178,115,0.12), transparent 30%),
        radial-gradient(circle at 85% 76%, rgba(215,178,115,0.08), transparent 28%),
        linear-gradient(135deg,#30363a 0%,#292e30 48%,#202528 100%);
}

.gs-error-pattern{
    position:absolute;
    inset:0;
    opacity:0.34;
    pointer-events:none;
    background-image:
        linear-gradient(rgba(215,178,115,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(215,178,115,0.07) 1px, transparent 1px);
    background-size:54px 54px;
    mask-image:linear-gradient(to bottom, rgba(0,0,0,0.92), transparent 96%);
}

.gs-error-glow{
    position:absolute;
    border-radius:50%;
    pointer-events:none;
    background:radial-gradient(circle, rgba(215,178,115,0.18), transparent 70%);
    filter:blur(18px);
    animation:goldsteinHouseTabsFloat 14s ease-in-out infinite;
}

.gs-error-glow-one{
    top:110px;
    left:-150px;
    width:390px;
    height:390px;
}

.gs-error-glow-two{
    right:-100px;
    bottom:20px;
    width:320px;
    height:320px;
    animation-delay:4s;
}

.gs-error-inner{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:minmax(0,1fr) 360px;
    align-items:center;
    gap:90px;
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding:0 55px;
}

.gs-error-copy{
    max-width:760px;
}

.gs-error-eyebrow{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:28px;
    color:#d7b273;
    font-size:10px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

.gs-error-eyebrow span{
    width:50px;
    height:1px;
    background:#d7b273;
    opacity:0.76;
}

.gs-error-code{
    margin:0 0 20px;
    color:transparent;
    font-family:'Playfair Display',serif;
    font-size:clamp(120px,16vw,210px);
    font-weight:700;
    line-height:0.72;
    letter-spacing:-8px;
    -webkit-text-stroke:1px rgba(215,178,115,0.72);
    text-shadow:0 24px 80px rgba(0,0,0,0.20);
    user-select:none;
}

.gs-error-copy h1{
    max-width:700px;
    margin:0;
    color:#ffffff;
    font-family:'Playfair Display',serif;
    font-size:clamp(44px,5.2vw,72px);
    font-weight:600;
    line-height:1.06;
}

.gs-error-text{
    max-width:680px;
    margin:26px 0 0;
    color:rgba(255,255,255,0.70);
    font-size:15px;
    font-weight:300;
    line-height:1.9;
}

.gs-error-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:38px;
}

.gs-error-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 28px;
    border:1px solid #d7b273;
    color:#ffffff;
    font-size:11px;
    font-weight:700;
    letter-spacing:1.7px;
    text-decoration:none;
    text-transform:uppercase;
    transition:
        color 250ms ease,
        background-color 250ms ease,
        border-color 250ms ease,
        box-shadow 250ms ease,
        transform 250ms ease;
}

.gs-error-btn-primary{
    color:#292e30;
    background:#d7b273;
}

.gs-error-btn-secondary{
    background:rgba(255,255,255,0.025);
}

.gs-error-btn:hover,
.gs-error-btn:focus-visible{
    color:#ffffff;
    background:#3f4548;
    border-color:#d7b273;
    box-shadow:0 16px 42px rgba(0,0,0,0.20);
    transform:translateY(-2px);
}

.gs-error-card{
    position:relative;
    padding:38px 34px;
    border:1px solid rgba(215,178,115,0.28);
    background:rgba(255,255,255,0.035);
    box-shadow:0 28px 70px rgba(0,0,0,0.20);
    backdrop-filter:blur(12px);
}

.gs-error-card:before{
    content:"";
    position:absolute;
    inset:10px -10px -10px 10px;
    z-index:-1;
    border:1px solid rgba(215,178,115,0.12);
    pointer-events:none;
}

.gs-error-card > span{
    color:#d7b273;
    font-size:9px;
    font-weight:700;
    letter-spacing:3.2px;
}

.gs-error-card > strong{
    display:block;
    margin-top:14px;
    color:#ffffff;
    font-family:'Playfair Display',serif;
    font-size:28px;
    font-weight:600;
    line-height:1.25;
}

.gs-error-card nav{
    display:grid;
    margin-top:28px;
    border-top:1px solid rgba(215,178,115,0.18);
}

.gs-error-card nav a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:50px;
    border-bottom:1px solid rgba(255,255,255,0.08);
    color:rgba(255,255,255,0.74);
    font-size:12px;
    font-weight:600;
    letter-spacing:0.4px;
    text-decoration:none;
    transition:color 220ms ease, padding-left 220ms ease;
}

.gs-error-card nav a:after{
    content:"→";
    color:#d7b273;
}

.gs-error-card nav a:hover,
.gs-error-card nav a:focus-visible{
    padding-left:6px;
    color:#d7b273;
}

@media(max-width:1000px){
    .gs-error-inner{
        grid-template-columns:1fr 310px;
        gap:50px;
    }
}

@media(max-width:768px){
    .gs-error-hero{
        min-height:auto;
        padding:140px 0 82px;
    }

    .gs-error-inner{
        grid-template-columns:1fr;
        gap:52px;
        padding:0 22px;
    }

    .gs-error-code{
        font-size:118px;
        letter-spacing:-5px;
    }

    .gs-error-copy h1{
        font-size:43px;
    }

    .gs-error-actions{
        display:grid;
    }

    .gs-error-btn{
        width:100%;
        padding:0 18px;
        text-align:center;
    }

    .gs-error-card{
        padding:30px 24px;
    }
}

@media(prefers-reduced-motion:reduce){
    .gs-error-glow,
    .gs-error-btn,
    .gs-error-card nav a{
        animation:none !important;
        transition:none !important;
    }
}


/* ========================================================================== 
   GLOBAL FOOTER
   ========================================================================== */

.gs-footer,
.gs-footer *{
    box-sizing:border-box;
}

.gs-footer{
    position:relative;
    overflow:hidden;
    background:
        linear-gradient(135deg,rgba(255,255,255,0.018),transparent 40%),
        #292e30;
    color:#ffffff;
    font-family:'Montserrat',sans-serif;
    border-top:1px solid rgba(215,178,115,0.20);
}

.gs-footer:before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    width:min(1380px,calc(100% - 40px));
    height:1px;
    transform:translateX(-50%);
    background:linear-gradient(to right,transparent,#d7b273 50%,transparent);
    opacity:0.55;
}

.gs-footer-glow{
    position:absolute;
    border-radius:50%;
    pointer-events:none;
    background:radial-gradient(circle,rgba(215,178,115,0.11),transparent 70%);
}

.gs-footer-glow-one{
    width:420px;
    height:420px;
    top:-250px;
    left:-100px;
}

.gs-footer-glow-two{
    width:360px;
    height:360px;
    right:-120px;
    bottom:-230px;
}

.gs-footer-inner{
    position:relative;
    z-index:1;
    width:100%;
    max-width:1480px;
    margin:0 auto;
    padding:78px 55px 0;
}

.gs-footer-main{
    display:grid;
    grid-template-columns:1.2fr 0.75fr 1.25fr;
    gap:90px;
    padding-bottom:64px;
}

.gs-footer-brand{
    max-width:330px;
}

.gs-footer-logo{
    display:inline-flex;
    margin-bottom:24px;
}

.gs-footer-logo img{
    display:block;
    width:auto;
    height:62px;
}

.gs-footer-brand p{
    max-width:280px;
    margin:0 0 30px;
    color:rgba(255,255,255,0.58);
    font-size:14px;
    font-weight:300;
    line-height:1.75;
}

.gs-footer-socials{
    display:flex;
    gap:10px;
}

.gs-footer-socials a{
    width:44px;
    height:44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#d7b273;
    border:1px solid rgba(215,178,115,0.30);
    background:rgba(255,255,255,0.025);
    text-decoration:none;
    transition:background 300ms ease,color 300ms ease,transform 300ms ease,border-color 300ms ease;
}

.gs-footer-socials a:hover{
    color:#292e30;
    background:#d7b273;
    border-color:#d7b273;
    transform:translateY(-3px);
}

.gs-footer-socials svg{
    width:19px;
    height:19px;
    fill:currentColor;
}

.gs-footer-socials a:nth-child(2) svg{
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
}

.gs-footer-socials a:nth-child(2) .gs-footer-icon-fill{
    fill:currentColor;
    stroke:none;
}

.gs-footer-column{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.gs-footer-heading{
    position:relative;
    display:block;
    margin-bottom:28px;
    padding-bottom:15px;
    color:#ffffff;
    font-family:'Playfair Display',serif;
    font-size:20px;
    font-weight:600;
    line-height:1.25;
}

.gs-footer-heading:after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:36px;
    height:1px;
    background:#d7b273;
}

.gs-footer-column a{
    position:relative;
    display:inline-block;
    margin-bottom:14px;
    color:rgba(255,255,255,0.60);
    font-size:13px;
    font-weight:400;
    line-height:1.55;
    text-decoration:none;
    transition:color 250ms ease,transform 250ms ease;
}

.gs-footer-column a:last-child{
    margin-bottom:0;
}

.gs-footer-column a:hover{
    color:#d7b273;
    transform:translateX(4px);
}

.gs-footer-company{
    max-width:360px;
}

.gs-footer-bottom{
    min-height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    border-top:1px solid rgba(215,178,115,0.14);
}

.gs-footer-bottom p{
    margin:0;
    color:rgba(255,255,255,0.42);
    font-size:11px;
    font-weight:400;
    line-height:1.6;
    letter-spacing:0.3px;
}

.gs-footer-bottom p > strong{
    color:#d7b273;
}

.gs-footer-bottom p a{
    color:#d7b273;
    text-decoration:none;
    transition:color 250ms ease;
}

.gs-footer-bottom p a:hover{
    color:#ffffff;
}

.gs-footer-back-top{
    flex:0 0 38px;
    width:38px;
    height:38px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#d7b273;
    border:1px solid rgba(215,178,115,0.28);
    text-decoration:none;
    transition:background 250ms ease,color 250ms ease,transform 250ms ease;
}

.gs-footer-back-top:hover{
    color:#292e30;
    background:#d7b273;
    transform:translateY(-3px);
}

.gs-footer-back-top svg{
    width:18px;
    height:18px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.6;
    stroke-linecap:round;
    stroke-linejoin:round;
}

@media(max-width:1000px){
    .gs-footer-main{
        grid-template-columns:1fr 1fr;
        gap:55px 70px;
    }

    .gs-footer-brand{
        grid-column:1 / -1;
        max-width:none;
    }
}

@media(max-width:640px){
    .gs-footer-inner{
        padding:58px 25px 0;
    }

    .gs-footer-main{
        grid-template-columns:1fr;
        gap:42px;
        padding-bottom:46px;
    }

    .gs-footer-brand{
        grid-column:auto;
    }

    .gs-footer-logo img{
        height:54px;
    }

    .gs-footer-bottom{
        min-height:110px;
        align-items:flex-start;
        padding:26px 0;
    }

    .gs-footer-bottom p{
        max-width:260px;
    }
}

@media(prefers-reduced-motion:reduce){
    .gs-footer-socials a,
    .gs-footer-column a,
    .gs-footer-bottom a,
    .gs-footer-back-top{
        transition:none !important;
    }
}
