:root {
  --navy: #0a2442;
  --blue: #1d65a6;
  --cyan: #2b9db7;
  --ink: #172033;
  --muted: #5f6b7a;
  --paper: #f6f8fb;
  --surface: #ffffff;
  --line: #dce3ec;
  --soft: #edf4fb;
  --shadow: 0 18px 48px rgba(10, 36, 66, 0.12);
  --maxw: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 16px/1.8 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a:hover {
  color: var(--cyan);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.25;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem max(1rem, calc((100vw - var(--maxw)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
}

.brand img {
  width: 38px;
  height: 38px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand strong {
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--blue);
}

.nav-toggle {
  display: none;
}

.section-shell {
  width: min(100% - 2rem, var(--maxw));
  margin: 0 auto;
  padding: 4.6rem 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 65px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 0.7rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-lead {
  color: var(--navy);
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.45;
}

.hero-text,
.lead,
.prose {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.hero-actions a,
.button-row a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.95rem;
  color: #fff;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 8px;
  font-weight: 900;
}

.hero-actions a + a,
.button-row a + a {
  color: var(--navy);
  background: var(--surface);
}

.hero-panel {
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.logo-card {
  display: grid;
  place-items: center;
  min-height: 190px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #f6fbff, #ecf4fb);
  border-radius: 12px;
}

.logo-card img {
  width: 96px;
  height: 96px;
}

.logo-card p {
  margin: 0.75rem 0 0;
  color: var(--navy);
  font-weight: 900;
}

.hero-panel dl,
.hero-panel dd {
  margin: 0;
}

.hero-panel div + div {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hero-panel dt {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel dd {
  color: var(--ink);
  font-weight: 800;
}

.two-column {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 3rem;
  border-top: 1px solid var(--line);
}

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

.statement {
  color: #fff;
  background: var(--navy);
}

.statement h2,
.statement .section-kicker {
  color: #fff;
}

.statement p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  margin-bottom: 1.8rem;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.business-grid article {
  min-height: 150px;
  padding: 1.25rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 32px rgba(10, 36, 66, 0.06);
  font-weight: 800;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.service-list span {
  padding: 0.45rem 0.7rem;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
}

.purpose-section {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 3rem;
  border-top: 1px solid var(--line);
}

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

.purpose-grid article {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 32px rgba(10, 36, 66, 0.06);
}

.purpose-grid h3 {
  margin: 0 0 0.65rem;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.45;
}

.purpose-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 3rem;
  align-items: center;
  border-top: 1px solid var(--line);
}

.product-copy p {
  color: var(--muted);
}

.product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.text-link {
  font-weight: 900;
}

.origin-section {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 3rem;
  border-top: 1px solid var(--line);
}

.origin-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  color: var(--muted);
  background: var(--surface);
  border-left: 6px solid var(--blue);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.origin-card strong {
  display: block;
  margin-top: 1.2rem;
  color: var(--navy);
  font-size: 1.3rem;
  line-height: 1.45;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.company-table th,
.company-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.company-table th {
  width: 160px;
  color: var(--navy);
  background: var(--soft);
  font-weight: 900;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: 0;
}

.legal-hero {
  padding-bottom: 2rem;
}

.legal-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal-hero p {
  max-width: 860px;
  color: var(--muted);
}

.legal-section,
.legal-content {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.legal-table th {
  width: 220px;
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-content article {
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 32px rgba(10, 36, 66, 0.06);
}

.legal-content h2 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-updated {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 2rem;
  align-items: center;
  color: #fff;
  background: var(--navy);
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - var(--maxw)) / 2));
}

.contact-section h2,
.contact-section .section-kicker {
  color: #fff;
}

.contact-section p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  display: grid;
  gap: 0.75rem;
}

.contact-mail {
  display: grid;
  gap: 0.2rem;
  min-height: 64px;
  padding: 0.75rem 1rem;
  color: var(--navy);
  background: #fff;
  border-radius: 8px;
  font-weight: 900;
}

.contact-mail span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-mail strong {
  font-size: 1.05rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.6rem max(1rem, calc((100vw - var(--maxw)) / 2));
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer a {
  margin-left: 1rem;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.45rem 0.7rem;
    color: var(--navy);
    background: #fff;
    font: inherit;
    font-weight: 900;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: start;
    flex-wrap: wrap;
    padding-top: 0.4rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .two-column,
  .purpose-section,
  .product-section,
  .origin-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-section {
    padding-block: 3.5rem;
  }
}

@media (max-width: 640px) {
  .section-shell {
    padding: 3.5rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

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

  .company-table,
  .company-table tbody,
  .company-table tr,
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table th {
    border-bottom: 0;
  }

  .site-footer a {
    display: inline-block;
    margin: 0 1rem 0 0;
  }
}
