:root {
  color-scheme: light;
  --ink: #16202a;
  --muted: #64707d;
  --line: #dbe1e8;
  --panel: #f7f9fb;
  --accent: #0f766e;
  --accent-dark: #0b4f4a;
  --warm: #e85d3f;
  --paper: #ffffff;
  --shadow: 0 16px 48px rgba(22, 32, 42, 0.10);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a:hover {
  color: var(--accent-dark);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--warm));
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: -2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  font-size: 15px;
}

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

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  padding: clamp(56px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(15, 118, 110, 0.08), rgba(232, 93, 63, 0.08)),
    #fbfcfd;
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid var(--line);
}

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.button.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: white;
}

.button.secondary {
  background: white;
  color: var(--ink);
}

.hero-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.hero-panel dl {
  margin: 0;
}

.hero-panel div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.hero-panel div:first-child {
  padding-top: 0;
}

.hero-panel div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 700;
}

.section {
  padding: clamp(48px, 7vw, 90px) clamp(20px, 5vw, 72px);
}

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

.grid {
  display: grid;
  gap: 18px;
}

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

.card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--paper);
}

.card p,
.copy p,
.policy p,
.policy li {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
  background: var(--panel);
}

.copy {
  font-size: 18px;
}

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

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

.details div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.details span,
.details strong {
  display: block;
}

.details span {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 6px;
}

.policy {
  max-width: 920px;
  padding: clamp(48px, 7vw, 86px) clamp(20px, 5vw, 72px);
  margin: 0 auto;
}

.policy h1 {
  font-size: clamp(40px, 6vw, 64px);
}

.policy section {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.policy ul {
  padding-left: 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

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

  .hero,
  .split,
  .grid.three,
  .details,
  .details.compact {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 42px;
  }
}

@media (max-width: 560px) {
  .nav,
  .site-footer nav {
    flex-wrap: wrap;
  }

  .hero,
  .section,
  .policy {
    padding-left: 18px;
    padding-right: 18px;
  }
}
