/* Root */
:root {
    --charcoal: #222831;
    --off-white: #F5F3EF;
    --gold: #C8A96B;
    --bronze: #8B7355;
    --stone-grey: #BFC3C9;
    --body-text: var(--stone-grey);
    --charcoal-rgb: 34, 40, 49;
    --gold-rgb: 200, 169, 107;
    --stone-grey-rgb: 191, 195, 201;
    --bs-primary: var(--gold);
    --bs-primary-rgb: var(--gold-rgb);
    --bs-link-color-rgb: var(--stone-grey-rgb);
    --bs-link-hover-color-rgb: var(--gold-rgb);
    --bs-focus-border-color: rgba(200, 169, 107, 0.5);
    --bs-body-font-size: 1.085rem;
    --bs-body-font-weight: 350;
    --bs-primary-bg-subtle: #f7f1e8;
    --bs-link-color: var(--stone-grey);
    --bs-link-hover-color: var(--gold);
    --bs-link-color-rgb: var(--stone-grey-rgb);
    --gse-charcoal: var(--charcoal);
    --gse-charcoal-rgb: var(--charcoal-rgb);
    --gse-font-display: 'Cormorant Garamond', serif;
    --gse-font-body: 'Inter', sans-serif;
    --gse-body-font-weight: 350;
    --gse-hero-min-height: 660px;
    --gse-hero-pad-top: 10rem;
    --gse-hero-pad-bottom: 5.5rem;
}

:root [data-bs-theme=dark] {
    --bs-link-color: var(--stone-grey);
    --bs-link-hover-color: var(--gold);
    --bs-link-color-rgb: var(--stone-grey-rgb);
}

/* General */
body {
    font-family: var(--gse-font-body);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--body-text);
    position: relative;
}

p,
.lead {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}

p.ls-0,
p.ls-1,
p.ls-2,
p.ls-3,
p.ls-4,
p.ls-5,
.lead.ls-0,
.lead.ls-1,
.lead.ls-2,
.lead.ls-3,
.lead.ls-4,
.lead.ls-5 {
    letter-spacing: normal !important;
}

p.fw-light,
.lead.fw-light {
    font-weight: var(--gse-body-font-weight) !important;
}

.form-control,
.form-select {
    font-weight: 400;
}

body.bg-dark {
    background:
        radial-gradient(140% 90% at 20% 0%, rgba(245, 243, 239, 0.03) 0%, rgba(34, 40, 49, 0) 55%),
        linear-gradient(180deg, #2A323E 0%, var(--gse-charcoal) 34%, #161A20 100%);
    background-color: var(--gse-charcoal) !important;
}

body.bg-dark.gse-page--home {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E") repeat,
        radial-gradient(120% 80% at 15% 10%, rgba(200, 169, 107, 0.02) 0%, rgba(34, 40, 49, 0) 52%),
        radial-gradient(120% 100% at 85% 0%, rgba(200, 169, 107, 0.015) 0%, rgba(34, 40, 49, 0) 62%),
        linear-gradient(180deg, #2A323E 0%, var(--gse-charcoal) 36%, #161A20 100%);
    background-blend-mode: overlay, normal, normal, normal;
    background-color: var(--gse-charcoal) !important;
}

body.gse-page--home {
    overflow-x: clip;
}

/* Link */
a {
    text-decoration: none;
}

.text-primary {
    color: var(--gold) !important;
}

/* H */
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.5;
}

.h5,
h5 {
    font-size: 1.15rem;
}

.small,
small {
    font-size: 0.8em;
}

.blockquote {
    font-size: 1.15rem;
}

/* Typography roles */
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--gse-font-display);
}

.display-6 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--off-white);
}

h1.text-uppercase,
h2.text-uppercase,
h3.text-uppercase,
.display-1.text-uppercase,
.display-2.text-uppercase,
.display-3.text-uppercase,
.display-4.text-uppercase,
.display-5.text-uppercase,
.display-6.text-uppercase {
    text-transform: none !important;
}

h1.ls-0,
h1.ls-1,
h1.ls-2,
h1.ls-3,
h1.ls-4,
h1.ls-5,
h2.ls-0,
h2.ls-1,
h2.ls-2,
h2.ls-3,
h2.ls-4,
h2.ls-5,
h3.ls-0,
h3.ls-1,
h3.ls-2,
h3.ls-3,
h3.ls-4,
h3.ls-5,
.display-1.ls-0,
.display-1.ls-1,
.display-1.ls-2,
.display-1.ls-3,
.display-1.ls-4,
.display-1.ls-5,
.display-2.ls-0,
.display-2.ls-1,
.display-2.ls-2,
.display-2.ls-3,
.display-2.ls-4,
.display-2.ls-5,
.display-3.ls-0,
.display-3.ls-1,
.display-3.ls-2,
.display-3.ls-3,
.display-3.ls-4,
.display-3.ls-5,
.display-4.ls-0,
.display-4.ls-1,
.display-4.ls-2,
.display-4.ls-3,
.display-4.ls-4,
.display-4.ls-5,
.display-5.ls-0,
.display-5.ls-1,
.display-5.ls-2,
.display-5.ls-3,
.display-5.ls-4,
.display-5.ls-5,
.display-6.ls-0,
.display-6.ls-1,
.display-6.ls-2,
.display-6.ls-3,
.display-6.ls-4,
.display-6.ls-5 {
    letter-spacing: -0.01em !important;
}

/* Font family */
.ff-h {
    font-family: var(--gse-font-display) !important;
}

#footer,
#footer input,
#footer button {
    font-family: var(--gse-font-body) !important;
}

.gse-footer-cta-headline {
    font-size: clamp(34px, 3.5vw, 44px); /* Reduced by ~15-20% from display-6 */
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--off-white);
}

.gse-cta-section {
    background-color: var(--charcoal);
    padding-top: clamp(7rem, 10vw, 10rem);
    padding-bottom: clamp(7rem, 10vw, 10rem);
}

.gse-cta-inner {
    padding-bottom: clamp(7rem, 10vw, 10rem);
}

.gse-footer-cta-section {
    padding-bottom: clamp(6rem, 8vw, 8rem);
    margin-bottom: clamp(6rem, 8vw, 8rem);
}

#footer {
    color: rgba(255, 255, 255, 0.72);
    padding-top: clamp(2.5rem, 3.5vw, 3.5rem) !important;
    padding-bottom: clamp(2.5rem, 3.5vw, 3.5rem) !important;
}

#footer p {
    font-size: 16px;
    line-height: 1.75;
    max-width: 46ch;
}

#footer p.ls-1,
#footer p.ls-2,
#footer p.ls-3 {
    letter-spacing: normal !important;
}

#footer .text-body {
    color: rgba(255, 255, 255, 0.72) !important;
}

#footer .link-secondary {
    color: rgba(255, 255, 255, 0.62) !important;
}

#footer .opacity-50 { opacity: 0.70 !important; }
#footer .opacity-25 { opacity: 0.45 !important; }

#footer .row.border-bottom.border-white.border-opacity-10 {
    margin-bottom: 3rem !important;
    padding-bottom: 3rem !important;
}

#footer .row.border-bottom.border-white.border-opacity-10 h2 {
    margin-bottom: 2rem !important;
}

#footer .row.g-5.mb-10 {
    margin-bottom: 3rem !important;
}

#footer .pt-5.border-top.border-white.border-opacity-10 {
    padding-top: 2rem !important;
}

/* Letter spacing */
.ls-0 {
    letter-spacing: 0 !important;
}

.text-uppercase.ls-3.text-primary.small,
small.text-uppercase.ls-3.text-primary {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.35em !important;
    text-transform: uppercase !important;
    color: var(--gold) !important;
}

.ls-1 {
    letter-spacing: 0.15rem !important;
}

.ls-2 {
    letter-spacing: 0.25rem !important;
}

.ls-3 {
    letter-spacing: 0.35rem !important;
}

.ls-4 {
    letter-spacing: 0.45rem !important;
}

.ls-5 {
    letter-spacing: 0.55rem !important;
}

/* Form control */
.form-control:focus,
.form-select:focus {
    border-color: var(--bs-focus-border-color);
}

/* Form check (privacy-consent checkbox — Contact + Briefing forms) */
.gse-form-minimal .form-check {
    display: flex;
    align-items: center;
    padding-left: 0;
}

.gse-form-minimal .form-check-input {
    float: none;
    flex-shrink: 0;
    margin-top: 0;
    margin-left: 0;
    margin-right: .625em;
    background-color: rgba(var(--charcoal-rgb), 0.6);
    border: 1px solid rgba(var(--bs-primary-rgb), 0.5);
    accent-color: var(--bs-primary);
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.gse-form-minimal .form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.gse-form-minimal .form-check-input:hover {
    border-color: rgba(var(--bs-primary-rgb), 0.8);
}

.gse-form-minimal .form-check-input:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--bs-focus-border-color);
}

.gse-form-minimal .form-check-input:focus-visible {
    box-shadow: 0 0 0 0.15rem rgba(var(--bs-primary-rgb), 0.25);
}


