/*
  SERSO Investigations — style.css
  ─────────────────────────────────────────────────────────────
  Shared stylesheet for all pages of sersoinvestigations.ca
  Version: 1.0

  TABLE OF CONTENTS
  ─────────────────────────────────────────────────────────────
  1.  Brand tokens (CSS custom properties)
  2.  Reset & base
  3.  Amber top bar
  4.  Navigation
  5.  Page hero (shared across inner pages)
  6.  Buttons & CTAs
  7.  CTA band section
  8.  Footer
  9.  Responsive — shared breakpoints

  PAGE-SPECIFIC SECTIONS
  10. Home — hero
  11. Home — positioning section
  12. Home — service grid
  13. Services page
  14. About page
  15. Contact page
  16. Legal page
  ─────────────────────────────────────────────────────────────
*/

/* ═══════════════════════════════════════════════════════════
   1. BRAND TOKENS
   Edit colours here — changes propagate to every page.
═══════════════════════════════════════════════════════════ */
:root {
  /* Backgrounds */
  --navy-base:      #0B1220;
  --navy-deep:      #080E18;
  --navy-surface:   #0F1A2E;
  --navy-card:      #0F2540;
  --navy-hover:     #141F32;
  --navy-border:    #1C3050;
  --navy-border-md: #2D3F55;

  /* Brand accents */
  --steel-dark:     #2D6A9F;
  --steel:          #4A8FC4;
  --amber:          #E8A030;
  --amber-dim:      #C8892A;

  /* Text */
  --text-primary:   #E2EAF4;
  --text-body:      #C2CBD6;
  --text-muted:     #8A9BB0;
  --text-dim:       #5A7A9A;
  --text-steel-dim: #5A7A9A;

  /* Typography */
  --font-sans:      'Barlow', sans-serif;
  --font-cond:      'Barlow Condensed', sans-serif;
}

/* ═══════════════════════════════════════════════════════════
   2. RESET & BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--steel);
  text-decoration: none;
}

a:hover {
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════════
   3. AMBER TOP BAR
═══════════════════════════════════════════════════════════ */
.amber-top {
  height: 3px;
  background: var(--amber);
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════
   4. NAVIGATION
═══════════════════════════════════════════════════════════ */
nav {
  background: var(--navy-deep);
  border-bottom: 0.5px solid var(--navy-border);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-mark {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: var(--navy-card);
  border: 0.5px solid var(--steel-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-wordmark {
  display: flex;
  flex-direction: column;
}

.nav-serso {
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--text-primary);
  line-height: 1;
}

.nav-inv {
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  color: var(--navy-base);
  background: var(--amber);
  padding: 8px 18px;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.15s;
}

.nav-cta:hover {
  background: var(--amber-dim);
  color: var(--navy-base);
}

/* ═══════════════════════════════════════════════════════════
   5. PAGE HERO — shared inner page header
═══════════════════════════════════════════════════════════ */
.page-hero {
  padding: 72px 48px 64px;
  border-bottom: 0.5px solid var(--navy-border);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: end;
}

.page-hero-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--amber);
  text-transform: uppercase;
  padding-bottom: 6px;
}

.page-hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-hero h1 {
  font-size: 36px;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--steel);
}

.page-hero-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 560px;
}

.section-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: 24px;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  margin-bottom: 40px;
}

/* ═══════════════════════════════════════════════════════════
   6. BUTTONS
═══════════════════════════════════════════════════════════ */
.btn-primary {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  color: var(--navy-base);
  background: var(--amber);
  padding: 13px 26px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}

.btn-primary:hover {
  background: var(--amber-dim);
  color: var(--navy-base);
}

.btn-ghost {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--steel);
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s;
}

