:root {
  --ink: #15231f;
  --ink-soft: #3e514a;
  --vine: #193c32;
  --vine-deep: #0d2923;
  --vine-light: #2c5d4f;
  --charcoal: #111815;
  --sand: #f3ede2;
  --sand-deep: #e7dccb;
  --cream: #fbf8f2;
  --gold: #c89a5b;
  --gold-light: #e7c68e;
  --white: #fffdf8;
  --line: rgba(21, 35, 31, 0.14);
  --shadow: 0 22px 60px rgba(13, 41, 35, 0.16);
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.container {
  margin: 0 auto;
  max-width: 1220px;
  padding: 0 28px;
  width: 100%;
}

.section {
  padding: 124px 0;
}

.eyebrow {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--vine-light);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.13;
}

h1 {
  color: var(--white);
  font-size: clamp(3.7rem, 6vw, 6.4rem);
  margin-bottom: 25px;
}

h2 {
  color: var(--ink);
  font-size: clamp(2.55rem, 4.4vw, 4.55rem);
  margin-bottom: 24px;
}

h3 {
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1.35;
}

em {
  color: var(--gold);
  font-style: italic;
}

.site-header {
  color: var(--white);
  left: 0;
  padding: 22px 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(13, 31, 27, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  padding: 13px 0;
}

.nav-wrap,
.footer-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-family: var(--serif);
  font-size: 1.16rem;
  gap: 10px;
  letter-spacing: -0.04em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 1em;
}

.brand-sub {
  font-family: var(--sans, inherit);
  font-size: 0.62em;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.7;
}

.site-footer .brand-sub,
.legal-header .brand-sub {
  display: none;
}

.brand-mark {
  align-items: center;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(255, 253, 248, 0.7);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  display: inline-flex;
  flex: 0 0 auto;
  height: 42px;
  justify-content: center;
  padding: 4px;
  width: 42px;
}

.brand-mark img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.main-nav {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 600;
  gap: 28px;
  letter-spacing: 0.03em;
}

.main-nav > a:not(.button) {
  opacity: 0.82;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav > a:not(.button):hover {
  color: var(--gold-light);
  opacity: 1;
}

.nav-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  padding: 6px;
}