/* Header */
#header {
    transition: 0.35s all ease-in-out;
    -webkit-transition: 0.35s all ease-in-out;
    -moz-transition: 0.35s all ease-in-out;
    -ms-transition: 0.35s all ease-in-out;
    -o-transition: 0.35s all ease-in-out;
}

#header.gse-header--scrolled {
    background-color: #0b0b0be0 !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.hero-editorial {
    position: relative;
    padding: var(--gse-hero-pad-top) 0 var(--gse-hero-pad-bottom);
}

.hero-editorial .hero-bg {
    display: none;
}

.hero-editorial::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-editorial .hero-inner {
    position: relative;
    z-index: 1;
}

.hero-editorial .hero-inner .text-primary {
    color: var(--gold) !important;
}

.hero-editorial .hero-inner h1 {
    color: #ffffff;
    text-transform: none !important;
    letter-spacing: -0.01em !important;
}

.hero-editorial .hero-inner h2 {
    text-transform: none !important;
    letter-spacing: -0.01em !important;
}

.hero-editorial .hero-inner p {
    color: rgba(245, 243, 239, 0.84);
    opacity: 1 !important;
    max-width: 62ch;
}

.gse-page--home #hero p {
    letter-spacing: normal !important;
}

.gse-page--home #hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(55px, 5.91vw, 80px);
    font-weight: 400; /* Lighter weight for more elegance */
    line-height: 1.1; /* More airy */
    letter-spacing: -0.01em;
    color: var(--off-white);
    margin-bottom: 2.5rem;
}

.gse-hero-paragraph {
    max-width: 520px;
    line-height: 1.8;
    font-size: 1.15rem;
    color: rgba(245, 243, 239, 0.75) !important;
    margin-bottom: 4rem;
}

.hero-editorial--home {
    padding-top: clamp(10rem, 14vw, 14rem);
    padding-bottom: clamp(6rem, 10vw, 10rem);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-editorial--home .col-lg-7 {
        width: 53%;
    }
}

.hero-editorial--home .hero-bg {
    display: block;
    position: absolute;
    inset: 0;
    background-image: url('../img/hero/index-hero.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-editorial--home::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 10, 12, 0.55) 0%,
        rgba(10, 10, 12, 0.32) 28%,
        rgba(10, 10, 12, 0.12) 50%,
        rgba(10, 10, 12, 0) 66%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-editorial--home .hero-inner {
    position: relative;
    z-index: 2;
}

.gse-hero-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-height: clamp(570px, 54vw, 840px);
    overflow: hidden;
    margin-top: 0px;
    margin-left: auto;
    box-shadow:
        0 30px 60px -12px rgba(0, 0, 0, 0.45),
        0 18px 36px -18px rgba(0, 0, 0, 0.5);
    background: #1a1a1a;
}

/* Premium Buttons */
#hero .btn {
    padding: 0.9rem 2.5rem;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#hero .btn-primary {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
}

#hero .btn-primary:hover {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
    transform: translateY(-1px);
}

#hero .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

#hero .btn-outline-light:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 1199px) {
    #hero .d-flex.gap-4.flex-wrap {
        flex-wrap: nowrap !important;
        gap: 12px !important;
    }

    #hero .btn {
        white-space: nowrap;
        padding-left: 18px;
        padding-right: 18px;
        font-size: 10px;
        letter-spacing: 0.15em;
    }
}

@media (min-width: 1200px) {
    #hero .d-flex.gap-4.flex-wrap {
        flex-wrap: nowrap !important;
    }
}

/* Hero Animations */
.hero-reveal {
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
}

.hero-reveal--active {
    opacity: 1;
    transform: translateY(0);
    transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.5s; }
.delay-4 { transition-delay: 0.7s; }



.gse-hero-image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

@media (max-width: 991.98px) {
    .hero-editorial--home {
        padding-top: 10rem;
        padding-bottom: 5rem;
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .gse-hero-image-wrapper {
        max-height: clamp(300px, 60vw, 400px);
    }
}



.gse-hero-access-stack {
    position: relative;
    margin-left: auto;
    max-width: 580px;
}

.gse-hero-access-stack::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

.gse-hero-access-main {
    display: block;
    width: 100%;
    height: clamp(320px, 28vw, 460px);
    object-fit: cover;
    border: 1px solid rgba(var(--bs-white-rgb), 0.06);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45), 0 15px 25px rgba(0, 0, 0, 0.25);
    filter: saturate(0.9) contrast(1.06) brightness(0.9);
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 20%, #000 100%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 20%, #000 100%);
    transform: translateX(22px);
}

.gse-hero-access-accent {
    position: absolute;
    left: -14px;
    bottom: -14px;
    width: clamp(210px, 20vw, 300px);
    height: clamp(170px, 16vw, 240px);
    object-fit: cover;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.16);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4), 0 10px 20px rgba(0, 0, 0, 0.2);
    filter: saturate(0.85) contrast(1.04) brightness(0.82);
    transform: rotate(-1.1deg);
}

.hero-editorial--access .btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-editorial--access .btn:hover,
.hero-editorial--access .btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-editorial--briefing {
    padding-top: clamp(12rem, 16vw, 16rem);
    padding-bottom: clamp(6rem, 10vw, 10rem);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-editorial--briefing h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(54px, 5.5vw, 78px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--off-white);
    margin-bottom: 2.5rem;
}

.hero-editorial--briefing .lead {
    font-size: 1.15rem;
    color: rgba(245, 243, 239, 0.75);
    line-height: 1.85;
}

@media (max-width: 991.98px) {
    .hero-editorial--briefing {
        padding-top: 10rem;
        padding-bottom: 5rem;
        min-height: auto;
    }
}


.gse-hero-story-stack {
    position: relative;
    margin-left: auto;
    max-width: 560px;
}

.gse-hero-story-stack::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.62) 100%);
    pointer-events: none;
}

.gse-hero-story-main {
    display: block;
    width: 100%;
    height: clamp(320px, 28vw, 460px);
    object-fit: cover;
    filter: contrast(1.02) brightness(0.98);
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 22%, #000 100%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 22%, #000 100%);
    transform: translateX(24px);
}

.gse-hero-story-accent {
    position: absolute;
    left: -18px;
    bottom: -18px;
    width: clamp(180px, 18vw, 260px);
    height: clamp(220px, 22vw, 340px);
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.16);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
    filter: contrast(1.03) brightness(0.95);
}

.gse-hero-side-media {
    margin-left: auto;
    max-width: 560px;
    overflow: hidden;
    position: relative;
    border: 0;
    margin-right: -48px;
}

.hero-editorial--contact .gse-hero-side-media {
    height: clamp(320px, 28vw, 460px);
}

.hero-editorial--contact .gse-hero-side-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.28) 60%, rgba(0, 0, 0, 0.42) 100%);
    pointer-events: none;
}

.hero-editorial--collection .gse-hero-side-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.32) 60%, rgba(0, 0, 0, 0.46) 100%);
    pointer-events: none;
}

.hero-editorial--privacy .hero-bg {
    display: none;
}

.hero-editorial--privacy .gse-hero-side-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.30) 60%, rgba(0, 0, 0, 0.46) 100%);
    pointer-events: none;
}

.hero-editorial--privacy .gse-hero-side-media img {
    filter: saturate(0.88) contrast(1.04) brightness(0.90);
}

.hero-editorial--legal .hero-bg {
    display: none;
}

.hero-editorial--legal .gse-hero-side-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.30) 60%, rgba(0, 0, 0, 0.46) 100%);
    pointer-events: none;
}

.hero-editorial--legal .gse-hero-side-media img {
    filter: saturate(0.88) contrast(1.04) brightness(0.90);
}

.gse-hero-side-media img {
    display: block;
    height: clamp(320px, 28vw, 460px);
    object-fit: cover;
    filter: saturate(0.9) contrast(1.06);
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 18%, #000 100%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 18%, #000 100%);
    transform: translateX(24px);
}

.hero-editorial--contact .gse-hero-side-media img {
    width: 100%;
    height: 100%;
    filter: saturate(0.9) contrast(1.02) brightness(0.98);
    object-position: center 72%;
    -webkit-mask-image: none;
    mask-image: none;
    transform: none;
}

.hero-editorial--collection .gse-hero-side-media img {
    filter: saturate(0.9) contrast(1.04) brightness(0.90);
}

.gse-hero-collection-stack {
    position: relative;
    margin-left: auto;
    max-width: 580px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.012);
    border: 1px solid rgba(var(--bs-white-rgb), 0.06);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gse-hero-collection-stack::after {
    content: "";
    position: absolute;
    inset: 10px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.22) 55%, rgba(0, 0, 0, 0.38) 100%);
    pointer-events: none;
}

.gse-hero-collection-main {
    display: block;
    width: 100%;
    height: clamp(320px, 28vw, 460px);
    object-fit: cover;
    border: 1px solid rgba(var(--bs-white-rgb), 0.06);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
    filter: saturate(0.88) contrast(1.06) brightness(0.88);
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 28%, #000 100%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 28%, #000 100%);
    transform: translateX(18px);
}

