:root {
  --bg: #f3f3f3;
  --ink: #1e150f;
  --muted: #68615b;
  --line: #c5bcb2;
  --taupe: #9a8b75;
  --brown: #533827;
  --warm: #8d705c;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1400px;
  --measure: 42rem;
  --header: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  background: var(--line);
}

a {
  color: var(--ink);
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--brown);
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 8px 16px;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  min-height: var(--header);
}

.wordmark {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  margin-right: auto;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-cta:hover {
  color: var(--bg);
  background: var(--brown);
}

.cta-full {
  display: none;
}

.nav-desktop {
  display: none;
}

.nav-disclosure {
  position: relative;
}

.nav-disclosure > summary {
  list-style: none;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 0 10px 8px;
}

.nav-disclosure > summary::-webkit-details-marker {
  display: none;
}

.nav-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  min-width: min(100vw - 32px, 280px);
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-panel a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.breadcrumbs {
  margin: 0 0 32px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--line);
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.hero {
  display: grid;
  gap: 32px;
  margin-bottom: 80px;
}

.hero h1,
.prose h1,
h1 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 7vw, 56px);
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.lede {
  margin: 0 0 24px;
  max-width: 40rem;
  font-size: 18px;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 18px;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn:hover {
  color: var(--bg);
  background: var(--brown);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.btn-secondary:hover {
  color: var(--brown);
}

.placeholder {
  margin: 0;
  background: linear-gradient(160deg, #c5bcb2 0%, #9a8b75 52%, #8d705c 100%);
  min-height: 220px;
  display: grid;
  aspect-ratio: 16 / 10;
}

.placeholder > * {
  grid-area: 1 / 1;
}

.placeholder figcaption,
.placeholder .ph-label {
  align-self: end;
  justify-self: start;
  margin: 16px;
  padding: 6px 8px;
  background: rgba(30, 21, 15, 0.62);
  color: var(--bg);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 1;
}

.placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}

.section {
  margin: 80px 0;
}

.section h2,
.prose h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.2;
}

.section h3,
.prose h3 {
  margin: 32px 0 8px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
}

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

.prose p,
.prose li {
  color: var(--ink);
}

.prose p {
  margin: 0 0 16px;
}

.prose ul,
.prose ol {
  margin: 0 0 16px;
  padding-left: 1.2rem;
}

.split {
  display: grid;
  gap: 32px;
}

.card {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.card h2,
.card h3 {
  margin-top: 0;
}

.card p:last-child {
  margin-bottom: 0;
}

.link-row {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.cta-band {
  margin: 96px 0 0;
  padding: 64px 0 0;
  border-top: 1px solid var(--line);
}

.cta-band p {
  max-width: 36rem;
  color: var(--muted);
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 20px;
}

.faq details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.area-list {
  display: grid;
  gap: 8px 24px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.area-list a {
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 24px 64px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.footer-nav,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-nav a,
.footer-legal a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}

.footer-mark {
  font-family: var(--serif);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.note {
  color: var(--muted);
  font-size: 14px;
}

@media (min-width: 800px) {
  .cta-full {
    display: inline;
  }

  .cta-short {
    display: none;
  }

  .header-cta {
    padding: 10px 16px;
  }

  .hero,
  .split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 64px;
  }

  .placeholder {
    min-height: 360px;
  }

  .area-list {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .nav-disclosure {
    display: none;
  }

  .nav-desktop {
    display: flex;
    gap: 20px;
    margin-right: 8px;
  }

  .nav-desktop a {
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }

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

  .page {
    padding: 80px 40px 120px;
  }
}

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