:root {
  color-scheme: light;
  --ink: #111815;
  --muted: #5f6862;
  --soft: #f4f7f1;
  --surface: #ffffff;
  --line: #dce3db;
  --green: #176746;
  --green-deep: #0d3f2d;
  --gold: #c99337;
  --tomato: #bd4f3a;
  --blue: #274d73;
  --shadow: 0 22px 70px rgba(13, 35, 24, 0.16);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 52px);
  color: white;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.site-header.scrolled {
  border-bottom: 1px solid rgba(220, 227, 219, 0.9);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 16px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--green);
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: currentColor;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.82;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-action {
  justify-self: end;
  min-height: 40px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: currentColor;
  font-size: 14px;
  font-weight: 800;
}

.site-header.scrolled .nav-action {
  border-color: var(--line);
  background: var(--green);
  color: white;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(22px, 7vw, 96px) 70px;
  color: white;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 18, 13, 0.84) 0%, rgba(10, 18, 13, 0.58) 44%, rgba(10, 18, 13, 0.08) 100%),
    linear-gradient(180deg, rgba(9, 16, 12, 0.34), rgba(9, 16, 12, 0.42));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  min-width: 0;
}

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

h1 {
  font-size: clamp(58px, 10vw, 132px);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-lede {
  width: min(660px, 100%);
  max-width: 100%;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 700;
  overflow-wrap: break-word;
}

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

.primary-link,
.secondary-link,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
}

.primary-button:disabled {
  cursor: progress;
  opacity: 0.64;
}

.primary-link,
.primary-button {
  background: var(--green);
  color: white;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.secondary-link {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 680px;
  margin: 48px 0 0;
}

.hero-proof div {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 12px;
}

.hero-proof dt {
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.hero-proof dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.35;
}

.section {
  padding: clamp(58px, 9vw, 112px) clamp(22px, 7vw, 96px);
}

.section-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.78fr);
  gap: clamp(28px, 7vw, 100px);
  align-items: end;
  margin-bottom: 34px;
}

h2 {
  max-width: 720px;
  font-size: clamp(32px, 5.5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.section-copy p,
.request-copy p,
.privacy-section > div > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.intro-section {
  background: var(--surface);
}

.comparison {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.messy-note,
.menu-preview,
.steps article,
.deliverables article,
.request-form,
.privacy-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.messy-note {
  position: relative;
  min-height: 410px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 246, 201, 0.85), rgba(255, 255, 255, 0.94)),
    white;
  box-shadow: var(--shadow);
  transform: rotate(-1.2deg);
}

.note-pin {
  width: 42px;
  height: 8px;
  margin-bottom: 44px;
  border-radius: 999px;
  background: var(--tomato);
}

.messy-note h3,
.menu-category h3,
.steps h3,
.deliverables h3,
.privacy-grid h3 {
  font-size: 19px;
  line-height: 1.2;
}

.messy-note p {
  margin-top: 16px;
  color: #4e4635;
  font-size: 22px;
  line-height: 1.4;
  font-family: Georgia, "Times New Roman", serif;
}

.messy-note ul {
  display: grid;
  gap: 10px;
  margin: 34px 0 0;
  padding-left: 18px;
  color: #4e4635;
  font-weight: 700;
}

.menu-preview {
  min-height: 470px;
  padding: clamp(24px, 5vw, 54px);
  box-shadow: var(--shadow);
}

.menu-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 26px;
  border-bottom: 2px solid var(--ink);
}

.menu-head span {
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
}

.menu-head strong {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.menu-category {
  padding-top: 28px;
}

.menu-category h3 {
  color: var(--tomato);
}

.menu-line {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}

.menu-line b {
  color: var(--green-deep);
}

.process-section {
  background: #edf2ed;
}

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

.steps article,
.deliverables article,
.privacy-grid article {
  padding: 24px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 900;
}

.steps p,
.deliverables p,
.privacy-grid p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.deliverables-section {
  background: white;
}

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

.deliverables article {
  min-height: 210px;
  border-top: 4px solid var(--gold);
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: start;
  background: #16201b;
  color: white;
}

.request-copy h2 {
  max-width: 680px;
}

.request-copy p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
}

.request-list {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 800;
}

.request-list li {
  padding-left: 22px;
  border-left: 3px solid var(--gold);
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.request-form label {
  display: grid;
  gap: 8px;
  color: #2c3831;
  font-size: 13px;
  font-weight: 900;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 12px;
  background: #fbfcfa;
  color: var(--ink);
  font-size: 15px;
  outline: none;
}

.request-form textarea {
  resize: vertical;
}

.consent-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.trap-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 103, 70, 0.14);
}

.primary-button {
  width: 100%;
  min-height: 52px;
}

.form-status {
  min-height: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-status.working {
  color: var(--blue);
  font-weight: 800;
}

.form-status.success {
  color: var(--green);
  font-weight: 800;
}

.form-status.error {
  color: var(--tomato);
  font-weight: 800;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-note a {
  color: var(--green);
  font-weight: 900;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(32px, 7vw, 82px);
  background: var(--surface);
}

.privacy-section > div > p {
  margin-top: 22px;
}

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

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(22px, 7vw, 96px);
  border-top: 1px solid var(--line);
  background: white;
  color: var(--muted);
  font-size: 14px;
}

.site-footer span {
  color: var(--ink);
  font-weight: 900;
}

.site-footer a {
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 100px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 18, 13, 0.88), rgba(10, 18, 13, 0.48)),
      linear-gradient(180deg, rgba(9, 16, 12, 0.28), rgba(9, 16, 12, 0.55));
  }

  .hero-proof,
  .section-copy,
  .comparison,
  .steps,
  .deliverables,
  .request-section,
  .privacy-section {
    grid-template-columns: 1fr;
  }

  .deliverables article,
  .steps article {
    min-height: auto;
  }

  .messy-note {
    min-height: 320px;
    transform: none;
  }
}

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

  .brand span:last-child {
    display: none;
  }

  .nav-action {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding: 90px 18px 40px;
  }

  .hero-lede {
    max-width: 320px;
    font-size: 18px;
    line-height: 1.24;
  }

  .hero-actions {
    display: grid;
  }

  .primary-link,
  .secondary-link {
    width: 100%;
  }

  .hero-proof {
    gap: 10px;
  }

  .hero-proof dt {
    font-size: 22px;
  }

  .section {
    padding: 52px 18px;
  }

  h2 {
    max-width: 330px;
    font-size: 31px;
    line-height: 1.04;
  }

  .menu-head,
  .menu-line,
  .site-footer {
    display: grid;
  }

  .request-form,
  .messy-note,
  .menu-preview {
    padding: 20px;
  }
}