.gse-hero-collection-accent {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: clamp(240px, 22vw, 340px);
    height: clamp(120px, 10vw, 160px);
    object-fit: cover;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.16);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.30);
    filter: saturate(0.80) contrast(1.03) brightness(0.74);
    transform: rotate(0.8deg);
}

@media (max-width: 1199.98px) {
    .gse-hero-collection-accent { right: 10px; bottom: 10px; }
}

.gse-hairline {
    height: 1px;
    width: 100%;
    background: rgba(var(--bs-white-rgb), 0.10);
}

.gse-soft-sep {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(231, 207, 149, 0.00) 0%, rgba(231, 207, 149, 0.10) 22%, rgba(var(--bs-white-rgb), 0.06) 50%, rgba(231, 207, 149, 0.10) 78%, rgba(231, 207, 149, 0.00) 100%);
}

.gse-image-stack {
    position: relative;
    padding-bottom: clamp(36px, 4vw, 56px);
}

.gse-image-stack--muted {
    padding-bottom: 0;
}

.gse-image-stack--muted::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.18) 100%),
        radial-gradient(120% 85% at 50% 40%, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.18) 72%);
    pointer-events: none;
}

.gse-image-stack--muted .gse-image-stack__main {
    filter: saturate(0.90) contrast(1.04) brightness(0.86);
}

.gse-image-stack__main {
    width: 100%;
    height: clamp(440px, 38vw, 600px);
    object-fit: cover;
}

.gse-image-stack__accent {
    position: absolute;
    right: clamp(18px, 3vw, 36px);
    bottom: 0;
    width: clamp(200px, 22vw, 320px);
    height: clamp(240px, 26vw, 380px);
    object-fit: cover;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.22);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

.gse-principle-card {
    border: 1px solid rgba(var(--bs-white-rgb), 0.06);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.35s ease-in-out;
}

.gse-principle-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--bs-primary-rgb), 0.28);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.gse-principles-panel {
    background: linear-gradient(180deg, rgba(var(--gse-charcoal-rgb), 0.78) 0%, rgba(var(--gse-charcoal-rgb), 0.62) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(var(--bs-white-rgb), 0.045);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.gse-glass-panel {
    background: linear-gradient(180deg, rgba(var(--gse-charcoal-rgb), 0.78) 0%, rgba(var(--gse-charcoal-rgb), 0.62) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 0;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.gse-glass-panel.gse-form-minimal {
    background: linear-gradient(180deg, rgba(var(--gse-charcoal-rgb), 0.92) 0%, rgba(var(--gse-charcoal-rgb), 0.86) 100%);
    border: 1px solid rgba(var(--bs-white-rgb), 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.gse-form-minimal .form-control,
.gse-form-minimal .form-select {
    border: 0 !important;
    background-color: rgba(34, 38, 44, 0.88);
    color: rgba(var(--bs-white-rgb), 0.95);
    box-shadow: inset 0 0 0 1px rgba(var(--bs-white-rgb), 0.12);
}

.gse-form-hint {
    font-size: 0.82rem;
    margin-top: 0.4rem;
    color: rgba(var(--bs-white-rgb), 0.55);
}

.gse-form-intent-kicker {
    display: none !important;
}

body.gse-intent-briefing .gse-form-intent-kicker {
    display: block !important;
}

.gse-form-trustline {
    font-size: 0.82rem;
    margin-top: 0.75rem;
    color: rgba(var(--bs-white-rgb), 0.55);
    letter-spacing: 0.02rem;
}

.gse-flash-toast {
    width: calc(100% - 2rem);
    max-width: 26rem;
    line-height: 1.5;
}

.was-validated .gse-form-minimal .gse-select-proxy:invalid {
    box-shadow: inset 0 0 0 1px rgba(var(--bs-danger-rgb), 0.75), 0 0 0 0.12rem rgba(var(--bs-danger-rgb), 0.18) !important;
}

.gse-form-minimal .form-floating > label {
    color: rgba(var(--bs-white-rgb), 0.78);
}

.gse-form-minimal .form-floating > .form-control:focus,
.gse-form-minimal .form-floating > .form-control:not(:placeholder-shown) {
    padding-top: 2.75rem;
}

.gse-form-minimal .gse-brief-guideline {
    position: absolute;
    inset: 0;
    padding: 2.65rem 0.75rem 0.75rem;
    pointer-events: none;
    font-family: var(--gse-font-body);
    letter-spacing: 0.02rem;
    font-size: 0.84rem;
    font-weight: 350;
    font-style: italic;
    line-height: 1.45;
    color: rgba(var(--bs-white-rgb), 0.26);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

body.gse-intent-briefing .gse-form-minimal #form_message_label {
    opacity: 0.78;
    transform: scale(.85) translateY(-.5rem) translateX(.15rem);
}

body.gse-intent-briefing .gse-form-minimal #form_message {
    padding-top: 2.75rem;
    color: rgba(var(--bs-white-rgb), 0.88);
}

body.gse-intent-briefing .gse-form-minimal #form_message:placeholder-shown ~ .gse-brief-guideline {
    opacity: 0.75;
}

body.gse-intent-briefing .gse-form-minimal #form_message:focus ~ .gse-brief-guideline {
    opacity: 0;
}

.gse-form-minimal .gse-select-proxy {
    cursor: pointer;
    caret-color: transparent;
    user-select: none;
    color: var(--gold);
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23C8A96B' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-image: var(--bs-form-select-bg-img);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    padding-right: 2.25rem;
}

.gse-form-minimal .gse-select-proxy::selection {
    background: transparent;
}

.gse-form-minimal .gse-select-menu {
    background-color: rgba(34, 38, 44, 0.98);
    border: 1px solid rgba(var(--bs-white-rgb), 0.12);
}

.gse-form-minimal .gse-select-menu .dropdown-item {
    color: rgba(var(--bs-white-rgb), 0.92);
}

.gse-form-minimal .gse-select-menu .dropdown-item:hover,
.gse-form-minimal .gse-select-menu .dropdown-item:focus {
    background-color: rgba(var(--bs-primary-rgb), 0.18);
    color: var(--gold);
}

.gse-form-minimal .gse-select-menu .dropdown-item.active,
.gse-form-minimal .gse-select-menu .dropdown-item:active {
    background-color: rgba(var(--bs-primary-rgb), 0.24);
    color: var(--gold);
}

.gse-form-minimal .gse-briefing-native-select {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.gse-form-minimal .form-control::placeholder {
    color: transparent;
}

.gse-form-minimal .form-control:focus,
.gse-form-minimal .form-select:focus {
    background-color: rgba(38, 42, 49, 0.92);
    border-color: transparent;
    outline: none !important;
    box-shadow: inset 0 0 0 1px rgba(var(--bs-white-rgb), 0.14), 0 0 0 0.12rem rgba(var(--bs-primary-rgb), 0.22) !important;
}

.gse-form-minimal .form-control:focus-visible,
.gse-form-minimal .form-select:focus-visible {
    outline: none !important;
    box-shadow: inset 0 0 0 1px rgba(var(--bs-white-rgb), 0.14), 0 0 0 0.12rem rgba(var(--bs-primary-rgb), 0.22) !important;
}

.gse-principles-panel .text-watermark {
    right: 1.5rem;
    top: 0.75rem;
    font-size: 5.75rem;
    opacity: 0.018;
}

.gse-principles-list {
    display: grid;
    gap: 0;
}

.gse-principles-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(var(--bs-white-rgb), 0.08);
}

.gse-principles-item--last {
    border-bottom: 0;
    padding-bottom: 0;
}

.gse-principles-no {
    font-family: var(--gse-font-display) !important;
    font-weight: 300;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    color: rgba(231, 207, 149, 0.95);
    min-width: 2.5rem;
    opacity: 0.85;
}

.gse-principles-title {
    font-family: var(--gse-font-display) !important;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    font-weight: 400;
    color: rgba(var(--bs-white-rgb), 0.92);
    margin-bottom: 0.25rem;
}

.gse-principles-desc {
    letter-spacing: 0.04rem;
    color: rgba(var(--bs-white-rgb), 0.74);
    font-size: 0.98rem;
}

.gse-principles-item:hover {
    border-bottom-color: rgba(var(--bs-primary-rgb), 0.22);
}

@media (min-width: 992px) {
    .gse-principles-item { padding: 1.35rem 0; }
}

@media (max-width: 575.98px) {
    .gse-principles-item { gap: 1rem; }
    .gse-principles-no { min-width: 2.1rem; }
    .gse-principles-desc { font-size: 0.94rem; }
}

.gse-soft-glow {
    position: relative;
    overflow: hidden;
}

.gse-soft-glow::before {
    content: "";
    position: absolute;
    inset: -1px;
    background:
        radial-gradient(120% 80% at 15% 10%, rgba(231, 207, 149, 0.07) 0%, rgba(23, 25, 28, 0) 48%),
        radial-gradient(120% 100% at 85% 0%, rgba(201, 165, 107, 0.045) 0%, rgba(23, 25, 28, 0) 58%);
    pointer-events: none;
}

.gse-soft-glow .container {
    position: relative;
    z-index: 1;
}

.gse-soft-glow-span {
    position: relative;
    overflow: hidden;
}

.gse-soft-glow-span::before {
    content: "";
    position: absolute;
    inset: -1px;
    background:
        radial-gradient(140% 90% at 15% 55%, rgba(231, 207, 149, 0.065) 0%, rgba(23, 25, 28, 0) 55%),
        radial-gradient(120% 100% at 85% 0%, rgba(201, 165, 107, 0.04) 0%, rgba(23, 25, 28, 0) 60%);
    pointer-events: none;
}

.gse-soft-glow-span > section {
    position: relative;
    z-index: 1;
}

.gse-perspective {
    position: relative;
    overflow: hidden;
}

.gse-perspective-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    filter: saturate(0.85) contrast(1.08);
}

.gse-perspective::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 25% 10%, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.72) 55%, rgba(0, 0, 0, 0.82) 100%);
    pointer-events: none;
}

