:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #5d6b78;
  --paper: #fbfaf7;
  --band: #eef5f1;
  --line: #c9d7cf;
  --accent: #2f7d68;
  --accent-dark: #235d4e;
  --blue: #145f92;
  --sun: #f0c15a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-rounded, "Avenir Next", Avenir, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.94);
}

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

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

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

nav a {
  color: var(--ink);
  font-weight: 650;
  text-decoration: none;
}

nav a[aria-current="page"] {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.hero {
  min-height: 68vh;
  display: grid;
  align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 64px);
  background:
    radial-gradient(circle at 12% 20%, rgba(20, 95, 146, 0.18), transparent 28%),
    radial-gradient(circle at 72% 18%, rgba(240, 193, 90, 0.28), transparent 24%),
    linear-gradient(135deg, #fbfaf7 0%, #eef5f1 100%);
}

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

.hero-logo {
  width: clamp(108px, 18vw, 160px);
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 18px 20px rgba(31, 41, 51, 0.14));
}

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

h1 {
  max-width: 820px;
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

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

.values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values article {
  min-height: 220px;
  padding: clamp(24px, 4vw, 48px);
  background: var(--white);
}

.values h2,
.panel h2,
.legal h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.values p,
.panel p,
.legal p {
  margin: 0 0 16px;
  color: var(--muted);
}

.page {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 84px) 0;
}

.page h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.panel {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.muted,
.contact-placeholder {
  color: var(--muted);
}

.contact-placeholder {
  display: inline-block;
  padding: 8px 12px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--band);
  font-weight: 700;
}

.legal section {
  margin-top: 32px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

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

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

  .hero {
    min-height: auto;
  }
}
