:root {
  --page-bg: #1f1a14;
  --text: #fcf9fa;
  --text-soft: #d8d0ca;
  --text-muted: #aaa09a;
  --border: rgba(248, 236, 248, 0.18);
  --focus: #ffa347;
  --max-width: 1180px;
  --content-width: 68ch;
  --gutter: 2rem;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  color: var(--text);
  background: var(--page-bg);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, p { margin: 0; }
h1, h2 { letter-spacing: -0.025em; }
a { color: inherit; }
.container { width: min(100%, var(--max-width)); margin-inline: auto; padding-inline: var(--gutter); }

.site-header { background: var(--page-bg); }
.site-header__inner {
  display: flex;
  width: min(100%, var(--max-width));
  min-height: 5.5rem;
  margin-inline: auto;
  padding: 1.5rem var(--gutter);
  align-items: center;
  justify-content: flex-end;
}
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2rem); }
.site-nav a {
  color: var(--text-soft);
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 150ms ease;
}
.site-nav a:hover { color: var(--text); }

.hero {
  display: flex;
  min-height: min(56vh, 560px);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  flex-direction: column;
  justify-content: center;
}
.hero h1 { font-size: clamp(2.75rem, 6vw, 5rem); line-height: 1.02; }
.hero__descriptor {
  max-width: 720px;
  margin-top: 1.25rem;
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.hero__support { max-width: 660px; margin-top: 1rem; color: var(--text-soft); font-size: clamp(1rem, 1.7vw, 1.2rem); }
.content-section,
.work-path,
.contact {
  display: grid;
  grid-template-columns: minmax(190px, .72fr) minmax(0, 1.55fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
}
.content-section { padding-top: clamp(4rem, 7vw, 6rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.content-section h2,
.contact h2 { font-size: clamp(1.4rem, 2vw, 1.75rem); line-height: 1.2; }
.section-body { max-width: var(--content-width); }
.section-body p,
.contact p { color: var(--text-soft); font-size: 1.0625rem; line-height: 1.7; }
.section-body p + p { margin-top: 1.1rem; }

.work-paths {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.work-path { min-width: 0; }
.work-path + .work-path { margin-top: clamp(3rem, 6vw, 5rem); }
.work-path h2 { font-size: clamp(1.35rem, 2vw, 1.65rem); line-height: 1.2; }
.work-path p { max-width: 580px; color: var(--text-soft); font-size: 1rem; line-height: 1.65; }
.work-path a,
.contact__links a {
  display: inline-block;
  color: var(--text);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: .3em;
}
.work-path a { margin-top: 1.25rem; }
.work-path a:hover,
.contact__links a:hover { color: var(--text-soft); }

.contact { padding-top: clamp(4rem, 7vw, 6rem); padding-bottom: clamp(4rem, 7vw, 6rem); }
.contact__links { display: flex; margin-top: 1.5rem; align-items: flex-start; gap: .65rem 1.5rem; flex-wrap: wrap; }
.contact__links a { font-size: 1rem; }

.site-footer { padding: 2rem var(--gutter) 3rem; color: var(--text-muted); font-size: .8rem; text-align: center; }

section { scroll-margin-top: 2rem; }
a:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }

@media (max-width: 700px) {
  :root { --gutter: 1.25rem; }
  .site-header__inner { min-height: 4.75rem; }
  .site-nav { width: 100%; justify-content: space-between; gap: .75rem; }
  .site-nav a { font-size: .8rem; }
  .hero { min-height: auto; padding-top: 3rem; padding-bottom: 3.5rem; }
  .hero h1 { font-size: clamp(2.5rem, 13vw, 3.5rem); }
  .hero__descriptor { font-size: clamp(1.4rem, 7vw, 1.85rem); }
  .content-section,
  .work-path,
  .contact { grid-template-columns: 1fr; gap: 1.25rem; }
}

@media (max-width: 420px) {
  .contact__links { flex-direction: column; }
}

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