:root {
  color-scheme: light;
  --bg: #f7f5ef;
  --panel: #ffffff;
  --text: #1e2528;
  --muted: #5f6b70;
  --line: #d9d4c8;
  --accent: #193b3f;
  --accent-soft: #e5ecea;
  --shadow: 0 24px 70px rgba(29, 44, 48, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(25, 59, 63, 0.10), transparent 32rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-header,
.site-footer,
main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-cta {
  color: var(--accent);
}

.hero {
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 76px 0;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  max-width: 950px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.lede {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--muted);
  max-width: 690px;
  margin: 26px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.button.secondary {
  background: var(--accent-soft);
  color: var(--accent);
}

.section {
  padding: 74px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card,
.contact-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(217, 212, 200, 0.75);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.card {
  padding: 28px;
}

.card p,
.split p,
.legal p,
.company-details {
  color: var(--muted);
}

.split,
.contact-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
}

.contact-panel {
  padding: 36px;
  align-items: start;
  border-top: 0;
}

.company-details {
  margin: 0;
  display: grid;
  gap: 18px;
}

.company-details div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.company-details div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

dt {
  color: var(--text);
  font-weight: 800;
}

dd {
  margin: 4px 0 0;
}

.legal {
  max-width: 820px;
}

.legal h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.legal h2 {
  margin-top: 42px;
  font-size: 1.6rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 0 46px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    gap: 14px;
  }

  .hero {
    min-height: auto;
    padding: 48px 0 70px;
  }

  .cards,
  .split,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .site-footer {
    flex-direction: column;
  }
}