.gse-perspective .container {
    position: relative;
    z-index: 1;
}

/* Significance section — editorial plate (about.html)
   Image is a contained plate within a dark editorial section.
   Not a hero. Not a banner. A considered, framed storytelling moment.
   Full composition preserved — avenue, pathway, and distant residence intact. */
.gse-perspective-story {
    background: linear-gradient(180deg, #1c212a 0%, var(--gse-charcoal) 50%, #1a1f26 100%);
    padding: clamp(5rem, 8vw, 8rem) 0;
}

/* Constrained editorial plate — side margins at wide viewports signal restraint */
.gse-perspective-story-inner {
    position: relative;
    max-width: min(900px, 88%);
    margin: 0 auto;
    line-height: 0;
    overflow: hidden;
    box-shadow:
        0 50px 100px rgba(0,0,0,0.55),
        0 20px 40px rgba(0,0,0,0.30);
}

.gse-perspective-story-img {
    width: 100%;
    height: auto; /* Natural proportions — zero forced cropping */
    display: block;
    filter: saturate(0.84) contrast(1.06) brightness(0.74);
}

.gse-perspective-story-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0,0,0,0.55) 0%,
            rgba(0,0,0,0.08) 20%,
            rgba(0,0,0,0.05) 55%,
            rgba(0,0,0,0.22) 80%,
            rgba(0,0,0,0.46) 100%
        ),
        radial-gradient(ellipse 60% 40% at 50% 42%,
            rgba(0,0,0,0.28) 0%,
            rgba(0,0,0,0.00) 100%
        );
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.9;
}

.gse-perspective-story-overlay .container {
    position: relative;
    z-index: 1;
}

/* Text shadow for readability against varied image tones */
.gse-perspective-story-overlay .gse-perspective-quote,
.gse-perspective-story-overlay .text-primary {
    text-shadow: 0 2px 20px rgba(0,0,0,0.65);
}

@media (max-width: 575.98px) {
    .gse-perspective-story {
        padding: clamp(3.5rem, 6vw, 5rem) 0;
    }
    .gse-perspective-story-inner {
        max-width: 94%;
    }
}

.gse-perspective-card {
    background-color: rgba(var(--gse-charcoal-rgb), 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(var(--bs-primary-rgb), 0.18);
}

.gse-perspective-card h2 {
    line-height: 1.25;
}

.gse-access-panel {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(var(--bs-primary-rgb), 0.16);
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    /* overflow: hidden removed — was clipping grid content in long-description panels */
}

.gse-access-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 700px at 15% 0%, rgba(var(--bs-primary-rgb), 0.10) 0%, rgba(var(--bs-primary-rgb), 0.00) 55%),
        radial-gradient(900px 520px at 95% 30%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.00) 62%);
    pointer-events: none;
}

.gse-access-panel > * {
    position: relative;
    z-index: 1;
}

/* .gse-access-panel translateX shift removed — caused right-overflow on discipline pages */

.gse-access-item {
    display: grid;
    grid-template-columns: 2.75rem 1fr auto;
    gap: 1rem;
    align-items: start; /* start: correct for multi-line rows; center caused title to float mid-row */
    padding: 1.05rem 0;
    border-bottom: 1px solid rgba(var(--bs-white-rgb), 0.08);
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    transition: border-color 0.35s ease-in-out, color 0.35s ease-in-out, transform 0.35s ease-in-out;
}

.gse-access-item:hover {
    color: var(--bs-white);
    border-bottom-color: rgba(var(--bs-primary-rgb), 0.25);
}

.gse-access-item:focus-visible {
    outline: none;
    border-bottom-color: rgba(var(--bs-primary-rgb), 0.35);
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.14);
}

.gse-access-no {
    font-family: var(--gse-font-display) !important;
    font-weight: 300;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    color: rgba(231, 207, 149, 0.95);
    opacity: 0.85;
}

.gse-access-item .gse-access-title {
    font-family: var(--gse-font-display) !important;
    letter-spacing: 0.16rem;
    text-transform: uppercase;
    font-weight: 400;
    font-size: clamp(1.05rem, 1.35vw, 1.35rem);
    line-height: 1.2;
    margin: 0;
    min-width: 0; /* prevents title overflowing into meta column */
}

.gse-access-item .gse-access-meta {
    letter-spacing: 0.14rem;
    text-transform: uppercase;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap; /* retained for short labels/icons; use --described for text descriptions */
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Described variant — 2-column layout for items with sentence-length descriptions.
   Use instead of 3-column when meta is more than a label or arrow. */
.gse-access-item--described {
    grid-template-columns: 2.75rem 1fr;
    align-items: start;
}

.gse-access-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.gse-access-desc {
    font-family: var(--gse-font-body) !important;
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.48);
    letter-spacing: 0.02rem;
    text-transform: none;
    line-height: 1.65;
    margin: 0;
    min-width: 0;
    overflow-wrap: break-word;
}

.gse-access-item .gse-access-meta i {
    transition: transform 0.35s ease-in-out;
}

.gse-access-item:hover .gse-access-meta {
    color: rgba(231, 207, 149, 0.95);
}

.gse-access-item:hover .gse-access-meta i {
    transform: translateX(4px);
}

.gse-access-item.gse-access-item--last {
    border-bottom: 0;
}

.gse-process-step {
    border: 1px solid rgba(var(--bs-white-rgb), 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.gse-process-step .gse-step-no {
    font-family: var(--gse-font-body) !important;
    font-weight: 500;
    letter-spacing: 0.18rem;
    color: rgba(231, 207, 149, 0.95);
}

.gse-collection-index {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(16px, 2.2vw, 28px);
    margin-bottom: 3rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(var(--bs-white-rgb), 0.08);
}

.gse-collection-index a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0;
    font-family: var(--gse-font-body);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    font-size: 0.78rem;
    transition: color 0.35s ease-in-out;
}

.gse-collection-index a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.55rem;
    height: 1px;
    background: rgba(var(--bs-primary-rgb), 0.58);
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
    transition: transform 0.35s ease-in-out, opacity 0.35s ease-in-out;
}

.gse-collection-index a:hover,
.gse-collection-index a.active {
    color: rgba(231, 207, 149, 0.98);
}

.gse-collection-index a:hover::after,
.gse-collection-index a.active::after {
    transform: scaleX(1);
    opacity: 1;
}

.gse-collection-index a:focus-visible {
    outline: none;
    border-radius: 2px;
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.16);
}

.gse-anchor {
    scroll-margin-top: 120px;
}

.gse-collection-card {
    display: block;
    background: rgba(255, 255, 255, 0.012);
    border: 1px solid rgba(var(--bs-white-rgb), 0.06);
    transition: border-color 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
}

.gse-collection-media {
    position: relative;
    overflow: hidden;
}

.gse-collection-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.22) 55%, rgba(0, 0, 0, 0.34) 100%);
    pointer-events: none;
}

.gse-collection-media img {
    width: 100%;
    height: clamp(320px, 26vw, 420px);
    object-fit: cover;
    filter: saturate(0.90) contrast(1.04) brightness(0.84);
    transition: transform 1.25s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease-in-out;
}

.gse-collection-card:hover .gse-collection-media img {
    transform: scale(1.03);
    filter: saturate(0.92) contrast(1.04) brightness(0.90);
}

.gse-collection-card .gse-collection-body {
    padding: 1.75rem 1.75rem 1.6rem;
    background: rgba(255, 255, 255, 0.016);
    border-top: 1px solid rgba(var(--bs-white-rgb), 0.06);
}

.gse-collection-card .gse-collection-kicker {
    letter-spacing: 0.22rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: rgba(231, 207, 149, 0.98);
}

.gse-collection-card .gse-collection-title {
    font-family: var(--gse-font-display) !important;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    font-weight: 400;
    font-size: clamp(1.2rem, 1.55vw, 1.45rem);
    color: rgba(255, 255, 255, 0.95);
    margin: 0.35rem 0 0.5rem;
    line-height: 1.15;
    transition: color 0.35s ease-in-out;
}

.gse-collection-card:hover .gse-collection-title {
    color: rgba(231, 207, 149, 0.98);
}

