:root {
  --ink: #14212f;
  --ink-soft: #506070;
  --navy: #183a55;
  --navy-dark: #102b40;
  --blue-soft: #dceaf1;
  --cream: #f7f4ed;
  --paper: #fffdfa;
  --gold: #c59a56;
  --line: #dce2e5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 28px 32px;
}
.brand { align-items: center; display: flex; gap: 14px; }
.brand-mark {
  align-items: center;
  background: var(--navy);
  border-radius: 12px;
  color: white;
  display: flex;
  font-family: monospace;
  font-size: .82rem;
  font-weight: 700;
  height: 46px;
  justify-content: center;
  letter-spacing: .08em;
  width: 46px;
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: .92rem; letter-spacing: -.01em; }
.brand small { color: var(--ink-soft); font-size: .72rem; margin-top: 3px; }
nav { display: flex; gap: 30px; }
nav a { color: var(--ink-soft); font-size: .9rem; font-weight: 600; }
nav a:hover, nav a:focus-visible { color: var(--navy); }
.hero {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  margin: 0 auto;
  max-width: 1180px;
  min-height: 620px;
  padding: 72px 32px 100px;
}
.eyebrow {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .13em;
  margin: 0 0 18px;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  letter-spacing: -.055em;
  line-height: .98;
  margin-bottom: 28px;
  max-width: 780px;
}
.hero-description {
  color: var(--ink-soft);
  font-size: 1.13rem;
  line-height: 1.75;
  max-width: 690px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button {
  border-radius: 8px;
  display: inline-flex;
  font-size: .92rem;
  font-weight: 700;
  justify-content: center;
  padding: 15px 22px;
}
.button.primary { background: var(--navy); color: white; }
.button.primary:hover, .button.primary:focus-visible { background: var(--navy-dark); }
.button.secondary { border: 1px solid var(--line); }
.button.secondary:hover, .button.secondary:focus-visible { background: var(--cream); }
.hero-card {
  background: radial-gradient(circle at top right, rgba(197,154,86,.18), transparent 40%), var(--navy);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(16,43,64,.18);
  color: white;
  padding: 38px;
}
.card-label {
  color: #b9cbd6;
  font-size: .76rem;
  letter-spacing: .11em;
  margin-bottom: 9px;
  text-transform: uppercase;
}
.status {
  align-items: center;
  display: flex;
  font-size: 1.55rem;
  font-weight: 750;
  gap: 10px;
  margin-bottom: 34px;
}
.status span {
  background: #67d5a4;
  border: 4px solid rgba(103,213,164,.16);
  border-radius: 50%;
  height: 13px;
  width: 13px;
}
.hero-card dl { display: grid; gap: 20px; margin: 0; }
.hero-card dl div { border-top: 1px solid rgba(255,255,255,.13); padding-top: 18px; }
.hero-card dt { color: #b9cbd6; font-size: .76rem; margin-bottom: 6px; }
.hero-card dd { font-size: .95rem; font-weight: 650; margin: 0; }
.section { padding: 110px max(32px, calc((100vw - 1116px) / 2)); }
.company-section { background: var(--cream); }
.section-heading { max-width: 690px; }
.section-heading h2, .contact-section h2, .privacy-section h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  letter-spacing: -.045em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.section-heading > p:last-child, .contact-section > div > p:last-child, .privacy-section p {
  color: var(--ink-soft);
  line-height: 1.75;
}
.company-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 54px;
}
.company-grid article {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(20,33,47,.08);
  border-radius: 13px;
  padding: 26px;
}
.company-grid span, .contact-links span {
  color: var(--ink-soft);
  display: block;
  font-size: .77rem;
  margin-bottom: 8px;
}
.company-grid strong { font-size: 1rem; }
.activities-section {
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
}
.activities-list { border-top: 1px solid var(--line); }
.activities-list article { border-bottom: 1px solid var(--line); padding: 24px 0; }
.activities-list article > div { align-items: center; display: flex; flex-wrap: wrap; gap: 10px; }
.activity-code, .primary-tag { font-family: monospace; font-size: .69rem; letter-spacing: .04em; }
.activity-code { color: var(--ink-soft); }
.primary-tag {
  background: var(--blue-soft);
  border-radius: 999px;
  color: var(--navy);
  padding: 5px 8px;
}
.activities-list h3 { font-size: 1.08rem; line-height: 1.45; margin: 12px 0 0; }
.contact-section {
  align-items: end;
  background: var(--navy);
  color: white;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
  padding: 100px max(32px, calc((100vw - 1116px) / 2));
}
.contact-section > div > p:last-child { color: #c4d3dc; max-width: 530px; }
.contact-links { display: grid; gap: 12px; }
.contact-links a {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  padding: 20px 22px;
}
.contact-links a:hover, .contact-links a:focus-visible { background: rgba(255,255,255,.13); }
.contact-links span { color: #b9cbd6; }
.privacy-section { margin: 0 auto; max-width: 920px; padding: 100px 32px; }
.privacy-section h2 { font-size: 2.2rem; }
.privacy-section a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 36px 32px 46px;
}
footer strong, footer span { display: block; }
footer strong { font-size: .8rem; }
footer span, footer a { color: var(--ink-soft); font-size: .75rem; margin-top: 5px; }
footer a { margin-top: 0; }
@media (max-width: 840px) {
  nav { display: none; }
  .hero { gap: 42px; grid-template-columns: 1fr; padding-top: 58px; }
  .activities-section, .contact-section { grid-template-columns: 1fr; }
  .activities-section { gap: 38px; }
}
@media (max-width: 580px) {
  .site-header, .hero, .section, .contact-section, .privacy-section, footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-header { padding-top: 20px; }
  .brand-mark { height: 40px; width: 40px; }
  .brand strong { font-size: .72rem; }
  .hero { min-height: auto; padding-bottom: 72px; }
  h1 { font-size: 2.75rem; }
  .hero-card { padding: 28px; }
  .section, .contact-section, .privacy-section { padding-bottom: 74px; padding-top: 74px; }
  .company-grid { grid-template-columns: 1fr; }
  .contact-links strong { font-size: .92rem; }
  footer { align-items: flex-start; flex-direction: column; gap: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
