:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #5c6874;
  --line: #d9e1e8;
  --paper: #f7f9fb;
  --white: #ffffff;
  --accent: #0f766e;
  --accent-strong: #134e4a;
  --gold: #c7922b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

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

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
  align-items: center;
  gap: 42px;
  max-width: 1120px;
  margin: 22px auto 0;
  padding: 56px 22px 44px;
}

.hero-copy h1,
.legal h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

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

.visual-panel {
  display: grid;
  min-height: 360px;
  place-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.13), rgba(199, 146, 43, 0.16)),
    var(--white);
  box-shadow: 0 24px 70px rgba(23, 33, 43, 0.12);
}

.visual-panel img {
  width: min(46vw, 168px);
  height: auto;
}

.section,
.legal {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 22px;
}

.section h2,
.legal h2 {
  margin: 34px 0 8px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.product {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.product h3 {
  margin: 0 0 8px;
}

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

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

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

  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .visual-panel {
    min-height: 220px;
  }

  nav {
    flex-wrap: wrap;
  }
}