.gse-collection-card .gse-collection-note {
    color: rgba(255, 255, 255, 0.62);
    font-weight: 300;
    letter-spacing: 0.06rem;
    font-size: 0.98rem;
}

.gse-collection-card .gse-collection-cta {
    letter-spacing: 0.14rem;
    text-transform: uppercase;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 1.25rem;
}

.gse-collection-card:hover {
    border-color: rgba(var(--bs-primary-rgb), 0.22);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

.gse-collection-card--overlay {
    position: relative;
    overflow: hidden;
}

.gse-collection-card--overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.44) 62%, rgba(0, 0, 0, 0.70) 100%);
    pointer-events: none;
}

.gse-collection-card--overlay .gse-collection-media::after {
    display: none;
}

.gse-collection-card--overlay .gse-collection-media img {
    height: clamp(460px, 38vw, 640px);
    filter: saturate(0.90) contrast(1.05) brightness(0.82);
}

.gse-collection-card--overlay .gse-collection-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2.25rem 2.25rem 2rem;
    background: transparent;
    border-top: 0;
    z-index: 1;
}

.gse-collection-card--overlay .gse-collection-title {
    font-size: clamp(1.55rem, 2.1vw, 2.05rem);
    margin-bottom: 0.65rem;
}

.gse-collection-card--overlay .gse-collection-note {
    color: rgba(255, 255, 255, 0.72);
    max-width: 56ch;
}

.gse-collection--estates .gse-collection-list .gse-collection-card {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.gse-collection--estates .gse-collection-featured .gse-collection-card {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.gse-collection--estates .gse-collection-card:not(.gse-collection-card--overlay) .gse-collection-body {
    padding: 2rem 2rem 1.75rem;
    background: rgba(255, 255, 255, 0.02);
}

.gse-collection--estates .gse-collection-kicker {
    margin-bottom: 0.25rem;
}

.gse-collection--estates .gse-collection-title {
    margin: 0.25rem 0 1rem;
}

.gse-collection--estates .gse-collection-cta {
    margin-top: 1.15rem;
}

.gse-collection-card:focus-visible {
    outline: none;
    border-color: rgba(var(--bs-primary-rgb), 0.38);
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.16), 0 22px 70px rgba(0, 0, 0, 0.45);
}

@media (min-width: 992px) {
    .gse-collection--estates .gse-collection-card:not(.gse-collection-card--overlay) {
        display: grid;
        grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
        align-items: stretch;
    }

    .gse-collection--estates .gse-collection-card:not(.gse-collection-card--overlay) .gse-collection-media img {
        height: 100%;
        min-height: 320px;
        max-height: 380px;
    }

    .gse-collection--estates .gse-collection-card:not(.gse-collection-card--overlay) .gse-collection-body {
        border-top: 0;
        border-left: 1px solid rgba(var(--bs-white-rgb), 0.06);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
}

.brand-mark--light {
    /* SVG logo renders in Soft Ivory (#F5F2EA) natively — no filter required */
}

.brand-mark--footer {
    max-height: 35px;
}

.gse-project-feature {
    overflow: hidden;
    flex: 1 1 auto;
    min-height: clamp(460px, 40vw, 640px);
}

.gse-project-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gse-project-secondary img {
    height: clamp(220px, 22vw, 280px);
    object-fit: cover;
}

.gse-highlights-head {
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
}

.gse-highlights-grid {
    display: grid;
    gap: 1.25rem;
}

.gse-highlight-tile {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(var(--bs-white-rgb), 0.06);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
    transition: transform 0.35s ease-in-out, box-shadow 0.35s ease-in-out, border-color 0.35s ease-in-out;
}

.gse-highlight-tile:focus-visible {
    outline: none;
    border-color: rgba(var(--bs-primary-rgb), 0.38);
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.16), 0 22px 70px rgba(0, 0, 0, 0.45);
}

.gse-highlight-tile figure {
    position: relative;
}

.gse-highlight-tile figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.22) 52%, rgba(0, 0, 0, 0.66) 100%);
    pointer-events: none;
    z-index: 1;
}

.gse-highlight-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.05) brightness(0.82);
    position: relative;
    z-index: 0;
}

.gse-highlight-caption {
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1.05rem;
    padding: 1rem 1.05rem 0.95rem;
    background: rgba(var(--charcoal-rgb), 0.62);
    border: 1px solid rgba(var(--bs-white-rgb), 0.09);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
}

.gse-highlight-kicker {
    letter-spacing: 0.22rem;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: rgba(var(--gold-rgb), 0.96);
    margin-bottom: 0.4rem;
}

.gse-highlight-title {
    font-family: var(--gse-font-display) !important;
    font-size: clamp(22px, 2.2vw, 34px);
    font-weight: 500;
    letter-spacing: -0.01em;
    text-transform: none;
    color: var(--off-white);
    line-height: 1.12;
    margin-bottom: 0.45rem;
}

.gse-highlight-cta {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(var(--stone-grey-rgb), 0.92);
}

.gse-highlight-tile:hover .gse-highlight-cta {
    color: rgba(var(--gold-rgb), 0.94);
}

.gse-highlight-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--bs-primary-rgb), 0.22);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.46);
}

@media (min-width: 992px) {
    .gse-highlights-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .gse-highlight-tile--featured {
        grid-column: 1 / span 8;
        grid-row: 1 / span 2;
        min-height: clamp(520px, 44vw, 660px);
    }

    .gse-highlight-tile--secondary-a {
        grid-column: 9 / span 4;
        grid-row: 1 / span 1;
        min-height: clamp(260px, 22vw, 320px);
    }

    .gse-highlight-tile--secondary-b {
        grid-column: 7 / span 6;
        grid-row: 2 / span 1;
        min-height: clamp(320px, 28vw, 380px);
        margin-top: -1.25rem;
        z-index: 2;
    }
}

@media (max-width: 991.98px) {
    .gse-highlight-tile {
        min-height: 320px;
    }
}

.gse-service-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    line-height: 1.6;
    min-height: 4.8em;
    max-height: 4.8em;
}

.gse-service-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 1.35rem;
    line-height: 1.25;
    min-height: 3em;
    max-height: 3em;
}

.gse-home-about-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

.gse-home-about-card h2 {
    line-height: 1.08;
    letter-spacing: -0.01em;
}

/* Single property dossier hero */
.hero-editorial--property {
    padding-top: 0 !important;
    padding-bottom: clamp(4rem, 8vw, 8rem);
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
}

.hero-editorial--property .hero-bg {
    display: block !important;
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(0.86) contrast(1.06) brightness(0.72);
    transform: scale(1.02);
    transition: transform 10s ease-out;
}

.hero-editorial--property::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.22) 35%,
        rgba(0, 0, 0, 0.62) 72%,
        rgba(0, 0, 0, 0.82) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-editorial--property .hero-inner {
    position: relative;
    z-index: 2;
}

.hero-editorial--property h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 5.5vw, 82px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--off-white);
    margin-bottom: 1.5rem;
}

.hero-editorial--property .lead {
    max-width: 60ch;
    color: rgba(245, 243, 239, 0.80);
    line-height: 1.85;
    font-size: 1.1rem;
}

@media (max-width: 767.98px) {
    .hero-editorial--property {
        min-height: 70vh;
        padding-bottom: 3.5rem;
    }
}

/* Property dossier — attribute list */
.gse-dossier-attr {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gse-dossier-attr:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.gse-dossier-label {
    font-family: var(--gse-font-display) !important;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22rem;
    text-transform: uppercase;
    color: rgba(231, 207, 149, 0.85);
    margin-bottom: 0.35rem;
}

.gse-dossier-value {
    font-weight: 300;
    font-size: 1.05rem;
    color: rgba(245, 243, 239, 0.80);
    line-height: 1.5;
}

/* Property enquiry section */
.gse-property-enquiry {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: clamp(4rem, 8vw, 7rem);
    padding-bottom: clamp(4rem, 8vw, 7rem);
}

/* About page — perspective pull-quote */
.gse-perspective-quote {
    font-family: var(--gse-font-display);
    font-size: clamp(1.85rem, 3.8vw, 3.2rem);
    font-weight: 300;
    line-height: 1.45;
    color: rgba(245, 243, 239, 0.92);
    letter-spacing: -0.01em;
    font-style: italic;
    margin: 0;
}

/* About page — quality description */
.gse-quality-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(245, 243, 239, 0.65);
    letter-spacing: 0.01rem;
}

/* Document pages — text-only editorial hero (Privacy, Legal) */
.hero-editorial--document {
    padding-top: clamp(10rem, 14vw, 14rem);
    padding-bottom: clamp(4rem, 6vw, 6rem);
    display: flex;
    align-items: center;
}

.hero-editorial--document h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--off-white);
    margin-bottom: 0;
}

.hero-editorial--document .lead {
    max-width: 56ch;
    color: rgba(245, 243, 239, 0.68);
    line-height: 1.9;
    font-size: 1.05rem;
}

@media (max-width: 767.98px) {
    .hero-editorial--document {
        padding-top: 9rem;
        padding-bottom: 3.5rem;
    }
}

