:root {
  --cream: #f5eee4;
  --paper: #fffaf3;
  --ink: #17212a;
  --muted: #66706b;
  --moss: #284b3b;
  --sage: #c7d6bf;
  --clay: #b85f3d;
  --sky: #d8e8ed;
  --line: rgba(23, 33, 42, 0.14);
  --shadow: 0 24px 60px rgba(23, 33, 42, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(23, 33, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 33, 42, 0.028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 65%);
}

a {
  color: inherit;
}

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

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(245, 238, 228, 0.84);
  border-bottom: 1px solid rgba(23, 33, 42, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  background: var(--moss);
  color: var(--paper);
  border-radius: 50%;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.brand-text {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
}

.site-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a,
.site-footer a {
  text-decoration: none;
}

.nav-cta {
  color: var(--ink);
  border-bottom: 2px solid var(--clay);
}

.hero,
.proof-band,
.pricing,
.form-section,
.faq {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 24px;
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.86fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 92px);
  padding-top: 52px;
}

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

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.02;
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.7rem, 9vw, 7.5rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  max-width: 780px;
}

h3 {
  font-size: 1.45rem;
}

.hero-lede,
.section-heading p,
.pricing > div:first-child p,
.form-intro p {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.hero-guarantee {
  max-width: 560px;
  margin: -12px 0 22px;
  color: var(--moss);
  font-size: 1rem;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(23, 33, 42, 0.14);
}

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

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span,
.price-label {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 250, 243, 0.66);
  color: var(--moss);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: min(100%, 520px);
  margin-left: auto;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-note {
  position: absolute;
  right: min(7%, 38px);
  bottom: -24px;
  width: min(300px, 76%);
  padding: 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--sky);
  box-shadow: 12px 12px 0 var(--moss);
  font-weight: 800;
}

.note-title {
  display: block;
  color: var(--clay);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-band {
  background: var(--paper);
  border-block: 1px solid var(--line);
  max-width: none;
}

.proof-band > .section-heading,
.proof-band > .steps {
  max-width: 1180px;
  margin-inline: auto;
}

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

.step,
.price-card,
.intake-form,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.8);
}

.step,
.price-card {
  padding: 24px;
}

.step-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--clay);
  font-weight: 900;
}

.step p,
.price-card p,
.faq p,
.form-note {
  color: var(--muted);
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 40px;
  align-items: start;
}

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

.price-card.featured {
  background: var(--moss);
  color: var(--paper);
}

.price-card.featured p {
  color: rgba(255, 250, 243, 0.78);
}

.price-card.featured .price-label {
  background: var(--sage);
  color: var(--ink);
}

.price-card.featured .price-detail {
  color: var(--sage);
}

.price {
  margin: 16px 0 8px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 4.3rem;
  line-height: 0.95;
}

.price-detail {
  margin: 0 0 14px;
  color: var(--clay);
  font-weight: 900;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: var(--moss);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--clay);
  border-radius: 50%;
}

.intake-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 33, 42, 0.22);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  padding: 12px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(184, 95, 61, 0.24);
  border-color: var(--clay);
}

.upload-field {
  border: 1px dashed rgba(23, 33, 42, 0.32);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(216, 232, 237, 0.5);
}

.upload-field small {
  color: var(--muted);
  font-weight: 600;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-button {
  width: 100%;
  font-size: 1rem;
}

.claim-note {
  margin: -6px 0 0;
  padding: 14px;
  border: 1px solid rgba(184, 95, 61, 0.22);
  border-radius: var(--radius);
  background: rgba(184, 95, 61, 0.08);
  color: var(--moss);
  font-weight: 900;
}

.form-status {
  margin: 0;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-status-success {
  background: rgba(199, 214, 191, 0.55);
  color: var(--moss);
}

.form-status-error {
  background: rgba(184, 95, 61, 0.12);
  color: #8d351e;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.faq details {
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 34px;
}

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

.legal-shell {
  max-width: 940px;
  margin: 0 auto;
  padding: 24px;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.legal-nav {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

.legal-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.legal-card h2 {
  margin-top: 30px;
  font-size: 1.6rem;
}

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

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

  .site-nav {
    display: none;
  }

  .hero,
  .pricing,
  .form-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-visual img {
    margin: 0;
    width: 100%;
  }

  .steps,
  .price-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .proof-band,
  .pricing,
  .form-section,
  .faq {
    padding-block: 58px;
  }

  .legal-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero,
  .proof-band,
  .pricing,
  .form-section,
  .faq,
  .site-header,
  .site-footer,
  .legal-shell {
    padding-inline: 18px;
  }

  h1 {
    font-size: 3.35rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    position: static;
    width: auto;
    margin: 18px 0 0;
  }

  .intake-form,
  .legal-card {
    padding: 18px;
  }
}