.btn-ghost:hover {
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════════
   7. CTA BAND — shared across all pages
═══════════════════════════════════════════════════════════ */
.cta-band {
  padding: 72px 48px;
  background: var(--navy-deep);
  border-bottom: 0.5px solid var(--navy-border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.cta-title {
  font-size: 24px;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.cta-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

.cta-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  color: var(--navy-base);
  background: var(--amber);
  padding: 15px 30px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}

.cta-btn:hover {
  background: var(--amber-dim);
  color: var(--navy-base);
}

/* ═══════════════════════════════════════════════════════════
   8. FOOTER
═══════════════════════════════════════════════════════════ */
footer {
  padding: 36px 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 0.5px solid var(--navy-border);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-serso {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--text-primary);
}

.footer-note {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-dim);
  max-width: 580px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.footer-web {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--steel);
}

.footer-copy {
  font-size: 11px;
  color: var(--steel-dark);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════
   9. RESPONSIVE — shared breakpoints
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }

  .page-hero {
    padding: 48px 24px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .cta-band {
    padding: 56px 24px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  footer {
    padding: 32px 24px;
    flex-direction: column;
  }

  .footer-right {
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .nav-links .nav-link {
    display: none;
  }

  .page-hero h1 {
    font-size: 24px;
  }
}

/* ═══════════════════════════════════════════════════════════
   10. HOME — HERO
═══════════════════════════════════════════════════════════ */
.hero {
  padding: 88px 48px 80px;
  border-bottom: 0.5px solid var(--navy-border);
  position: relative;
  overflow: hidden;
}

.hero-deco {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 7px;
  opacity: 0.07;
  pointer-events: none;
}

.hero-dbar {
  height: 3px;
  border-radius: 1.5px;
  background: var(--steel);
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--font-sans);
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  line-height: 1.18;
  max-width: 640px;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--steel);
}

.hero-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 900px) {
  .hero {
    padding: 64px 24px 56px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-deco {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 26px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════
   11. HOME — POSITIONING SECTION
═══════════════════════════════════════════════════════════ */
.positioning {
  padding: 72px 48px;
  border-bottom: 0.5px solid var(--navy-border);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
}

.pos-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--amber);
  text-transform: uppercase;
  padding-top: 5px;
}

.pos-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
}

.pos-body strong {
  font-weight: 500;
  color: var(--text-primary);
}

@media (max-width: 900px) {
  .positioning {
    padding: 56px 24px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════
   12. HOME — SERVICE GRID
═══════════════════════════════════════════════════════════ */
.services {
  padding: 72px 48px;
  border-bottom: 0.5px solid var(--navy-border);
}

.svc-grid-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}

.svc-grid-bot {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}

.svc-card {
  background: var(--navy-surface);
  padding: 32px 28px 28px;
  border: 0.5px solid var(--navy-border);
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}

.svc-card:hover {
  background: var(--navy-hover);
  border-color: var(--steel-dark);
}

.svc-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--amber);
  opacity: 0;
  transition: opacity 0.15s;
}

.svc-card:hover .svc-accent {
  opacity: 1;
}

.svc-num {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--steel-dark);
  margin-bottom: 14px;
}

.svc-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.svc-body {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .services {
    padding: 56px 24px;
  }

  .svc-grid-top,
  .svc-grid-bot {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   13. SERVICES PAGE
═══════════════════════════════════════════════════════════ */
.service-section {
  padding: 64px 48px;
  border-bottom: 0.5px solid var(--navy-border);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
}

.service-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--amber);
  transition: height 0.4s ease;
}

.service-section:hover::before {
  height: 100%;
}

.svc-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}

.svc-num-lg {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--steel-dark);
}

.svc-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--steel);
  text-transform: uppercase;
  background: var(--navy-card);
  border: 0.5px solid var(--steel-dark);
  border-radius: 3px;
  padding: 4px 10px;
  width: fit-content;
}

.svc-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-title-lg {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.svc-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
}

.svc-desc strong {
  font-weight: 500;
  color: var(--text-primary);
}

.svc-deliverable {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 16px 20px;
  background: var(--navy-surface);
  border: 0.5px solid var(--navy-border);
  border-left: 2px solid var(--amber);
}

.svc-deliverable-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--amber);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.svc-deliverable-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-muted);
}

.methodology {
  padding: 64px 48px;
  border-bottom: 0.5px solid var(--navy-border);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
  background: var(--navy-deep);
}

.method-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--amber);
  text-transform: uppercase;
  padding-top: 4px;
}

.method-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
  font-style: italic;
}

.method-body strong {
  font-weight: 500;
  font-style: normal;
  color: var(--text-primary);
}

