:root {
  color-scheme: light;
  --paper: #f2eee5;
  --paper-bright: #fbf8f1;
  --ink: #17201d;
  --muted: #58615c;
  --forest: #203e35;
  --forest-dark: #132922;
  --signal: #d65f3c;
  --line: #c9c5bb;
  --white: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(100% - 2.5rem, 76rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgb(23 32 29 / 14%);
  background: rgb(242 238 229 / 92%);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.wordmark {
  margin-right: auto;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav a,
.header-contact {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

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

.header-contact {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
  color: var(--forest);
}

.hero {
  min-height: calc(100vh - 4.5rem);
  display: grid;
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.eyebrow,
.section-number,
.offer-label {
  margin: 0 0 1.2rem;
  color: var(--signal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.opening {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.hero-lead {
  max-width: 42rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.27rem);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
}

.button {
  min-height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

.button-primary {
  background: var(--forest);
  color: var(--white);
}

.button-primary:hover {
  background: var(--forest-dark);
}

.text-link {
  color: var(--forest);
  font-weight: 750;
  text-underline-offset: 0.25rem;
}

.quick-facts {
  margin: 2.5rem 0 0;
  padding: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  list-style: none;
}

.quick-facts li::before {
  content: "+";
  margin-right: 0.45rem;
  color: var(--signal);
  font-weight: 800;
}

.opening {
  position: relative;
  margin: 0;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--forest);
  color: var(--white);
  box-shadow: 1.4rem 1.4rem 0 var(--signal);
  font-size: clamp(1.4rem, 2.8vw, 2.3rem);
  line-height: 1.25;
}

.opening::before {
  content: "";
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 7rem;
  height: 7rem;
  border: 1px solid rgb(255 253 248 / 35%);
  border-radius: 50%;
}

.opening p {
  margin: 0;
}

.opening p + p {
  margin-top: 1.2rem;
}

.opening span,
.opening strong {
  color: #ffb49d;
}

.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  border-top: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: start;
}

h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.body-copy {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.body-copy p {
  margin: 0;
}

.body-copy p + p {
  margin-top: 1.5rem;
}

.pull-line {
  padding-left: 1.5rem;
  border-left: 4px solid var(--signal);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35em;
  line-height: 1.3;
}

.loop-section {
  background: var(--paper-bright);
}

.section-heading {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 2rem;
  align-items: start;
}

.loop {
  margin: clamp(3rem, 7vw, 5rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  list-style: none;
}

.loop li {
  min-height: 14rem;
  padding: 1.5rem 1rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.loop li + li {
  padding-left: 1rem;
}

.loop li:last-child {
  border-right: 0;
}

.loop span {
  color: var(--signal);
  font-size: 0.72rem;
  font-weight: 800;
}

.loop strong {
  margin-top: auto;
  color: var(--forest);
  font-size: 1.05rem;
}

.loop small {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.offers-section {
  background: var(--forest-dark);
  color: var(--white);
}

.narrow-heading {
  grid-template-columns: 7rem minmax(0, 1fr) minmax(18rem, 0.55fr);
}

.narrow-heading p:last-child {
  margin: 0;
  align-self: end;
  color: #bdc9c4;
  font-size: 1.05rem;
}

.offer-grid {
  margin-top: clamp(3rem, 7vw, 5rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: stretch;
}

.offer {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
}

.offer-primary {
  background: var(--signal);
  color: var(--white);
}

.offer-secondary {
  border: 1px solid #64746e;
  background: #1a332b;
}

.offer-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.offer-label {
  color: inherit;
  opacity: 0.78;
}

.price {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.offer h3 {
  max-width: 12ch;
  margin: 2rem 0 0;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.offer-secondary h3 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.offer-intro {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  font-size: 1.08rem;
}

.offer ul {
  margin: 2rem 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgb(255 253 248 / 35%);
  list-style: none;
}

.offer li {
  position: relative;
  padding-left: 1.25rem;
}

.offer li + li {
  margin-top: 0.7rem;
}

.offer li::before {
  content: "+";
  position: absolute;
  left: 0;
  font-weight: 850;
}

.credit {
  margin: -0.5rem 0 2rem;
  color: #cbd4d0;
  font-size: 0.9rem;
}

.button-light {
  width: fit-content;
  margin-top: auto;
  background: var(--white);
  color: var(--forest-dark);
}

.button-outline {
  width: fit-content;
  margin-top: auto;
  border-color: #8b9a95;
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--forest-dark);
}

.approach {
  background: var(--paper-bright);
}

.method-points {
  max-width: 44rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-points li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.method-points li:last-child {
  border-bottom: 1px solid var(--line);
}

.method-points span {
  color: var(--signal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.method-points h3 {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 500;
  line-height: 1.15;
}

.method-points p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.evidence-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.45fr 0.65fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.evidence-number {
  margin: -1rem 0 0;
  color: var(--signal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 13vw, 11rem);
  line-height: 0.9;
}

.evidence-card p:last-child,
.evidence-note {
  color: var(--muted);
}

.evidence-note p {
  margin: 0;
}

.evidence-note p + p {
  margin-top: 1.25rem;
}

.evidence-note strong {
  color: var(--ink);
}

.boundaries {
  background: #e3dfd5;
}

.contact-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--signal);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.contact-section h2 {
  max-width: none;
  font-size: clamp(3.5rem, 9vw, 8rem);
}

.contact-secondary {
  max-width: 24rem;
  margin: 1.5rem 0 0;
  color: #ffe0d6;
}

.contact-secondary a {
  color: var(--white);
  font-weight: 750;
  text-underline-offset: 0.25rem;
}

.light-number {
  color: #ffd8cc;
}

.contact-lead {
  max-width: 42rem;
  margin: 0 0 2rem;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
}

.email-line {
  margin: 1.5rem 0 0;
}

footer a {
  font-weight: 750;
  text-underline-offset: 0.25rem;
}

.form-pending {
  max-width: 42rem;
  padding: 1.5rem;
  border: 1px solid rgb(255 253 248 / 55%);
  background: rgb(19 41 34 / 18%);
}

.form-pending p {
  margin: 0;
}

.form-pending p + p {
  margin-top: 0.65rem;
}

.privacy-note {
  max-width: 40rem;
  margin: 1.5rem 0 0;
  color: #ffe0d6;
  font-size: 0.86rem;
}

.contact-form {
  max-width: 42rem;
}

.form-field + .form-field {
  margin-top: 1.15rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 750;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgb(255 253 248 / 70%);
  border-radius: 0.35rem;
  background: rgb(255 253 248 / 96%);
  color: var(--ink);
  font: inherit;
}

.form-field input {
  min-height: 3.2rem;
  padding: 0.7rem 0.85rem;
}

.form-field textarea {
  min-height: 10rem;
  padding: 0.8rem 0.85rem;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 3px solid var(--forest-dark);
  outline-offset: 2px;
}

.contact-form .button {
  margin-top: 1.35rem;
  border: 0;
  cursor: pointer;
}

.form-success {
  margin: 1rem 0 0;
  padding: 0.8rem 1rem;
  border-left: 4px solid var(--forest-dark);
  background: rgb(19 41 34 / 18%);
  font-weight: 750;
}

footer {
  padding: 2rem 0;
  background: var(--forest-dark);
  color: #b7c3be;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner p:first-child {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

@media (max-width: 62rem) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .opening {
    max-width: 42rem;
  }

  .section-heading,
  .narrow-heading {
    grid-template-columns: 5rem 1fr;
  }

  .narrow-heading p:last-child {
    grid-column: 2;
  }

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

  .loop li:nth-child(3) {
    border-right: 0;
  }

  .loop li:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .offer-grid,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .evidence-card {
    display: grid;
    grid-template-columns: 10rem 1fr;
    gap: 2rem;
    align-items: center;
  }
}

@media (max-width: 44rem) {
  .shell {
    width: min(100% - 1.5rem, 76rem);
  }

  .site-header nav {
    display: none;
  }

  .header-inner {
    min-height: 4rem;
  }

  .header-contact {
    padding-left: 0;
    border-left: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 3.5rem;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  .opening {
    margin-right: 0.8rem;
    box-shadow: 0.8rem 0.8rem 0 var(--signal);
    font-size: 1.45rem;
  }

  .section-heading,
  .narrow-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .narrow-heading p:last-child {
    grid-column: 1;
    margin-top: 1.5rem;
  }

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

  .loop li,
  .loop li:nth-child(3) {
    min-height: 11rem;
    border-right: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .loop li:nth-child(odd) {
    padding-left: 0;
  }

  .loop li:nth-child(even) {
    border-right: 0;
  }

  .offer {
    padding: 1.5rem;
  }

  .offer-topline {
    display: block;
  }

  .price {
    margin-top: 0.5rem;
  }

  .evidence-card {
    grid-template-columns: 7rem 1fr;
    gap: 1rem;
  }

  .evidence-number {
    font-size: 7rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions .text-link {
    width: 100%;
    text-align: center;
  }

  .footer-inner {
    display: grid;
  }
}

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

  .button {
    transition: none;
  }
}
