
:root{
    --bg:#080808;
    --surface:#10100f;
    --surface-2:#15130f;
    --line:rgba(255,255,255,.12);
    --text:#f4f0e7;
    --muted:#aaa49a;
    --accent:#c58a3a;
    --header-h:88px;
    --max:1240px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:Inter,Arial,Helvetica,sans-serif;
    line-height:1.55;
    overflow-x:hidden;
}
body.menu-open{overflow:hidden}
a{color:inherit;text-decoration:none}
button,input,textarea,select{font:inherit}
img{max-width:100%;height:auto}
.container{width:min(calc(100% - 64px),var(--max));margin-inline:auto}

.site-header{
    position:fixed;
    z-index:1000;
    top:0;
    left:0;
    right:0;
    transition:background .35s ease,border-color .35s ease,backdrop-filter .35s ease;
    border-bottom:1px solid rgba(255,255,255,.10);
}
.site-header.is-scrolled{
    background:rgba(7,7,7,.88);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom-color:rgba(255,255,255,.08);
}
.header-inner{
    min-height:var(--header-h);
    display:flex;
    align-items:center;
    gap:28px;
}
.brand{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    gap:12px;
    z-index:1002;
}
.brand-logo,.brand-logo .custom-logo-link{display:flex;align-items:center}
.brand-logo .custom-logo{max-height:58px;width:auto}
.brand-monogram{
    width:50px;
    height:50px;
    border:1px solid var(--accent);
    border-radius:50%;
    display:grid;
    place-items:center;
    color:var(--accent);
    font-family:Georgia,serif;
    font-size:17px;
    font-weight:700;
}
.brand-copy{display:flex;flex-direction:column;line-height:1}
.brand-copy strong{
    font-family:Georgia,serif;
    font-size:19px;
    letter-spacing:.02em;
}
.brand-copy small{
    color:var(--muted);
    margin-top:7px;
    font-size:8px;
    font-weight:700;
    letter-spacing:.27em;
}
.desktop-nav{margin-left:auto}
.nav-list{
    display:flex;
    align-items:center;
    gap:25px;
    padding:0;
    margin:0;
    list-style:none;
}
.nav-list a{
    position:relative;
    color:#d4d0c8;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.11em;
    font-weight:700;
    transition:color .25s ease;
}
.nav-list a:after{
    content:"";
    position:absolute;
    left:0;
    bottom:-9px;
    width:0;
    height:1px;
    background:var(--accent);
    transition:width .25s ease;
}
.nav-list a:hover{color:var(--text)}
.nav-list a:hover:after{width:100%}

.header-cta{
    flex:0 0 auto;
    padding:12px 19px;
    border:1px solid var(--accent);
    color:var(--accent);
    font-size:10px;
    letter-spacing:.13em;
    text-transform:uppercase;
    font-weight:800;
    transition:.25s ease;
}
.header-cta:hover{
    color:#090909;
    background:var(--accent);
}

.menu-toggle{
    display:none;
    position:relative;
    z-index:1002;
    width:48px;
    height:48px;
    margin-left:auto;
    background:transparent;
    border:1px solid rgba(255,255,255,.18);
    padding:13px 11px;
    cursor:pointer;
}
.menu-toggle span{
    display:block;
    height:1px;
    margin:5px 0;
    background:var(--text);
    transition:transform .3s ease,opacity .3s ease;
}
.menu-toggle.is-open span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.menu-toggle.is-open span:nth-child(2){opacity:0}
.menu-toggle.is-open span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

.mobile-menu{
    display:none;
    position:fixed;
    inset:0;
    z-index:1001;
    background:rgba(8,8,8,.98);
    opacity:0;
    visibility:hidden;
    transition:opacity .3s ease,visibility .3s ease;
}
.mobile-menu.is-open{opacity:1;visibility:visible}
.mobile-menu-inner{
    min-height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    width:min(calc(100% - 40px),520px);
    margin:auto;
    padding:100px 0 40px;
}
.mobile-nav-list{
    list-style:none;
    margin:0;
    padding:0;
}
.mobile-nav-list li{border-bottom:1px solid var(--line)}
.mobile-nav-list a{
    display:flex;
    padding:15px 0;
    font-family:Georgia,serif;
    font-size:clamp(26px,8vw,38px);
    line-height:1.1;
}
.mobile-book{margin-top:30px}
.mobile-menu-signature{
    margin-top:auto;
    padding-top:30px;
    color:#68635b;
    font-size:10px;
    letter-spacing:.2em;
    text-transform:uppercase;
}

