:root {
  --ink: #071118;
  --ink-soft: #2d2a27;
  --copper: #c97845;
  --copper-dark: #8e4b2d;
  --champagne: #f3d3a5;
  --cream: #fffaf2;
  --sand: #d8c8b4;
  --paper: #f7efe4;
  --muted: #6b625a;
  --line: rgba(7, 17, 24, 0.12);
  --shadow: 0 22px 70px rgba(7, 17, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Montserrat, Avenir Next, Arial, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.hidden {
  display: none;
}

.site-header {
  align-items: center;
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand img {
  height: 58px;
  object-fit: contain;
  width: 162px;
}

.header-link {
  border-bottom: 1px solid var(--copper);
  color: var(--copper-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  display: grid;
  gap: clamp(30px, 5vw, 70px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  margin: 0 auto;
  max-width: 1220px;
  min-height: calc(100vh - 87px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 4vw, 56px) clamp(36px, 6vw, 76px);
}

.hero__content {
  align-self: center;
}

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

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

h1 {
  font-size: clamp(3rem, 8vw, 6.7rem);
  max-width: 780px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  margin: 0;
}

p {
  margin: 0;
}

.lead {
  color: var(--copper-dark);
  font-size: clamp(1.28rem, 2.4vw, 2.1rem);
  font-weight: 600;
  margin-top: 20px;
}

.hero-copy {
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
  margin-top: 28px;
  max-width: 680px;
}

.truth {
  color: var(--copper-dark);
  font-weight: 800;
  margin-top: 22px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  text-decoration: none;
}

.button--primary,
.button--full {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--champagne);
}

.button--primary {
  margin-top: 34px;
}

.button--full {
  cursor: pointer;
  width: 100%;
}

.button--light {
  background: var(--champagne);
  color: var(--ink);
  margin-top: 30px;
}

.button--ghost {
  background: transparent;
  border: 1px solid rgba(7, 17, 24, 0.22);
  color: var(--ink);
}

.download-panel {
  align-self: center;
  background: var(--cream);
  border: 1px solid rgba(201, 120, 69, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(18px, 2.4vw, 30px);
}

.cover-wrap {
  background: linear-gradient(145deg, #0a161f, #2a1712);
  border-radius: 8px;
  margin-bottom: 24px;
  overflow: hidden;
}

.cover-wrap img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.field {
  margin-bottom: 15px;
}

label {
  color: var(--ink-soft);
  display: block;
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 7px;
}

input {
  background: #fff;
  border: 1px solid rgba(7, 17, 24, 0.18);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

input:focus {
  border-color: var(--copper);
  outline: 3px solid rgba(201, 120, 69, 0.16);
}

.microcopy {
  color: var(--muted);
  font-size: 0.84rem;
  margin-top: 14px;
}

.section {
  margin: 0 auto;
  max-width: 1220px;
  padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.section--split {
  display: grid;
  gap: clamp(26px, 5vw, 76px);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
}

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

.check-list li {
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 18px 15px 46px;
  position: relative;
}

.check-list li::before {
  color: var(--copper);
  content: "✓";
  font-weight: 900;
  left: 18px;
  position: absolute;
}

.section--soft {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  max-width: none;
}

.section--soft > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1110px;
}

.section-head {
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 188px;
  padding: 24px;
}

.feature-grid span {
  color: var(--copper);
  display: block;
  font-family: Georgia, Baskerville, Times New Roman, serif;
  font-size: 2rem;
  margin-bottom: 28px;
}

.feature-grid p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-top: 10px;
}

.story {
  display: grid;
  gap: 42px;
  grid-template-columns: 4px minmax(0, 780px);
}

.story__line {
  background: linear-gradient(var(--copper), rgba(201, 120, 69, 0));
  border-radius: 99px;
}

.story p:not(.eyebrow),
.author p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-top: 22px;
}

.author {
  align-items: start;
  display: grid;
  gap: clamp(24px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
}

.quote {
  background: var(--ink);
  border-radius: 8px;
  color: var(--champagne);
  padding: clamp(28px, 4vw, 44px);
}

.quote p {
  color: var(--champagne);
  font-family: Georgia, Baskerville, Times New Roman, serif;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.15;
  margin: 0;
}

.final-cta {
  background: var(--ink);
  color: var(--champagne);
  padding: clamp(64px, 9vw, 120px) clamp(18px, 4vw, 56px);
}

.final-cta > div {
  margin: 0 auto;
  max-width: 900px;
}

.final-cta h2 {
  color: var(--champagne);
}

.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(243, 211, 165, 0.16);
  color: rgba(243, 211, 165, 0.78);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 26px clamp(18px, 4vw, 56px);
}

.thanks-page {
  background: linear-gradient(135deg, var(--paper), #fffaf2 58%, #ead8c2);
}

.thanks {
  margin: 0 auto;
  max-width: 980px;
  min-height: 100vh;
  padding: clamp(26px, 5vw, 60px) clamp(18px, 4vw, 40px);
}

.thanks__brand img {
  height: 76px;
  margin-bottom: 42px;
  width: 212px;
}

.thanks-card,
.consult-box {
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(7, 17, 24, 0.1);
  padding: clamp(26px, 5vw, 52px);
}

.thanks-card h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
}

.thanks-card p {
  color: var(--ink-soft);
  margin-top: 20px;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.consult-box {
  margin-top: 24px;
}

.consult-box h2 {
  font-family: Montserrat, Avenir Next, Arial, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}

.signature {
  color: var(--muted);
  margin-top: 26px;
}

@media (max-width: 920px) {
  .hero,
  .section--split,
  .author {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .download-panel {
    justify-self: stretch;
    max-width: 540px;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand img {
    height: 46px;
    width: 132px;
  }

  .header-link {
    font-size: 0.74rem;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.2rem);
  }

  .lead {
    font-size: 1.22rem;
  }

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

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

  .story__line {
    height: 4px;
    width: 120px;
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 8px;
  }

  .thanks-actions .button {
    width: 100%;
  }
}