/* Privacy and Legal page content */
.gse-privacy-section {
    padding-top: 2.5rem;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gse-privacy-section:first-child {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}

.gse-privacy-heading {
    font-family: var(--gse-font-display) !important;
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.01em;
    color: rgba(245, 243, 239, 0.92);
    margin-bottom: 1.15rem;
}

.gse-privacy-body {
    color: rgba(245, 243, 239, 0.68);
    font-weight: 300;
    line-height: 1.95;
    font-size: 1rem;
    margin-bottom: 0.85rem;
}

.gse-privacy-body:last-child {
    margin-bottom: 0;
}

.gse-privacy-list {
    color: rgba(245, 243, 239, 0.68);
    font-weight: 300;
    line-height: 1.9;
    font-size: 1rem;
    padding-left: 1.15rem;
    margin-bottom: 0;
}

.gse-privacy-list li {
    margin-bottom: 0.65rem;
}

.gse-privacy-list li:last-child {
    margin-bottom: 0;
}

.gse-privacy-meta {
    color: rgba(245, 243, 239, 0.38);
    letter-spacing: 0.04rem;
}

/* Access page — editorial statement */
.gse-editorial-statement {
    font-family: var(--gse-font-display);
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 300;
    line-height: 1.65;
    color: rgba(245, 243, 239, 0.82);
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

/* Access page — principles */
.gse-principle-item {
    display: flex;
    gap: 1.25rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gse-principle-no {
    font-family: var(--gse-font-display) !important;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.55;
    min-width: 2rem;
    padding-top: 0.1rem;
    letter-spacing: 0.05em;
}

.gse-principle-title {
    font-family: var(--gse-font-display) !important;
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(245, 243, 239, 0.92);
    margin-bottom: 0.55rem;
    line-height: 1.3;
}

.gse-principle-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(245, 243, 239, 0.58);
    font-weight: 300;
    letter-spacing: 0.01rem;
}

/* Access page — engagement note */
.gse-engagement-note {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(245, 243, 239, 0.72);
    letter-spacing: 0.02rem;
}

.gse-rep-shell {
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}

.gse-rep-intro h2 {
    max-width: 18ch;
    font-size: clamp(38px, 4vw, 52px); /* Reduced size by ~15% for restraint */
    line-height: 1.15;
}

.gse-rep-intro p {
    letter-spacing: normal !important;
    margin-top: 1.5rem; /* More breathing room */
}

.gse-rep-intro p.opacity-75 {
    opacity: 0.88 !important;
}

.gse-representation-insignia {
    display: none; /* Removed background watermark completely */
}

.gse-rep-list {
    display: flex;
    flex-direction: column;
}

.gse-rep-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.1rem 0; /* Tightened by ~10% */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
}

.gse-rep-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.4;
}

.gse-rep-item:hover::after {
    width: 100%;
}

.gse-rep-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gse-rep-item:hover {
    transform: translateX(8px); /* Subtle shift instead of lift */
    color: var(--off-white);
}

.gse-rep-item:focus-visible {
    outline: 2px solid rgba(var(--bs-primary-rgb), 0.55);
    outline-offset: 6px;
}

.gse-rep-no {
    font-family: var(--gse-font-display) !important; /* Roman numerals look better in display font */
    min-width: 3.25rem;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.1em;
    opacity: 0.45;
    padding-top: 0.1rem;
    color: var(--gold);
}

.gse-rep-body {
    flex: 1 1 auto;
    min-width: 0;
}

.gse-rep-title {
    font-family: var(--gse-font-display) !important;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.1em !important;
    line-height: 1.2;
    margin-bottom: 0.35rem;
    color: var(--off-white);
}

.gse-rep-desc {
    font-size: 15px;
    line-height: 1.7;
    max-width: 52ch;
    color: rgba(245, 243, 239, 0.65);
}

.gse-rep-desc.opacity-75 {
    opacity: 0.88 !important;
}

.gse-rep-cta {
    display: none; /* Removed arrow container */
}

@media (min-width: 992px) {
    .gse-rep-item { padding: 1.4rem 0; } /* Tightened by ~10% from 1.55rem */
    .gse-rep-desc { max-width: 56ch; }
}

.gse-home-about-card .gse-home-about-copy {
    flex: 1 1 auto;
    min-height: 0;
    overflow: visible;
    letter-spacing: normal !important;
}

.gse-page--home .gse-home-about-copy.opacity-75 {
    opacity: 0.92 !important;
}

@media (min-width: 992px) {
    .gse-page--home .gse-home-about-card {
        min-height: clamp(420px, 34vw, 520px);
        margin-left: -2rem !important;
    }
}

.gse-home-about-card .gse-home-about-copy p:last-child {
    margin-bottom: 0;
}

.gse-home-about-card .btn {
    margin-top: 1.25rem;
    align-self: flex-start;
}

@media (max-width: 991.98px) {
    :root {
        --gse-hero-min-height: 560px;
        --gse-hero-pad-top: 10rem;
        --gse-hero-pad-bottom: 5.5rem;
    }
    .gse-page--home .gse-home-about-card { margin-top: -2rem !important; }
    .gse-project-feature,
    .gse-project-feature img,
    .gse-project-secondary img { height: auto; }
    .gse-service-title { font-size: 1.2rem; }
    .navbar-header .navbar-nav .nav-link { font-size: 14px; }
}

/* Navbar */
.navbar-header .navbar-nav .nav-link {
    color: var(--bs-white);
}

.navbar-header .navbar-nav,
.navbar-header .navbar-nav .nav-link,
.navbar-header .navbar-nav .dropdown-menu,
.navbar-header .navbar-nav .dropdown-item {
    font-family: 'Inter', sans-serif !important;
}

.navbar-header .navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase !important;
}

.navbar-header .navbar-nav .dropdown-menu {
    letter-spacing: 0.06rem;
}

.navbar-header .navbar-nav .dropdown-item {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase !important;
}

.navbar-header .navbar-nav .nav-link.active,
.navbar-header .navbar-nav .nav-link.show {
    color: var(--bs-primary);
    font-weight: 500;
}

/* Background opacity */
.bg-opacity-0 {
    --bs-bg-opacity: 0;
}