.hero{
    min-height:100svh;
    position:relative;
    isolation:isolate;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:
        radial-gradient(circle at 78% 44%,rgba(197,138,58,.12),transparent 32%),
        linear-gradient(100deg,#070707 0%,#0a0907 50%,#17120b 100%);
}
.hero-bg{
    position:absolute;
    z-index:-3;
    inset:0;
    background-image:var(--hero-image,none);
    background-position:center;
    background-size:cover;
    transform:scale(1.04);
    animation:heroZoom 16s ease-in-out infinite alternate;
}
.hero-shade{
    position:absolute;
    z-index:-2;
    inset:0;
    background:
        linear-gradient(90deg,rgba(6,6,6,.98) 0%,rgba(6,6,6,.87) 38%,rgba(6,6,6,.37) 66%,rgba(6,6,6,.30) 100%),
        linear-gradient(0deg,rgba(5,5,5,.45),transparent 35%);
}
.hero-grid{
    position:relative;
    padding-top:calc(var(--header-h) + 72px);
    padding-bottom:90px;
}
.hero-copy{
    width:min(760px,68%);
    animation:heroCopy .85s cubic-bezier(.2,.7,.2,1) both;
}
.eyebrow{
    display:inline-block;
    color:var(--accent);
    font-size:10px;
    font-weight:800;
    letter-spacing:.24em;
    text-transform:uppercase;
}
.hero h1{
    margin:25px 0 25px;
    max-width:760px;
    color:#f6f1e8;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(62px,7.3vw,116px);
    line-height:.91;
    letter-spacing:-.055em;
    font-weight:400;
}
.hero-description{
    max-width:580px;
    margin:0;
    color:#b9b3a8;
    font-size:clamp(15px,1.35vw,19px);
    line-height:1.75;
}
.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:34px;
}
.button{
    min-height:52px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:16px;
    padding:0 24px;
    border:1px solid transparent;
    font-size:10px;
    font-weight:800;
    letter-spacing:.12em;
    text-transform:uppercase;
    transition:transform .25s ease,background .25s ease,border-color .25s ease,color .25s ease;
}
.button:hover{transform:translateY(-2px)}
.button-primary{
    background:var(--accent);
    color:#0b0a08;
    border-color:var(--accent);
}
.button-secondary{
    color:#e6e0d6;
    border-color:rgba(255,255,255,.25);
    background:rgba(9,9,9,.18);
}
.button-secondary:hover{border-color:var(--accent);color:var(--accent)}
.hero-benefits{
    display:flex;
    align-items:center;
    gap:32px;
    margin-top:48px;
    padding-top:22px;
    border-top:1px solid rgba(255,255,255,.12);
}
.hero-benefit{
    display:flex;
    align-items:center;
    gap:9px;
    color:#c8c2b7;
    font-size:11px;
}
.benefit-dot{
    width:5px;
    height:5px;
    border-radius:50%;
    background:var(--accent);
    box-shadow:0 0 0 4px rgba(197,138,58,.10);
}
.hero-number{
    position:absolute;
    right:0;
    bottom:65px;
    color:rgba(255,255,255,.055);
    font-family:Georgia,serif;
    font-size:clamp(150px,19vw,290px);
    line-height:.7;
    user-select:none;
}
.hero-scroll{
    position:absolute;
    right:27px;
    bottom:38px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
    color:#6f6a61;
    font-size:7px;
    letter-spacing:.22em;
}
.hero-scroll span{writing-mode:vertical-rl}
.hero-scroll i{display:block;width:1px;height:46px;background:linear-gradient(var(--accent),transparent)}

.service-marquee{
    position:relative;
    z-index:2;
    overflow:hidden;
    border-top:1px solid rgba(197,138,58,.28);
    border-bottom:1px solid rgba(197,138,58,.28);
    background:var(--accent);
}
.marquee-track{
    width:max-content;
    min-width:200%;
    display:flex;
    align-items:center;
    gap:29px;
    padding:13px 0;
    color:#0b0a08;
    animation:marquee 26s linear infinite;
}
.marquee-track span{
    font-size:10px;
    font-weight:900;
    letter-spacing:.15em;
    text-transform:uppercase;
    white-space:nowrap;
}
.marquee-track i{font-style:normal;font-size:8px}
.service-marquee:hover .marquee-track{animation-play-state:paused}

