*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0e1f3d;
  --navy-deep: #081428;
  --navy-mid: #1c3157;
  --gold: #c9a14a;
  --gold-light: #e0c374;
  --gold-dark: #9c7c2e;
  --cream: #f6f1e6;
  --cream-dark: #e8e0cc;
  --paper: #fbfaf6;
  --text: #131a26;
  --text-mid: #4a5160;
  --text-light: #7a7f8a;
  --line: rgba(14,31,61,0.12);
  --line-gold: rgba(201,161,74,0.32);
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', 'Courier New', monospace;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.15;
  color: var(--navy);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }

/* ── Layout ── */
.container { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
.section { padding: 120px 0; }

@media (max-width: 1024px) { .container { padding: 0 32px; } .section { padding: 88px 0; } }
@media (max-width: 720px)  { .container { padding: 0 22px; } .section { padding: 72px 0; } }

/* ── Section backgrounds ── */
.section--white       { background: #fff; }
.section--cream       { background: var(--cream); }
.section--navy        { background: var(--navy); color: #fff; }
.section--navy-deep   { background: var(--navy-deep); color: #fff; overflow: hidden; position: relative; }
.section--navy-border { background: var(--navy-deep); color: #fff; border-top: 1px solid rgba(201,161,74,.25); }

/* ── Section headers ── */
.section-header         { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-header--sm     { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-header--lg     { text-align: center; max-width: 820px; margin: 0 auto 64px; }
.section-header--left   { max-width: 720px; margin-bottom: 64px; }
.section-header--engage { max-width: 780px; margin-bottom: 56px; }

/* ── Section h2 ── */
.section-h2        { font-size: clamp(34px,3.6vw,54px); margin-top: 20px; margin-bottom: 24px; }
.section-h2--mb28  { margin-bottom: 28px; }
.section-h2--light { color: #fff; }
.why-h2            { font-size: clamp(36px,4vw,60px); color: #fff; margin-top: 20px; margin-bottom: 28px; }
.agency-h2         { font-size: clamp(32px,3.4vw,48px); color: #fff; margin-top: 20px; margin-bottom: 28px; }
.platform-h2       { font-size: clamp(34px,3.6vw,56px); color: #fff; margin-top: 20px; margin-bottom: 24px; }

/* ── Gold divider ── */
.gold-divider { display: flex; align-items: center; gap: 14px; }
.gold-divider .gd-line { flex: 1; height: 1px; background: linear-gradient(to right,transparent,var(--gold) 40%,var(--gold) 60%,transparent); }
.gold-divider .gd-dot  { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.gd-narrow { max-width: 280px; }
.gd-wide   { max-width: 320px; }
.gd-center { margin-left: auto; margin-right: auto; }
.gd-mb24   { margin-bottom: 24px; }
.gd-mb28   { margin-bottom: 28px; }
.gd-mb32   { margin-bottom: 32px; }
.gd-mb36   { margin-bottom: 36px; }

/* ── Eyebrow ── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.28em; font-weight: 600;
  text-transform: uppercase; color: var(--gold-dark);
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.light { color: var(--gold); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 30px; font-family: var(--font-sans);
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; border: none; transition: all .3s cubic-bezier(.4,0,.2,1);
  text-decoration: none; line-height: 1;
}
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,161,74,.35); }
.btn-outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy); color: var(--gold); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn--nav  { padding: 13px 22px; font-size: 10px; }
.btn--mt   { margin-top: 16px; }
.btn--full { width: 100%; }

/* ── Form fields ── */
.field {
  width: 100%; padding: 16px 18px; background: #fff; border: 1px solid #d9d2c0;
  font-family: var(--font-sans); font-size: 14px; color: var(--text);
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.field:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,161,74,.12); }
.field.error { border-color: #b03b2c; }
select.field {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%230e1f3d' d='M0 0h10L5 6z'/></svg>");
  background-repeat: no-repeat; background-position: right 18px center; padding-right: 40px; cursor: pointer;
}
textarea.field { resize: vertical; font-family: var(--font-sans); }
.field-label {
  display: block; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-light);
  font-weight: 600; margin-bottom: 10px;
}

/* ── Grids ── */
.grid-2           { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.grid-2--center   { align-items: center; }
.grid-2--agencies { gap: 80px; align-items: flex-start; }
.grid-3           { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-3--mb       { margin-bottom: 56px; }
.grid-4-cards     { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.role-grid        { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line); border: 1px solid var(--line); }
.commitments-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.entities-grid    { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line-gold); border: 1px solid var(--line-gold); }
.agencies-grid    { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); }
.engagements-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; }
.contact-grid     { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; }
.form-grid        { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }

@media (max-width: 1024px) {
  .grid-2,.grid-3,.grid-4-cards,.role-grid,.commitments-grid,.entities-grid,.agencies-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .grid-2,.engagements-grid,.contact-grid { gap: 40px; grid-template-columns: 1fr; }
  .grid-2--agencies { gap: 40px; grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-3,.grid-4-cards,.role-grid,.commitments-grid,.entities-grid,.agencies-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; }
}

/* ── NAV ── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,20,40,.55); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: all .35s ease;
}
#main-nav.scrolled { background: rgba(8,20,40,.97); border-bottom-color: var(--line-gold); }
.nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; height: 78px;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
}
.nav-logo img {
  height: 58px; width: auto; object-fit: contain; background: #fff;
  padding: 0; border-radius: 2px; box-shadow: 0 2px 12px rgba(0,0,0,.15); display: block; flex-shrink: 0;
}
.nav-brand-divider {
  display: none;
  width: 1px; height: 44px; background: var(--gold); opacity: 0.5; flex-shrink: 0;
}
.nav-brand-text { display: none; flex-direction: column; gap: 4px; max-width: 260px; }
.nav-brand-name {
  font-family: var(--font-serif); font-size: 15px; font-weight: 700;
  color: #fff; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.2;
  white-space: nowrap;
}
.nav-brand-tagline {
  font-family: var(--font-mono); font-size: 7.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); line-height: 1.5;
}

@media (max-width: 900px) {
  .nav-brand-divider, .nav-brand-text { display: none; }
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; color: rgba(255,255,255,.78); padding: 4px 0;
  border-bottom: 1px solid transparent; transition: color .2s, border-color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.nav-hamburger span { width: 24px; height: 2px; background: var(--gold); display: block; transition: transform .25s, opacity .25s; }
.nav-mobile {
  display: none; position: fixed; top: 78px; left: 0; right: 0; z-index: 999;
  background: rgba(8,20,40,.98); backdrop-filter: blur(20px);
  padding: 24px 32px; border-bottom: 1px solid var(--line-gold);
  flex-direction: column; gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.85);
  padding: 14px 0; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.06);
}

@media (max-width: 1100px) { .nav-links a { display: none; } .nav-links .btn { display: inline-flex; } }
@media (max-width: 720px)  { .nav-hamburger { display: flex; } .nav-links .btn { display: none; } }

/* ── HERO ── */
.hero-section { position: relative; min-height: 100vh; display: flex; flex-direction: column; overflow: hidden; background: var(--navy-deep); }
.hero-bg      { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.32) saturate(.88); transform: scale(1.04); transition: background-image .4s; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg,rgba(8,20,40,.92) 0%,rgba(14,31,61,.7) 45%,rgba(8,20,40,.4) 100%); }
.hero-rule    { position: absolute; top: 0; bottom: 0; left: 0; width: 3px; background: linear-gradient(to bottom,transparent 0%,var(--gold) 24%,var(--gold) 76%,transparent 100%); opacity: .85; }
.hero-badges  { position: absolute; top: 110px; right: 48px; display: flex; flex-direction: column; gap: 10px; z-index: 2; }
.hero-badge   {
  display: flex; align-items: center; gap: 10px; padding: 8px 14px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(201,161,74,.28);
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.8); font-weight: 600; backdrop-filter: blur(8px);
}
.hero-badge-dot   { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); display: inline-block; }
.hero-content     { position: relative; z-index: 2; width: 100%; flex: 1; display: flex; align-items: center; }
.hero-stack       { max-width: 880px; padding: 140px 0 80px; display: flex; flex-direction: column; align-items: flex-start; gap: 28px; width: 100%; }
.hero-h1          { font-size: clamp(28px,3.6vw,56px); color: #fff; line-height: 1.15; font-weight: 600; }
.hero-h1 em       { color: var(--gold); font-style: italic; }
.hero-sub         { font-size: 17px; color: rgba(255,255,255,.78); max-width: 720px; line-height: 1.8; font-weight: 300; }
.hero-cta-row     { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.hero-channels    { position: relative; background: rgba(8,20,40,.6); border-top: 1px solid rgba(201,161,74,.18); padding: 22px 0; z-index: 2; flex-shrink: 0; }
.hero-channels-label { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.hero-channels-list  { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.7); font-weight: 500; }
.hero-channels-sep   { color: rgba(255,255,255,.25); }

@media (max-width: 1024px) { .hero-badges { display: none !important; } }
@media (max-width: 900px)  { .hero-stack  { padding: 120px 0 48px; } }
@media (max-width: 640px)  { .hero-stack  { padding: 110px 0 40px; gap: 22px; } }

/* ── MISSION ── */
.body-text           { font-size: 16px; color: var(--text-mid); line-height: 1.85; margin-bottom: 20px; }
.body-text--mb32     { margin-bottom: 32px; }
.mission-bullets     { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.mission-bullet      { display: flex; align-items: flex-start; gap: 18px; padding: 16px 20px; background: var(--cream); border-left: 3px solid var(--gold); }
.mission-bullet-dot  { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); margin-top: 7px; flex-shrink: 0; display: inline-block; }
.mission-bullet-text { font-size: 15px; color: var(--navy); font-weight: 500; }
.mission-callout     { padding: 24px 32px; background: var(--navy); border-left: 4px solid var(--gold); color: #fff; }
.callout-label       { font-family: var(--font-mono); font-size: 10px; letter-spacing: .24em; color: var(--gold); text-transform: uppercase; font-weight: 600; margin-bottom: 12px; }
.callout-quote       { font-family: var(--font-serif); font-size: 22px; line-height: 1.45; font-style: italic; color: #fff; }
.mission-img-wrap    { position: relative; }
.mission-img-wrap img { width: 100%; height: 620px; object-fit: cover; display: block; }
.mission-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(8,20,40,.55) 0%,transparent 50%); }
.mission-img-card    { position: absolute; bottom: -28px; left: -28px; background: var(--navy); color: #fff; padding: 28px 32px; width: 280px; max-width: 80%; border-top: 3px solid var(--gold); }
.img-card-label      { font-family: var(--font-mono); font-size: 10px; color: var(--gold); letter-spacing: .22em; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.img-card-text       { font-family: var(--font-serif); font-size: 18px; line-height: 1.5; color: #fff; }

/* ── ROLE CARDS ── */
.role-card       { background: #fff; padding: 48px 44px; height: 100%; transition: background .3s; }
.role-card:hover { background: var(--paper); }
.role-card__head { display: flex; align-items: flex-start; gap: 24px; margin-bottom: 20px; }
.role-num        { font-family: var(--font-mono); font-size: 56px; font-weight: 600; color: var(--gold); line-height: 1; flex-shrink: 0; }
.role-title      { font-size: 24px; color: var(--navy); line-height: 1.25; }
.role-rule       { height: 1px; background: var(--gold); width: 48px; margin-top: 14px; }
.role-body       { font-size: 14.5px; color: var(--text-mid); line-height: 1.85; }

/* ── WHY SECTION ── */
.why-bg          { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.22) saturate(.7); }
.why-overlay     { position: absolute; inset: 0; background: linear-gradient(120deg,rgba(8,20,40,.95) 30%,rgba(14,31,61,.7) 100%); }
.rel-z1          { position: relative; z-index: 1; }
.why-inner       { max-width: 980px; }
.why-intro       { font-size: 19px; color: rgba(255,255,255,.78); line-height: 1.7; max-width: 760px; margin-bottom: 44px; font-weight: 300; }
.why-stat        { background: rgba(255,255,255,.04); padding: 32px 28px; border-top: 2px solid var(--gold); height: 100%; }
.why-stat__num   { font-family: var(--font-mono); font-size: 44px; color: var(--gold); font-weight: 600; line-height: 1; margin-bottom: 16px; }
.why-stat__label { font-size: 16px; color: #fff; line-height: 1.55; font-family: var(--font-serif); font-weight: 500; }
.why-precedent         { background: rgba(201,161,74,.08); border: 1px solid var(--gold); padding: 36px 44px; max-width: 880px; }
.why-precedent__label  { font-family: var(--font-mono); font-size: 10px; letter-spacing: .28em; color: var(--gold); text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.why-precedent__quote  { font-family: var(--font-serif); font-size: 24px; line-height: 1.4; color: #fff; font-style: italic; margin-bottom: 16px; }
.why-precedent__body   { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.75; }

/* ── STRUCTURE CARDS ── */
.clean-card       { background: var(--cream); padding: 40px 32px; height: 100%; border-top: 3px solid var(--gold); transition: transform .3s, box-shadow .3s; cursor: default; }
.clean-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(8,20,40,.08); }
.clean-card-icon  { color: var(--gold); margin-bottom: 24px; }
.clean-card-rule  { height: 1px; background: var(--line); width: 100%; margin-bottom: 16px; }
.card-h3          { font-size: 22px; color: var(--navy); margin-bottom: 14px; line-height: 1.25; }
.card-body        { font-size: 13.5px; color: var(--text-mid); line-height: 1.7; }

/* ── PLATFORM ── */
.platform-desc       { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.8; }
.entity-card         { padding: 40px 32px; height: 100%; position: relative; border-bottom: 3px solid transparent; }
.entity-card.active  { background: rgba(201,161,74,.08); border-bottom-color: var(--gold); }
.entity-card:not(.active) { background: rgba(255,255,255,.02); }
.entity-here         { position: absolute; top: 16px; right: 16px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); font-weight: 700; display: flex; align-items: center; gap: 8px; }
.entity-here-dot     { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; display: inline-block; }
.entity-num          { font-family: var(--font-mono); font-size: 9px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 18px; }
.entity-title        { font-size: 22px; color: #fff; margin-bottom: 16px; line-height: 1.3; }
.entity-rule         { height: 1px; background: rgba(201,161,74,.4); width: 40px; margin-bottom: 18px; }
.entity-desc         { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 24px; }
.entity-tag          { display: inline-block; padding: 5px 12px; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; }
.entity-tag--active  { background: var(--gold); color: var(--navy-deep); }
.entity-tag--inactive { background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); }

/* ── AGENCIES ── */
.agency-desc { font-size: 16px; color: rgba(255,255,255,.72); line-height: 1.85; }
.agency-item { background: rgba(255,255,255,.03); padding: 28px 22px; display: flex; align-items: center; gap: 14px; min-height: 100px; }
.agency-num  { font-family: var(--font-mono); font-size: 18px; color: var(--gold); font-weight: 600; min-width: 26px; }
.agency-name { font-size: 13.5px; color: #fff; line-height: 1.4; font-weight: 500; }

/* ── PROOF POINTS ── */
.proof-card { background: var(--paper); padding: 40px 32px; height: 100%; border-left: 2px solid var(--gold); }
.proof-num  { font-family: var(--font-mono); font-size: 56px; color: var(--gold); font-weight: 600; opacity: .25; line-height: 1; margin-bottom: 12px; }
.proof-h3   { font-size: 19px; color: var(--navy); margin-bottom: 14px; line-height: 1.3; }
.proof-rule { height: 1px; background: var(--line); width: 100%; margin-bottom: 14px; }
.proof-body { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

/* ── ENGAGEMENTS ── */
.eng-panel         { background: #fff; padding: 48px 44px; height: 100%; border-top: 3px solid var(--gold); }
.eng-panel__head   { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.eng-icon-box      { width: 36px; height: 36px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.eng-label         { font-family: var(--font-mono); font-size: 10px; letter-spacing: .26em; color: var(--gold); text-transform: uppercase; font-weight: 700; }
.eng-h3            { font-size: 30px; color: var(--navy); margin-bottom: 28px; }
.eng-h3--mb18      { margin-bottom: 18px; }
.eng-list          { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.eng-list__item    { background: #fff; padding: 16px 20px; display: flex; align-items: center; gap: 14px; transition: background .2s; }
.eng-list__item:hover { background: var(--paper); }
.eng-num           { font-family: var(--font-mono); font-size: 14px; color: var(--gold); font-weight: 600; min-width: 22px; }
.eng-name          { font-size: 14.5px; color: var(--navy); font-weight: 500; }
.eng-right         { display: flex; flex-direction: column; gap: 24px; height: 100%; }
.eng-mineral-text  { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 22px; }
.mineral-list      { display: flex; flex-direction: column; gap: 12px; }
.mineral-item      { display: flex; align-items: flex-start; gap: 14px; }
.mineral-dot       { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); margin-top: 8px; flex-shrink: 0; }
.mineral-name      { font-size: 14.5px; color: var(--navy); font-weight: 500; line-height: 1.55; }
.pullquote         { background: var(--navy); color: #fff; padding: 40px 44px; position: relative; border-top: 3px solid var(--gold); }
.pullquote__mark   { font-family: var(--font-serif); font-size: 96px; color: var(--gold); opacity: .25; position: absolute; top: 8px; left: 28px; line-height: 1; font-weight: 600; }
.pullquote__inner  { position: relative; }
.pullquote__text   { font-family: var(--font-serif); font-size: 24px; line-height: 1.45; color: #fff; font-style: italic; margin-bottom: 18px; }
.pullquote__attr   { font-family: var(--font-mono); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); font-weight: 700; }

/* ── COMMITMENTS ── */
.commit-card       { background: #fff; padding: 44px 36px; height: 100%; transition: background .25s; }
.commit-card:hover { background: var(--cream); }
.commit-num        { font-family: var(--font-mono); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 18px; }
.commit-h3         { font-size: 24px; color: var(--navy); margin-bottom: 16px; line-height: 1.25; }
.commit-rule       { height: 1px; width: 36px; margin-bottom: 16px; background: var(--gold); }
.commit-body       { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ── CONTACT / ENGAGE ── */
.contact-sidebar   { display: flex; flex-direction: column; gap: 24px; }
.address-block     { background: var(--navy); color: #fff; padding: 40px 36px; border-top: 3px solid var(--gold); }
.address-label     { font-family: var(--font-mono); font-size: 10px; letter-spacing: .26em; color: var(--gold); text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.address-text      { font-family: var(--font-serif); font-size: 22px; line-height: 1.5; color: #fff; }
.address-divider   { height: 1px; background: rgba(201,161,74,.3); margin: 24px 0; }
.address-location  { display: flex; align-items: center; gap: 12px; font-size: 12px; color: rgba(255,255,255,.65); letter-spacing: .12em; }
.routing-block     { background: #fff; padding: 36px; border-left: 3px solid var(--gold); }
.routing-label     { font-family: var(--font-mono); font-size: 10px; letter-spacing: .26em; color: var(--gold); text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.routing-desc      { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }
.routing-item      { padding: 12px 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--navy); font-weight: 500; }
.routing-dot       { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); display: inline-block; flex-shrink: 0; }
.contact-note      { padding: 24px 28px; background: var(--cream-dark); font-size: 12.5px; color: var(--text-mid); line-height: 1.75; }
.form-panel        { background: #fff; padding: 48px 44px; border-top: 3px solid var(--gold); }
.form-success      { display: none; text-align: center; padding: 60px 20px; }
.form-success-ring { width: 64px; height: 64px; border: 1.5px solid var(--gold); border-radius: 50%; margin: 0 auto 28px; display: flex; align-items: center; justify-content: center; }
.form-success-h3   { font-size: 32px; color: var(--navy); margin-bottom: 16px; }
.form-success-body { font-size: 14.5px; color: var(--text-mid); line-height: 1.8; max-width: 460px; margin: 0 auto; }
.form-eyebrow      { font-family: var(--font-mono); font-size: 10px; letter-spacing: .26em; color: var(--gold); text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.form-h3           { font-size: 30px; color: var(--navy); margin-bottom: 32px; }
.form-row          { margin-bottom: 18px; }
.form-row--mb      { margin-bottom: 28px; }
.form-disclaimer   { font-size: 11.5px; color: var(--text-light); line-height: 1.65; margin-top: 20px; text-align: center; }

/* ── FOOTER ── */
.site-footer        { background: var(--navy-deep); color: rgba(255,255,255,.55); padding: 72px 0 32px; }
.footer-grid        { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-logo-wrap   { display: flex; align-items: center; margin-bottom: 24px; }
.footer-logo        { height: 84px; width: auto; object-fit: contain; background: #fff; padding: 10px 18px; border-radius: 2px; box-shadow: 0 2px 12px rgba(0,0,0,.15); }
.footer-desc        { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.85; max-width: 360px; }
.footer-rule        { height: 1px; background: rgba(201,161,74,.2); margin: 28px 0 20px; }
.footer-tagline     { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.35); letter-spacing: .2em; text-transform: uppercase; }
.footer-col-title   { font-family: var(--font-mono); font-size: 10px; color: var(--gold); letter-spacing: .26em; text-transform: uppercase; font-weight: 700; margin-bottom: 22px; }
.footer-nav-link    { display: block; font-size: 13px; color: rgba(255,255,255,.55); padding: 6px 0; text-decoration: none; }
.footer-platform-item { font-size: 13px; color: rgba(255,255,255,.55); padding: 6px 0; }
.footer-address     { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.85; }
.footer-cta-link    { font-family: var(--font-mono); display: inline-block; margin-top: 18px; font-size: 11px; color: var(--gold); letter-spacing: .2em; text-transform: uppercase; text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.footer-bottom      { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy        { font-size: 11px; color: rgba(255,255,255,.35); letter-spacing: .08em; }
.footer-badges      { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.35); letter-spacing: .16em; text-transform: uppercase; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } }
