:root {
  --bg: #f8f4ee;
  --paper: #fffaf4;
  --text: #241f1a;
  --muted: #766b61;
  --soft: #e9ded1;
  --accent: #9a6346;
  --accent2: #4d6261;
  --dark: #171513;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  padding: 22px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  mix-blend-mode: difference;
  transition: padding .25s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease;
}

.topbar.scrolled {
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--text);
  background: rgba(248, 244, 238, .94);
  mix-blend-mode: normal;
  box-shadow: 0 1px 0 rgba(36, 31, 26, .1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  font-size: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: end start;
  overflow: hidden;
  background: #111;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(.95) contrast(.96);
}

.shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.28) 45%, rgba(0,0,0,.08) 100%),
    linear-gradient(0deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,0) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 34px 92px;
  color: white;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 84px 28px 80px;
}

section {
  padding: 72px 0;
  border-bottom: 1px solid var(--soft);
}

section[id] { scroll-margin-top: 84px; }

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 96px);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 0 0 28px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -.04em;
  margin: 0 0 26px;
}

p {
  font-size: 18px;
  color: var(--muted);
  max-width: 820px;
  margin: 0 0 18px;
}

.section-kicker {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.question-section { padding-top: 32px; }

.question-intro {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 64px;
  align-items: end;
}

.question-intro h2 { max-width: 780px; margin-bottom: 0; }
.question-intro p { margin-bottom: 8px; font-size: 16px; }

.section-heading-row {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: start;
}

.section-aside {
  padding-left: 24px;
  border-left: 1px solid var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
}

footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px 44px;
  color: var(--muted);
  font-size: 14px;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 54px;
  align-items: start;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
}

.background-block {
  display: grid;
  grid-template-columns: 1fr;
}

@media (max-width: 820px) {
  .topbar {
    position: absolute;
    padding: 20px;
    mix-blend-mode: normal;
  }

  .topbar.scrolled {
    padding: 20px;
    color: white;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  nav {
    display: none;
  }

  .hero-content {
    padding: 0 22px 54px;
  }

  main {
    padding: 54px 22px;
  }

  section {
    padding: 52px 0;
  }

  .intro,
  .split,
  .question-intro,
  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }
}