.next-step{
    padding:115px 0;
    background:
        linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px),
        #0a0a0a;
    background-size:48px 48px;
}
.next-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:90px;
    align-items:start;
}
.section-number{
    display:block;
    margin-bottom:42px;
    color:#69645c;
    font-family:Georgia,serif;
    font-size:13px;
}
.next-step h2{
    max-width:720px;
    margin:18px 0 0;
    font-family:Georgia,serif;
    font-weight:400;
    font-size:clamp(48px,6vw,84px);
    line-height:.98;
    letter-spacing:-.045em;
}
.next-grid>div:last-child{
    padding-top:92px;
    color:#aca69c;
    font-size:17px;
}
.next-note{
    margin-top:26px;
    padding-top:26px;
    border-top:1px solid var(--line);
}
.next-note strong{color:var(--accent);font-weight:600}
.anchor-placeholder{height:0;scroll-margin-top:100px}

.site-footer{
    border-top:1px solid var(--line);
    background:#070707;
}
.footer-inner{
    min-height:130px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}
.footer-inner strong{
    font-family:Georgia,serif;
    font-size:20px;
}
.footer-inner p{
    margin:5px 0 0;
    color:#716c64;
    font-size:11px;
}
.footer-meta{
    display:flex;
    align-items:center;
    gap:26px;
    color:#777169;
    font-size:9px;
    letter-spacing:.12em;
    text-transform:uppercase;
}
.footer-meta a{color:var(--accent)}
.generic-content{padding:160px 0 80px}

@keyframes marquee{
    from{transform:translateX(0)}
    to{transform:translateX(-50%)}
}
@keyframes heroZoom{
    from{transform:scale(1.04)}
    to{transform:scale(1.09)}
}
@keyframes heroCopy{
    from{opacity:0;transform:translateY(22px)}
    to{opacity:1;transform:translateY(0)}
}

@media(max-width:1080px){
    .desktop-nav{display:none}
    .header-cta{margin-left:auto}
    .menu-toggle{display:block;margin-left:0}
    .mobile-menu{display:block}
    .hero-copy{width:min(760px,80%)}
}

@media(max-width:760px){
    :root{--header-h:74px}
    .container{width:min(calc(100% - 30px),var(--max))}
    .header-inner{gap:10px}
    .header-cta{display:none}
    .brand-monogram{width:44px;height:44px}
    .brand-copy strong{font-size:16px}
    .brand-copy small{font-size:7px}
    .brand-logo .custom-logo{max-height:50px;max-width:190px}
    .menu-toggle{width:44px;height:44px}

    .hero{
        min-height:100svh;
        align-items:flex-end;
    }
    .hero-bg{background-position:62% center}
    .hero-shade{
        background:
            linear-gradient(0deg,rgba(6,6,6,.98) 0%,rgba(6,6,6,.91) 37%,rgba(6,6,6,.30) 68%,rgba(6,6,6,.25) 100%),
            linear-gradient(90deg,rgba(6,6,6,.42),rgba(6,6,6,.10));
    }
    .hero-grid{
        padding-top:130px;
        padding-bottom:58px;
    }
    .hero-copy{width:100%}
    .hero h1{
        max-width:540px;
        margin-top:17px;
        font-size:clamp(54px,16.3vw,78px);
        line-height:.91;
    }
    .hero-description{
        max-width:470px;
        font-size:14px;
        line-height:1.65;
    }
    .hero-actions{
        display:grid;
        grid-template-columns:1fr;
        gap:9px;
        margin-top:27px;
    }
    .button{width:100%}
    .hero-benefits{
        max-width:100vw;
        margin:30px -15px 0;
        padding:18px 15px 0;
        gap:22px;
        overflow-x:auto;
        scrollbar-width:none;
        scroll-snap-type:x proximity;
    }
    .hero-benefits::-webkit-scrollbar{display:none}
    .hero-benefit{
        flex:0 0 auto;
        scroll-snap-align:start;
        font-size:10px;
    }
    .hero-number{
        right:-15px;
        bottom:42%;
        font-size:150px;
    }
    .hero-scroll{display:none}
    .marquee-track{padding:11px 0;gap:24px}
    .marquee-track span{font-size:9px}

    .next-step{padding:78px 0}
    .next-grid{grid-template-columns:1fr;gap:24px}
    .section-number{margin-bottom:30px}
    .next-step h2{font-size:clamp(44px,13vw,64px)}
    .next-grid>div:last-child{
        padding-top:10px;
        font-size:15px;
    }
    .footer-inner{
        padding:30px 0;
        min-height:auto;
        flex-direction:column;
        align-items:flex-start;
    }
    .footer-meta{
        width:100%;
        justify-content:space-between;
        gap:12px;
    }
}

@media(max-width:380px){
    .container{width:calc(100% - 26px)}
    .hero h1{font-size:52px}
    .hero-description{font-size:13px}
    .brand-copy{display:none}
    .mobile-menu-inner{width:calc(100% - 30px)}
    .mobile-nav-list a{font-size:28px}
}
