/* Trade & Flow — site-wide design system */
:root {
  --navy: #0b2748;
  --navy-2: #15395f;
  --navy-3: #071c34;
  --gold: #bd8b3e;
  --gold-light: #d7b270;
  --cream: #f7f5f0;
  --cream-2: #efebe3;
  --ink: #17283a;
  --muted: #607083;
  --line: #dfe4e8;
  --white: #fff;
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--sans); line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a, button, input, textarea { font: inherit; }
a { text-underline-offset: 3px; }
button { cursor: pointer; }
::selection { color: var(--white); background: var(--navy); }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 120px 0; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; padding: 10px 15px; color: var(--white); background: var(--navy); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

/* Navigation */
.site-header { position: sticky; z-index: 50; top: 0; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(11,39,72,.1); backdrop-filter: blur(12px); }
.nav-wrap { height: 80px; display: flex; align-items: center; gap: 34px; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--navy); font-size: 15px; font-weight: 550; letter-spacing: .15em; text-decoration: none; white-space: nowrap; }
.brand b { color: var(--gold); font-weight: 600; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; background: transparent; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.primary-nav a { position: relative; color: var(--navy); font-size: 14px; font-weight: 650; text-decoration: none; }
.primary-nav a::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .2s; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 45px; height: 45px; padding: 11px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 23px; height: 2px; margin: 5px 0; background: var(--navy); transition: .2s ease; }

