:root {
  color-scheme: light;
  --background: #f5f5f2;
  --card: #ffffff;
  --ink: #111111;
  --secondary: #6e6e69;
  --line: rgba(17, 17, 17, 0.09);
  --soft: #e9e9e4;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 16% 4%, rgba(255, 255, 255, 0.95), transparent 34rem),
    var(--background);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.shell {
  width: min(100% - 32px, 780px);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 17px;
}

.site-nav {
  display: flex;
  gap: 18px;
  color: var(--secondary);
  font-size: 0.92rem;
}

.site-nav a,
.footer-links a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hero {
  padding: 80px 0 40px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2 {
  margin-top: 0;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 8vw, 5rem);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
}

.lede {
  max-width: 610px;
  margin: 0;
  color: var(--secondary);
  font-size: clamp(1.05rem, 2.5vw, 1.24rem);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px 0 80px;
}

.card,
.document {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 18px 60px rgba(17, 17, 17, 0.045);
}

.card {
  display: block;
  min-height: 210px;
  padding: 26px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(17, 17, 17, 0.08);
}

.card p,
.document p,
.document li {
  color: var(--secondary);
}

.arrow {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 700;
}

.document-wrap {
  padding: 56px 0 80px;
}

.document {
  padding: clamp(24px, 6vw, 54px);
}

.document-header {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.document-header h1 {
  margin-bottom: 12px;
  font-size: clamp(2.3rem, 7vw, 4.3rem);
}

.effective-date {
  margin: 0;
  color: var(--secondary);
  font-size: 0.92rem;
}

.document section {
  padding-top: 34px;
}

.document section + section {
  margin-top: 8px;
  border-top: 1px solid var(--line);
}

.document p:last-child,
.document ul:last-child {
  margin-bottom: 0;
}

.contact-box {
  margin-top: 18px;
  padding: 20px;
  border-radius: 18px;
  background: var(--background);
}

.contact-placeholder {
  color: #8a3f2d;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--secondary);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  gap: 16px;
}

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

  .hero {
    padding-top: 46px;
  }

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

  .card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card {
    transition: none;
  }
}
