:root {
  --green-950: #0d2f28;
  --green-900: #163f35;
  --green-750: #2d5a4e;
  --sage-200: #c8d7d1;
  --cream: #f5f0e7;
  --ivory: #fbfaf6;
  --ink: #26302d;
  --muted: #68736f;
  --line: rgba(22, 63, 53, 0.18);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 9px 14px;
  border-radius: 6px;
  background: white;
  color: var(--green-950);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  color: var(--ivory);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-inner {
  min-height: 96px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: 18px;
  font-weight: 680;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 700;
}

.contact-link {
  padding: 8px 0;
  color: inherit;
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.contact-link:hover,
.contact-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(200, 215, 209, 0.2), transparent 26%),
    var(--green-900);
  color: var(--ivory);
}

.hero-grid {
  display: grid;
  min-height: 730px;
  align-items: end;
  gap: 80px;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  padding-block: 190px 110px;
}

.eyebrow,
.card-label {
  margin: 0 0 20px;
  color: var(--green-750);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sage-200);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 32px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8vw, 96px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.intro {
  max-width: 690px;
  margin-bottom: 36px;
  color: rgba(251, 250, 246, 0.78);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-block: 8px;
  color: var(--ivory);
  font-weight: 680;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 8px;
}

.primary-link:hover,
.primary-link:focus-visible {
  text-decoration-color: currentColor;
}

.company-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 34, 28, 0.25);
  backdrop-filter: blur(8px);
}

.company-card .card-label {
  color: var(--sage-200);
}

.company-card dl,
.company-card dd {
  margin: 0;
}

.company-card dl > div {
  display: grid;
  gap: 2px;
  padding-block: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.company-card dt {
  color: rgba(251, 250, 246, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-card dd {
  color: var(--ivory);
  font-size: 17px;
}

.company-card a:hover,
.company-card a:focus-visible {
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.principles,
.privacy {
  padding-block: 112px;
}

.principles h2,
.privacy h2 {
  max-width: 760px;
  margin-bottom: 56px;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.principle-grid {
  display: grid;
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.principle-grid article {
  min-height: 260px;
  padding: 34px 36px 36px 0;
}

.principle-grid article + article {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.number {
  display: block;
  margin-bottom: 48px;
  color: var(--green-750);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.principle-grid h3 {
  margin-bottom: 12px;
  color: var(--green-950);
  font-size: 23px;
  letter-spacing: -0.02em;
}

.principle-grid p {
  max-width: 290px;
  margin-bottom: 0;
  color: var(--muted);
}

.privacy {
  background: var(--cream);
}

.privacy-inner {
  display: grid;
  align-items: start;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
}

.privacy h2 {
  margin-bottom: 0;
}

.privacy-inner > p {
  max-width: 540px;
  margin: 46px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  background: var(--green-950);
  color: rgba(251, 250, 246, 0.68);
}

.footer-inner {
  min-height: 110px;
  gap: 24px;
  font-size: 13px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 820px) {
  .shell {
    width: min(calc(100% - 36px), var(--max-width));
  }

  .hero-grid {
    min-height: auto;
    gap: 56px;
    grid-template-columns: 1fr;
    padding-block: 165px 72px;
  }

  .company-card {
    max-width: 520px;
  }

  .principles,
  .privacy {
    padding-block: 80px;
  }

  .principle-grid,
  .privacy-inner {
    grid-template-columns: 1fr;
  }

  .principle-grid article {
    min-height: 0;
    padding: 30px 0;
  }

  .principle-grid article + article {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .number {
    margin-bottom: 24px;
  }

  .privacy-inner {
    gap: 24px;
  }

  .privacy-inner > p {
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  .header-inner {
    min-height: 80px;
  }

  h1 {
    font-size: 48px;
  }

  .company-card {
    padding: 26px;
  }

  .footer-inner {
    min-height: 130px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

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