:root {
  --bg: #ffffff;
  --ink: #080808;
  --muted: #5f5f5f;
  --faint: #666666;
  --line: #e8e8e8;
  --panel: #f7f7f5;
  --focus: #1f4f9f;
  --measure: 760px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  border: 12px solid #fff;
}

a {
  color: inherit;
  text-decoration-color: var(--line);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  text-decoration-color: var(--ink);
}

a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

.site {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 24px;
  top: 16px;
  z-index: 10;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--bg);
  padding: 8px 12px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
}

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

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mark {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.5vw, 30px);
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.86rem;
  color: var(--muted);
  text-decoration: none;
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--ink);
}

.hero {
  min-height: 72vh;
  display: grid;
  align-content: center;
  padding: clamp(80px, 12vw, 150px) 0 clamp(72px, 10vw, 120px);
}

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

.kicker,
.section-label {
  margin: 0 0 18px;
  color: var(--faint);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8.2vw, 7.9rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
}

.subtitle {
  margin: clamp(28px, 4vw, 42px) 0 0;
  font-size: clamp(1.35rem, 2.8vw, 2.35rem);
  line-height: 1.15;
}

.intro {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.content {
  padding: clamp(56px, 9vw, 104px) 0 clamp(80px, 10vw, 128px);
}

.narrow {
  max-width: var(--measure);
}

.content h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.95;
}

.content h2 {
  margin: 56px 0 16px;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.2;
}

.content p,
.content li {
  color: var(--muted);
  font-size: 1.05rem;
}

.content ul {
  padding-left: 1.15rem;
}

.lead {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.35;
}

.details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  padding: clamp(44px, 7vw, 72px) 0;
  border-top: 1px solid var(--line);
}

.details:first-of-type {
  border-top: 0;
}

.contact-line {
  margin: 0;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  line-height: 1.25;
}

.info-list {
  margin: 0;
}

.info-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.info-row dt {
  color: var(--faint);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-row dd {
  margin: 0;
  color: var(--ink);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.82rem;
}

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

.footer a {
  text-decoration: none;
}

.fade-in {
  animation: quiet-in 480ms ease-out both;
}

@keyframes quiet-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 760px) {
  body::before {
    border-width: 8px;
  }

  .site {
    width: min(100% - 32px, 1120px);
  }

  .header {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 0;
  }

  .nav {
    justify-content: flex-start;
    gap: 14px 18px;
  }

  .hero {
    min-height: auto;
    padding: 78px 0 70px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 5.1rem);
  }

  .details {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