/* Buttons and shared typography */
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 11px; padding: 0 25px; color: var(--white); background: var(--navy); border: 1px solid var(--navy); border-radius: 2px; font-size: 14px; font-weight: 750; letter-spacing: .01em; text-decoration: none; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { background: var(--navy-2); box-shadow: 0 10px 24px rgba(11,39,72,.15); transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid rgba(189,139,62,.42); outline-offset: 3px; }
.button-small { min-height: 43px; padding-inline: 17px; font-size: 13px; }
.button-gold { color: var(--navy-3); background: var(--gold-light); border-color: var(--gold-light); white-space: nowrap; }
.button-gold:hover { color: var(--navy-3); background: #e0bd7e; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 20px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 1px; flex: 0 0 auto; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { color: var(--navy); font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; }
h2 { margin-bottom: 24px; font-size: clamp(38px, 4.6vw, 60px); line-height: 1.12; }
h3 { color: var(--navy); font-size: 19px; line-height: 1.35; }
.section-heading { display: grid; grid-template-columns: minmax(0,1.6fr) minmax(260px,.65fr); gap: 80px; align-items: end; margin-bottom: 66px; }
.section-heading h2 { max-width: 850px; margin-bottom: 0; }
.section-heading > p { margin: 0 0 5px; color: var(--muted); }

/* Hero */
.hero { min-height: calc(100vh - 80px); display: grid; align-items: center; padding: 78px 0 92px; overflow: hidden; background: linear-gradient(105deg, #fff 0 58%, var(--cream) 58% 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
h1 { max-width: 710px; margin-bottom: 0; font-size: clamp(52px, 6.2vw, 80px); line-height: 1.02; }
h1 span { color: var(--gold); }
.hero-lead { max-width: 680px; margin: 27px 0 32px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.text-link { color: var(--navy); font-size: 14px; font-weight: 750; text-decoration: none; }
.text-link span { display: inline-block; margin-left: 7px; color: var(--gold); transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.hero-note { margin: 28px 0 0; color: #728091; font-size: 13px; }
.trade-pathway { position: relative; min-height: 460px; aspect-ratio: 1/.9; overflow: hidden; padding: 42px 38px 30px; color: var(--white); background: var(--navy-3); border: 1px solid rgba(11,39,72,.15); box-shadow: 0 25px 70px rgba(11,39,72,.16); }
.trade-pathway::before { content: ""; position: absolute; right: -80px; bottom: -105px; width: 285px; height: 285px; border: 1px solid rgba(215,178,112,.18); border-radius: 50%; }
.trade-pathway::after { content: ""; position: absolute; top: 0; right: 0; width: 7px; height: 100%; background: var(--gold); }
.pathway-head { position: relative; z-index: 1; display: flex; flex-direction: column; margin-bottom: 42px; }
.pathway-head > span { margin-bottom: 8px; color: var(--gold-light); font-size: 10px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.pathway-head > strong { max-width: 390px; color: var(--white); font-family: var(--serif); font-size: 30px; font-weight: 500; letter-spacing: -.025em; line-height: 1.12; }
.pathway-list { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 24px 1fr 24px 1fr; align-items: stretch; }
.pathway-step { min-width: 0; min-height: 178px; display: flex; flex-direction: column; align-items: flex-start; padding: 20px 15px 18px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13); transition: border-color .2s, transform .2s, background .2s; }
.pathway-step:hover { background: rgba(255,255,255,.085); border-color: rgba(215,178,112,.5); transform: translateY(-3px); }
.pathway-number { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 28px; color: var(--gold-light); background: rgba(215,178,112,.08); border: 1px solid rgba(215,178,112,.42); font-size: 11px; font-weight: 850; letter-spacing: .08em; }
.pathway-step strong { display: block; margin-bottom: 8px; color: var(--white); font-size: 14px; line-height: 1.3; }
.pathway-step small { display: block; color: #9eafbf; font-size: 10px; line-height: 1.5; letter-spacing: .02em; }
.pathway-step-final { background: rgba(189,139,62,.15); border-color: rgba(215,178,112,.5); }
.pathway-step-final .pathway-number { color: var(--navy-3); background: var(--gold-light); border-color: var(--gold-light); }
.pathway-arrow { display: grid; place-items: center; color: var(--gold-light); font-size: 17px; font-weight: 700; line-height: 1; }
.pathway-foot { position: relative; z-index: 1; display: flex; justify-content: space-between; margin-top: 32px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.16); color: #8296aa; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }

/* Positioning and services */
.positioning { padding: 55px 0; color: var(--white); background: var(--navy); }
.positioning-grid { display: grid; grid-template-columns: .6fr 1.4fr; gap: 70px; align-items: center; }
.positioning p { margin: 0; color: #aebbc8; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }
.positioning h2 { max-width: 780px; margin: 0; color: var(--white); font-size: clamp(28px,3.4vw,43px); }
.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 350px; padding: 38px 34px 45px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .25s, background .25s, transform .25s; }
.service-card:hover { z-index: 2; color: #d5dde5; background: var(--navy); transform: translateY(-4px); }
.card-number { display: block; margin-bottom: 52px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.service-card h3 { max-width: 255px; margin-bottom: 17px; font-size: 20px; transition: color .25s; }.service-card:hover h3 { color: var(--white); }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; transition: color .25s; }.service-card:hover p { color: #bdc9d4; }
.card-line { position: absolute; right: 34px; bottom: 28px; left: 34px; height: 1px; background: var(--line); }.card-line::after { content: ""; display: block; width: 35px; height: 1px; background: var(--gold); transition: width .25s; }.service-card:hover .card-line::after { width: 100%; }

/* Process */
.process-section { color: var(--white); background: var(--navy-3); }
.section-heading.light h2 { color: var(--white); }.section-heading.light > p { color: #9fadb9; }
.process-list { position: relative; display: grid; grid-template-columns: repeat(5,1fr); margin: 40px 0 0; padding: 0; list-style: none; }
.process-list::before { content: ""; position: absolute; z-index: 0; top: 28px; right: 10%; left: 10%; height: 1px; background: #34506c; }
.process-item { position: relative; z-index: 1; padding: 0 20px; text-align: center; }
.step-number { width: 56px; height: 56px; display: grid; place-items: center; margin: 0 auto 28px; color: var(--navy-3); background: var(--gold-light); border: 6px solid var(--navy-3); border-radius: 50%; font-size: 12px; font-weight: 850; }
.process-item h3 { min-height: 51px; margin-bottom: 13px; color: var(--white); font-size: 16px; }.process-item p { margin: 0; color: #9fadb9; font-size: 13px; line-height: 1.7; }

/* Why and about */
.why-section { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: start; }
.why-intro { position: sticky; top: 130px; }.why-intro p:last-child { max-width: 450px; color: var(--muted); font-size: 16px; }
.why-item { display: grid; grid-template-columns: 52px 1fr; gap: 24px; padding: 31px 0; border-top: 1px solid #d7d4cd; }
.why-item:last-child { border-bottom: 1px solid #d7d4cd; }.why-item > span { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.why-item h3 { margin-bottom: 9px; font-size: 20px; }.why-item p { margin: 0; color: var(--muted); font-size: 14px; }
.about-section { overflow: hidden; }
.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 100px; align-items: center; }
.about-visual { position: relative; min-height: 560px; display: grid; place-items: center; overflow: hidden; padding: 75px 42px 145px; background-color: var(--navy-3); background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),radial-gradient(circle at 78% 20%,rgba(189,139,62,.2),transparent 34%); background-size: 48px 48px,48px 48px,auto; box-shadow: 0 25px 65px rgba(11,39,72,.16); }
.about-visual::before { content: ""; position: absolute; top: -105px; right: -105px; width: 320px; height: 320px; border: 1px solid rgba(215,178,112,.28); border-radius: 50%; }
.about-visual::after { content: ""; position: absolute; top: 0; left: 0; width: 7px; height: 100%; background: var(--gold); }
.about-visual-label { position: absolute; z-index: 2; top: 34px; left: 42px; color: var(--gold-light); font-size: 10px; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.about-visual img { position: relative; z-index: 1; width: min(72%,330px); filter: drop-shadow(0 24px 35px rgba(0,0,0,.2)); }
.about-quote { position: absolute; z-index: 2; right: 32px; bottom: 30px; left: 42px; display: grid; grid-template-columns: 90px 1fr; gap: 20px; align-items: start; padding: 22px 24px; color: var(--white); background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(8px); }
.about-quote > span { padding-top: 5px; color: var(--gold-light); font-size: 9px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.about-quote strong { font-family: var(--serif); font-size: 18px; font-weight: 500; line-height: 1.48; }
.about-copy h2 { font-size: clamp(38px,4.4vw,58px); }.about-copy p { color: var(--muted); }.about-copy .lead { color: var(--ink); font-size: 18px; line-height: 1.8; }

/* CTA and contact */
.cta-section { padding: 90px 0; color: var(--white); background: var(--navy); }
.cta-wrap { display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; }.cta-wrap h2 { margin-bottom: 17px; color: var(--white); }.cta-wrap p:last-child { max-width: 760px; margin-bottom: 0; color: #b7c2cc; }.cta-wrap .eyebrow { color: var(--gold-light); }
.contact-section { background: #fbfbfa; }
.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; align-items: start; }
.contact-info { position: sticky; top: 130px; }.contact-info > p:not(.eyebrow) { max-width: 470px; color: var(--muted); }
.contact-info dl { margin: 50px 0 0; }.contact-info dl > div { padding: 22px 0; border-top: 1px solid var(--line); }.contact-info dt { margin-bottom: 7px; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }.contact-info dd { margin: 0; color: var(--navy); font-weight: 650; }.contact-info dd span { color: var(--muted); font-size: 13px; font-weight: 400; }.contact-info dd a { overflow-wrap: anywhere; color: var(--navy); }
.contact-form { padding: 48px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 20px 55px rgba(11,39,72,.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }.field { margin-bottom: 23px; }.field label { display: block; margin-bottom: 8px; color: var(--navy); font-size: 12px; font-weight: 800; letter-spacing: .04em; }.field label span { color: var(--gold); }
.field input, .field textarea { width: 100%; padding: 12px 14px; color: var(--ink); background: #fbfbfa; border: 1px solid #ccd4da; border-radius: 0; transition: border .2s, background .2s; }.field input { height: 50px; }.field textarea { resize: vertical; min-height: 135px; }.field input:focus, .field textarea:focus { background: var(--white); border-color: var(--gold); }
.form-footer { display: flex; align-items: center; gap: 22px; }.form-footer p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }.form-status { min-height: 24px; margin: 13px 0 0; color: var(--navy); font-size: 13px; }

/* Footer */
.site-footer { color: #b8c2cc; background: var(--navy-3); }
.footer-top { min-height: 180px; display: grid; grid-template-columns: auto 1fr auto; gap: 60px; align-items: center; }.footer-brand { color: var(--white); }.footer-top > p { max-width: 380px; margin: 0; font-size: 14px; }.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 24px; }.footer-links a { color: #dce2e8; font-size: 13px; text-decoration: none; }.footer-links a:hover { color: var(--gold-light); }.linkedin-link { display: inline-flex; align-items: center; gap: 7px; }.linkedin-link span { width: 21px; height: 21px; display: grid; place-items: center; color: var(--navy-3); background: var(--gold-light); border-radius: 2px; font-size: 11px; font-weight: 900; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #243a52; font-size: 12px; }.footer-bottom p { margin: 0; }.footer-bottom a { color: #b8c2cc; text-decoration: none; }

/* Legal pages */
.legal-page { background: var(--cream); }.legal-main { min-height: calc(100vh - 260px); padding: 90px 0 120px; }.legal-shell { max-width: 850px; }.legal-notice { margin: 30px 0 48px; padding: 22px 24px; color: #593f18; background: #f4e7ce; border-left: 4px solid var(--gold); }.legal-content { padding: 50px; background: var(--white); border: 1px solid var(--line); }.legal-content h2 { margin-top: 44px; font-family: var(--sans); font-size: 22px; font-weight: 750; letter-spacing: -.015em; }.legal-content h2:first-child { margin-top: 0; }.legal-content p, .legal-content li { color: var(--muted); }.placeholder { color: #8a651e; font-weight: 750; }

/* Progressive animation */
.reveal { opacity: 1; transform: none; }.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }.js .reveal.is-visible { opacity: 1; transform: none; }.services-grid .reveal:nth-child(2), .why-list .reveal:nth-child(2) { transition-delay: .06s; }.services-grid .reveal:nth-child(3), .why-list .reveal:nth-child(3) { transition-delay: .12s; }.services-grid .reveal:nth-child(5) { transition-delay: .06s; }.services-grid .reveal:nth-child(6) { transition-delay: .12s; }

@media (max-width: 1040px) {
  .nav-wrap { gap: 20px; }.primary-nav { gap: 20px; }.hero-grid { gap: 42px; }.services-grid { grid-template-columns: repeat(2,1fr); }.process-list { grid-template-columns: repeat(5,220px); overflow-x: auto; padding-bottom: 25px; scroll-snap-type: x proximity; }.process-item { scroll-snap-align: start; }.why-grid, .about-grid, .contact-grid { gap: 60px; }.footer-top { grid-template-columns: 1fr 1fr; }.footer-links { grid-column: 1/-1; justify-content: flex-start; padding-bottom: 35px; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 70px; }.section { padding: 90px 0; }.nav-wrap { height: 70px; }.nav-cta { margin-left: auto; }.menu-toggle { z-index: 2; display: block; order: 3; }.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 70px 0 auto; display: flex; visibility: hidden; flex-direction: column; align-items: stretch; gap: 0; padding: 15px 20px 30px; background: var(--white); border-bottom: 1px solid var(--line); opacity: 0; transform: translateY(-12px); transition: .2s ease; }.primary-nav.is-open { visibility: visible; opacity: 1; transform: none; }.primary-nav a { padding: 15px 5px; border-bottom: 1px solid var(--line); font-size: 16px; }.primary-nav a::after { display: none; }
  .hero { min-height: auto; padding: 65px 0 85px; background: var(--white); }.hero-grid { grid-template-columns: 1fr; }.trade-pathway { width: min(100%,620px); }.positioning-grid { grid-template-columns: 1fr; gap: 12px; }.section-heading { grid-template-columns: 1fr; gap: 25px; }.why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }.why-intro, .contact-info { position: static; }.about-visual { width: min(100%,620px); }.cta-wrap { grid-template-columns: 1fr; gap: 35px; }.cta-wrap .button { justify-self: start; }
}

@media (max-width: 640px) {
  .container { width: min(var(--max),calc(100% - 28px)); }.section { padding: 74px 0; }.brand { font-size: 13px; }.brand-mark { width: 40px; height: 40px; }.nav-cta { display: none; }.hero { padding: 52px 0 68px; }.hero-grid { gap: 45px; }.hero h1 { font-size: clamp(46px,14.5vw,62px); }.hero-lead { font-size: 16px; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 19px; }.trade-pathway { min-height: 560px; aspect-ratio: auto; padding: 30px 24px 25px; }.pathway-head { margin-bottom: 27px; }.pathway-head > strong { font-size: 25px; }.pathway-list { display: flex; flex-direction: column; }.pathway-step { min-height: 102px; display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; padding: 14px; }.pathway-number { margin: 0; }.pathway-arrow { height: 24px; transform: rotate(90deg); }.pathway-foot { margin-top: 25px; }.positioning { padding: 42px 0; }.services-grid { grid-template-columns: 1fr; }.service-card { min-height: 310px; }.card-number { margin-bottom: 35px; }.process-section { padding-bottom: 55px; }.process-list { display: block; overflow: visible; }.process-list::before { top: 25px; bottom: 55px; left: 27px; width: 1px; height: auto; }.process-item { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 0 0 38px; text-align: left; }.process-item h3 { min-height: 0; }.why-grid { gap: 35px; }.why-item { grid-template-columns: 38px 1fr; gap: 13px; }.about-visual { min-height: 470px; padding: 65px 25px 155px; }.about-visual-label { top: 26px; left: 26px; }.about-visual img { width: min(64%,250px); }.about-quote { right: 20px; bottom: 20px; left: 26px; grid-template-columns: 1fr; gap: 8px; padding: 18px 20px; }.about-quote > span { padding-top: 0; }.about-quote strong { font-size: 16px; }.cta-section { padding: 70px 0; }.contact-grid { gap: 50px; }.contact-form { padding: 27px 20px; }.form-row { grid-template-columns: 1fr; gap: 0; }.form-footer { align-items: flex-start; flex-direction: column; }.legal-main { padding: 60px 0 80px; }.legal-content { padding: 30px 22px; }.footer-top { min-height: auto; grid-template-columns: 1fr; gap: 25px; padding-block: 55px 35px; }.footer-links { grid-column: auto; gap: 18px 23px; padding-bottom: 0; }.footer-bottom { min-height: 86px; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; } *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }.js .reveal { opacity: 1; transform: none; }
}