@media (max-width: 900px) {
  .service-section,
  .methodology {
    padding: 48px 24px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════
   14. ABOUT PAGE
═══════════════════════════════════════════════════════════ */
.bio-section {
  padding: 64px 48px;
  border-bottom: 0.5px solid var(--navy-border);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
}

.bio-section.dark {
  background: var(--navy-deep);
}

.bio-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--amber);
  text-transform: uppercase;
  padding-top: 5px;
  line-height: 1.6;
}

.bio-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.bio-content p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-body);
}

.bio-content p strong {
  font-weight: 500;
  color: var(--text-primary);
}

.career-markers {
  display: flex;
  flex-direction: column;
  border: 0.5px solid var(--navy-border);
  border-left: 2px solid var(--steel-dark);
  background: var(--navy-surface);
  overflow: hidden;
}

.marker-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 16px;
  padding: 14px 20px;
  align-items: center;
  border-bottom: 0.5px solid var(--navy-border);
}

.marker-row:last-child {
  border-bottom: none;
}

.marker-org {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.marker-role {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.marker-period {
  font-size: 10px;
  font-weight: 400;
  color: var(--steel-dark);
  letter-spacing: 0.06em;
  white-space: nowrap;
  font-family: var(--font-cond);
}

.standards-block {
  display: flex;
  flex-direction: column;
  border: 0.5px solid var(--navy-border);
  border-left: 2px solid var(--amber);
  background: var(--navy-surface);
}

.standards-item {
  padding: 16px 20px;
  border-bottom: 0.5px solid var(--navy-border);
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.standards-item:last-child {
  border-bottom: none;
}

.standards-marker {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 8px;
}

.standards-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
}

.standards-text strong {
  font-weight: 500;
  color: var(--text-body);
}

.public-work {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: var(--navy-surface);
  border: 0.5px solid var(--navy-border);
}

.public-work-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.public-work-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--steel);
  text-transform: uppercase;
  background: var(--navy-card);
  border: 0.5px solid var(--steel-dark);
  border-radius: 3px;
  padding: 3px 9px;
}

.public-work-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.public-work-desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-muted);
}

.public-work-link {
  font-size: 12px;
  font-weight: 400;
  color: var(--steel);
  letter-spacing: 0.03em;
  transition: color 0.15s;
}

.public-work-link:hover {
  color: var(--text-primary);
}

.lang-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.lang-card {
  background: var(--navy-surface);
  border: 0.5px solid var(--navy-border);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lang-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}

.lang-level {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--steel);
  text-transform: uppercase;
}

.lang-note {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.5;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .bio-section {
    padding: 48px 24px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .marker-row {
    grid-template-columns: 1fr auto;
  }

  .marker-role {
    display: none;
  }

  .lang-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .lang-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   15. CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.contact-body {
  padding: 64px 48px;
  border-bottom: 0.5px solid var(--navy-border);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}

.dc-section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.dc-block {
  display: flex;
  flex-direction: column;
  border: 0.5px solid var(--navy-border);
  border-left: 2px solid var(--steel-dark);
  background: var(--navy-surface);
}

.dc-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 16px;
  border-bottom: 0.5px solid var(--navy-border);
}

.dc-row:last-child {
  border-bottom: none;
}

.dc-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--steel);
  text-transform: uppercase;
}

.dc-value {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-body);
  letter-spacing: 0.03em;
}

.dc-value a {
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.15s;
}

.dc-value a:hover {
  color: var(--text-primary);
}

.dc-value.muted {
  color: var(--text-dim);
}

.dc-note {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 2px;
}

.response-note {
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--navy-card);
  border: 0.5px solid var(--steel-dark);
  border-left: 2px solid var(--amber);
}

.response-note-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
}

.response-note-text strong {
  font-weight: 500;
  color: var(--text-body);
}

.form-panel {
  display: flex;
  flex-direction: column;
}

.form-label-section {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--steel);
  text-transform: uppercase;
}

label .required {
  color: var(--amber);
  margin-left: 3px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  background: var(--navy-surface);
  border: 0.5px solid var(--navy-border);
  border-radius: 3px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  padding: 11px 14px;
  width: 100%;
  transition: border-color 0.15s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  border-color: var(--steel-dark);
  box-shadow: 0 0 0 2px rgba(45, 106, 159, 0.15);
}

input::placeholder,
textarea::placeholder {
  color: #2D3F55;
}

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A8FC4' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

