
    
    /* ── PAGE HERO ── */
    #page-hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        padding: 9rem 5vw 5rem
    }

    .ph-bg {
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 75% 55% at 50% 38%, rgba(242, 196, 48, .07) 0%, transparent 65%), radial-gradient(ellipse 40% 40% at 8% 88%, rgba(242, 196, 48, .04) 0%, transparent 55%), linear-gradient(160deg, #0d0d0d 0%, #060606 60%, #090800 100%)
    }

    .ph-grid {
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(242, 196, 48, .032) 1px, transparent 1px), linear-gradient(90deg, rgba(242, 196, 48, .032) 1px, transparent 1px);
        background-size: 60px 60px;
        mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 70%)
    }

    .ph-ring {
        position: absolute;
        right: -8vw;
        top: 50%;
        transform: translateY(-50%);
        width: clamp(280px, 52vw, 680px);
        height: clamp(280px, 52vw, 680px);
        border: 1px solid rgba(242, 196, 48, .055);
        border-radius: 50%;
        pointer-events: none
    }

    .ph-ring::before {
        content: '';
        position: absolute;
        inset: 14%;
        border: 1px solid rgba(242, 196, 48, .035);
        border-radius: 50%;
        animation: spin 55s linear infinite
    }

    .ph-ring::after {
        content: '';
        position: absolute;
        inset: 30%;
        border: 1px solid rgba(242, 196, 48, .065);
        border-radius: 50%;
        animation: spin 30s linear infinite reverse
    }

    @keyframes spin {
        to {
            transform: rotate(360deg)
        }
    }

    .ph-con {
        position: relative;
        z-index: 2;
        max-width: 760px
    }

    .ph-tag {
        display: inline-flex;
        align-items: center;
        gap: .7rem;
        font-size: .68rem;
        letter-spacing: .42em;
        text-transform: uppercase;
        color: var(--y);
        margin-bottom: 1.5rem;
        opacity: 0;
        animation: fu .9s ease .15s forwards
    }

    .ph-tag::before,
    .ph-tag::after {
        content: '';
        width: 26px;
        height: 1px;
        background: var(--yd)
    }

    .ph-con h1 {
        opacity: 0;
        animation: fu 1s ease .35s forwards;
        margin-bottom: 1.3rem
    }

    .ph-italic {
        font-family: 'Cormorant Garamond', serif;
        font-style: italic;
        font-size: clamp(.95rem, 1.9vw, 1.32rem);
        color: var(--tm);
        margin-bottom: 1.8rem;
        opacity: 0;
        animation: fu 1s ease .55s forwards
    }

    .ph-txt {
        max-width: 630px;
        opacity: 0;
        animation: fu 1s ease .75s forwards;
        margin-bottom: 2.5rem
    }
