:root {
  --bg: #f6f5f2;
  --bg-white: #ffffff;
  --ink: #141414;
  --muted: #5c5a56;
  --steel: #3d5a73;
  --steel-hover: #2f4659;
  --line: #e4e1da;
  --header-h: 76px;
  --serif: "Newsreader", "Times New Roman", serif;
  --sans: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 80;
  padding: 0.6rem 0.9rem;
  background: var(--ink);
  color: var(--bg);
}

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

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead,
.section-lead,
.cta-lead {
  color: var(--muted);
  max-width: 38rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: var(--header-h);
  gap: 1.5rem;
}

.brand img {
  width: 148px;
  height: auto;
}

.nav {
  display: none;
  margin-left: auto;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn-header {
  display: none;
  margin-left: 0.5rem;
  border-color: var(--steel);
  color: var(--steel);
}

.btn-header:hover,
.btn-header:focus-visible {
  background: var(--steel);
  color: #fff;
}

.btn-solid {
  background: var(--steel);
  color: #fff;
}

.btn-solid:hover,
.btn-solid:focus-visible {
  background: var(--steel-hover);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--ink);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin-left: auto;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:first-of-type {
  transform: translateY(3.5px) rotate(40deg);
}

.menu-toggle[aria-expanded="true"] span:last-of-type {
  transform: translateY(-3.5px) rotate(-40deg);
}

.menu-mobile {
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.menu-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.5rem;
}

.menu-mobile a {
  padding: 0.7rem 0;
  font-size: 1.15rem;
}

.menu-mobile .btn {
  margin-top: 0.75rem;
}

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

.hero-grid {
  display: grid;
  gap: 3rem;
}

.hero h1 {
  max-width: 14ch;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
}

.hero .lead {
  margin-top: 1.5rem;
  font-size: 1.08rem;
}

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

.hero-panel {
  align-self: end;
  padding: 1.4rem 1.4rem 1.2rem;
  background: var(--bg-white);
  border: 1px solid var(--line);
}

.panel-head,
.panel-list li,
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.panel-head {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.panel-list {
  list-style: none;
  padding: 0.4rem 0 0;
}

.panel-list li {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.panel-list span {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--steel);
}

.panel-note {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: var(--bg-white);
  border-block: 1px solid var(--line);
}

.section-head {
  margin-bottom: 2.75rem;
}

.section h2,
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.section-lead {
  margin-top: 0.9rem;
}

.service-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
}

.service-num {
  padding-top: 0.35rem;
  color: var(--steel);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.service-body h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
}

.service-body p {
  margin-top: 0.45rem;
  color: var(--muted);
  max-width: 36rem;
}

.steps {
  display: grid;
  gap: 1.25rem;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 1.5rem 1.35rem 1.4rem;
  border: 1px solid var(--line);
  background: var(--bg);
}

.step-num {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--steel);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.steps h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.steps p {
  margin-top: 0.5rem;
  color: var(--muted);
}

.about-grid {
  display: grid;
  gap: 1.5rem;
}

.about-copy {
  display: grid;
  gap: 1.15rem;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.faq-list details:first-child {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--steel);
  font-size: 1.2rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  padding: 0 0 1.2rem;
  color: var(--muted);
  max-width: 40rem;
}

.cta-band {
  padding: 5.5rem 0 6rem;
  background: var(--ink);
  color: #f3f1ec;
}

.cta-band .eyebrow,
.cta-band .cta-lead {
  color: #b8b3a8;
}

.cta-inner {
  max-width: 40rem;
}

.cta-band h2 {
  max-width: 16ch;
}

.cta-lead {
  margin: 1rem 0 1.8rem;
}

.cta-band .btn-solid {
  background: #fff;
  color: var(--ink);
}

.cta-band .btn-solid:hover,
.cta-band .btn-solid:focus-visible {
  background: var(--bg);
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-copy {
  margin-left: auto;
}

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

@media (min-width: 760px) {
  .nav,
  .btn-header {
    display: flex;
  }

  .menu-toggle,
  .menu-mobile {
    display: none !important;
  }

  .hero {
    padding: 4.25rem 0 5.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.78fr);
    align-items: center;
    gap: 4rem;
  }

  .hero-panel {
    align-self: center;
  }

  .service-row {
    grid-template-columns: 5rem 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid,
  .faq-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
    align-items: start;
  }

  .about-sticky {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
    margin-bottom: 0;
  }
}

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

  * {
    transition: none !important;
  }
}