select option {
  background: var(--navy-surface);
  color: var(--text-primary);
}

textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.radio-group {
  display: flex;
  border: 0.5px solid var(--navy-border);
  border-radius: 3px;
  overflow: hidden;
}

.radio-option {
  flex: 1;
  position: relative;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  background: var(--navy-surface);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-transform: uppercase;
  border-right: 0.5px solid var(--navy-border);
  text-align: center;
}

.radio-option:last-child label {
  border-right: none;
}

.radio-option input[type="radio"]:checked + label {
  background: var(--navy-card);
  color: var(--steel);
}

.radio-option label:hover {
  color: var(--text-muted);
  background: var(--navy-hover);
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.form-privacy-note {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 340px;
}

.form-privacy-note a {
  color: var(--steel-dark);
  transition: color 0.15s;
}

.form-privacy-note a:hover {
  color: var(--steel);
}

.submit-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  color: var(--navy-base);
  background: var(--amber);
  padding: 13px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.submit-btn:hover {
  background: var(--amber-dim);
}

.submit-btn:active {
  transform: scale(0.98);
}

.form-message {
  display: none;
  padding: 16px 20px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

.form-message.success {
  background: #04342C;
  border: 0.5px solid #0F6E56;
  color: #9FE1CB;
}

.form-message.error {
  background: #501313;
  border: 0.5px solid #A32D2D;
  color: #F7C1C1;
}

@media (max-width: 900px) {
  .contact-body {
    padding: 48px 24px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .radio-group {
    flex-direction: column;
  }

  .radio-option label {
    border-right: none;
    border-bottom: 0.5px solid var(--navy-border);
  }

  .radio-option:last-child label {
    border-bottom: none;
  }

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .submit-btn {
    width: 100%;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════
   16. LEGAL PAGE
═══════════════════════════════════════════════════════════ */
.legal-body {
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
}

.legal-nav {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 80px;
}

.legal-nav-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.legal-nav-link {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-dim);
  padding: 7px 0;
  border-bottom: 0.5px solid var(--navy-border);
  text-decoration: none;
  transition: color 0.15s;
  letter-spacing: 0.02em;
}

.legal-nav-link:last-child {
  border-bottom: none;
}

.legal-nav-link:hover {
  color: var(--steel);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-section-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  padding-bottom: 14px;
  border-bottom: 0.5px solid var(--navy-border);
}

.legal-section-title span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--amber);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.legal-p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-body);
}

.legal-p strong {
  font-weight: 500;
  color: var(--text-primary);
}

.legal-p a {
  color: var(--steel);
}

.legal-p a:hover {
  color: var(--text-primary);
}

.legal-subsection {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: var(--navy-surface);
  border: 0.5px solid var(--navy-border);
  border-left: 2px solid var(--steel-dark);
}

.legal-subsection-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.legal-subsection-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}

.legal-subsection-body strong {
  font-weight: 500;
  color: var(--text-body);
}

.disclaimer-block {
  padding: 20px;
  background: var(--navy-card);
  border: 0.5px solid var(--steel-dark);
  border-left: 2px solid var(--amber);
}

.disclaimer-block p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-muted);
}

.disclaimer-block p strong {
  font-weight: 500;
  color: var(--text-body);
}

.effective-date {
  font-size: 11px;
  font-weight: 400;
  color: var(--steel-dark);
  letter-spacing: 0.06em;
  margin-top: 8px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  border: 0.5px solid var(--navy-border);
  border-left: 2px solid var(--steel-dark);
  background: var(--navy-surface);
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 16px;
  border-bottom: 0.5px solid var(--navy-border);
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-row-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--steel);
  text-transform: uppercase;
}

.contact-row-value {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-body);
}

.contact-row-value a {
  color: var(--text-body);
  transition: color 0.15s;
}

.contact-row-value a:hover {
  color: var(--text-primary);
}

@media (max-width: 900px) {
  .legal-body {
    padding: 48px 24px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .legal-nav {
    position: static;
  }
}

/* Footer privacy link — matches footer-copy typographically */
a.footer-copy {
  color: var(--steel-dark);
  letter-spacing: 0.04em;
  font-size: 11px;
  text-decoration: none;
  transition: color 0.15s;
}

a.footer-copy:hover {
  color: var(--steel);
}
