@charset "utf-8";
/*
    Location: /new/assets/site.css
    Purpose:  Design system for the proposed borgiaexecutive.com rebuild.

    Deliberately self-contained — it shares nothing with /styles/public.css, so the
    live site is untouched and this can be reviewed side by side.

    Direction: black tie, not tactical. The old theme (red #c00 on black, Bebas Neue,
    text-shadows) is the house style of the industry's bottom half. Red is the colour
    of alarm and the product here is the absence of alarm, so the accent is a
    low-saturation brass — ballroom warmth, watch trim — used sparingly against a
    warm near-black.
*/

:root{
    --ink:#0B0B0C;          /* ground — warmer and softer than pure black */
    --ink-raised:#131316;   /* panels */
    --ink-line:#26262B;     /* hairlines */
    --bone:#E8E4DC;         /* text — warm off-white, never #FFF */
    --bone-bright:#F5F2EC;
    --bone-dim:#9C978D;
    --bone-faint:#6A665F;
    --brass:#B08D57;        /* the one accent */
    --brass-dim:#7A6440;

    --serif:'Bodoni Moda','Didot','Bodoni MT','Hoefler Text',Garamond,Georgia,serif;
    --sans:'Archivo','Helvetica Neue',Helvetica,Arial,system-ui,sans-serif;

    --gutter:clamp(22px,5vw,64px);
    --measure:64ch;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){
    html{scroll-behavior:auto}
    *,*::before,*::after{animation-duration:.001ms !important;transition-duration:.001ms !important}
}

html,body{overflow-x:hidden;max-width:100%}

body{
    margin:0;
    background:var(--ink);
    color:var(--bone);
    font-family:var(--sans);
    font-size:17px;
    line-height:1.7;
    -webkit-font-smoothing:antialiased;
}

/* One slow fade on load. Nothing else. Restraint is the luxury signal. */
@keyframes rise{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}
.rise{animation:rise 1.1s cubic-bezier(.16,.84,.44,1) both}
.rise-2{animation-delay:.12s}
.rise-3{animation-delay:.24s}

a{color:var(--brass);text-decoration:none}
a:hover{color:var(--bone-bright)}
a:focus-visible{outline:2px solid var(--brass);outline-offset:4px}

.shell{max-width:1180px;margin:0 auto;padding:0 var(--gutter)}

/* ---------------------------------------------------------------- wordmark */
.wordmark{
    font-family:var(--serif);
    font-weight:400;
    letter-spacing:.34em;
    text-indent:.34em;      /* optical centring against the tracking */
    color:var(--bone-bright);
    line-height:1;
}

/* ---------------------------------------------------------------- topbar */
.topbar{
    position:relative;z-index:3;
    display:flex;align-items:center;justify-content:space-between;
    gap:10px 24px;padding:30px 0 0;
    flex-wrap:wrap;          /* the wordmark + three nav items do not fit 360px */
}
.topbar .wordmark{font-size:23px}
.topbar nav{display:flex;gap:30px;align-items:center;flex-wrap:wrap}
.topbar nav a{
    font-size:11.5px;letter-spacing:.18em;text-transform:uppercase;
    color:var(--bone-dim);font-weight:500;white-space:nowrap;
}
.topbar nav a:hover{color:var(--bone-bright)}

@media(max-width:620px){
    /* Wordmark keeps its line; nav drops beneath it and reads as a row of labels. */
    .topbar{padding-top:22px}
    .topbar .wordmark{font-size:19px;letter-spacing:.26em;text-indent:.26em}
    .topbar nav{width:100%;gap:20px}
    .topbar nav a{font-size:10.5px;letter-spacing:.14em}
}

/* ---------------------------------------------------------------- hero
   No photography. The artwork is an SVG route diagram — grid, primary route,
   alternate held in reserve — drawn from what an advance team actually produces.
   It sits behind the type at low contrast and fades into the ground. */
.hero{
    position:relative;
    padding:clamp(84px,13vw,168px) 0 clamp(84px,13vw,152px);
    isolation:isolate;
}
.hero-art{
    position:absolute;z-index:-1;
    top:0;bottom:0;
    /* break out of .shell so the drawing runs to the page edges */
    left:calc(-1 * var(--gutter));right:calc(-1 * var(--gutter));
    overflow:hidden;pointer-events:none;
}
.hero-art svg{width:100%;height:100%;max-width:100%;display:block}
.hero-copy{max-width:22ch}
.hero-copy p{max-width:46ch}
@media(min-width:861px){.hero-copy{max-width:none}.hero-copy h1{max-width:15ch}}

.hero h1{
    font-family:var(--serif);
    font-weight:400;
    font-size:clamp(38px,5.6vw,66px);
    line-height:1.06;
    letter-spacing:-.005em;
    margin:0 0 26px;
    text-wrap:balance;
    color:var(--bone-bright);
}
.hero p{
    font-size:19px;color:var(--bone-dim);max-width:44ch;margin:0 0 34px;
}
/* One composition per orientation — the phone is not shown a crop of the desktop drawing. */
.hero-art-tall{display:none}
@media(max-width:720px){
    .hero-art-wide{display:none}
    .hero-art-tall{display:block}
    /* the CTA was floating in dead space above the first section */
    .hero{padding-top:clamp(56px,11vw,84px);padding-bottom:clamp(44px,9vw,72px)}
}

