* {
  box-sizing: border-box;
}

:root {
  --ink: #241b16;
  --muted: #6f625b;
  --paper: #f7f0e2;
  --paper-alt: #efe2ce;
  --panel: #fff9ee;
  --panel-dark: #2f3026;
  --sage: #6e8062;
  --moss: #3f563c;
  --terracotta: #b7654e;
  --sand: #d7bf9b;
  --line: rgba(36, 27, 22, 0.16);
  --line-strong: rgba(36, 27, 22, 0.28);
  --shadow: 0 28px 80px rgba(56, 42, 28, 0.14);
  --radius-large: 34px;
  --radius-medium: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% -8%, rgba(183, 101, 78, 0.20), transparent 32rem),
    radial-gradient(circle at 88% 12%, rgba(110, 128, 98, 0.18), transparent 30rem),
    linear-gradient(135deg, var(--paper) 0%, #f4ead8 48%, #e2ceb1 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 0;
}

.masthead--compact {
  padding-bottom: 18px;
}

.identity {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.identity__stamp {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 249, 238, 0.72);
  color: var(--moss);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.identity strong,
.identity small {
  display: block;
}

.identity strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.identity small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 249, 238, 0.48);
  font-size: 0.88rem;
}

.nav a:hover {
  border-color: var(--moss);
  background: rgba(110, 128, 98, 0.10);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: 18px;
  align-items: stretch;
  padding: 36px 0 48px;
}

.hero__panel {
  min-height: 560px;
  padding: clamp(34px, 6vw, 76px);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background:
    linear-gradient(140deg, rgba(255, 249, 238, 0.92), rgba(239, 226, 206, 0.72)),
    linear-gradient(45deg, rgba(110, 128, 98, 0.10), transparent);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1,
.statement h2,
.section-heading h2,
.benefits h2,
.process h2,
.request h2,
.legal-sidebar h1,
.thankyou-card h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

.hero__text {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--moss);
  border-radius: 999px;
  padding: 13px 19px;
  background: var(--moss);
  color: #fffaf2;
  font-weight: 800;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
  background: #30462f;
  color: #fffaf2;
}

.button--quiet {
  background: transparent;
  color: var(--moss);
}

.button--quiet:hover {
  background: rgba(63, 86, 60, 0.10);
  color: var(--moss);
}

.hero__aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 28px;
  padding: 30px;
  border: 1px solid rgba(255, 249, 238, 0.18);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 20% 15%, rgba(215, 191, 155, 0.28), transparent 16rem),
    var(--panel-dark);
  color: #fbf3e6;
}

.aside-label {
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__aside dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.hero__aside dt {
  color: rgba(251, 243, 230, 0.58);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero__aside dd {
  margin: 4px 0 0;
  font-size: 1rem;
}

.statement {
  display: grid;
  grid-template-columns: 0.88fr 1.2fr;
  gap: 44px;
  padding: 58px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-number {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
}

.statement h2,
.section-heading h2,
.benefits h2,
.process h2,
.request h2 {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
}

.statement p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.library,
.benefits,
.process,
.faq,
.request {
  padding: 76px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.guide-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: rgba(255, 249, 238, 0.62);
}

.guide-card--wide {
  grid-row: span 2;
  min-height: 738px;
  padding: clamp(34px, 5vw, 58px);
  background:
    linear-gradient(160deg, rgba(255, 249, 238, 0.92), rgba(215, 191, 155, 0.50)),
    radial-gradient(circle at 80% 15%, rgba(183, 101, 78, 0.18), transparent 20rem);
}

.guide-card--dark {
  background: var(--panel-dark);
  color: #fbf3e6;
}

.guide-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.guide-card--dark .guide-card__meta {
  color: rgba(251, 243, 230, 0.68);
}

.guide-card__meta strong {
  color: var(--terracotta);
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
}

.guide-card h3 {
  max-width: 520px;
  margin: auto 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.6rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.guide-card:not(.guide-card--wide) h3 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.guide-card p {
  margin: 0;
  color: var(--muted);
}

.guide-card--dark p {
  color: rgba(251, 243, 230, 0.72);
}

.benefits {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 24px;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.benefit-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 249, 238, 0.44);
}

.benefit-list span {
  color: var(--moss);
  font-weight: 850;
}

.benefit-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 34px;
  border-top: 1px solid var(--line);
}

.process__sticky {
  position: sticky;
  top: 22px;
  align-self: start;
}

.process__sticky p:last-child {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 249, 238, 0.58);
}

.timeline span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(183, 101, 78, 0.12);
  color: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
}

.timeline h3,
.faq h3,
.next-steps h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.timeline p {
  margin: 8px 0 0;
  color: var(--muted);
}

.faq-columns {
  columns: 2 320px;
  column-gap: 18px;
}

.faq-columns article {
  break-inside: avoid;
  margin: 0 0 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 249, 238, 0.54);
}

.faq-columns h3 {
  font-size: 1.45rem;
}

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

.request {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.request__copy {
  padding: 32px;
  border-radius: var(--radius-large);
  background: rgba(63, 86, 60, 0.10);
}

.request__copy p:last-child {
  color: var(--muted);
}

.request-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: rgba(255, 249, 238, 0.76);
  box-shadow: var(--shadow);
}

.request-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(110, 128, 98, 0.28);
  border-color: var(--sage);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.disclaimer {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 249, 238, 0.58);
  color: var(--muted);
  font-size: 0.88rem;
}

.legal-page,
.thanks-page {
  min-height: 100vh;
}

.legal-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 22px;
  padding: 34px 0 72px;
}

.legal-sidebar {
  position: sticky;
  top: 22px;
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: rgba(255, 249, 238, 0.56);
}

.legal-sidebar h1,
.thankyou-card h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

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

.legal-article {
  display: grid;
  gap: 14px;
}

.legal-article section {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 249, 238, 0.64);
}

.legal-article h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.legal-article p {
  margin: 10px 0 0;
  color: var(--muted);
}

.legal-disclaimer {
  margin-top: 4px;
}

.thankyou-card {
  max-width: 980px;
  margin-top: 38px;
  margin-bottom: 76px;
  padding: clamp(30px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 88% 12%, rgba(183, 101, 78, 0.16), transparent 22rem),
    rgba(255, 249, 238, 0.72);
  box-shadow: var(--shadow);
}

.thankyou-card > p:not(.eyebrow):not(.disclaimer) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0;
}

.next-steps article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.36);
}

.next-steps span {
  color: var(--terracotta);
  font-weight: 850;
}

.next-steps p,
.contact-strip p {
  color: var(--muted);
}

.contact-strip {
  margin: 24px 0;
  padding: 18px;
  border-left: 4px solid var(--sage);
  background: rgba(110, 128, 98, 0.08);
}

.contact-strip p {
  margin: 4px 0;
}

@media (max-width: 860px) {
  .masthead,
  .hero,
  .statement,
  .benefits,
  .process,
  .request,
  .legal-layout,
  .footer {
    grid-template-columns: 1fr;
  }

  .masthead {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero__panel {
    min-height: auto;
  }

  .guide-grid,
  .benefit-list,
  .next-steps {
    grid-template-columns: 1fr;
  }

  .guide-card--wide {
    grid-row: auto;
    min-height: 420px;
  }

  .process__sticky,
  .legal-sidebar {
    position: static;
  }

  .footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 26px, 1160px);
  }

  .hero h1 {
    font-size: 3rem;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }
}
