:root {
  --navy: #050A14;
  --gold: #A68942;
  --white: #FFFFFF;
  --body: #050505;
  --muted: #050505;
  --line: rgba(201, 168, 76, 0.28);
  --soft-line: rgba(10, 22, 51, 0.10);
  --max: 1040px;
}

@font-face {
  font-family: 'Spectral Local';
  src: url('fonts/spectral-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi Local';
  src: url('fonts/satoshi-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi Local';
  src: url('fonts/satoshi-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--navy);
}

body {
  margin: 0;
  color: var(--body);
  background: var(--white);
  font-family: 'Satoshi Local', Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

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

/* NAV */
.site-header {
  background: var(--navy);
  color: var(--white);
  border-bottom: 1px solid rgba(201, 168, 76, 0.22);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-shell {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.2;
}

.brand-mark {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}

.brand-line {
  margin-top: 5px;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.55vw, 26px);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a {
  opacity: 0.88;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 168, 76, 0.34);
  background: transparent;
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after  { top:  6px; }

/* HERO IMAGE */
.hero-image {
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.hero-image img {
  display: block;
  width: 100%;
  height: min(41vw, 560px);
  min-height: 420px;
  max-height: 560px;
  object-fit: cover;
  object-position: center center;
}

/* PAGE HERO (inner pages) */
.page-hero {
  padding: 68px 0 72px;
  background: var(--white);
  border-bottom: 1px solid var(--soft-line);
}

.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.page-hero .eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.page-hero h1 {
  font-family: 'Spectral Local', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--body);
  margin: 0 0 22px;
  max-width: 760px;
}

.page-hero .lede {
  font-size: 16px;
  line-height: 1.70;
  color: var(--body);
  max-width: 680px;
  margin: 0;
}

/* SECTIONS */
.section { padding: 66px 0; }
.section.white { background: var(--white); color: var(--body); }
.section.blue  { background: var(--navy);  color: var(--white); }

.inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

/* KICKER */
.kicker {
  color: var(--gold);
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  display: grid;
  gap: 8px;
  padding-top: 6px;
}

.kicker .muted-word { color: #FFFFFF; }
.white .kicker .muted-word { color: #050505; }

/* HEADINGS */
h1, h2, h3 {
  font-family: 'Spectral Local', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.15;
  margin: 0;
}

h2 {
  font-size: clamp(22px, 2vw, 28px);
  margin-bottom: 22px;
  max-width: 780px;
}

.blue h2 { color: var(--white); }
.white h2 { color: var(--body); }

h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* COPY */
.copy { max-width: 800px; }

.copy p {
  margin: 0 0 18px;
  line-height: 1.78;
}

.copy p:last-child { margin-bottom: 0; }

.blue .copy  { color: #FFFFFF; }
.white .copy { color: #050505; }

/* LISTS */
ul.clean {
  margin: 18px 0 18px;
  padding-left: 18px;
}

ul.clean li {
  margin: 9px 0;
  padding-left: 4px;
}

ul.clean li::marker { color: var(--gold); }

ul.statement-list {
  list-style: none;
  padding: 0;
  margin: 14px 0;
}

ul.statement-list li {
  padding: 5px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  font-size: 15px;
}

ul.statement-list li:first-child { border-top: 1px solid var(--line); }

/* COLUMNS */
.columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.column {
  border-top: 2px solid var(--line);
  padding-top: 20px;
}

.column .label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.column p { margin: 0; color: inherit; font-size: 14px; line-height: 1.70; }
.blue .column p { color: #FFFFFF; }
.white .column p { color: #050505; }

/* CTA LINK */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 180ms;
}

.cta-link:hover { opacity: 0.78; }

/* DIVIDER */
.section-divider {
  width: 100%;
  border: none;
  border-top: 1px solid var(--line);
  margin: 40px 0 32px;
}

/* PANEL LINE */
.panel-line {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  margin-top: 30px;
}

/* FORM */
.form-shell {
  max-width: 780px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-top: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }

label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

input, textarea, select {
  width: 100%;
  border: 1px solid rgba(10, 22, 51, 0.18);
  background: var(--white);
  color: var(--body);
  padding: 13px 14px;
  font: inherit;
  border-radius: 0;
  font-size: 14px;
}

.blue input, .blue textarea, .blue select {
  border-color: rgba(201, 168, 76, 0.28);
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

textarea { min-height: 140px; resize: vertical; }

button.submit {
  border: 0;
  border-bottom: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  padding: 0 0 8px;
  margin-top: 18px;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* FOOTER */
.site-footer {
  background: var(--navy);
  color: var(--white);
  border-top: 1px solid rgba(201, 168, 76, 0.20);
  padding: 34px 0 36px;
}

.footer-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.footer-top {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-top span {
  color: #FFFFFF;
  margin-left: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #FFFFFF;
}

.footer-links a:hover { color: var(--gold); }

.footer-email {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFFFFF;
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .nav-shell { min-height: 72px; padding: 0 24px; }
  .menu-toggle { display: inline-flex; }

  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--navy);
    border-top: 1px solid rgba(201, 168, 76, 0.22);
    border-bottom: 1px solid rgba(201, 168, 76, 0.22);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 24px 22px;
  }

  body.menu-open .nav-links { display: flex; }
  .nav-links a { width: 100%; padding: 13px 0; }

  .hero-image img { height: 360px; min-height: 300px; object-position: center center; }
  .section { padding: 52px 0; }

  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .columns { grid-template-columns: 1fr; gap: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .kicker { flex-direction: row; display: flex; gap: 12px; align-items: center; }
}

@media (max-width: 560px) {
  body { font-size: 14px; }
  .inner, .footer-inner { width: min(100% - 32px, var(--max)); }
  .hero-image img { height: 280px; min-height: 240px; object-position: center center; }
  .page-hero { padding: 48px 0 54px; }
  .footer-links { flex-direction: column; gap: 12px; }
  h2 { font-size: 22px; }
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* FINAL COLOUR GOVERNOR - June 2026
   Blue backgrounds: full white text. White backgrounds: near-black text. */
body,
.page-hero,
.section.white {
  color: #050505;
}
.page-hero *,
.section.white *,
.white * {
  color: #050505;
}
.site-header,
.section.blue,
.site-footer {
  color: #FFFFFF;
}
.site-header *,
.section.blue *,
.blue *,
.site-footer * {
  color: #FFFFFF;
}
.section.blue a,
.blue a,
.site-header a,
.site-footer a {
  color: #FFFFFF;
}
.section.white a,
.white a,
.page-hero a {
  color: #050505;
}
.section.blue .cta-link,
.blue .cta-link,
.site-footer .footer-links a,
.site-footer .footer-email,
.site-footer .footer-top,
.site-footer .footer-top span,
.site-header .brand-line,
.site-header .nav-links a,
.site-header .nav-links a.active,
.site-header .nav-links a:hover {
  color: #FFFFFF;
}
.section.white .cta-link,
.white .cta-link {
  color: #050505;
}
.section.blue ul.clean li::marker,
.blue ul.clean li::marker {
  color: #FFFFFF;
}
.section.white ul.clean li::marker,
.white ul.clean li::marker {
  color: #050505;
}
.section.blue .cta-link,
.blue .cta-link {
  border-bottom-color: #FFFFFF;
}
.section.white .cta-link,
.white .cta-link {
  border-bottom-color: #050505;
}

/* GOLD STRUCTURAL MARKERS - June 2026
   Keep body copy full white on blue and near-black on white, but restore all structural markers to ADR gold. */
.kicker > span:first-child,
.section.blue .kicker > span:first-child,
.blue .kicker > span:first-child,
.section.white .kicker > span:first-child,
.white .kicker > span:first-child,
ul.clean li::marker,
.section.blue ul.clean li::marker,
.blue ul.clean li::marker,
.section.white ul.clean li::marker,
.white ul.clean li::marker {
  color: #A68942 !important;
}

.section.blue .kicker .muted-word,
.blue .kicker .muted-word {
  color: #FFFFFF !important;
}

.section.white .kicker .muted-word,
.white .kicker .muted-word {
  color: #050505 !important;
}

/* HARD WHITE BACKGROUND LOCK - June 2026
   All white surfaces are explicitly pure white. No variables. No inherited off-white. */
html,
body,
main,
.page-hero,
.section.white,
.white,
input,
textarea,
select {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
}

/* Preserve the institutional navy surfaces. */
.site-header,
.hero-image,
.section.blue,
.blue,
.site-footer,
.nav-links {
  background: #050A14 !important;
  background-color: #050A14 !important;
}

/* Preserve colour rules after the hard background lock. */
.section.blue,
.section.blue *,
.blue,
.blue *,
.site-header,
.site-header *,
.site-footer,
.site-footer * {
  color: #FFFFFF;
}

.page-hero,
.page-hero *,
.section.white,
.section.white *,
.white,
.white * {
  color: #050505;
}

.kicker > span:first-child,
ul.clean li::marker,
.section.blue ul.clean li::marker,
.blue ul.clean li::marker,
.section.white ul.clean li::marker,
.white ul.clean li::marker {
  color: #A68942 !important;
}

.section.blue .kicker .muted-word,
.blue .kicker .muted-word {
  color: #FFFFFF !important;
}

.section.white .kicker .muted-word,
.white .kicker .muted-word {
  color: #050505 !important;
}
