/* ============================================================
   Oranje Axis Placement Consultancy — design tokens
   Palette:
     --navy      #0B1F33  primary dark / authority (BFS side)
     --navy-2    #132C47  secondary dark, panels
     --orange    #E85D04  brand mark, the "axis" itself
     --orange-2  #FFB870  light orange, tints/hover
     --paper     #FAF7F1  page background
     --ink       #1B2430  body text
     --slate     #5C6672  secondary text
     --line      #E4DED2  hairline borders on paper
     --mint      #1B998B  tech-side accent (IT/data)
   Type:
     display — 'Fraunces' (serif, editorial authority)
     body    — 'IBM Plex Sans' (clean, works equally for finance & tech)
     mono    — 'IBM Plex Mono' (data, labels, figures)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --navy: #0B1F33;
  --navy-2: #132C47;
  --orange: #E85D04;
  --orange-2: #FFB870;
  --paper: #FAF7F1;
  --ink: #1B2430;
  --slate: #5C6672;
  --line: #E4DED2;
  --mint: #1B998B;

  --display: 'Fraunces', serif;
  --body: 'IBM Plex Sans', sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.1rem); line-height: 1.04; font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--slate); }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--orange);
}

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
}
.brand .mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.brand .name-sub {
  display: block;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 400;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--orange); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { background: #cf5203; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }

.menu-toggle { display: none; }

/* ---------- hero / axis signature ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 90px;
  background: var(--navy);
  color: #fff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 { color: #fff; }
.hero h1 em {
  font-style: normal;
  color: var(--orange-2);
}
.hero p.lede {
  color: #C9D2DE;
  font-size: 1.12rem;
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-ghost { border-color: rgba(255,255,255,0.5); color: #fff; }
.hero .btn-ghost:hover { background: #fff; color: var(--navy); }

.axis-figure { position: relative; }

.stat-row {
  display: flex;
  gap: 36px;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat-row .stat b {
  display: block;
  font-family: var(--display);
  font-size: 1.9rem;
  color: var(--orange-2);
  font-weight: 600;
}
.stat-row .stat span {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: #9FADC0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- section basics ---------- */
section { padding: 88px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}
.band-paper { background: var(--paper); }
.band-navy { background: var(--navy); color: #fff; }
.band-navy h2 { color: #fff; }
.band-navy p { color: #B9C4D3; }

/* ---------- industries split (BFS | IT) ---------- */
.industry-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.industry-col {
  padding: 44px 40px;
  position: relative;
}
.industry-col.bfs {
  background: var(--navy);
  color: #fff;
}
.industry-col.it {
  background: #fff;
}
.industry-col .tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 18px;
}
.industry-col.bfs .tag { background: rgba(232,93,4,0.18); color: var(--orange-2); }
.industry-col.it .tag { background: rgba(27,153,139,0.12); color: var(--mint); }
.industry-col.bfs h3 { color: #fff; }
.industry-col.it h3 { color: var(--navy); }
.industry-col ul { list-style: none; margin: 0; padding: 0; }
.industry-col li {
  padding: 12px 0;
  border-top: 1px solid;
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.industry-col.bfs li { border-color: rgba(255,255,255,0.12); color: #D4DBE5; }
.industry-col.it li { border-color: var(--line); color: var(--slate); }
.industry-col li span.num {
  font-family: var(--mono);
  font-size: 0.72rem;
  opacity: 0.55;
}
.axis-divider {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: var(--orange);
  z-index: 3;
}
.axis-divider::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 14px; height: 14px;
  background: var(--orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px rgba(232,93,4,0.18);
}

/* ---------- cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px 28px;
}
.card .idx {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}
.card h3 { margin-bottom: 10px; }
.card p { margin: 0; font-size: 0.95rem; }

/* ---------- process strip ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.process .step {
  padding: 28px 22px 0;
  border-left: 1px solid var(--line);
}
.process .step:first-child { border-left: none; }
.process .step .n {
  font-family: var(--mono);
  color: var(--orange);
  font-size: 0.8rem;
  margin-bottom: 10px;
  display: block;
}

/* ---------- forms ---------- */
.form-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
label .opt { color: var(--slate); font-weight: 400; }
input, select, textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 0.96rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  background: #fff;
}
textarea { resize: vertical; min-height: 110px; }
.field-hint { font-size: 0.78rem; color: var(--slate); margin-top: 6px; }
.file-field {
  border: 1px dashed var(--line);
  border-radius: 3px;
  padding: 16px 14px;
  background: var(--paper);
}
.form-msg {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 3px;
  font-size: 0.92rem;
  display: none;
}
.form-msg.show { display: block; }
.form-msg.ok { background: rgba(27,153,139,0.12); color: #0E6C61; border: 1px solid rgba(27,153,139,0.3); }
.form-msg.err { background: rgba(232,93,4,0.1); color: #9A3E00; border: 1px solid rgba(232,93,4,0.3); }
.submit-row { display: flex; align-items: center; gap: 16px; margin-top: 6px; }

/* ---------- footer ---------- */
footer {
  background: var(--navy);
  color: #B9C4D3;
  padding: 64px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
footer h4 {
  color: #fff;
  font-family: var(--body);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
footer a { display: block; padding: 6px 0; font-size: 0.92rem; color: #B9C4D3; }
footer a:hover { color: var(--orange-2); }
.footer-brand { font-family: var(--display); color: #fff; font-size: 1.2rem; margin-bottom: 10px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.8rem;
  font-family: var(--mono);
  color: #7C8AA0;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- misc page bits ---------- */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 64px 0 60px;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: #C9D2DE; max-width: 60ch; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--slate);
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 26px;
  border-radius: 4px;
}
.contact-card .lbl {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}
.contact-card a, .contact-card p { color: var(--navy); font-weight: 500; margin: 0; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .industry-split, .two-col, .form-row, .contact-strip, .footer-grid { grid-template-columns: 1fr; }
  .axis-divider { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .process .step { border-left: none; border-top: 1px solid var(--line); padding-top: 22px; }
  .nav-links { display: none; }
  .menu-toggle {
    display: inline-flex;
    background: none; border: 1px solid var(--navy);
    border-radius: 3px; padding: 8px 10px; cursor: pointer;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 20px 32px 26px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
  .footer-bottom { flex-direction: column; }
}