.flex{
    display: flex;
}
@media (max-width:768px){
   .flex{
   flex-direction: column;
}
}
    .ph-btns {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        opacity: 0;
        animation: fu 1s ease .95s forwards
    }

    @keyframes fu {
        from {
            opacity: 0;
            transform: translateY(20px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    /* ── BREADCRUMB ── */
    .breadcrumb {
        background: var(--d2);
        border-bottom: 1px solid var(--bdr);
        padding: .75rem 5vw
    }

    .breadcrumb nav {
        display: flex;
        align-items: center;
        gap: .6rem;
        font-size: .72rem;
        letter-spacing: .1em;
        max-width: 1160px;
        margin: 0 auto
    }

    .breadcrumb nav a {
        color: var(--td);
        text-transform: uppercase
    }

    .breadcrumb nav a:hover {
        color: var(--y)
    }

    .breadcrumb nav span {
        color: var(--yd)
    }

    .breadcrumb nav strong {
        color: var(--tm);
        font-weight: 400;
        text-transform: uppercase
    }

    /* ── SECTION UTILS ── */
    .sec {
        padding: clamp(4rem, 7vw, 7rem) 5vw;
        position: relative
    }

    .sec-alt {
        background: var(--d2)
    }

    .sec-alt::before,
    .sec-alt::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--yd), transparent)
    }

    .sec-alt::before {
        top: 0
    }

    .sec-alt::after {
        bottom: 0
    }

    .wrap {
        max-width: 1160px;
        margin: 0 auto;
        padding: 0 4vw
    }

    .narrow {
        max-width: 820px;
        margin: 0 auto;
        padding: 0 4vw
    }

    .tc {
        text-align: center
    }

    .tag {
        display: block;
        font-size: .65rem;
        letter-spacing: .45em;
        text-transform: uppercase;
        color: var(--yd);
        margin-bottom: .65rem
    }

    .gd {
        display: flex;
        align-items: center;
        gap: .75rem;
        margin: 1rem 0 1.8rem
    }

    .gd.l::before {
        content: '';
        width: 50px;
        height: 1px;
        background: linear-gradient(to right, var(--yd), transparent)
    }

    .gd.l::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(to right, var(--yd), transparent)
    }

    .gd.c::before {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--yd))
    }

    .gd.c::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(to left, transparent, var(--yd))
    }

    .gd span {
        font-size: .5rem;
        color: var(--yd);
        letter-spacing: .3em
    }

    /* ── TWO COL ── */
    .grid2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(2.5rem, 5vw, 5.5rem);
        align-items: start;
        max-width: 1160px;
        margin: 0 auto
    }

    /* ── CARDS ── */
    .cgrid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.4rem;
        margin-top: 2.5rem
    }

    .card {
        background: var(--d3);
        border: 1px solid var(--bdr);
        padding: 2.2rem 2rem;
        position: relative;
        overflow: hidden;
        transition: border-color .3s, transform .3s
    }

    .card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--y), transparent);
        transform: scaleX(0);
        transition: transform .4s
    }

    .card:hover {
        border-color: var(--bdrh);
        transform: translateY(-3px)
    }

    .card:hover::after {
        transform: scaleX(1)
    }

    .ci {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        display: block;
        color: var(--y)
    }

    .card h3 {
        margin-bottom: .6rem;
        font-size: .92rem
    }

    .card p {
        font-size: .86rem;
        color: var(--tm)
    }

    /* ── SERVICE TILES ── */
    .stiles {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin-top: 2.5rem;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto
    }

    .stile {
        border: 1px solid var(--bdr);
        padding: 1.8rem 1.4rem;
        text-align: center;
        transition: background .3s, border-color .3s;
        cursor: default
    }

    .stile:hover {
        background: rgba(242, 196, 48, .05);
        border-color: var(--bdrh)
    }

    .stile .si {
        font-size: 1.5rem;
        margin-bottom: .65rem;
        display: block
    }

    .stile p {
        font-size: .8rem;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--tm)
    }

    /* ── WHY LIST ── */
    .why-list {
        display: flex;
        flex-direction: column;
        gap: 1.1rem;
        margin-top: 2rem
    }

    .why-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem
    }

    .why-dot {
        width: 32px;
        height: 32px;
        border: 1px solid var(--yd);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .75rem;
        color: var(--y);
        flex-shrink: 0;
        margin-top: .15rem
    }

    .why-item p {
        font-size: .9rem;
        line-height: 1.8
    }

    /* ── QUOTE ── */
    .qb {
        border-left: 2px solid var(--yd);
        padding: 1rem 0 1rem 2rem;
        margin: 1.8rem 0
    }

    .qb p {
        font-family: 'Cormorant Garamond', serif;
        font-style: italic;
        font-size: clamp(1rem, 1.8vw, 1.22rem);
        color: var(--tm);
        line-height: 1.75
    }

    /* ── STEPS ── */
    .steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        margin-top: 3rem;
        text-align: center
    }

    .step {
        position: relative
    }

    .snum {
        font-family: 'Cinzel', serif;
        font-size: clamp(2.5rem, 5vw, 4rem);
        color: rgba(242, 196, 48, .09);
        line-height: 1;
        display: block;
        margin-bottom: .7rem
    }

    .step h3 {
        font-size: .88rem;
        margin-bottom: .5rem
    }

    .step p {
        font-size: .84rem;
        color: var(--tm)
    }

    .sc {
        position: absolute;
        top: 2rem;
        right: -1.25rem;
        width: 2.5rem;
        height: 1px;
        background: linear-gradient(90deg, var(--yd), transparent)
    }

    /* ── POPULAR STRIP ── */
    .pop-strip {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.4rem;
        margin-top: 2.5rem
    }

    .pop-card {
        background: var(--d3);
        border: 1px solid var(--bdr);
        overflow: hidden;
        position: relative;
        transition: border-color .3s
    }

    .pop-card:hover {
        border-color: var(--bdrh)
    }

    .pop-img {
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden
    }

    .pop-img::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, transparent 40%, var(--d3) 100%)
    }

    .pop-num {
        font-family: 'Cinzel', serif;
        font-size: 4rem;
        font-weight: 700;
        opacity: .1;
        position: relative;
        z-index: 0;
        color: var(--yb)
    }

    .pop-info {
        padding: 1.4rem
    }

    .pop-info h3 {
        font-size: .92rem;
        margin-bottom: .45rem
    }

    .pop-info p {
        font-size: .84rem;
        color: var(--tm)
    }

    .pop-tags {
        display: flex;
        gap: .5rem;
        flex-wrap: wrap;
        margin-top: .8rem
    }

    .ptag {
        font-size: .62rem;
        letter-spacing: .15em;
        text-transform: uppercase;
        border: 1px solid rgba(242, 196, 48, .22);
        padding: .18rem .55rem;
        color: var(--yd)
    }

    /* ── GOLD BAND ── */
    .gband {
        background: linear-gradient(135deg, #120f00 0%, #0d0d0d 50%, #0a0a06 100%);
        border-top: 1px solid rgba(242, 196, 48, .18);
        border-bottom: 1px solid rgba(242, 196, 48, .18);
        padding: clamp(4rem, 7vw, 7rem) 5vw;
        text-align: center
    }

    /* ── REVEAL ── */
    .rv {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .7s ease, transform .7s ease
    }

    .rv.in {
        opacity: 1;
        transform: none
    }

    .d1 {
        transition-delay: .1s
    }

    .d2 {
        transition-delay: .2s
    }

    .d3 {
        transition-delay: .3s
    }

    .d4 {
        transition-delay: .4s
    }

    /* ── FOOTER ── */
    footer {
        background: var(--k);
        border-top: 1px solid var(--bdr);
        padding: 4rem 5vw 2rem
    }

    .fgrid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3.5rem;
        max-width: 1160px;
        margin: 0 auto 3rem
    }

    .flogo {
        font-family: 'Cinzel', serif;
        font-size: 1.05rem;
        color: var(--y);
        letter-spacing: .13em;
        display: block;
        margin-bottom: .9rem
    }

    .fabout {
        font-size: .83rem;
        line-height: 1.8;
        color: var(--td)
    }

    .fcol h4 {
        font-family: 'Cinzel', serif;
        font-size: .7rem;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: var(--y);
        margin-bottom: 1.1rem
    }

    .flinks {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: .5rem
    }

    .flinks a {
        font-size: .82rem;
        color: var(--td)
    }

    .flinks a:hover {
        color: var(--yb)
    }

    .fbot {
        border-top: 1px solid rgba(242, 196, 48, .07);
        padding-top: 1.8rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1160px;
        margin: 0 auto;
        flex-wrap: wrap;
        gap: .7rem
    }

    .fbot p {
        font-size: .72rem;
        color: var(--td)
    }

    .disc {
        text-align: center;
        font-size: .64rem;
        color: var(--td);
        opacity: .52;
        padding: 1rem 5vw 2rem;
        max-width: 1160px;
        margin: 0 auto;
        line-height: 1.65
    }

    #btt {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        width: 40px;
        height: 40px;
        border: 1px solid var(--yd);
        background: var(--d2);
        color: var(--y);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .9rem;
        cursor: pointer;
        z-index: 50;
        opacity: 0;
        pointer-events: none;
        transition: opacity .4s, background .3s
    }

    #btt.s {
        opacity: 1;
        pointer-events: all
    }

    #btt:hover {
        background: rgba(242, 196, 48, .1)
    }

    @media(max-width:920px) {
        nav {
            display: none
        }

        .hbg {
            display: flex
        }

        .grid2 {
            grid-template-columns: 1fr;
            gap: 2.5rem
        }

        .steps {
            grid-template-columns: 1fr;
            gap: 2rem
        }

        .sc {
            display: none
        }

        .fgrid {
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem
        }
    }

    @media(max-width:600px) {
        .fgrid {
            grid-template-columns: 1fr
        }

        .fbot {
            flex-direction: column;
            text-align: center
        }

        .ph-btns {
            flex-direction: column;
            align-items: flex-start
        }
    }