/* ---------------------------------------------------------------- buttons */
.btn{
    display:inline-block;
    font-family:var(--sans);
    font-size:12px;letter-spacing:.17em;text-transform:uppercase;font-weight:600;
    color:var(--bone-bright);
    border:1px solid var(--brass-dim);
    padding:15px 30px;
    transition:background .35s ease,border-color .35s ease;
}
.btn:hover{background:rgba(176,141,87,.11);border-color:var(--brass);color:var(--bone-bright)}

/* ---------------------------------------------------------------- sections */
section{padding:clamp(58px,8vw,104px) 0;border-top:1px solid var(--ink-line)}

.eyebrow{
    font-size:11px;letter-spacing:.22em;text-transform:uppercase;
    color:var(--brass);font-weight:600;margin:0 0 20px;
}
h2{
    font-family:var(--serif);font-weight:400;
    font-size:clamp(28px,3.6vw,42px);line-height:1.14;
    margin:0 0 22px;text-wrap:balance;color:var(--bone-bright);
}
h3{
    font-family:var(--sans);
    font-size:12.5px;letter-spacing:.15em;text-transform:uppercase;
    font-weight:600;color:var(--bone-bright);margin:0 0 12px;
}
.lede{font-size:19px;color:var(--bone-dim);max-width:var(--measure);margin:0 0 20px}
p{max-width:var(--measure);margin:0 0 20px}
.muted{color:var(--bone-dim)}

/* ---------------------------------------------------------------- figures (scale) */
.figures{
    display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
    gap:1px;background:var(--ink-line);border:1px solid var(--ink-line);margin-top:44px;
}
.figure{background:var(--ink);padding:28px 26px}
.figure .n{
    font-family:var(--serif);font-size:40px;line-height:1;
    color:var(--bone-bright);font-variant-numeric:tabular-nums;display:block;margin-bottom:10px;
}
.figure .k{font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:var(--bone-faint)}

/* ---------------------------------------------------------------- capability */
.capability{display:grid;grid-template-columns:repeat(auto-fit,minmax(290px,1fr));gap:1px;
    background:var(--ink-line);border:1px solid var(--ink-line);margin-top:46px}
.cap{background:var(--ink);padding:32px 30px}
.cap p{font-size:15.5px;color:var(--bone-dim);margin:0;max-width:none}

/* ---------------------------------------------------------------- phases */
.phases{border-top:1px solid var(--ink-line);margin-top:44px}
.phase{
    display:grid;grid-template-columns:190px 1fr;gap:30px;
    padding:24px 0;border-bottom:1px solid var(--ink-line);
}
.phase-k{
    font-size:12px;letter-spacing:.14em;text-transform:uppercase;
    color:var(--brass);font-weight:600;padding-top:4px;
}
.phase-v{color:var(--bone-dim);font-size:16px;max-width:60ch}
@media(max-width:720px){.phase{grid-template-columns:1fr;gap:8px}}

/* ---------------------------------------------------------------- standing orders */
.orders{display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--ink-line);
    border:1px solid var(--ink-line);margin-top:46px}
.order{background:var(--ink);padding:34px 32px}
.order .q{
    font-family:var(--serif);font-size:24px;line-height:1.3;
    color:var(--bone-bright);margin:0 0 14px;max-width:none;
}
.order .why{font-size:14.5px;color:var(--bone-faint);margin:0;max-width:none}
@media(max-width:720px){.orders{grid-template-columns:1fr}}

/* ---------------------------------------------------------------- discretion */
.redaction{
    background:var(--ink-raised);border:1px solid var(--ink-line);
    padding:clamp(30px,5vw,52px);margin-top:12px;
}
.bars{display:flex;flex-wrap:wrap;gap:11px;margin:0 0 30px}
.bar{
    background:var(--bone);color:transparent;user-select:none;
    padding:3px 4px;font-size:16px;line-height:1.5;
}
.redaction .kicker{
    font-family:var(--serif);font-size:clamp(21px,2.7vw,29px);line-height:1.35;
    color:var(--bone-bright);margin:0;max-width:34ch;
}

/* ---------------------------------------------------------------- record */
.record{border-top:1px solid var(--ink-line);margin-top:44px}
.rec{padding:26px 0;border-bottom:1px solid var(--ink-line)}
.rec h3{margin-bottom:8px}
.rec p{margin:0;color:var(--bone-dim);font-size:16px}

/* ---------------------------------------------------------------- contact */
.contact{text-align:center}
.contact h2{margin-bottom:16px}
.contact .lede{margin-left:auto;margin-right:auto}
.lines{
    display:flex;gap:14px 46px;justify-content:center;flex-wrap:wrap;
    margin:38px 0 34px;
}
.lines a{
    font-family:var(--serif);font-size:clamp(21px,2.6vw,28px);
    color:var(--bone-bright);border-bottom:1px solid var(--brass-dim);padding-bottom:3px;
}
.lines a:hover{border-color:var(--brass)}

/* ---------------------------------------------------------------- footer */
footer{border-top:1px solid var(--ink-line);padding:44px 0 40px}
.foot{display:flex;justify-content:space-between;align-items:center;gap:24px;flex-wrap:wrap}
.foot .wordmark{font-size:15px;color:var(--bone-dim)}
.foot-links{display:flex;gap:26px;flex-wrap:wrap}
.foot-links a,.foot small{
    font-size:11.5px;letter-spacing:.12em;text-transform:uppercase;color:var(--bone-faint);
}
.foot-links a:hover{color:var(--bone-dim)}
.colophon{
    margin-top:26px;padding-top:22px;border-top:1px solid var(--ink-line);
    font-size:12px;color:var(--bone-faint);text-align:center;
}
.colophon a{color:var(--bone-dim)}
