@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: #16283F;
  --navy-deep: #0D1826;
  --steel: #2F5D82;
  --steel-light: #4C7DA3;
  --slate: #55606B;
  --fog: #F4F6F8;
  --fog-deep: #E7EBEE;
  --white: #FFFFFF;
  --brass: #A9824A;
  --brass-light: #C29F6C;
  --ink: #101820;
  --line: #D8DEE3;

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

  --radius: 6px;
  --max-width: 1180px;
  --header-h: 84px;
}

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

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--navy-deep);
}

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

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

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}

:focus-visible {
  outline: 2px solid var(--steel-light);
  outline-offset: 3px;
}

/* Ledger divider — signature element: a valuation-scale tick rule */
.ledger {
  display: flex;
  align-items: center;
  height: 14px;
  margin: 20px 0 32px;
  width: 100%;
  overflow: hidden;
}
.ledger::before {
  content: '';
  flex: 1;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    var(--line) 0,
    var(--line) 1px,
    transparent 1px,
    transparent 24px
  );
  background-size: 24px 8px;
  background-position: left center;
}
.ledger.on-dark::before {
  background-image: repeating-linear-gradient(
    to right,
    rgba(255,255,255,0.28) 0,
    rgba(255,255,255,0.28) 1px,
    transparent 1px,
    transparent 24px
  );
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.btn-primary {
  background: var(--brass);
  color: var(--navy-deep);
}
.btn-primary:hover { background: var(--brass-light); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-ghost:hover { border-color: var(--white); }
.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn:active { transform: translateY(1px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand img { width: 42px; height: 42px; flex-shrink: 0; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text .name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17.5px;
  color: var(--navy-deep);
  letter-spacing: 0.01em;
}
.brand-text .type {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: color 0.15s ease, background 0.15s ease;
}
.main-nav a:hover { color: var(--navy-deep); background: var(--fog); }
.main-nav a.active { color: var(--navy-deep); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--navy);
}
.header-phone i { font-size: 17px; color: var(--brass); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 26px;
  color: var(--navy-deep);
  padding: 6px;
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 30px;
    gap: 2px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    border-top: 1px solid var(--line);
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 15px 10px; border-bottom: 1px solid var(--fog-deep); }
  .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Hero */
.hero {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 4.4vw, 54px);
  margin-bottom: 22px;
}
.hero p.lead {
  color: #C4CEDA;
  font-size: 18px;
  max-width: 46ch;
}
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-figure {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3.1;
  border: 1px solid rgba(255,255,255,0.14);
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(13,24,38,0.92), transparent);
  color: #DCE4EC;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 34px 18px 14px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 58px;
  padding-top: 34px;
}
.stat-row .stat + .stat { border-left: 1px solid rgba(255,255,255,0.14); padding-left: 28px; }
.stat .num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--brass-light);
}
.stat .label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #A9B6C4;
  letter-spacing: 0.03em;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 44px; padding-bottom: 44px; }
  .hero-figure { order: -1; }
  .stat-row { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .stat-row .stat:nth-child(3) { border-left: none; padding-left: 0; }
}

/* Generic section */
.section { padding: 88px 0; }
.section.alt { background: var(--fog); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(26px, 3vw, 36px); }

