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

    :root {
        --gold: #C9A96E;
        --gold2: #A8863E;
        --gold-dk: #A8863E;
        --black: #0A0A0A;
        --sub: rgba(10, 10, 10, .5);
        --dark: #0F0F0F;
        --darker: #050505;
        --cream: #F0EBE0;
        --cream2: #E8E2D6;
        --serif: 'Cormorant Garamond', Georgia, serif;
        --sans: 'Inter', -apple-system, sans-serif;
        --ease: cubic-bezier(.22, 1, .36, 1);
    }

    html {
        scroll-behavior: smooth
    }

    body {
        font-family: var(--sans);
        background: var(--cream);
        color: var(--dark);
        overflow-x: hidden
    }

    a {
        text-decoration: none;
        color: inherit
    }

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

    .eyebrow {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .45em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 14px;
        display: block
    }

    .heading {
        font-family: var(--serif);
        font-size: clamp(32px, 4vw, 58px);
        font-weight: 300;
        line-height: .96;
        letter-spacing: -.03em;
        color: var(--black)
    }

    .heading em {
        font-style: italic;
        color: var(--gold)
    }

    [data-sr] { opacity: 1; transform: none; }
    [data-sr].visible { opacity: 1; transform: none; }

    /* HERO */
    .ph {
        position: relative;
        height: 580px;
        min-height: 440px;
        display: flex;
        align-items: flex-end;
        overflow: hidden
    }

    .ph__bg {
        position: absolute;
        inset: 0;
        overflow: hidden
    }

    .ph__bg img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transform: scale(1.06);
        animation: hz 12s cubic-bezier(.25, .46, .45, .94) forwards
    }

    @keyframes hz {
        to {
            transform: scale(1)
        }
    }

    .ph__ov {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(5, 5, 5, .92) 0%, rgba(5, 5, 5, .45) 50%, rgba(5, 5, 5, .18) 100%)
    }

    .ph__inner {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 48px 80px
    }

    .ph__kicker {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 20px;
        opacity: 0;
        animation: fi .8s .3s forwards
    }

    .ph__kicker::before {
        content: '';
        display: block;
        width: 28px;
        height: 1px;
        background: var(--gold)
    }

    .ph__title {
        font-family: var(--serif);
        font-size: clamp(50px, 8vw, 108px);
        font-weight: 300;
        line-height: .92;
        color: #fff;
        letter-spacing: -.02em;
        margin-bottom: 28px
    }

    .ph__title em {
        font-style: italic;
        color: var(--gold)
    }

    .ph__sub {
        max-width: 800px;
        font-size: 18px;
        font-weight: 300;
        line-height: 1.75;
        color: rgba(255, 255, 255, .76);
        margin: 0
    }

    .rw {
        overflow: hidden;
        display: block
    }

    .rl {
        display: block;
        transform: translateY(110%);
        opacity: 0;
        animation: lu .9s cubic-bezier(.16, 1, .3, 1) forwards
    }

    .rl.l2 {
        animation-delay: .12s
    }

    .rl.l3 {
        animation-delay: .24s
    }

    @keyframes lu {
        to {
            transform: translateY(0);
            opacity: 1
        }
    }

    @keyframes fi {
        to {
            opacity: 1
        }
    }

    .ph__meta {
        display: flex;
        align-items: center;
        gap: 28px;
        flex-wrap: wrap;
        font-size: 12px;
        color: rgba(255, 255, 255, .6);
        font-weight: 300;
        letter-spacing: .04em;
        opacity: 0;
        animation: fi .8s .65s forwards
    }

    .ph__meta i {
        color: var(--gold);
        font-size: 11px;
        margin-right: 6px
    }

    .ph__cta {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-top: 32px;
        opacity: 0;
        animation: fi .8s .85s forwards
    }

    .btn-g {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 15px 38px;
        background: var(--gold);
        color: #1E1208;
        font-family: var(--sans);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        border-radius: 3px;
        transition: background .25s, transform .2s
    }

    .btn-g:hover {
        background: #E2C98A;
        transform: translateY(-2px)
    }

    .btn-gh {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 15px 30px;
        border: 1px solid rgba(255, 255, 255, .3);
        color: rgba(255, 255, 255, .8);
        font-family: var(--sans);
        font-size: 11px;
        font-weight: 500;
        letter-spacing: .1em;
        text-transform: uppercase;
        border-radius: 3px;
        transition: border-color .25s, color .25s
    }

    .btn-gh:hover {
        border-color: var(--gold);
        color: var(--gold)
    }

    .ph__scroll {
        position: absolute;
        bottom: 32px;
        right: 48px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        opacity: 0;
        animation: fi .6s 1.3s forwards;
        z-index: 2
    }

    .ph__scroll span {
        font-size: 9px;
        font-weight: 600;
        letter-spacing: .2em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .3);
        writing-mode: vertical-rl
    }

    .ph__scroll-ln {
        width: 1px;
        height: 55px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, .3), transparent);
        animation: sp 2s ease-in-out infinite 1.5s
    }

    @keyframes sp {

        0%,
        100% {
            opacity: .3
        }

        50% {
            opacity: 1
        }
    }

    /* STAT BAND */
    .stat-band {
        background: linear-gradient(90deg, #060606 0%, #0d0d0d 50%, #060606 100%);
        border-top: 1px solid rgba(201, 169, 110, .18);
        border-bottom: 1px solid rgba(201, 169, 110, .18);
        position: relative;
        overflow: hidden
    }

    .stat-band::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 120% at 50% 100%, rgba(201, 169, 110, .07) 0%, transparent 70%);
        pointer-events: none
    }

    .stat-band__inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 48px;
        display: flex;
        align-items: stretch;
        position: relative;
        z-index: 1
    }

    .sb-item {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 34px 32px;
        position: relative;
        transition: background .3s
    }

    .sb-item:hover {
        background: rgba(201, 169, 110, .04)
    }

    .sb-item+.sb-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 18%;
        height: 64%;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, .18) 40%, rgba(201, 169, 110, .18) 60%, transparent)
    }

    .sb-icon {
        width: 44px;
        height: 44px;
        border: 1px solid rgba(201, 169, 110, .16);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        background: rgba(201, 169, 110, .06);
        transition: background .3s, border-color .3s
    }

    .sb-icon i {
        color: var(--gold);
        font-size: 16px;
        transition: transform .3s
    }

    .sb-item:hover .sb-icon {
        background: rgba(201, 169, 110, .14);
        border-color: rgba(201, 169, 110, .35)
    }

    .sb-item:hover .sb-icon i {
        transform: scale(1.15)
    }

    .sb-num {
        font-family: var(--serif);
        font-size: clamp(26px, 2.8vw, 40px);
        font-weight: 300;
        color: var(--gold);
        line-height: 1;
        display: block;
        letter-spacing: -.01em
    }

    .sb-lbl {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: rgba(240, 235, 224, .32);
        margin-top: 5px;
        display: block
    }

    /* SPLIT INTRO — DARK */
    .si {
        background: var(--darker);
        padding: 110px 48px
    }

    .si__inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 96px;
        align-items: center
    }

    .si__label {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 10px
    }

    .si__label::before {
        content: '';
        width: 22px;
        height: 1px;
        background: var(--gold);
        display: block
    }

    .si__title {
        font-family: var(--serif);
        font-size: clamp(32px, 3.6vw, 52px);
        font-weight: 300;
        line-height: 1.08;
        letter-spacing: -.02em;
        color: var(--cream);
        margin-bottom: 26px
    }

    .si__title em {
        font-style: italic;
        color: var(--gold)
    }

    .si__body {
        font-size: 18px;
        font-weight: 300;
        line-height: 1.85;
        color: rgba(240, 235, 224, .5);
        margin-bottom: 20px
    }

    .si__body strong {
        font-weight: 500;
        color: var(--cream)
    }

    .si__img-col {
        position: relative
    }

    .si__img {
        width: 100%;
        aspect-ratio: 3/4;
        object-fit: cover;
        border-radius: 4px
    }

    .si__img-badge {
        position: absolute;
        bottom: -20px;
        right: -20px;
        background: var(--gold);
        padding: 20px 24px;
        min-width: 190px
    }

    .si__img-badge strong {
        font-family: var(--serif);
        font-size: 25px;
        font-weight: 300;
        color: #1E1208;
        display: block;
        line-height: 1
    }

    .si__img-badge span {
        font-size: 9px;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: rgba(30, 18, 8, .6);
        margin-top: 4px;
        display: block
    }

    /* GALLERY MOSAIC */
    .gm {
        background: var(--cream);
        padding: 100px 48px
    }

    .gm__inner {
        max-width: 1200px;
        margin: 0 auto
    }

    .gm__hd {
        text-align: center;
        margin-bottom: 52px
    }

    .gm__kicker {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 12px;
        display: block
    }

    .gm__title {
        font-family: var(--serif);
        font-size: clamp(28px, 3.2vw, 44px);
        font-weight: 300;
        color: var(--dark);
        letter-spacing: -.02em
    }

    .gm__mosaic {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr;
        grid-template-rows: 440px 300px;
        gap: 4px
    }

    .gm__item {
        overflow: hidden;
        position: relative
    }

    .gm__item:first-child {
        grid-row: 1/span 2
    }

    .gm__item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .7s cubic-bezier(.16, 1, .3, 1)
    }

    .gm__item:hover img {
        transform: scale(1.06)
    }

    .gm__item__ov {
        position: absolute;
        inset: 0;
        background: rgba(5, 5, 5, 0);
        transition: background .4s;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .gm__item:hover .gm__item__ov {
        background: rgba(5, 5, 5, .28)
    }

    .gm__icon {
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255, 255, 255, .7);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: scale(.7);
        transition: all .3s cubic-bezier(.16, 1, .3, 1)
    }

    .gm__icon i {
        color: #fff;
        font-size: 13px
    }

    .gm__item:hover .gm__icon {
        opacity: 1;
        transform: scale(1)
    }

    /* FEATURES */
    .feat {
        background: var(--cream);
        padding: 110px 48px
    }

    .feat__inner {
        max-width: 1200px;
        margin: 0 auto
    }

    .feat__hd {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: end;
        margin-bottom: 72px
    }

    .feat__kicker {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 10px
    }

    .feat__kicker::before {
        content: '';
        width: 22px;
        height: 1px;
        background: var(--gold);
        display: block
    }

    .feat__title {
        font-family: var(--serif);
        font-size: clamp(30px, 3.4vw, 48px);
        font-weight: 300;
        color: var(--dark);
        letter-spacing: -.02em;
        line-height: 1.1
    }

    .feat__desc {
        font-size: 18px;
        font-weight: 300;
        color: rgba(15, 15, 15, .5);
        line-height: 1.8;
        align-self: end
    }

    .feat__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px
    }

    .fc {
        background: #fff;
        border: 1px solid rgba(15, 15, 15, .08);
        padding: 36px 30px;
        transition: transform .3s, box-shadow .3s, border-color .3s;
        position: relative;
        overflow: hidden
    }

    .fc::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2px;
        width: 0;
        background: var(--gold);
        transition: width .45s cubic-bezier(.16, 1, .3, 1)
    }

    .fc:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 44px rgba(0, 0, 0, .08);
        border-color: rgba(201, 169, 110, .28)
    }

    .fc:hover::after {
        width: 100%
    }

    .fc__icon {
        width: 42px;
        height: 42px;
        border: 1px solid rgba(201, 169, 110, .25);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: background .3s, border-color .3s
    }

    .fc__icon i {
        color: var(--gold);
        font-size: 15px
    }

    .fc:hover .fc__icon {
        background: var(--gold);
        border-color: var(--gold)
    }

    .fc:hover .fc__icon i {
        color: #1E1208
    }

    .fc__title {
        font-family: var(--serif);
        font-size: 19px;
        font-weight: 400;
        color: var(--dark);
        margin-bottom: 10px
    }

    .fc__body {
        font-size: 18px;
        font-weight: 300;
        color: rgba(15, 15, 15, .55);
        line-height: 1.8
    }

    /* SEO PLANNING GUIDE */
    .galaseo {
        background: #0B0B0B;
        padding: 86px 48px;
        position: relative;
        overflow: hidden;
        border-top: 1px solid rgba(201, 169, 110, .12);
        border-bottom: 1px solid rgba(201, 169, 110, .12)
    }

    .galaseo::before {
        content: 'GALA';
        position: absolute;
        right: -3vw;
        top: 18px;
        font-family: var(--serif);
        font-size: clamp(110px, 17vw, 260px);
        font-weight: 300;
        line-height: 1;
        color: rgba(201, 169, 110, .045);
        letter-spacing: .05em;
        pointer-events: none
    }

    .galaseo__inner {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 54px;
        align-items: start
    }

    .galaseo__head .feat__kicker {
        color: var(--gold)
    }

    .galaseo__head .feat__title {
        color: var(--cream);
        margin-top: 10px
    }

    .galaseo__head .feat__desc {
        color: rgba(240, 235, 224, .58);
        margin-top: 20px
    }

    .galaseo__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

    .galaseo__grid article {
        background: rgba(255, 255, 255, .045);
        border: 1px solid rgba(201, 169, 110, .13);
        border-radius: 4px;
        padding: 26px 28px 28px;
        min-height: 230px;
        position: relative;
        overflow: hidden;
        transition: transform .3s, border-color .3s, background .3s
    }

    .galaseo__grid article::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(to bottom, var(--gold), rgba(201, 169, 110, .18))
    }

    .galaseo__grid article:hover {
        transform: translateY(-4px);
        border-color: rgba(201, 169, 110, .38);
        background: rgba(255, 255, 255, .07)
    }

    .galaseo__grid span {
        display: block;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .18em;
        text-transform: uppercase;
        color: rgba(201, 169, 110, .85);
        margin-bottom: 14px;
        line-height: 1.5
    }

    .galaseo__grid h3 {
        font-family: var(--serif);
        font-size: clamp(24px, 2vw, 30px);
        font-weight: 300;
        line-height: 1.08;
        color: #fff;
        margin: 0 0 18px
    }

    .galaseo__grid p {
        font-size: 17px;
        font-weight: 300;
        line-height: 1.65;
        color: rgba(240, 235, 224, .56)
    }

    .pk {
        border: 1px solid rgba(201, 169, 110, .12);
        padding: 44px 36px;
        background: rgba(255, 255, 255, .03);
        transition: transform .3s, border-color .3s
    }

    .pk--feat {
        background: rgba(201, 169, 110, .08);
        border-color: rgba(201, 169, 110, .35)
    }

    .pk:hover {
        transform: translateY(-5px);
        border-color: rgba(201, 169, 110, .35)
    }

    .pk__badge {
        display: inline-block;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: .16em;
        text-transform: uppercase;
        padding: 5px 10px;
        background: var(--gold);
        color: #1E1208;
        border-radius: 2px;
        margin-bottom: 20px
    }

    .pk__name {
        font-family: var(--serif);
        font-size: 26px;
        font-weight: 400;
        color: var(--cream);
        margin-bottom: 8px
    }

    .pk__sub {
        font-size: 14px;
        font-weight: 300;
        color: rgba(240, 235, 224, .4);
        line-height: 1.7;
        margin-bottom: 28px;
        padding-bottom: 28px;
        border-bottom: 1px solid rgba(201, 169, 110, .12)
    }

    .pk__list {
        list-style: none;
        padding: 0;
        margin: 0 0 32px;
        display: flex;
        flex-direction: column;
        gap: 11px
    }

    .pk__list li {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        font-size: 13px;
        font-weight: 300;
        color: rgba(240, 235, 224, .5);
        line-height: 1.5
    }

    .pk__list li i {
        color: var(--gold);
        font-size: 10px;
        margin-top: 2px;
        flex-shrink: 0
    }

    .pk__cta {
        display: block;
        text-align: center;
        padding: 13px 20px;
        border: 1px solid rgba(201, 169, 110, .35);
        color: var(--gold);
        font-family: var(--sans);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .1em;
        text-transform: uppercase;
        border-radius: 3px;
        transition: background .25s, color .25s, border-color .25s
    }

    .pk--feat .pk__cta {
        background: var(--gold);
        color: #1E1208;
        border-color: var(--gold)
    }

    .pk__cta:hover {
        background: var(--gold);
        color: #1E1208;
        border-color: var(--gold)
    }

    .pk--feat .pk__cta:hover {
        background: #E2C98A;
        border-color: #E2C98A
    }

    /* HOW IT WORKS — GALA */
    .bdproc {
        background: var(--darker);
        padding: 110px 48px;
        position: relative;
        overflow: hidden
    }

    .bdproc::before {
        content: 'Hangar 858';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-family: var(--serif);
        font-size: 480px;
        font-weight: 300;
        color: rgba(201, 169, 110, .03);
        line-height: 1;
        pointer-events: none;
        white-space: nowrap;
        z-index: 1
    }

    .bdproc__inner {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2
    }

    .bdproc__hd {
        text-align: center;
        margin-bottom: 72px
    }

    .bdproc__kicker {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 14px;
        display: block
    }

    .bdproc__title {
        font-family: var(--serif);
        font-size: clamp(32px, 4vw, 56px);
        font-weight: 300;
        line-height: 1.05;
        letter-spacing: -.02em;
        color: var(--cream);
        margin-bottom: 16px
    }

    .bdproc__title em {
        font-style: italic;
        color: var(--gold)
    }

    .bdproc__sub {
        font-size: 18px;
        font-weight: 300;
        color: rgba(240, 235, 224, .38);
        max-width: 560px;
        margin: 0 auto;
        line-height: 1.75
    }

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

    .bps {
        background: rgba(255, 255, 255, .025);
        border: 1px solid rgba(201, 169, 110, .07);
        padding: 48px 32px 40px;
        position: relative;
        overflow: hidden;
        transition: border-color .35s, background .35s
    }

    .bps:hover {
        background: rgba(201, 169, 110, .06);
        border-color: rgba(201, 169, 110, .22)
    }

    .bps__num {
        position: absolute;
        top: 16px;
        right: 22px;
        font-family: var(--serif);
        font-size: 80px;
        font-weight: 300;
        line-height: 1;
        color: rgba(201, 169, 110, .09);
        transition: color .35s;
        letter-spacing: -.03em
    }

    .bps:hover .bps__num {
        color: rgba(201, 169, 110, .18)
    }

    .bps__icon {
        width: 56px;
        height: 56px;
        border: 1px solid rgba(201, 169, 110, .18);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 26px;
        background: rgba(201, 169, 110, .06);
        transition: background .35s, border-color .35s, box-shadow .35s
    }

    .bps__icon i {
        color: var(--gold);
        font-size: 22px;
        transition: color .3s
    }

    .bps:hover .bps__icon {
        background: var(--gold);
        border-color: var(--gold);
        box-shadow: 0 8px 28px rgba(201, 169, 110, .3)
    }

    .bps:hover .bps__icon i {
        color: #1E1208
    }

    .bps__title {
        font-family: var(--serif);
        font-size: 21px;
        font-weight: 400;
        color: var(--cream);
        margin-bottom: 12px;
        line-height: 1.2
    }

    .bps__body {
        font-size: 18px;
        font-weight: 300;
        color: rgba(240, 235, 224, .42);
        line-height: 1.8
    }

    .bdproc__cta {
        text-align: center;
        margin-top: 60px
    }

    .tc {
        background: #fff;
        border: 1px solid rgba(15, 15, 15, .07);
        padding: 36px 30px;
        position: relative;
        overflow: hidden;
        transition: transform .3s, box-shadow .3s
    }

    .tc::before {
        content: '"';
        position: absolute;
        top: 14px;
        right: 22px;
        font-family: var(--serif);
        font-size: 72px;
        font-weight: 300;
        color: rgba(201, 169, 110, .1);
        line-height: 1
    }

    .tc:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 44px rgba(0, 0, 0, .07)
    }

    .tc__stars {
        display: flex;
        gap: 3px;
        margin-bottom: 18px
    }

    .tc__stars i {
        color: var(--gold);
        font-size: 10px
    }

    .tc__quote {
        font-family: var(--serif);
        font-size: 17px;
        font-weight: 300;
        font-style: italic;
        color: var(--dark);
        line-height: 1.75;
        margin-bottom: 24px
    }

    .tc__meta {
        display: flex;
        align-items: center;
        gap: 10px;
        padding-top: 20px;
        border-top: 1px solid rgba(15, 15, 15, .07)
    }

    .tc__av {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--gold), var(--gold-dk));
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-family: var(--serif);
        font-size: 15px;
        color: #1E1208;
        font-weight: 600
    }

    .tc__name {
        font-size: 12px;
        font-weight: 600;
        color: var(--dark);
        letter-spacing: .02em
    }

    .tc__co {
        font-size: 11px;
        color: rgba(15, 15, 15, .4);
        font-weight: 300
    }

    /* LEAD FORM */
    .lf {
        background: var(--darker);
        padding: 120px 48px;
        border-top: 1px solid rgba(201, 169, 110, .1)
    }

    .lf__inner {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start
    }

    .lf__left-label {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .18em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 18px
    }

    .lf__left-h {
        font-family: var(--serif);
        font-size: clamp(36px, 5vw, 56px);
        font-weight: 300;
        color: var(--cream);
        line-height: 1.1;
        margin-bottom: 24px
    }

    .lf__left-h em {
        font-style: italic;
        color: var(--gold)
    }

    .lf__left-p {
        font-size: 18px;
        font-weight: 300;
        color: rgba(255, 255, 255, .45);
        line-height: 1.85;
        margin-bottom: 32px
    }

    .lf__contact {
        display: flex;
        flex-direction: column;
        gap: 12px
    }

    .lf__ci {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 15px;
        color: rgba(255, 255, 255, .55);
        font-weight: 300;
        text-decoration: none;
        transition: color .25s
    }

    .lf__ci:hover {
        color: var(--gold)
    }

    .lf__ci-icon {
        width: 34px;
        height: 34px;
        border: 1px solid rgba(201, 169, 110, .2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0
    }

    .lf__ci-icon i {
        color: var(--gold);
        font-size: 13px
    }

    .lf__form {
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(201, 169, 110, .12);
        padding: 44px 40px;
        border-radius: 4px
    }

    .lf__form-title {
        font-family: var(--serif);
        font-size: 24px;
        font-weight: 300;
        color: var(--cream);
        margin-bottom: 6px
    }

    .lf__form-sub {
        font-size: 16px;
        font-weight: 300;
        color: rgba(240, 235, 224, .35);
        margin-bottom: 28px
    }

    .qrow {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

    .qf-wrap {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 16px
    }

    .qf-label {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: rgba(240, 235, 224, .4)
    }

    .qf {
        -webkit-appearance: none;
        appearance: none;
        background: rgba(255, 255, 255, .05);
        border: 1px solid rgba(201, 169, 110, .15);
        color: var(--cream);
        font-family: var(--sans);
        font-size: 16px;
        font-weight: 300;
        padding: 12px 16px;
        border-radius: 3px;
        outline: none;
        width: 100%;
        transition: border-color .25s, background .25s
    }

    .qf::placeholder {
        color: rgba(240, 235, 224, .25)
    }

    .qf:focus {
        border-color: rgba(201, 169, 110, .45);
        background: rgba(255, 255, 255, .08)
    }

    select.qf,
    input[type="date"].qf {
        background: #111 !important;
        color: var(--cream)
    }

    select.qf:focus,
    input[type="date"].qf:focus {
        background: #1a1a1a !important
    }

    .qf option {
        background: #111;
        color: var(--cream)
    }

    .qf-ta {
        min-height: 90px;
        resize: vertical
    }

    .qsubmit {
        width: 100%;
        padding: 15px;
        background: var(--gold);
        color: #1E1208;
        font-family: var(--sans);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .14em;
        text-transform: uppercase;
        border: none;
        border-radius: 3px;
        cursor: pointer;
        transition: opacity .25s;
        margin-top: 8px
    }

    .qsubmit:hover {
        opacity: .88
    }

    /* FAQ */
    .faq-section {
        background: #fff;
        padding: 96px 0
    }

    .faq-w {
        max-width: 1700px;
        margin: 0 auto;
        padding: 0 48px
    }

    .faq-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: end;
        margin-bottom: 52px
    }

    .faq-eyebrow {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .45em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 14px
    }

    .faq-heading {
        font-family: var(--serif);
        font-size: clamp(32px, 4vw, 58px);
        font-weight: 300;
        line-height: .96;
        letter-spacing: -.03em;
        color: var(--dark)
    }

    .faq-heading em {
        font-style: italic;
        color: var(--gold)
    }

    .faq-sub {
        font-size: 18px;
        font-weight: 300;
        color: rgba(15, 15, 15, .55);
        line-height: 1.85;
        align-self: end
    }

    .faq-sub a {
        color: var(--gold);
        text-decoration: none;
        font-weight: 500
    }

    .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        align-items: start
    }

    .faq-col {
        display: flex;
        flex-direction: column;
        gap: 14px
    }

    .faq-item {
        border: 1px solid rgba(0, 0, 0, .08);
        border-radius: 14px;
        overflow: hidden;
        transition: border-color .3s, box-shadow .3s
    }

    .faq-item.open,
    .faq-item[open] {
        border-color: rgba(201, 169, 110, .3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, .06)
    }

    .faq-q {
        width: 100%;
        background: none;
        border: none;
        cursor: pointer;
        padding: 24px 28px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        text-align: left;
        font-family: var(--sans);
        transition: background .25s
    }

    .faq-q:hover {
        background: rgba(201, 169, 110, .04)
    }

    .faq-item.open .faq-q,
    .faq-item[open] .faq-q {
        background: rgba(201, 169, 110, .06)
    }

    .faq-q-text {
        font-size: 18px;
        font-weight: 600;
        color: var(--dark);
        line-height: 1.35
    }

    .faq-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        flex-shrink: 0;
        background: rgba(201, 169, 110, .1);
        border: 1px solid rgba(201, 169, 110, .2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 11px;
        transition: background .3s, transform .35s
    }

    .faq-item.open .faq-icon,
    .faq-item[open] .faq-icon {
        background: linear-gradient(135deg, var(--gold), #8a6c28);
        border-color: var(--gold);
        color: #fff;
        transform: rotate(45deg)
    }

    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height .45s cubic-bezier(.16, 1, .3, 1)
    }

    .faq-item.open .faq-a,
    .faq-item[open] .faq-a {
        max-height: 400px
    }

    .faq-a-inner {
        padding: 16px 28px 24px;
        font-size: 18px;
        font-weight: 300;
        color: rgba(15, 15, 15, .58);
        line-height: 1.85;
        border-top: 1px solid rgba(0, 0, 0, .05)
    }

    .faq-a-inner a {
        color: var(--gold);
        text-decoration: none;
        font-weight: 500
    }


    .rc {
        position: relative;
        overflow: hidden;
        aspect-ratio: 4/3;
        cursor: pointer;
        display: block
    }

    .rc img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .7s cubic-bezier(.16, 1, .3, 1)
    }

    .rc:hover img {
        transform: scale(1.07)
    }

    .rc__ov {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(5, 5, 5, .82) 0%, rgba(5, 5, 5, .08) 55%)
    }

    .rc__cnt {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 24px
    }

    .rc__tag {
        font-size: 9px;
        font-weight: 700;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--gold);
        display: block;
        margin-bottom: 6px
    }

    .rc__name {
        font-family: var(--serif);
        font-size: 20px;
        font-weight: 300;
        color: #fff;
        line-height: 1.2
    }

    .rc__arr {
        position: absolute;
        bottom: 24px;
        right: 24px;
        width: 34px;
        height: 34px;
        border: 1px solid rgba(201, 169, 110, .5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: translateX(-6px);
        transition: opacity .3s, transform .3s
    }

    .rc__arr i {
        color: var(--gold);
        font-size: 10px
    }

    .rc:hover .rc__arr {
        opacity: 1;
        transform: none
    }

    @media(max-width:1024px) {
        .stat-band__inner {
            flex-wrap: wrap
        }

        .sb-item {
            flex: 1 1 50%;
            min-width: 0
        }

        .sb-item:nth-child(2)::before,
        .sb-item:nth-child(4)::before {
            display: none
        }

        .si__inner,
        .feat__hd,
        .lf__inner,
        .galaseo__inner {
            grid-template-columns: 1fr
        }

        .feat__grid,
        .galaseo__grid,
        .pkg__grid,
        .tst__grid,
        .rel__grid {
            grid-template-columns: 1fr 1fr
        }

        .bdproc__grid {
            grid-template-columns: repeat(2, 1fr)
        }

        .gm__mosaic {
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 300px 300px 280px
        }

        .gm__item:first-child {
            grid-row: 1;
            grid-column: 1/span 2
        }

        .faq-top,
        .faq-grid {
            grid-template-columns: 1fr
        }

        .qrow {
            grid-template-columns: 1fr
        }
    }

    @media(max-width:768px) {

        .ph__inner,
        .gm,
        .si,
        .feat,
        .galaseo,
        .pkg,
        .bdproc,
        .tst,
        .faq-section,
        .lf,
        .rel {
            padding-left: 24px;
            padding-right: 24px
        }

        .gm,
        .si,
        .feat,
        .galaseo,
        .pkg,
        .bdproc,
        .tst,
        .lf,
        .rel {
            padding-top: 72px;
            padding-bottom: 72px
        }

        .faq-section {
            padding-top: 72px;
            padding-bottom: 72px
        }

        .faq-w {
            padding: 0 24px
        }

        .feat__grid,
        .galaseo__grid,
        .pkg__grid,
        .tst__grid,
        .rel__grid,
        .bdproc__grid {
            grid-template-columns: 1fr
        }

        .gm__mosaic {
            grid-template-columns: 1fr;
            grid-template-rows: auto
        }

        .gm__item {
            aspect-ratio: 4/3
        }

        .gm__item:first-child {
            grid-row: auto;
            grid-column: auto
        }

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

        .stat-band__inner {
            flex-direction: column
        }

        .sb-item+.sb-item::before {
            display: none
        }

        .sb-item {
            padding: 22px 24px;
            border-bottom: 1px solid rgba(201, 169, 110, .08)
        }

        .lf__form {
            padding: 32px 24px
        }
    }

@media(max-width:768px){
  .feat,.galaseo,.pkg,.bdproc,.tst,.lf,.rel,.faq-section{padding-top:48px;padding-bottom:48px}
  .feat-card,.pkg-card{padding:22px 18px}
  .lf-left,.lf-right{padding:28px 20px}
  .lf-left::before{font-size:120px}
  .lf-p,.feat-card__body,.pkg-desc{font-size:13px;line-height:1.6}
  .gm__mosaic{grid-template-columns:1fr}
  .gm__item{aspect-ratio:4/3;min-height:unset}
  .gm__item:first-child{grid-row:auto;grid-column:auto}
  /* icon + title yan yana */
  .bps{display:grid;grid-template-columns:44px 1fr;column-gap:14px;align-items:start;padding:20px 16px}
  .bps__icon{grid-column:1;grid-row:1;margin-bottom:0;width:44px;height:44px;font-size:17px;align-self:center}
  .bps__title{grid-column:2;grid-row:1;font-size:17px;margin-bottom:0;align-self:center}
  .bps__body{grid-column:1/-1;grid-row:2;margin-top:10px;font-size:13px;line-height:1.6}
  .fc{display:grid;grid-template-columns:42px 1fr;column-gap:14px;align-items:start;padding:20px 16px}
  .fc__icon{grid-column:1;grid-row:1;margin-bottom:0;align-self:center}
  .fc__title{grid-column:2;grid-row:1;margin-bottom:0;font-size:17px;align-self:center}
  .fc__body{grid-column:1/-1;grid-row:2;margin-top:8px;font-size:13px;line-height:1.6}
}
