:root {
  color-scheme: light;
  --ink: #161614;
  --muted: #67645d;
  --paper: #fbfaf6;
  --line: #d8d1c3;
  --field: #ffffff;
  --juniper: #17443a;
  --copper: #a15f37;
  --sage: #dfe8df;
  --shadow: 0 24px 80px rgba(22, 22, 20, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.88);
  border-bottom: 1px solid rgba(216, 209, 195, 0.72);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  letter-spacing: 0;
  text-decoration: none;
}

.brand span {
  color: var(--muted);
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

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

nav a:hover {
  color: var(--ink);
}

.nav-cta {
  color: var(--juniper);
  font-weight: 650;
}

.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 7vw, 100px);
  padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 72px) clamp(48px, 7vw, 84px);
}

.hero-copy {
  max-width: 710px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 7.6rem);
  max-width: 890px;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4.8vw, 4.9rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.lede {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.38rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-weight: 720;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.secondary {
  border-color: var(--line);
  color: var(--juniper);
}

.wordmark-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(300px, 43vw, 540px);
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(23, 68, 58, 0.96), rgba(22, 22, 20, 0.96)),
    radial-gradient(circle at 20% 20%, rgba(223, 232, 223, 0.32), transparent 30%);
  color: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.wordmark-panel::before,
.wordmark-panel::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(251, 250, 246, 0.25);
}

.wordmark-panel::after {
  inset: auto 0 28%;
  height: 1px;
  border: 0;
  background: rgba(251, 250, 246, 0.22);
}

.wordmark {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 9.8rem);
  line-height: 1;
}

.split-reading {
  position: absolute;
  right: clamp(28px, 4vw, 52px);
  bottom: clamp(26px, 4vw, 48px);
  z-index: 1;
  display: flex;
  gap: 10px;
  color: rgba(251, 250, 246, 0.78);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

.split-reading span {
  padding: 4px 8px;
  border: 1px solid rgba(251, 250, 246, 0.32);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.section.compact {
  max-width: 980px;
}

.section.compact p:last-child,
.story-text,
.transfer div:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.story,
.transfer {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 96px);
}

.quiet {
  color: var(--juniper);
  font-weight: 700;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  background: var(--line);
  border: 1px solid var(--line);
}

.use-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--field);
}

.use-grid p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  color: var(--ink);
}

.check-list li {
  padding-left: 22px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  background: var(--copper);
}

.faq {
  max-width: 980px;
}

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

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

summary {
  cursor: pointer;
  font-weight: 720;
}

details p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 72px);
  background: var(--juniper);
  color: var(--paper);
}

.final-cta .section-kicker {
  color: var(--sage);
}

.final-cta h2 {
  max-width: 900px;
}

.final-cta .button.primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-size: 0.9rem;
}

footer p {
  margin: 0;
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero,
  .story,
  .transfer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
    display: block;
  }

  nav {
    justify-content: flex-start;
    margin-top: 14px;
    font-size: 0.9rem;
  }

  .nav-cta {
    flex-basis: 100%;
  }

  h1 {
    font-size: clamp(2.85rem, 15vw, 4.4rem);
  }

  .wordmark-panel {
    min-height: 260px;
  }

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

  .use-grid article {
    min-height: 0;
  }

  footer {
    display: block;
  }

  footer p + p {
    margin-top: 10px;
  }
}
