    @font-face {
      font-family: "Fraunces";
      font-style: normal;
      font-weight: 300 600;
      font-display: swap;
      src: url("fonts/fraunces-regular.woff2") format("woff2");
    }
    @font-face {
      font-family: "Fraunces";
      font-style: italic;
      font-weight: 300 600;
      font-display: swap;
      src: url("fonts/fraunces-italic.woff2") format("woff2");
    }
    :root {
      --obsidian: #0b0b0c;
      --charcoal: #151517;
      --charcoal-2: #1d1c1d;
      --ivory: #f4efe7;
      --muted: #b4ada4;
      --gold: #d2b37d;
      --gold-soft: rgba(210, 179, 125, .18);
      --burgundy: #5b2733;
      --line: rgba(244, 239, 231, .14);
      --serif: "Fraunces", Georgia, "Times New Roman", serif;
      --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --ease: cubic-bezier(.16,1,.3,1);
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; background: var(--obsidian); overscroll-behavior-y: none; }
    body {
      margin: 0;
      background: var(--obsidian);
      color: var(--ivory);
      font-family: var(--sans);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { color: inherit; }
    .wrap { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
    .site-header {
      position: sticky; top: 0; z-index: 20;
      background: rgba(11, 11, 12, .84);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
      transition: border-color .4s var(--ease);
    }
    .nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .wordmark { text-decoration: none; letter-spacing: .22em; font-size: 13px; font-weight: 700; }
    .wordmark span { color: var(--gold); }
    .nav-links { display: flex; gap: 28px; align-items: center; }
    .nav-links a { color: var(--muted); text-decoration: none; font-size: 13px; position: relative; }
    .nav-links a:not(.nav-cta)::after {
      content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--gold);
      transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
    }
    .nav-links a:not(.nav-cta):hover::after, .nav-links a:not(.nav-cta):focus-visible::after { transform: scaleX(1); }
    .nav-links a:hover, .nav-links a:focus-visible { color: var(--ivory); }
    .nav-cta { border: 1px solid var(--gold); color: var(--ivory) !important; padding: 10px 15px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
    .nav-cta:hover, .nav-cta:focus-visible { transform: translateY(-2px); box-shadow: 0 8px 24px -12px var(--gold); }
    .nav-toggle { display: none; width: 34px; height: 34px; padding: 0; border: 0; background: none; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
    .nav-toggle span { display: block; width: 20px; height: 1px; background: var(--ivory); transition: transform .3s var(--ease), opacity .3s var(--ease); }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .hero { min-height: 690px; display: grid; align-items: center; position: relative; overflow: hidden; }
    .hero::before {
      content: ""; position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(circle at 78% 25%, rgba(91, 39, 51, .40), transparent 31%), radial-gradient(circle at 12% 76%, rgba(210, 179, 125, .08), transparent 28%);
    }
    .hero::after {
      content: ""; position: absolute; width: min(560px, 80vw); height: min(560px, 80vw); right: 6vw; top: 100px;
      border: 1px solid rgba(210, 179, 125, .22); border-radius: 50%; box-shadow: 0 0 0 36px rgba(210,179,125,.035), 0 0 0 72px rgba(210,179,125,.025);
      animation: hero-pulse 7s ease-in-out infinite;
    }
    @keyframes hero-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.035); opacity: .82; } }
    .hero-content { position: relative; z-index: 1; max-width: 790px; padding: 104px 0 124px; }
    .eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .22em; font-size: 11px; font-weight: 700; }
    h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -.025em; line-height: 1.08; margin: 0; }
    h1 { margin-top: 22px; font-size: clamp(52px, 8vw, 96px); max-width: 820px; }
    h2 { font-size: clamp(36px, 5vw, 58px); position: relative; display: inline-block; }
    h2::after {
      content: ""; position: absolute; left: 0; bottom: -10px; height: 2px; width: 46px; background: var(--gold);
      transform: scaleX(0); transform-origin: left; transition: transform .7s .15s var(--ease);
    }
    .reveal.is-visible h2::after { transform: scaleX(1); }
    h3 { font-size: 24px; }
    .hero-copy { max-width: 610px; margin: 28px 0 0; color: var(--muted); font-size: 18px; }
    .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
    .button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; text-decoration: none; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; border: 1px solid var(--gold); transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease); position: relative; overflow: hidden; }
    .button::before {
      content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
      transform: translateX(-120%); transition: transform .6s var(--ease);
    }
    .button:hover::before, .button:focus-visible::before { transform: translateX(120%); }
    .button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 10px 28px -14px var(--gold); }
    .button-primary { background: var(--gold); color: var(--obsidian); }
    .button-secondary { color: var(--ivory); border-color: var(--line); }
    .button-secondary:hover, .button-secondary:focus-visible { border-color: var(--gold); }
    .section { padding: 112px 0; border-top: 1px solid var(--line); }
    .section-intro { display: grid; grid-template-columns: .82fr 1.18fr; gap: 72px; align-items: start; }
    .section-copy { color: var(--muted); font-size: 17px; max-width: 560px; }
    .section-copy strong { color: var(--ivory); font-weight: 500; }
    .services { margin-top: 68px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
    .service { min-height: 190px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(145deg, rgba(244,239,231,.025), transparent 60%); transition: transform .45s var(--ease), background .45s var(--ease); }
    .service:hover { transform: translateY(-4px); background: linear-gradient(145deg, var(--gold-soft), transparent 65%); }
    .service-number { color: var(--gold); font-size: 12px; letter-spacing: .12em; }
    .service h3 { margin-top: 28px; font-size: 25px; }
    .service p { margin: 12px 0 0; color: var(--muted); font-size: 14px; }
    .standard { background: var(--charcoal); }
    .standard-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
    .quote { border-left: 1px solid var(--gold); padding-left: 28px; color: var(--ivory); font-family: var(--serif); font-size: clamp(28px, 4vw, 45px); line-height: 1.15; }
    .principles { display: grid; gap: 16px; margin-top: 30px; }
    .principle { display: flex; gap: 14px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
    .principle b { color: var(--gold); font-weight: 500; min-width: 92px; }
    .fit { background: linear-gradient(180deg, var(--obsidian), #110c0e); }
    .fit-card { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); }
    .fit-side { padding: 38px; transition: background .4s var(--ease); }
    .fit-side:hover { background: rgba(210,179,125,.05); }
    .fit-side + .fit-side { border-left: 1px solid var(--line); background: rgba(91,39,51,.12); }
    .fit-side + .fit-side:hover { background: rgba(91,39,51,.22); }
    .fit-side ul { padding: 0; margin: 24px 0 0; list-style: none; color: var(--muted); }
    .fit-side li { padding: 11px 0 11px 23px; border-top: 1px solid var(--line); position: relative; }
    .fit-side li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
    .apply { background: var(--ivory); color: var(--obsidian); }
    .apply-grid { display: grid; grid-template-columns: 1fr .78fr; gap: 72px; align-items: end; }
    .apply .eyebrow { color: var(--burgundy); }
    .apply h2 { color: var(--obsidian); }
    .apply h2::after { background: var(--burgundy); }
    .apply-copy { max-width: 540px; margin-top: 22px; color: #5f5a54; font-size: 17px; }
    .apply .button-primary { background: var(--obsidian); color: var(--ivory); border-color: var(--obsidian); }
    .contact-box { border-left: 1px solid rgba(11,11,12,.22); padding-left: 28px; }
    .contact-label { color: #7b746c; text-transform: uppercase; letter-spacing: .16em; font-size: 11px; }
    .contact-email { display: block; margin-top: 10px; color: var(--obsidian); font-family: var(--serif); font-size: 24px; text-decoration: none; overflow-wrap: anywhere; }
    footer { padding: 28px 0; color: var(--muted); font-size: 12px; }
    .footer-row { display: flex; justify-content: space-between; gap: 20px; }
    .footer-note { max-width: 520px; }
    :focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

    /* Scroll reveal */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
    .reveal.is-visible { opacity: 1; transform: none; }
    .reveal-stagger.is-visible > * { opacity: 1; transform: none; }
    .reveal-stagger > * { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
    .reveal-stagger > *:nth-child(1) { transition-delay: .04s; }
    .reveal-stagger > *:nth-child(2) { transition-delay: .1s; }
    .reveal-stagger > *:nth-child(3) { transition-delay: .16s; }
    .reveal-stagger > *:nth-child(4) { transition-delay: .22s; }
    .reveal-stagger > *:nth-child(5) { transition-delay: .28s; }
    .reveal-stagger > *:nth-child(6) { transition-delay: .34s; }

    /* Page transition overlay */
    .transition-overlay {
      position: fixed; inset: -1px; z-index: 999; pointer-events: none;
      background: var(--obsidian);
      transform: translate3d(-101%, 0, 0);
      transition: none;
      will-change: transform;
      backface-visibility: hidden;
    }
    .transition-overlay.active { transform: translate3d(0, 0, 0); transition: transform .32s cubic-bezier(.16, 1, .3, 1); }
    .transition-overlay.leaving { transform: translate3d(101%, 0, 0); transition: transform .4s cubic-bezier(.16, 1, .3, 1); }
    html.is-transitioning-in .transition-overlay { transform: translate3d(0, 0, 0); transition: none; }
    html.is-transitioning-in body > :not(.transition-overlay) { visibility: hidden; }

    @media (max-width: 760px) {
      .wrap { width: min(100% - 36px, 680px); }
      .nav { min-height: 68px; }
      .nav-toggle { display: flex; }
      .nav-links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: rgba(11,11,12,.97); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s var(--ease), opacity .3s var(--ease); }
      .nav-links.open { max-height: 360px; opacity: 1; }
      .nav-links a:not(.nav-cta) { display: block; border-top: 1px solid var(--line); padding: 16px 24px; }
      .nav-links a:not(.nav-cta)::after { display: none; }
      .nav-cta { display: inline-flex; margin: 16px 24px 22px; padding: 9px 12px; }
      .hero { min-height: 640px; }
      .hero-content { padding: 84px 0 100px; }
      h1 { font-size: clamp(48px, 16vw, 74px); }
      .section { padding: 80px 0; }
      .section-intro, .standard-grid, .apply-grid { grid-template-columns: 1fr; gap: 32px; }
      .services { grid-template-columns: 1fr; margin-top: 44px; }
      .service { min-height: 0; }
      .fit-card { grid-template-columns: 1fr; }
      .fit-side + .fit-side { border-left: 0; border-top: 1px solid var(--line); }
      .contact-box { border-left: 0; border-top: 1px solid rgba(11,11,12,.22); padding: 24px 0 0; }
      .footer-row { flex-direction: column; }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition: none !important; animation: none !important; }
      .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
      .transition-overlay { display: none !important; }
    }


/* Enhanced motion and atmosphere */
body::before { content:""; position:fixed; inset:0; z-index:80; pointer-events:none; opacity:.035; background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }
.ambient { position:fixed; width:38vw; height:38vw; border-radius:50%; filter:blur(110px); pointer-events:none; opacity:.1; z-index:0; }
.ambient-one { background:var(--burgundy); right:-15vw; top:8vh; }
.ambient-two { background:var(--gold); left:-22vw; top:62vh; opacity:.06; }
.cursor-glow { position:fixed; z-index:0; width:340px; height:340px; left:0; top:0; border-radius:50%; pointer-events:none; opacity:0; background:radial-gradient(circle,rgba(210,179,125,.07),transparent 68%); transform:translate3d(calc(var(--mx, -600px) - 50%),calc(var(--my, -600px) - 50%),0); transition:opacity .4s ease; }
body.has-pointer .cursor-glow { opacity:1; }
main, footer, .site-header { position:relative; }
.hero { min-height:calc(100svh - 76px); }
.hero::after { display:none; }
.hero-layout { min-height:inherit; display:grid; grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr); align-items:center; gap:44px; position:relative; z-index:1; }
.hero-content { max-width:790px; padding:104px 0 124px; }
.text-shimmer { color:var(--ivory); background:linear-gradient(100deg,var(--ivory) 0%,var(--ivory) 35%,var(--gold) 50%,var(--ivory) 65%,var(--ivory) 100%); background-size:220% auto; -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; background-position:-10% center; animation:title-shimmer 2.4s var(--ease) .5s 1 both; }
@keyframes title-shimmer { from{background-position:160% center} to{background-position:-10% center} }
.hero-orbit { aspect-ratio:1; width:min(38vw,440px); justify-self:end; position:relative; display:grid; place-items:center; transform-style:preserve-3d; will-change:transform; }
.orbit { position:absolute; border:1px solid rgba(210,179,125,.28); border-radius:50%; }
.orbit-a { inset:5%; animation:spin 18s linear infinite; }
.orbit-a::before { content:""; position:absolute; width:9px; height:9px; border-radius:50%; background:var(--gold); top:14%; left:14%; box-shadow:0 0 20px var(--gold); }
.orbit-b { inset:20%; border-color:rgba(244,239,231,.14); animation:spin 12s linear infinite reverse; }
.orbit-c { inset:34%; border-style:dashed; animation:spin 22s linear infinite; }
.orbit-core { width:39%; aspect-ratio:1; border-radius:50%; display:flex; flex-direction:column; justify-content:center; align-items:center; gap:8px; text-align:center; background:radial-gradient(circle at 35% 30%,rgba(210,179,125,.20),rgba(91,39,51,.23) 50%,rgba(11,11,12,.92)); border:1px solid rgba(210,179,125,.42); box-shadow:0 0 70px rgba(91,39,51,.38), inset 0 0 32px rgba(210,179,125,.08); }
.orbit-core span { font-family:var(--serif); font-size:clamp(23px,3vw,34px); letter-spacing:.11em; }
.orbit-core small { width:75%; color:var(--gold); font-size:8px; letter-spacing:.2em; line-height:1.5; }
.satellite { position:absolute; border-radius:50%; background:var(--ivory); box-shadow:0 0 18px var(--gold); }
.satellite-a { width:5px;height:5px;right:3%;top:48%;animation:blink 2.8s ease-in-out infinite; }
.satellite-b { width:3px;height:3px;left:14%;bottom:17%;animation:blink 2.8s 1.2s ease-in-out infinite; }
@keyframes spin { to { transform:rotate(360deg); } }
@keyframes blink { 50% { opacity:.25; transform:scale(.7); } }
.scroll-cue { position:absolute; left:50%; bottom:24px; transform:translateX(-50%); display:flex; align-items:center; gap:12px; color:var(--muted); text-transform:uppercase; letter-spacing:.16em; font-size:9px; z-index:2; }
.scroll-cue i { width:44px; height:1px; background:var(--line); position:relative; overflow:hidden; }
.scroll-cue i::after { content:""; position:absolute; inset:0; background:var(--gold); transform:translateX(-100%); animation:scroll-line 2s var(--ease) infinite; }
@keyframes scroll-line { 55%,100% { transform:translateX(100%); } }
.magnetic > span { margin-left:10px; transition:transform .3s var(--ease); }
.magnetic:hover > span { transform:translate(3px,-3px); }
.service { position:relative; overflow:hidden; transform-style:preserve-3d; }
.service::after { content:""; position:absolute; inset:0; pointer-events:none; background:radial-gradient(280px circle at var(--card-x,50%) var(--card-y,50%),rgba(210,179,125,.16),transparent 55%); opacity:0; transition:opacity .35s ease; }
.service:hover::after { opacity:1; }
.service > * { position:relative; z-index:1; transform:translateZ(14px); }
.tilt-card { will-change:transform; }
.site-header.scrolled { border-color:rgba(210,179,125,.26); box-shadow:0 10px 34px rgba(0,0,0,.16); }
@media (max-width:900px) { .hero-layout { grid-template-columns:1fr; } .hero-orbit { position:absolute; width:min(70vw,420px); right:-25vw; opacity:.42; } .hero-content { position:relative; z-index:2; } }
@media (max-width:760px) { .hero { min-height:680px; } .hero-orbit { width:390px; right:-245px; top:80px; opacity:.28; } .hero-orbit .orbit-core { opacity:0; } .scroll-cue { left:18px; transform:none; } }
@media (pointer:coarse) { .cursor-glow { display:none; } }
@media (prefers-reduced-motion:reduce) { .text-shimmer,.orbit,.satellite,.scroll-cue i::after { animation:none!important; } .hero-orbit,.tilt-card { transform:none!important; } }


/* Lower-page editorial experience */
.process { position:relative; overflow:hidden; background:linear-gradient(180deg,#110c0e 0%,#0b0b0c 42%,#121011 100%); }
.process::before { content:""; position:absolute; width:620px; height:620px; right:-260px; top:80px; border:1px solid rgba(210,179,125,.12); border-radius:50%; box-shadow:0 0 0 60px rgba(210,179,125,.018),0 0 0 120px rgba(210,179,125,.012); }
.process-head { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; }
.process-track { margin-top:72px; border-top:1px solid var(--line); }
.process-track article { display:grid; grid-template-columns:100px .8fr 1fr; padding:27px 0; border-bottom:1px solid var(--line); align-items:center; transition:padding .35s var(--ease),background .35s var(--ease); }
.process-track article:hover { padding-left:18px; background:linear-gradient(90deg,rgba(210,179,125,.06),transparent 60%); }
.process-track span { color:var(--gold); font-size:11px; letter-spacing:.15em; }
.process-track h3 { font-size:27px; }
.process-track p { margin:0; color:var(--muted); font-size:14px; max-width:490px; justify-self:end; }
.process-statement { margin-top:86px; min-height:310px; border:1px solid rgba(210,179,125,.2); display:grid; place-items:center; text-align:center; position:relative; overflow:hidden; background:radial-gradient(circle at 50% 40%,rgba(91,39,51,.26),transparent 48%); }
.statement-mark { position:absolute; font:400 330px/.8 var(--serif); color:transparent; -webkit-text-stroke:1px rgba(210,179,125,.10); transform:translateY(12px); }
.process-statement p { margin:0; position:relative; font:400 clamp(36px,5vw,62px)/1.08 var(--serif); }
.process-statement em { color:var(--gold); font-weight:400; }
.process-statement div { position:absolute; bottom:25px; color:var(--muted); font-size:9px; letter-spacing:.22em; text-transform:uppercase; }
.site-footer { padding:64px 0 26px; background:#080809; border-top:1px solid var(--line); }
.footer-top { display:grid; grid-template-columns:.75fr 1.25fr; gap:72px; padding-bottom:54px; }
.footer-brand p { max-width:290px; color:var(--muted); font-size:14px; margin:18px 0 0; }
.footer-links { display:grid; grid-template-columns:.65fr .8fr 1.35fr; gap:36px; }
.footer-links div { display:flex; flex-direction:column; align-items:flex-start; gap:9px; }
.footer-links b { color:var(--gold); text-transform:uppercase; letter-spacing:.15em; font-size:10px; margin-bottom:8px; }
.footer-links a,.footer-links span { color:var(--muted); text-decoration:none; font-size:13px; }
.footer-links a:hover { color:var(--ivory); }
.site-footer .footer-row { border-top:1px solid var(--line); padding-top:24px; }
@media(max-width:760px){.process-head{grid-template-columns:1fr;gap:32px}.process-track{margin-top:48px}.process-track article{grid-template-columns:48px 1fr;padding:24px 0}.process-track p{grid-column:2;margin-top:10px;justify-self:start}.process-statement{margin-top:58px;min-height:260px}.footer-top{grid-template-columns:1fr;gap:42px}.footer-links{grid-template-columns:1fr 1fr}.footer-links div:last-child{grid-column:1/-1}.site-footer{padding-top:50px}}

.brand-icon{display:inline-block;width:28px;height:28px;margin-right:10px;flex:0 0 auto;vertical-align:middle;filter:drop-shadow(0 0 7px rgba(210,179,125,.18));transition:transform .3s ease,filter .3s ease}.wordmark,.footer-brand .wordmark{display:inline-flex;align-items:center}.wordmark:hover .brand-icon,.footer-brand .wordmark:hover .brand-icon{transform:translateY(-1px) rotate(-2deg);filter:drop-shadow(0 0 11px rgba(210,179,125,.5))}@media(max-width:520px){.brand-icon{width:25px;height:25px;margin-right:8px}}
