:root {
  --light: #dededa;
  --ink: #1d1d1b;
  --mid: #424240;
  --dark: #e8e7e2;
  --muted-light: #555553;
  --muted-dark: #c7c7c2;
  --focus: #f2f2ed;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(to bottom,
    #dededa 0%,
    #c3c3be 20%,
    #92928d 43%,
    #555553 65%,
    #242424 82%,
    #080808 100%);
  color: var(--ink);
  font: 16px/1.6 Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

main,
section,
footer,
header,
.hero,
.section,
.contact,
.site-footer {
  background: transparent !important;
  border: 0 !important;
}

.container {
  width: min(100% - 2rem, 76rem);
  margin: auto;
}

.narrow {
  width: min(100% - 2rem, 48rem);
  margin: auto;
}

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

h1,
h2,
h3 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.06;
  letter-spacing: -.03em;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  max-width: 10ch;
  margin-bottom: 1.4rem;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  max-width: 15ch;
  margin-bottom: 1.4rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: .45rem;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 30;
  background: var(--focus);
  color: #080808;
  padding: .7rem 1rem;
  font-weight: bold;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: relative;
  z-index: 20;
}

.header-content {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.wordmark {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.brand-signature,
.footer-signature {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.menu-button {
  font: inherit;
  color: var(--ink);
  border: 1px solid rgba(29, 29, 27, .3);
  background: transparent;
  border-radius: .25rem;
  padding: .45rem .65rem;
}

.main-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 5rem;
  padding: 1rem;
  background: rgba(222, 222, 218, .98);
}

.main-nav.is-open {
  display: grid;
  gap: .6rem;
}

.main-nav a {
  padding: .4rem .8rem;
  text-decoration: none;
}

.nav-contact,
.button {
  background: var(--ink);
  color: var(--light) !important;
  border-radius: .25rem;
  font-weight: bold;
  text-align: center;
}

.hero {
  min-height: calc(100svh - 5rem);
  display: grid;
  align-items: center;
}

.hero .container {
  padding: 5rem 0;
}

.lead {
  max-width: 42rem;
  color: var(--muted-light);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  padding: .8rem 1.1rem;
  text-decoration: none;
}

.text-link {
  font-weight: bold;
  text-underline-offset: .25em;
}

.section {
  padding: 8rem 0;
}

.services-list {
  display: grid;
  gap: 3.5rem;
  margin-top: 3.5rem;
}

.services-list article {
  max-width: 26rem;
}

.services-list p,
.process p {
  color: var(--muted-light);
  margin-bottom: 0;
}

.process {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 3.5rem 0 0;
}

.process li {
  min-height: 7rem;
}

.perspective {
  padding: 11rem 0;
}

.perspective h2 {
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  max-width: 12ch;
}

.perspective-copy {
  max-width: 31rem;
  margin-left: auto;
}

.perspective-copy p {
  color: var(--muted-dark);
  margin-bottom: 0;
}

.perspective-copy p + p {
  margin-top: 1rem;
}

.tone-dark {
  color: var(--dark);
}

.tone-dark .lead,
.tone-dark .contact-note {
  color: var(--muted-dark);
}

.faq-list {
  margin-top: 3rem;
}

.faq-list details {
  padding: 1.3rem 0;
}

.faq-list details + details {
  margin-top: 1rem;
}

summary {
  cursor: pointer;
  font-weight: bold;
  font-size: 1.05rem;
}

details p {
  color: var(--muted-dark);
  margin: .75rem 0 0;
}

.contact {
  position: relative;
  overflow: hidden;
  min-height: 72svh;
  display: grid;
  align-items: center;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-word {
  position: absolute;
  right: -.08em;
  bottom: -.22em;
  font-size: clamp(7rem, 24vw, 23rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.11em;
  color: rgba(232, 231, 226, .04);
  pointer-events: none;
}

.contact-note {
  margin-top: 2rem !important;
}

.site-footer {
  color: var(--muted-dark);
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-content p {
  margin: 0;
}

.site-footer a {
  color: var(--dark);
}

.legal-page {
  padding: 5rem 0;
  min-height: 70vh;
}

.legal-page p {
  color: var(--muted-light);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

@media (min-width: 48rem) {
  .menu-button {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    padding: 0;
    background: transparent;
  }

  .main-nav a {
    padding: .35rem .5rem;
  }

  .hero .container {
    padding-top: 8rem;
  }

  .services-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }

  .services-list article:nth-child(2) {
    margin-top: 3rem;
  }

  .process {
    gap: 4rem 6rem;
  }

  .contact {
    padding: 4rem 0;
  }
}

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