:root {
  --bg: #f7f8f6;
  --surface: #ffffff;
  --text: #17201e;
  --muted: #65706c;
  --line: #dfe4e1;
  --accent: #2f6f67;
  --accent-soft: #e9f0ee;
  --max: 1180px;
  --reading: 760px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--text);
  color: #fff;
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.wordmark-mark {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.header-note {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.7fr);
  gap: 72px;
  padding: 110px 0 106px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin-top: 0;
  font-weight: 560;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 930px;
  margin-bottom: 28px;
  font-size: clamp(48px, 6.5vw, 86px);
  line-height: 0.99;
}

.hero-copy {
  max-width: 760px;
  margin: 0;
  color: #39433f;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.52;
}

.hero-aside {
  align-self: end;
  padding-top: 12px;
}
.hero-aside-label {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.hero-aside p {
  margin: 16px 0 0;
  color: #3c4642;
  font-size: 15px;
  line-height: 1.7;
}

.section {
  display: grid;
  grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1.7fr);
  gap: 64px;
  padding: 94px 0;
  border-bottom: 1px solid var(--line);
}

.section-kicker {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-body { max-width: 850px; }
.section-body h2 {
  margin-bottom: 26px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}
.section-body > p {
  max-width: var(--reading);
  margin: 0 0 22px;
  color: #3f4945;
  font-size: 18px;
  line-height: 1.72;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: var(--line);
  border: 1px solid var(--line);
}
.principle {
  min-height: 250px;
  padding: 30px;
  background: var(--surface);
}
.principle-num {
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}
.principle h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.22;
}
.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.partner-panel {
  margin-top: 42px;
  padding: 36px 38px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.partner-panel p {
  margin: 0 0 18px;
  color: #3f4945;
  font-size: 16px;
  line-height: 1.7;
}
.partner-panel p:last-child { margin-bottom: 0; }
.contact-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.status-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #45504b;
  font-size: 14px;
  font-weight: 650;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}

.contact-block {
  padding: 94px 0 104px;
}
.contact-block h2 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.04;
}
.contact-block p {
  max-width: 660px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.big-email {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 650;
  letter-spacing: -0.02em;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.site-footer {
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--accent); }
.footer-disclaimer {
  max-width: 780px;
  margin: 0;
  color: #7a827f;
  font-size: 12px;
  line-height: 1.65;
}
.copyright {
  margin-top: 18px;
  color: #7a827f;
  font-size: 12px;
}

.legal-main {
  padding: 86px 0 120px;
}
.legal-header {
  max-width: 780px;
  margin-bottom: 58px;
}
.legal-header h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
}
.legal-header p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.legal-copy {
  max-width: 760px;
}
.legal-copy h2 {
  margin: 52px 0 14px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p, .legal-copy li {
  color: #434d49;
  font-size: 16px;
  line-height: 1.75;
}
.legal-copy ul {
  padding-left: 22px;
}
.legal-copy strong { color: var(--text); }

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 84px 0 82px;
  }
  .hero-aside {
    max-width: 520px;
  }
  .section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 72px 0;
  }
  .principles {
    grid-template-columns: 1fr;
  }
  .principle {
    min-height: 0;
  }
  .principle-num { margin-bottom: 28px; }
}

@media (max-width: 620px) {
  .site-shell { width: min(calc(100% - 28px), var(--max)); }
  .site-header { min-height: 72px; }
  .header-note { display: none; }
  .hero { padding: 64px 0 66px; }
  h1 { font-size: clamp(44px, 14vw, 64px); }
  .hero-copy { font-size: 18px; }
  .section { padding: 60px 0; }
  .section-body > p { font-size: 17px; }
  .principle { padding: 24px; }
  .partner-panel { padding: 26px 24px; }
  .contact-block { padding: 66px 0 74px; }
  .footer-top { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