.nav-toggle span:not(.sr-only) {
  background: var(--white);
  display: block;
  height: 2px;
  margin: 5px;
  width: 24px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.08em;
  padding: 16px 23px;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

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

.button-primary {
  background: var(--gold);
  color: #17261f;
}

.button-primary:hover {
  background: var(--gold-light);
}

.button.is-disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.button.is-disabled:hover {
  background: var(--gold);
  transform: none;
}

.button-small {
  font-size: 11px;
  padding: 11px 17px;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.button-light:hover {
  background: var(--white);
  color: var(--vine-deep);
}

.button-full {
  width: 100%;
}

.hero {
  align-items: center;
  background: var(--vine-deep);
  display: flex;
  min-height: 920px;
  overflow: hidden;
  padding: 140px 0 100px;
  position: relative;
}

.hero-backdrop,
.final-cta-backdrop {
  background: linear-gradient(90deg, rgba(9, 29, 24, 0.98) 0%, rgba(9, 29, 24, 0.78) 48%, rgba(9, 29, 24, 0.52) 100%),
    url("assets/vineyard-row.png") center / cover;
  inset: 0;
  position: absolute;
}

.hero-backdrop::after,
.final-cta-backdrop::after {
  background: linear-gradient(180deg, rgba(8, 24, 21, 0.05), rgba(8, 24, 21, 0.85));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 78px;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  position: relative;
  z-index: 1;
}

.hero-lead {
  color: rgba(255, 253, 248, 0.83);
  font-size: 1.15rem;
  max-width: 620px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 35px;
}

.text-link {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold-light);
  font-size: 18px;
  margin-left: 9px;
}

.hero-proof {
  align-items: center;
  display: flex;
  gap: 15px;
  margin-top: 66px;
}

.hero-proof p {
  color: rgba(255, 253, 248, 0.66);
  font-size: 12px;
  letter-spacing: 0.1em;
  margin: 0;
  max-width: 360px;
  text-transform: uppercase;
}

.proof-line {
  background: var(--gold);
  height: 1px;
  width: 42px;
}

.hero-phone-wrap {
  justify-self: center;
  position: relative;
}

.hero-note {
  background: rgba(13, 41, 35, 0.9);
  border-left: 2px solid var(--gold);
  color: rgba(255, 253, 248, 0.84);
  font-family: var(--serif);
  font-size: 0.92rem;
  left: -118px;
  line-height: 1.6;
  padding: 14px 17px;
  position: absolute;
  top: 106px;
  z-index: 3;
}

.phone {
  background: #f5efe6;
  border: 7px solid #17211e;
  border-radius: 35px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.phone-hero {
  transform: rotate(2deg);
  width: 342px;
}

.phone-demo {
  width: 326px;
}

.phone-top {
  align-items: center;
  background: #f7f3ed;
  color: #263932;
  display: flex;
  font-size: 8px;
  height: 29px;
  justify-content: space-between;
  padding: 0 18px;
}

.phone-notch {
  background: #17211e;
  border-radius: 0 0 11px 11px;
  height: 17px;
  position: relative;
  top: -6px;
  width: 92px;
}

.phone-status {
  font-size: 6px;
  letter-spacing: 2px;
}

.chat-header {
  align-items: center;
  background: #245347;
  color: var(--white);
  display: flex;
  gap: 10px;
  padding: 10px 14px;
}

.chat-header strong,
.chat-header small {
  display: block;
}

.chat-header strong {
  font-size: 13px;
}

.chat-header small {
  font-size: 10px;
  opacity: 0.72;
}

.avatar {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--vine-deep);
  display: inline-flex;
  font-family: var(--serif);
  font-size: 16px;
  height: 35px;
  justify-content: center;
  width: 35px;
}

.chat-body {
  background-color: #e9e2d7;
  background-image: radial-gradient(rgba(58, 80, 71, 0.12) 0.65px, transparent 0.65px);
  background-size: 10px 10px;
  min-height: 492px;
  padding: 17px 12px;
}

.chat-body-light {
  min-height: 535px;
}

.chat-date {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  color: #62746d;
  font-size: 9px;
  margin: 0 auto 15px;
  padding: 3px 9px;
  text-align: center;
  width: max-content;
}

.bubble {
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  color: #2d3b37;
  font-size: 12px;
  line-height: 1.55;
  margin-bottom: 11px;
  max-width: 88%;
  padding: 9px 11px 15px;
  position: relative;
}

.bubble small {
  bottom: 3px;
  color: #7c8984;
  font-size: 8px;
  position: absolute;
  right: 7px;
}

.bubble-user {
  background: #d9f4cc;
  margin-left: auto;
}

.bubble-assistant {
  background: #fff;
}

.bubble-text {
  min-width: 75px;
}

.audio-bubble {
  align-items: center;
  display: flex;
  gap: 7px;
  min-height: 54px;
  padding-bottom: 15px;
}

.play {
  align-items: center;
  background: rgba(41, 92, 80, 0.18);
  border-radius: 50%;
  color: #2b5e52;
  display: inline-flex;
  font-size: 10px;
  height: 28px;
  justify-content: center;
  padding-left: 2px;
  width: 28px;
}

.audio-wave {
  align-items: center;
  display: flex;
  gap: 2px;
}

.audio-wave i {
  background: #6d9f8d;
  height: 11px;
  width: 2px;
}

.audio-wave i:nth-child(2n) {
  height: 21px;
}

.audio-wave i:nth-child(3n) {
  height: 15px;
}

.audio-duration {
  color: #68827a;
  font-size: 9px;
}

.audio-transcript {
  background: rgba(255, 255, 255, 0.7);
  border-left: 2px solid var(--gold);
  color: #576861;
  font-family: var(--serif);
  font-size: 11px;
  font-style: italic;
  line-height: 1.55;
  margin: 7px 0 13px auto;
  max-width: 88%;
  padding: 9px 10px;
}

.scroll-cue {
  align-items: center;
  bottom: 30px;
  color: rgba(255, 253, 248, 0.62);
  display: flex;
  flex-direction: column;
  font-size: 9px;
  gap: 9px;
  left: 50%;
  letter-spacing: 0.2em;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-cue i {
  animation: scroll 1.8s infinite ease-in-out;
  border: 1px solid var(--gold);
  border-radius: 20px;
  height: 36px;
  position: relative;
  width: 18px;
}

.scroll-cue i::before {
  background: var(--gold-light);
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 6px;
  position: absolute;
  top: 7px;
  width: 4px;
}

@keyframes scroll {
  50% { transform: translateY(5px); }
}

.section-intro {
  max-width: 690px;
}

.section-intro p:last-child {
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.section-intro.centered {
  margin: 0 auto 65px;
  text-align: center;
}

.problem {
  background: var(--sand);
}

.problem-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
}

.problem-card {
  background: rgba(255, 253, 248, 0.68);
  min-height: 318px;
  padding: 38px 36px;
  position: relative;
}

.card-number {
  color: rgba(44, 93, 79, 0.38);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.card-icon {
  display: block;
  fill: none;
  height: 44px;
  margin: 32px 0 24px;
  stroke: var(--vine-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  width: 44px;
}

.problem-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin-bottom: 0;
}

.problem-statement {
  border-left: 2px solid var(--gold);
  margin: 68px auto 0;
  max-width: 785px;
  padding: 3px 0 3px 25px;
}

.problem-statement p {
  color: var(--ink-soft);
  margin-bottom: 3px;
}

.problem-statement strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.process {
  background: var(--cream);
}

.section-split {
  align-items: end;
  display: grid;
  gap: 110px;
  grid-template-columns: 1fr 0.9fr;
  margin-bottom: 72px;
}

.section-side-note {
  border-left: 1px solid var(--gold);
  color: var(--ink-soft);
  margin-bottom: 14px;
  padding-left: 23px;
}

.steps {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, 1fr);
}

.step {
  border-top: 1px solid var(--line);
  padding: 30px 5px 0;
}

.step-index {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.step-visual {
  align-items: center;
  background: var(--sand);
  display: flex;
  height: 116px;
  justify-content: center;
  margin: 23px 0 27px;
  width: 116px;
}

.step-visual svg {
  fill: none;
  height: 70px;
  stroke: var(--vine);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 70px;
}

.step-visual svg .accent {
  stroke: var(--gold);
  stroke-width: 2;
}

.step p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.demo {
  background: var(--vine-deep);
  color: rgba(255, 253, 248, 0.76);
  overflow: hidden;
}

.demo-grid {
  align-items: center;
  display: grid;
  gap: 90px;
  grid-template-columns: 0.95fr 1.05fr;
}

.demo h2,
.harvest h2,
.final-cta h2,
.founder h2 {
  color: var(--white);
}

.demo-copy > p:not(.eyebrow) {
  max-width: 570px;
}

.demo-feature {
  align-items: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  gap: 14px;
  max-width: 580px;
  padding: 18px 0 0;
}

.demo-feature + .demo-feature {
  margin-top: 15px;
}

.demo-feature span {
  color: var(--gold-light);
  font-size: 18px;
}

.demo-feature p {
  font-size: 0.92rem;
  margin: 0;
}

.demo-feature strong {
  color: var(--white);
}

.demo-stage {
  align-items: center;
  display: flex;
  gap: 0;
  justify-content: center;
  min-height: 610px;
  position: relative;
}

.structured-card {
  background: var(--sand);
  box-shadow: var(--shadow);
  margin-left: -8px;
  padding: 28px 30px;
  width: 260px;
  z-index: 2;
}

.structured-card > p {
  color: var(--vine-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.structured-card dl {
  margin: 0;
}

.structured-card dl div {
  border-top: 1px solid rgba(21, 35, 31, 0.14);
  padding: 10px 0;
}

.structured-card dt {
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.structured-card dd {
  color: var(--ink);
  font-family: var(--serif);
  margin: 1px 0 0;
}

.harvest {
  background: var(--charcoal);
  color: rgba(255, 253, 248, 0.76);
  overflow: hidden;
}

.harvest-layout {
  align-items: center;
  display: grid;
  gap: 85px;
  grid-template-columns: 0.9fr 1.1fr;
}

.harvest-copy > p:not(.eyebrow):not(.harvest-note) {
  max-width: 560px;
}

.harvest-example {
  border-left: 2px solid var(--gold);
  margin-top: 33px;
  padding: 4px 0 4px 20px;
}

.harvest-example span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.harvest-example p {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  margin: 7px 0 0;
}

.harvest-note {
  color: rgba(255, 253, 248, 0.52);
  font-size: 0.81rem;
  margin-top: 27px;
  max-width: 530px;
}

.harvest-visual {
  position: relative;
}

.harvest-visual img {
  height: 440px;
  object-fit: cover;
  opacity: 0.78;
  width: 100%;
}

.harvest-card {
  background: var(--sand);
  bottom: -23px;
  box-shadow: var(--shadow);
  color: var(--ink);
  left: -25px;
  padding: 20px 24px;
  position: absolute;
}

.harvest-card p {
  color: var(--vine-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.harvest-card strong {
  font-family: var(--serif);
  font-weight: 400;
}

.harvest-documents {
  align-items: center;
  background: var(--sand);
  color: var(--ink);
  display: grid;
  gap: 35px;
  grid-template-columns: 0.8fr 1.2fr;
  margin-top: 112px;
  min-height: 255px;
  overflow: hidden;
  padding: 32px 38px;
}

.harvest-documents h3 {
  font-size: 1.7rem;
  margin-bottom: 0;
}

.document-stack {
  height: 240px;
  position: relative;
}

.document-stack img {
  background: #fff;
  box-shadow: 0 12px 25px rgba(13, 41, 35, 0.18);
  height: 205px;
  object-fit: cover;
  object-position: top left;
  position: absolute;
  right: 1%;
  top: 23px;
  transform: rotate(3deg);
  width: 72%;
}

.document-stack img:first-child {
  right: 19%;
  top: 4px;
  transform: rotate(-3deg);
  z-index: 2;
}

.founder {
  background: var(--vine-deep);
}

.founder .section-intro p:last-child {
  color: rgba(255, 253, 248, 0.74);
}

.offer-card {
  background: var(--sand);
  display: grid;
  grid-template-columns: 1.32fr 0.68fr;
  margin: 0 auto;
  max-width: 1000px;
}

.offer-main {
  padding: 47px 50px;
}

.offer-heading {
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
  padding-bottom: 22px;
}

.offer-label,
.price-kicker {
  color: var(--vine-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.offer-heading h3 {
  font-size: 2.15rem;
  margin-bottom: 5px;
}

.offer-heading p:last-child {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin: 0;
}

.offer-list {
  display: grid;
  gap: 11px;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

.offer-list li {
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.offer-list span {
  color: var(--vine-light);
  font-weight: 700;
  margin-right: 7px;
}

.offer-price {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 34px;
}

.old-price {
  color: #8f978e;
  margin: 0;
  text-decoration: line-through;
}

.price {
  color: var(--vine-deep);
  font-family: var(--serif);
  font-size: 5.3rem;
  letter-spacing: -0.09em;
  line-height: 1;
  margin: 4px 0;
}

.price sup {
  font-size: 2.1rem;
  margin-left: 5px;
}

.price-note,
.capacity-note {
  color: var(--ink-soft);
  font-size: 0.77rem;
}

.monthly {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin: 19px 0 24px;
  padding: 14px 0;
}

.monthly p {
  color: var(--ink);
  font-size: 1rem;
  margin: 0;
}

.monthly strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.monthly span {
  color: var(--vine-light);
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.capacity-note {
  margin: 12px 0 0;
  text-align: center;
}

.trust {
  background: var(--white);
}

.trust-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1060px;
}

.trust-item {
  background: var(--sand);
  min-height: 260px;
  padding: 34px;
}

.trust-item h3 {
  color: var(--vine-deep);
  font-size: 1.28rem;
  margin-bottom: 14px;
}

.trust-item p {
  color: var(--ink-soft);
  font-size: 0.91rem;
  margin: 0;
}

.faq {
  background: var(--sand);
}

.faq-layout {
  align-items: start;
  display: grid;
  gap: 100px;
  grid-template-columns: 0.8fr 1.2fr;
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-family: var(--serif);
  font-size: 1.03rem;
  justify-content: space-between;
  padding: 20px 0;
  text-align: left;
  width: 100%;
}

.faq-question span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.faq-question[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.faq-answer {
  color: var(--ink-soft);
  display: grid;
  font-size: 0.91rem;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-answer p {
  margin: 0;
  overflow: hidden;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.faq-question[aria-expanded="true"] + .faq-answer p {
  padding: 0 0 21px;
}

.final-cta {
  background: var(--vine-deep);
  overflow: hidden;
  padding: 135px 0;
  position: relative;
}

.final-cta-backdrop {
  opacity: 0.6;
}

.final-cta-inner {
  max-width: 820px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.final-cta-inner p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.76);
  margin: 0 auto 30px;
  max-width: 620px;
}

.checkout-note {
  color: var(--gold-light);
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  margin-bottom: 0 !important;
  margin-top: 22px;
  text-transform: uppercase;
}

.site-footer {
  background: #0c1815;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.75rem;
  padding: 25px 0;
}

.footer-inner {
  gap: 25px;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.site-footer .brand {
  color: var(--white);
  font-size: 1rem;
}

.site-footer .brand-mark {
  height: 35px;
  width: 35px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

@media (max-width: 1040px) {
  .hero-grid {
    gap: 35px;
    grid-template-columns: 1fr 0.7fr;
  }

  .hero-note {
    display: none;
  }

  .harvest-layout,
  .demo-grid {
    gap: 55px;
  }

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

  .trust-item {
    min-height: auto;
  }

  .faq-layout {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 90px 0;
  }

  .site-header {
    padding: 15px 0;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 25;
  }

  .main-nav {
    align-items: flex-start;
    background: var(--vine-deep);
    flex-direction: column;
    inset: 0;
    justify-content: center;
    opacity: 0;
    padding: 30px;
    pointer-events: none;
    position: fixed;
    transform: translateY(-15px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    font-size: 1.15rem;
  }

  .hero {
    min-height: auto;
    padding: 145px 0 90px;
  }

  .hero-grid,
  .demo-grid,
  .harvest-layout,
  .section-split,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 55px;
  }

  .hero-phone-wrap {
    display: none;
  }

  .hero-proof {
    margin-top: 45px;
  }

  .scroll-cue {
    display: none;
  }

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

  .problem-grid {
    gap: 8px;
  }

  .problem-card {
    min-height: auto;
  }

  .section-split {
    gap: 10px;
    margin-bottom: 50px;
  }

  .demo-stage {
    justify-content: flex-start;
  }

  .harvest-visual img {
    height: 340px;
  }

  .harvest-documents,
  .offer-card {
    grid-template-columns: 1fr;
  }

  .harvest-documents {
    padding-bottom: 0;
  }

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

@media (max-width: 560px) {
  .container {
    padding: 0 19px;
  }

  .section {
    padding: 75px 0;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.7rem;
  }

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

  .problem-card {
    padding: 28px 25px;
  }

  .demo-stage {
    display: block;
    min-height: 700px;
  }

  .phone-demo {
    width: 100%;
  }

  .structured-card {
    bottom: 0;
    margin: -35px 14px 0 auto;
    position: relative;
    width: 79%;
  }

  .harvest-visual img {
    height: 280px;
  }

  .harvest-card {
    bottom: -35px;
    left: 12px;
    right: 12px;
  }

  .harvest-documents {
    margin-top: 100px;
    padding: 28px 23px 0;
  }

  .document-stack {
    height: 190px;
  }

  .document-stack img {
    height: 155px;
    width: 78%;
  }

  .offer-main {
    padding: 34px 27px;
  }

  .offer-price {
    padding: 35px 27px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

.legal-page {
  background: var(--cream);
}

.legal-header {
  background: var(--vine-deep);
  color: var(--white);
  padding: 18px 0;
}

.legal-header .brand {
  color: var(--white);
}

.legal-header a:last-child {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-main {
  margin: 0 auto;
  max-width: 860px;
  padding: 76px 28px 90px;
}

.legal-main h1 {
  color: var(--ink);
  font-size: clamp(2.7rem, 5vw, 4.3rem);
  margin-bottom: 15px;
}

.legal-main h2 {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  margin: 34px 0 10px;
}

.legal-main h3 {
  font-family: var(--sans);
  font-size: 1rem;
  margin: 22px 0 6px;
}

.legal-main p,
.legal-main li {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.legal-main ul {
  padding-left: 20px;
}

.legal-main a {
  color: var(--vine-light);
  text-decoration: underline;
}

.legal-alert {
  background: #fff3d8;
  border-left: 3px solid var(--gold);
  color: var(--ink);
  margin: 26px 0;
  padding: 16px 18px;
}

.legal-placeholder {
  color: #965c21;
  font-weight: 700;
}

.legal-footer {
  background: #0c1815;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.75rem;
  padding: 22px 0;
}

.legal-footer .footer-inner {
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-cue i {
    animation: none;
  }
}