/* Editorial About Section */
.editorial-about {
    background-color: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.editorial-about-content {
    max-width: 640px;
    position: relative;
    z-index: 2;
}

.editorial-about-brand {
    font-size: clamp(2.8rem, 4.5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.editorial-about-statement {
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: rgba(245, 243, 239, 0.8);
    margin-bottom: 4rem;
    max-width: 22ch; /* Controlled line length for editorial feel */
}

.editorial-about-copy {
    font-size: 1.15rem;
    line-height: 2.0;
    color: rgba(245, 243, 239, 0.78);
    max-width: 52ch;
    letter-spacing: 0.13rem;
}

.editorial-about-image-wrapper {
    position: relative;
    padding-bottom: 125%; /* Slightly adjusted proportions for better detail visibility */
    overflow: hidden;
    background: #1a1a1a;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    
    /* Sophisticated parchment-style depth for archival print */
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 15px 30px -15px rgba(0, 0, 0, 0.6),
        inset 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.editorial-about-image-wrapper:hover {
    transform: translateY(-5px);
}

.editorial-about-image-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Warm editorial grading: subtle desaturation + sepia hint */
    filter: saturate(0.85) contrast(1.02) sepia(0.12) brightness(0.98);
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.editorial-about-image-wrapper:hover img {
    filter: saturate(1) contrast(1.05) sepia(0) brightness(1);
}

@media (min-width: 992px) {
    .editorial-about-image-wrapper {
        margin-top: 13.5rem; /* Lowered by ~40px to align with body copy */
        margin-left: -2rem; /* Visually connected to narrative */
        max-width: 100%;
        z-index: 3;
    }
    
    .editorial-about-content {
        padding-right: 0rem; 
    }
}

@media (max-width: 991.98px) {
    .editorial-about-image-wrapper {
        padding-bottom: 100%;
        margin-top: 4rem;
        margin-bottom: 2rem;
    }
}

.header-background {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.header-background::after {
    content: "";
    background-image: linear-gradient(0deg, rgba(33, 37, 41, 1) 1%, rgba(33, 37, 41, 0.9) 100%, rgba(33, 37, 41, 0.85) 100%);
    z-index: 0;
}

/* Button */
.btn {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: all 0.3s ease; /* Added for elegant transitions */
    border-radius: 0;
}

.btn.ls-0,
.btn.ls-1,
.btn.ls-2,
.btn.ls-3,
.btn.ls-4,
.btn.ls-5 {
    letter-spacing: 0.22em !important;
}

.btn-primary {
    --bs-btn-bg: var(--gold);
    --bs-btn-border-color: var(--gold);
    --bs-btn-color: #FFFFFF;
    --bs-btn-hover-bg: #b8914a; /* Slightly darker gold for subtle hover */
    --bs-btn-hover-border-color: #b8914a;
    --bs-btn-hover-color: #FFFFFF;
    --bs-btn-active-bg: #b8914a;
    --bs-btn-active-border-color: #b8914a;
    --bs-btn-active-color: #FFFFFF;
    --bs-btn-disabled-bg: var(--gold);
    --bs-btn-disabled-border-color: var(--gold);
    --bs-btn-disabled-color: #FFFFFF;
}

.btn-outline-light {
    --bs-btn-color: var(--bs-white);
    --bs-btn-border-color: rgba(255, 255, 255, 0.2); /* Subtle white border */
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.05); /* Very subtle background change on hover */
    --bs-btn-hover-border-color: rgba(255, 255, 255, 0.4);
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-bg: rgba(255, 255, 255, 0.1); /* Subtle active state */
    --bs-btn-active-border-color: rgba(255, 255, 255, 0.5);
    --bs-btn-disabled-color: rgba(255, 255, 255, 0.5);
    --bs-btn-disabled-border-color: rgba(255, 255, 255, 0.1);
}

/* Figure & Image */
figure {
    --bs-figure-image-transition: all 0.45s ease-in-out;
    --bs-figure-image-scale: 1
}

figure.image-hover-scale {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden
}

figure.image-hover-scale img {
    transition: var(--bs-figure-image-transition)
}

figure.image-hover-scale:hover img,
.card:hover figure.image-hover-scale img {
    transform: scale(var(--bs-figure-image-scale))
}


.transition-all { transition: all 0.4s ease-in-out; }
.hover-translate-y:hover { transform: translateY(-6px); }

/* Custom Spacing & Utilities */
.pt-10 { padding-top: 4.5rem !important; }
.pb-10 { padding-bottom: 4.5rem !important; }
.pt-8 { padding-top: 3.5rem !important; }
.pb-8 { padding-bottom: 3.5rem !important; }
.pt-12 { padding-top: 5.5rem !important; }
.mt-8 { margin-top: 3.5rem !important; }
.mb-8 { margin-bottom: 3.5rem !important; }
.py-8 { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
.mt-10 { margin-top: 4.5rem !important; }
.mb-10 { margin-bottom: 4.5rem !important; }
.py-10 { padding-top: 4.5rem !important; padding-bottom: 4.5rem !important; }

/* Extra Spacing for Luxury Hero-to-Content Gap */
.pt-15 { padding-top: 7.5rem !important; }
.pb-15 { padding-bottom: 7.5rem !important; }
.py-15 { padding-top: 7.5rem !important; padding-bottom: 7.5rem !important; }

/* Luxury Accents */
.luxury-box {
    border: 1px solid rgba(var(--bs-primary-rgb), 0.15);
}

.text-watermark {
    position: absolute;
    right: 2rem;
    top: 1rem;
    font-size: 8rem;
    font-family: var(--gse-font-display);
    font-weight: 700;
    line-height: 1;
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
}

.image-reveal-container {
    overflow: hidden;
    position: relative;
}

.gse-page--home .image-reveal-container::after,
.gse-page--home figure.image-hover-scale::after,
.gse-page--home .gse-project-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.22) 55%, rgba(0, 0, 0, 0.34) 100%);
    pointer-events: none;
}

.gse-page--home .image-reveal-container img,
.gse-page--home figure.image-hover-scale img,
.gse-page--home .gse-project-feature img,
.gse-page--home .gse-project-secondary img {
    filter: brightness(0.84) contrast(1.05) saturate(0.92);
}

.gse-page--home .hero-editorial .hero-bg {
    transform: none;
}

.gse-page--home .image-reveal-container img,
.gse-page--home figure.image-hover-scale img {
    transition: none !important;
    transform: none !important;
}

.gse-page--home .image-reveal-container:hover img,
.gse-page--home figure.image-hover-scale:hover img,
.gse-page--home .card:hover figure.image-hover-scale img {
    transform: none !important;
}

.gse-page--home .gse-highlight-tile {
    transition: box-shadow 0.35s ease-in-out, border-color 0.35s ease-in-out;
}

.gse-page--home .gse-highlight-tile:hover {
    transform: none;
}

.gse-page--home .gse-rep-item {
    transition: border-color 220ms ease, color 220ms ease, opacity 220ms ease;
}

.gse-page--home .gse-rep-item:hover {
    transform: none;
    opacity: 0.92;
}

.image-reveal-container img {
    transition: filter 220ms ease, opacity 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
    .image-reveal-container:hover img {
        transform: none;
    }
}

@media (min-width: 992px) {
     .ms-lg-n5 { margin-left: -3rem !important; }
     .me-lg-n5 { margin-right: -3rem !important; }
     .gse-sync-height { height: clamp(460px, 38vw, 560px); }
     .image-reveal-container.gse-sync-height img { width: 100%; height: 100%; object-fit: cover; }
 }
.mt-n5 { margin-top: -3rem !important; }

/* Scroll to top */
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    background: var(--bs-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: opacity .35s ease, background-color .25s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.15rem
}

.scroll-top:hover {
    background: var(--bs-link-hover-color)
}

.scroll-top:focus-visible {
    outline: 2px solid rgba(var(--bs-primary-rgb), 0.75);
    outline-offset: 3px;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1
}

@media (prefers-reduced-motion: reduce) {
    #header,
    .scroll-top,
    .image-reveal-container img,
    .gse-highlight-tile,
    .gse-rep-item {
        transition: none !important;
        animation: none !important;
    }

    .image-reveal-container:hover img {
        transform: none !important;
    }
}

/* ============================================================
   EMERGING ADDRESSES — Cinematic & Editorial Card System
   ============================================================ */

/* Warm hero image grading for Emerging Addresses page */
body.gse-page--ea .gse-hero-collection-main {
    filter: saturate(0.84) contrast(1.06) sepia(0.12) brightness(0.80) !important;
}

body.gse-page--ea .gse-hero-collection-accent {
    filter: saturate(0.76) contrast(1.04) sepia(0.16) brightness(0.68) !important;
}

/* Warm filter for all cards within the Emerging Addresses section */
.gse-collection--ea .gse-collection-card .gse-collection-media img {
    filter: saturate(0.86) contrast(1.05) sepia(0.10) brightness(0.82) !important;
}

.gse-collection--ea .gse-collection-card:hover .gse-collection-media img {
    filter: saturate(0.92) contrast(1.04) sepia(0.04) brightness(0.90) !important;
}

/* Cinematic: full-width, tall, warm, story-leading */
.gse-collection-card--cinematic::after {
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.02) 0%,
        rgba(0,0,0,0.14) 42%,
        rgba(0,0,0,0.70) 78%,
        rgba(0,0,0,0.86) 100%
    );
}

.gse-collection-card--cinematic .gse-collection-media img {
    height: clamp(500px, 44vw, 680px) !important;
    filter: saturate(0.88) contrast(1.05) sepia(0.10) brightness(0.80) !important;
    transition: transform 2.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease-in-out !important;
}

.gse-collection-card--cinematic:hover .gse-collection-media img {
    transform: scale(1.018) !important;
    filter: saturate(0.92) contrast(1.04) sepia(0.04) brightness(0.88) !important;
}

.gse-collection-card--cinematic .gse-collection-body {
    padding: clamp(2rem, 3.5vw, 3.25rem) !important;
}

.gse-collection-card--cinematic .gse-collection-title {
    font-size: clamp(1.8rem, 2.8vw, 2.75rem) !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 0.8rem !important;
}

.gse-collection-card--cinematic .gse-collection-note {
    max-width: 56ch;
    color: rgba(255,255,255,0.76) !important;
    line-height: 1.78 !important;
}

.gse-collection-card--cinematic .gse-collection-cta {
    margin-top: 1.5rem !important;
}

/* Editorial horizontal card: image fills left 60%, narrative fills right */
.gse-collection-card--editorial {
    display: block;
}

.gse-collection-card--editorial .gse-collection-media::after {
    display: none;
}

