
:root{
    --sr-shell-bg:#080b10;
    --sr-shell-panel:#0f151c;
    --sr-shell-text:#f7f4ee;
    --sr-shell-body:#b7c0cb;
    --sr-shell-gold:#ead8b5;
    --sr-shell-gold-strong:#d9ad68;
    --sr-shell-border:rgba(255,255,255,.09);
    --sr-shell-header-height:88px;
}

body.sr-site-shell-enabled{
    margin:0;
}

.sr-header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:99990;
    height:var(--sr-shell-header-height);
    border-bottom:1px solid transparent;
    background:linear-gradient(180deg,rgba(5,9,14,.80),rgba(5,9,14,.28));
    backdrop-filter:blur(7px);
    -webkit-backdrop-filter:blur(7px);
    transition:background .28s ease,border-color .28s ease,box-shadow .28s ease;
}

body.admin-bar .sr-header{
    top:32px;
}

.sr-header.is-scrolled,
.sr-header.is-menu-open{
    background:rgba(7,11,16,.97);
    border-color:var(--sr-shell-border);
    box-shadow:0 12px 35px rgba(0,0,0,.22);
}

.sr-header__inner{
    width:min(1240px,calc(100% - 48px));
    height:100%;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
}

.sr-brand{
    display:flex;
    flex-direction:column;
    text-decoration:none;
    color:var(--sr-shell-text);
    line-height:1;
    flex:0 0 auto;
}

.sr-brand__name{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:29px;
    font-weight:600;
    letter-spacing:.01em;
}

.sr-brand__descriptor{
    margin-top:7px;
    color:var(--sr-shell-gold);
    font:600 8px/1.2 Inter,Arial,sans-serif;
    letter-spacing:.18em;
}

.sr-nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:30px;
}

.sr-nav__link{
    position:relative;
    padding:34px 0 31px;
    color:var(--sr-shell-text);
    text-decoration:none;
    font:500 13px/1 Inter,Arial,sans-serif;
    transition:color .2s ease;
}

.sr-nav__link::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:23px;
    height:1px;
    background:var(--sr-shell-gold-strong);
    transform:scaleX(0);
    transform-origin:center;
    transition:transform .2s ease;
}

.sr-nav__link:hover,
.sr-nav__link:focus-visible,
.sr-nav__link.is-current{
    color:var(--sr-shell-gold);
}

.sr-nav__link:hover::after,
.sr-nav__link:focus-visible::after,
.sr-nav__link.is-current::after{
    transform:scaleX(1);
}

.sr-nav__cta{
    min-height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 17px;
    color:var(--sr-shell-gold);
    border:1px solid rgba(234,216,181,.55);
    border-radius:2px;
    text-decoration:none;
    font:500 11px/1 Inter,Arial,sans-serif;
    white-space:nowrap;
    transition:background .2s ease,color .2s ease,border-color .2s ease;
}

.sr-nav__cta:hover,
.sr-nav__cta:focus-visible{
    color:#111318;
    background:var(--sr-shell-gold);
    border-color:var(--sr-shell-gold);
}

.sr-menu-toggle{
    display:none;
    width:44px;
    height:44px;
    padding:10px;
    border:1px solid rgba(234,216,181,.4);
    background:transparent;
    border-radius:2px;
    cursor:pointer;
}

.sr-menu-toggle span{
    display:block;
    height:1px;
    margin:5px 0;
    background:var(--sr-shell-gold);
    transition:transform .2s ease,opacity .2s ease;
}

.sr-menu-toggle[aria-expanded="true"] span:nth-child(1){
    transform:translateY(6px) rotate(45deg);
}
.sr-menu-toggle[aria-expanded="true"] span:nth-child(2){
    opacity:0;
}
.sr-menu-toggle[aria-expanded="true"] span:nth-child(3){
    transform:translateY(-6px) rotate(-45deg);
}

/* Overlay header: spacer intentionally has zero height. */
.sr-header-spacer{
    height:0;
}