/* Cards / grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 900px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.card .icon-wrap {
  width: 46px; height: 46px;
  border-radius: 9px;
  background: var(--navy-deep);
  color: var(--brass-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { font-size: 15px; margin-bottom: 0; }

/* Process timeline (genuine sequence) */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  position: relative;
  padding: 0 22px 0 0;
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.process-step:first-child { border-left: none; padding-left: 0; }
.process-step .step-index {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brass);
  letter-spacing: 0.06em;
}
.process-step h3 { font-size: 17.5px; margin: 10px 0 8px; }
.process-step p { font-size: 14.5px; }
@media (max-width: 900px) {
  .process { grid-template-columns: 1fr; gap: 30px; }
  .process-step { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
  .process-step:first-child { border-top: none; padding-top: 0; }
}

/* Split section with image */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split img { border-radius: 8px; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5/4; }
.split.reverse .split-media { order: 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse .split-media { order: -1; }
}
.check-list { list-style: none; padding: 0; margin: 22px 0 0; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-top: 1px solid var(--fog-deep);
  font-size: 15px;
  color: var(--slate);
}
.check-list li:first-child { border-top: none; }
.check-list i { color: var(--steel); font-size: 19px; margin-top: 1px; flex-shrink: 0; }

/* Sectors */
.sector-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sector-item {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.sector-item i { font-size: 24px; color: var(--brass); }
.sector-item span { font-weight: 600; font-size: 15px; color: var(--navy-deep); }
@media (max-width: 900px) { .sector-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .sector-list { grid-template-columns: 1fr; } }

/* Quote strip */
.quote-strip {
  background: var(--navy-deep);
  color: var(--white);
  padding: 70px 0;
}
.quote-strip blockquote {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.6vw, 29px);
  font-weight: 500;
  max-width: 780px;
  margin: 0 0 18px;
  line-height: 1.4;
}
.quote-strip cite {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 13px;
  color: #9FADBC;
  letter-spacing: 0.03em;
}

/* CTA band */
.cta-band {
  background: var(--fog);
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: 27px; margin-bottom: 6px; }
.cta-band p { margin-bottom: 0; }

.notice-box {
  display: flex;
  gap: 14px;
  background: var(--fog);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
  padding: 20px 22px;
  border-radius: var(--radius);
  margin-top: 26px;
}
.notice-box i { font-size: 22px; color: var(--brass); flex-shrink: 0; margin-top: 2px; }
.notice-box p { font-size: 14.5px; margin-bottom: 0; color: var(--slate); }

/* Page header (inner pages) */
.page-hero {
  background: var(--navy-deep);
  color: var(--white);
  padding: 62px 0 54px;
}
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4vw, 44px); margin-bottom: 10px; }
.page-hero p { color: #C4CEDA; font-size: 16.5px; max-width: 60ch; margin-bottom: 0; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--brass-light);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.breadcrumb a { color: #9FADBC; }
.breadcrumb a:hover { color: var(--white); }

/* Legal content pages */
.legal-content { max-width: 780px; }
.legal-content h2 { font-size: 22px; margin-top: 44px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 17px; margin-top: 28px; }
.legal-content p, .legal-content li { color: var(--slate); font-size: 15.5px; }
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-content .updated {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brass);
  margin-bottom: 40px;
  display: block;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: flex-start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card {
  background: var(--navy-deep);
  color: var(--white);
  border-radius: 10px;
  padding: 38px 34px;
}
.contact-info-card h3 { color: var(--white); font-size: 18px; margin-bottom: 22px; }
.contact-line { display: flex; gap: 14px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,0.14); }
.contact-line:first-of-type { border-top: none; }
.contact-line i { font-size: 20px; color: var(--brass-light); margin-top: 2px; flex-shrink: 0; }
.contact-line span, .contact-line a { font-size: 14.5px; color: #D6DEE6; line-height: 1.5; }
.contact-line a:hover { color: var(--white); }
.hours-table { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.14); }
.hours-table div { display: flex; justify-content: space-between; font-size: 14px; padding: 6px 0; color: #C4CEDA; }
.hours-table div span:last-child { font-family: var(--font-mono); color: #E7EBEE; }

.map-embed { border-radius: 10px; overflow: hidden; border: 1px solid var(--line); margin-top: 24px; }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 38px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--fog);
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--steel-light);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.checkbox-field { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 22px; }
.checkbox-field input { width: auto; margin-top: 3px; }
.checkbox-field label { font-size: 13.5px; font-weight: 400; color: var(--slate); }
.checkbox-field a { color: var(--steel); text-decoration: underline; }
.form-status {
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: #E7F1EA; color: #2C6B3F; border: 1px solid #BEDDC7; }
.form-status.error { background: #FBEAEA; color: #A23B3B; border: 1px solid #F0C6C6; }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #B9C4D0;
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.footer-brand img { width: 36px; height: 36px; }
.footer-brand .name { font-family: var(--font-display); font-weight: 600; color: var(--white); font-size: 16px; }
.footer-brand .type { font-family: var(--font-mono); font-size: 10px; color: var(--brass-light); text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brass-light);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 14px; color: #B9C4D0; }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 14px; color: #B9C4D0; }
.footer-disclaimer {
  font-size: 13px;
  color: #8393A2;
  line-height: 1.6;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
  color: #8393A2;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: #8393A2; }
.footer-bottom a:hover { color: var(--white); }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  font-size: 16px;
}
.socials a:hover { background: rgba(255,255,255,0.08); }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(13,24,38,0.18);
  padding: 24px 26px;
  z-index: 900;
  transform: translateY(140%);
  transition: transform 0.35s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-head { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.cookie-banner-head i { font-size: 22px; color: var(--brass); }
.cookie-banner-head strong { font-size: 15.5px; color: var(--navy-deep); }
.cookie-banner p { font-size: 13.5px; margin-bottom: 18px; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 10px 18px; font-size: 13.5px; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