.gse-collection-card--editorial .gse-collection-media img {
    width: 100%;
    height: clamp(300px, 26vw, 420px) !important;
    filter: saturate(0.88) contrast(1.04) sepia(0.10) brightness(0.84) !important;
    transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.gse-collection-card--editorial:hover .gse-collection-media img {
    transform: scale(1.030) !important;
}

.gse-collection-card--editorial .gse-collection-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gse-collection-card--editorial .gse-collection-title {
    font-size: clamp(1.35rem, 1.75vw, 1.82rem) !important;
    margin-bottom: 0.75rem !important;
}

.gse-collection-card--editorial .gse-collection-note {
    font-size: 0.98rem;
    line-height: 1.85 !important;
    color: rgba(255,255,255,0.60) !important;
}

.gse-collection-card--editorial .gse-collection-cta {
    margin-top: 1.35rem !important;
}

@media (min-width: 992px) {
    .gse-collection-card--editorial {
        display: grid;
        grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
        align-items: stretch;
    }

    .gse-collection-card--editorial .gse-collection-media img {
        height: 100% !important;
        min-height: 360px;
        max-height: 480px;
    }

    .gse-collection-card--editorial .gse-collection-body {
        border-top: 0 !important;
        border-left: 1px solid rgba(var(--bs-white-rgb), 0.06);
        padding: clamp(2rem, 3vw, 2.75rem) !important;
    }
}

/* Location thesis — editorial pull-quote between cards */
.gse-ea-thesis {
    padding: clamp(4rem, 6.5vw, 6.5rem) 0;
    border-top: 1px solid rgba(var(--bs-white-rgb), 0.07);
    border-bottom: 1px solid rgba(var(--bs-white-rgb), 0.07);
}

.gse-ea-thesis-eyebrow {
    display: block;
    font-family: var(--gse-font-body) !important;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.78;
    margin-bottom: 1.75rem;
}

.gse-ea-thesis-statement {
    font-family: var(--gse-font-display);
    font-size: clamp(1.52rem, 2.4vw, 2.15rem);
    font-weight: 300;
    line-height: 1.52;
    color: rgba(245,243,239,0.86);
    letter-spacing: -0.01em;
    font-style: italic;
    max-width: 22ch;
    margin: 0;
}

/* ============================================================
   INCOME HOLDINGS — Portfolio Card & Investment Sections
   ============================================================ */

/* Slightly cooler body background on Income Holdings page */
body.bg-dark.gse-page--income {
    background:
        radial-gradient(140% 90% at 20% 0%, rgba(191,195,201,0.018) 0%, rgba(34,40,49,0) 55%),
        linear-gradient(180deg, #212835 0%, #1c2230 28%, #161a20 100%);
    background-color: #1c2230 !important;
}

/* Income hero single image: architectural, cool, disciplined */
.gse-hero-income-stack {
    position: relative;
    margin-left: auto;
    max-width: 520px;
}

.gse-hero-income-main {
    display: block;
    width: 100%;
    height: clamp(320px, 28vw, 460px);
    object-fit: cover;
    border: 1px solid rgba(var(--bs-white-rgb), 0.06);
    box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 12px 24px rgba(0,0,0,0.22);
    filter: saturate(0.60) contrast(1.15) brightness(0.78);
    -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, #000 18%, #000 100%);
    mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, #000 18%, #000 100%);
    transform: translateX(18px);
}

/* Portfolio card: structured asset presentation */
.gse-portfolio-card {
    display: block;
    text-decoration: none;
    background: rgba(255,255,255,0.012);
    border: 1px solid rgba(var(--bs-white-rgb), 0.08);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

.gse-portfolio-card:hover {
    border-color: rgba(var(--bs-primary-rgb), 0.22);
    box-shadow: 0 18px 50px rgba(0,0,0,0.40);
}

.gse-portfolio-card .gse-collection-media {
    overflow: hidden;
    position: relative;
}

.gse-portfolio-card .gse-collection-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.30) 100%);
    pointer-events: none;
}

.gse-portfolio-card .gse-collection-media img {
    width: 100%;
    height: clamp(220px, 17vw, 270px);
    object-fit: cover;
    filter: saturate(0.62) contrast(1.14) brightness(0.80);
    transition: filter 0.45s ease;
    display: block;
}

.gse-portfolio-card:hover .gse-collection-media img {
    filter: saturate(0.70) contrast(1.10) brightness(0.88);
}

.gse-portfolio-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.75rem;
    border-bottom: 1px solid rgba(var(--bs-white-rgb), 0.07);
    gap: 1rem;
}

.gse-portfolio-type {
    font-family: var(--gse-font-body) !important;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.85;
}

.gse-portfolio-location {
    font-family: var(--gse-font-body) !important;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.36);
    white-space: nowrap;
}

.gse-portfolio-body {
    padding: 1.75rem 1.75rem 1.5rem;
}

.gse-portfolio-title {
    font-family: var(--gse-font-display) !important;
    font-size: clamp(1.1rem, 1.45vw, 1.35rem);
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.95);
    margin-bottom: 0.65rem;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.gse-portfolio-card:hover .gse-portfolio-title {
    color: rgba(231,207,149,0.98);
}

.gse-portfolio-note {
    font-size: 0.92rem;
    line-height: 1.78;
    color: rgba(255,255,255,0.50);
    font-weight: 300;
    margin-bottom: 1.25rem;
}

.gse-portfolio-cta {
    font-family: var(--gse-font-body) !important;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.36);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.gse-portfolio-card:hover .gse-portfolio-cta {
    color: var(--gold);
}

/* Investment character section */
.gse-ih-character {
    padding: clamp(4.5rem, 7vw, 7rem) 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.gse-ih-statement {
    font-family: var(--gse-font-display);
    font-size: clamp(1.3rem, 1.95vw, 1.82rem);
    font-weight: 300;
    line-height: 1.65;
    color: rgba(245,243,239,0.78);
    letter-spacing: -0.01em;
    max-width: 50ch;
    margin-bottom: 0;
}

/* Private Introductions page */
body.bg-dark.gse-page--private {
    background:
        radial-gradient(130% 80% at 12% 0%, rgba(200, 169, 107, 0.022) 0%, rgba(20, 24, 30, 0) 52%),
        linear-gradient(180deg, #141920 0%, #1b2028 35%, #121620 100%);
    background-color: #141920 !important;
}

.hero-editorial--private {
    padding-top: clamp(12rem, 16vw, 16rem);
    padding-bottom: clamp(7rem, 10vw, 10rem);
    min-height: 82vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.hero-editorial--private::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E") repeat;
    pointer-events: none;
    z-index: 0;
}

.hero-editorial--private .hero-inner {
    position: relative;
    z-index: 1;
}

.hero-editorial--private .lead {
    color: rgba(245, 243, 239, 0.72);
    line-height: 2.0;
    max-width: 42ch;
    font-size: 1.12rem;
}

.gse-private-rule {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    opacity: 0.55;
    margin-bottom: 1.75rem;
}

.gse-private-editorial {
    font-size: 1.02rem;
    line-height: 1.95;
    color: rgba(245, 243, 239, 0.62);
    font-weight: 300;
    letter-spacing: 0.01rem;
    max-width: 64ch;
}

.gse-private-invitation {
    font-family: var(--gse-font-display);
    font-size: clamp(1.15rem, 1.6vw, 1.42rem);
    font-weight: 300;
    line-height: 1.72;
    color: rgba(245, 243, 239, 0.80);
    letter-spacing: -0.01em;
    font-style: italic;
    max-width: 52ch;
}

@media (max-width: 991.98px) {
    .hero-editorial--private {
        padding-top: 10rem;
        padding-bottom: 5rem;
        min-height: auto;
        align-items: flex-start;
    }
}

/* slideIn / upDown animations removed — unused on all current pages */

/* ============================================================
   ENQUIRY ACKNOWLEDGEMENT — Bespoke success state
   Replaces Bootstrap alert-success for the code=200 response.
   Mirrors the .gse-dossier-label / .gse-dossier-value hierarchy
   used throughout the site's editorial components.
   ============================================================ */
.gse-acknowledgement {
    position: relative;
    background: linear-gradient(180deg, rgba(24, 28, 36, 0.98) 0%, rgba(18, 22, 28, 0.98) 100%);
    border-top: 1px solid rgba(200, 169, 107, 0.35);
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    padding: 2rem 2.25rem;
    color: rgba(245, 243, 239, 0.82);
}

.gse-ack-dismiss {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    z-index: 1;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    font-size: 1.25rem;
    font-family: var(--gse-font-body);
    font-weight: 300;
    color: rgba(245, 243, 239, 0.72);
    cursor: pointer;
    letter-spacing: 0;
    transition: color 0.2s ease;
}

.gse-ack-dismiss:hover,
.gse-ack-dismiss:focus-visible {
    color: rgba(200, 169, 107, 0.85);
    outline: none;
}

.gse-acknowledgement .gse-ack-title {
    font-family: var(--gse-font-display);
    font-size: 1.08rem;
    font-weight: 400;
    color: rgba(245, 243, 239, 0.72);
    margin: 0 0 0.75rem;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.gse-acknowledgement .gse-ack-body {
    font-family: var(--gse-font-body);
    font-size: 0.92rem;
    font-weight: 300;
    color: rgba(245, 243, 239, 0.82);
    line-height: 1.75;
    margin: 0;
    letter-spacing: 0.02rem;
}

.gse-acknowledgement .gse-ack-ref {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.15rem 0;
    margin: 1.5rem 0;
}

.gse-acknowledgement .gse-ack-ref-label {
    font-family: var(--gse-font-body) !important;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(200, 169, 107, 0.65);
    margin-bottom: 0.35rem;
}

.gse-acknowledgement .gse-ack-ref-value {
    font-family: var(--gse-font-display) !important;
    font-size: 1.12rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    color: rgba(245, 243, 239, 0.92);
    line-height: 1;
}

.gse-acknowledgement .gse-ack-footer {
    font-family: var(--gse-font-body);
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(245, 243, 239, 0.38);
    margin: 0;
    letter-spacing: 0.03rem;
}

.gse-flash-toast.gse-acknowledgement {
    padding: 1.5rem 1.75rem;
}

.gse-flash-toast.gse-acknowledgement .gse-ack-ref {
    margin: 1rem 0;
    padding: 0.85rem 0;
}

@media (max-width: 575.98px) {
    .gse-acknowledgement {
        padding: 1.5rem 1.25rem;
    }
}