/* Footer */
.sr-footer{
    position:relative;
    overflow:hidden;
    color:var(--sr-shell-text);
    background:
        radial-gradient(circle at 18% 20%,rgba(217,173,104,.08),transparent 34%),
        linear-gradient(180deg,#0c1219 0%,#070b10 100%);
    border-top:1px solid var(--sr-shell-border);
}

.sr-footer__glow{
    position:absolute;
    width:420px;
    height:420px;
    right:-180px;
    top:-220px;
    border-radius:50%;
    background:rgba(217,173,104,.05);
    filter:blur(12px);
}

.sr-footer__inner{
    position:relative;
    z-index:1;
    width:min(1240px,calc(100% - 48px));
    margin:0 auto;
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:80px;
    align-items:center;
    padding:72px 0 58px;
}

.sr-footer__quote{
    margin:0;
    color:var(--sr-shell-gold);
    font:italic 500 clamp(30px,3.2vw,48px)/1.14 "Cormorant Garamond",Georgia,serif;
    letter-spacing:-.015em;
}

.sr-footer__quote span{
    display:block;
}

.sr-footer__signature{
    margin-top:24px;
    color:var(--sr-shell-text);
    font:italic 500 25px/1 "Cormorant Garamond",Georgia,serif;
}

.sr-footer__signature::before{
    content:"— ";
    color:var(--sr-shell-gold-strong);
}

.sr-footer__nav-block{
    padding-left:48px;
    border-left:1px solid var(--sr-shell-border);
}

.sr-footer__brand{
    margin-bottom:22px;
    color:var(--sr-shell-text);
    font:600 33px/1 "Cormorant Garamond",Georgia,serif;
}

.sr-footer__links{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px 24px;
}

.sr-footer__links a{
    color:var(--sr-shell-body);
    text-decoration:none;
    font:400 12px/1.45 Inter,Arial,sans-serif;
    transition:color .2s ease;
}

.sr-footer__links a:hover,
.sr-footer__links a:focus-visible{
    color:var(--sr-shell-gold);
}

.sr-footer__bottom{
    position:relative;
    z-index:1;
    padding:20px 24px;
    border-top:1px solid var(--sr-shell-border);
    color:#8f99a6;
    text-align:center;
    font:400 11px/1.5 Inter,Arial,sans-serif;
}

.sr-header a:focus-visible,
.sr-footer a:focus-visible,
.sr-menu-toggle:focus-visible{
    outline:2px solid var(--sr-shell-gold);
    outline-offset:4px;
}

@media (max-width:1080px){
    .sr-nav{gap:20px;}
    .sr-nav__cta{display:none;}
}

@media (max-width:900px){
    :root{--sr-shell-header-height:76px;}

    body.admin-bar .sr-header{
        top:46px;
    }

    .sr-header__inner{
        width:min(100% - 32px,1240px);
    }

    .sr-brand__name{font-size:26px;}
    .sr-menu-toggle{display:block;}

    .sr-nav{
        position:absolute;
        top:100%;
        left:0;
        right:0;
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        padding:10px 16px 20px;
        background:rgba(7,11,16,.99);
        border-bottom:1px solid var(--sr-shell-border);
        box-shadow:0 18px 38px rgba(0,0,0,.35);
    }

    .sr-nav.is-open{display:flex;}

    .sr-nav__link{
        padding:16px 4px;
        border-bottom:1px solid rgba(255,255,255,.06);
        font-size:14px;
    }

    .sr-nav__link::after{display:none;}

    .sr-nav__cta{
        display:inline-flex;
        margin-top:16px;
        min-height:48px;
    }

    body.sr-menu-open{
        overflow:hidden;
    }

    .sr-footer__inner{
        width:min(100% - 36px,1240px);
        grid-template-columns:1fr;
        gap:44px;
        padding:58px 0 48px;
    }

    .sr-footer__nav-block{
        padding-left:0;
        border-left:0;
        border-top:1px solid var(--sr-shell-border);
        padding-top:34px;
    }
}

@media (max-width:600px){
    .sr-brand__descriptor{
        font-size:6.8px;
        letter-spacing:.13em;
    }

    .sr-footer__quote{
        font-size:31px;
    }

    .sr-footer__links{
        grid-template-columns:1fr;
    }

    .sr-footer__bottom{
        font-size:10px;
    }
}

@media (prefers-reduced-motion:reduce){
    .sr-header,
    .sr-nav__link::after,
    .sr-nav__cta,
    .sr-menu-toggle span{
        transition:none!important;
    }
}
