:root {
  --pine: #0f3a25;
  --pine-2: #16442c;
  --deep-pine: #072617;
  --cream: #f7f1e7;
  --cream-2: #efe2cf;
  --red: #8e1f1b;
  --red-dark: #741613;
  --ink: #1b241c;
  --muted: #5e665b;
  --line: rgba(15, 58, 37, .22);
  --white: #fffdf9;
  --shadow: 0 24px 70px rgba(7, 38, 23, .25);
  --radius: 22px;
}
* { box-sizing: border-box; }
html, body { min-height: 100%; margin: 0; }
body {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
}
.splash {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 34px 48px 22px;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto auto;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-farm.jpg');
  background-size: cover;
  background-position: 66% 18%;
  z-index: -3;
  transform: scale(1.01);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247,241,231,.98) 0%, rgba(247,241,231,.92) 26%, rgba(247,241,231,.56) 46%, rgba(247,241,231,.10) 67%, rgba(7,38,23,.24) 100%),
    linear-gradient(180deg, rgba(247,241,231,.08) 0%, rgba(247,241,231,.04) 48%, rgba(7,38,23,.62) 100%);
}
.cream-wash {
  position: absolute;
  inset: auto 0 0 0;
  height: 34vh;
  background: linear-gradient(180deg, rgba(247,241,231,0), rgba(247,241,231,.92) 42%, rgba(247,241,231,.98));
  z-index: -2;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img {
  display: block;
  width: min(410px, 45vw);
  height: auto;
}
.header-pill {
  background: rgba(15, 58, 37, .94);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(7,38,23,.18);
}
.hero-content {
  width: min(660px, 58vw);
  align-self: center;
  padding: 40px 0 22px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}
h1 {
  margin: 0;
  color: var(--pine);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(52px, 6vw, 102px);
  line-height: .95;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.script {
  color: var(--red);
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: clamp(26px, 3vw, 46px);
  margin: 22px 0 20px;
  line-height: 1.04;
}
.intro {
  width: min(520px, 100%);
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.55;
  color: #1f2a20;
}
.scarcity {
  display: inline-flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-left: 5px solid var(--red);
  border-radius: 15px;
  background: rgba(255,253,249,.76);
  backdrop-filter: blur(5px);
  box-shadow: 0 16px 38px rgba(7,38,23,.11);
}
.scarcity img { width: 34px; height: 34px; filter: invert(16%) sepia(32%) saturate(1247%) hue-rotate(94deg) brightness(91%) contrast(93%); }
.scarcity strong {
  display: block;
  color: var(--red);
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.scarcity span {
  display: block;
  color: var(--ink);
  margin-top: 4px;
  font-size: 16px;
}
.signup-card {
  width: min(620px, 100%);
  margin-top: 22px;
  background: rgba(255,253,249,.88);
  border: 1px solid rgba(15,58,37,.16);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 18px 50px rgba(7,38,23,.12);
  backdrop-filter: blur(8px);
}
.signup-copy {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 12px;
}
.signup-copy strong {
  color: var(--pine);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 23px;
}
.signup-copy span {
  font-size: 14px;
  color: var(--muted);
}
.form-row { display: flex; gap: 10px; }
input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(15,58,37,.25);
  border-radius: 13px;
  background: #fffaf2;
  padding: 0 16px;
  color: var(--ink);
  font-size: 16px;
  outline: none;
}
input:focus { border-color: var(--pine); box-shadow: 0 0 0 3px rgba(15,58,37,.13); }
button {
  border: 0;
  border-radius: 13px;
  background: var(--pine);
  color: var(--white);
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 0 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease;
}
button:hover, button:focus-visible { background: var(--red); transform: translateY(-1px); }
.form-status {
  min-height: 20px;
  margin: 10px 2px 0;
  font-size: 14px;
  color: var(--pine);
}
.info-band {
  width: min(1320px, 100%);
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.offer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 20px;
  align-items: center;
  padding: 25px 30px;
}
.offer img { width: 74px; height: 74px; border: 1px solid currentColor; border-radius: 50%; padding: 19px; }
.offer h2 {
  margin: 0 0 6px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.02em;
}
.offer p { margin: 0; font-size: 16px; line-height: 1.45; }
.offer-green { background: linear-gradient(135deg, var(--pine), var(--deep-pine)); color: var(--white); }
.offer-red { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: var(--white); }
.offer-cream { background: rgba(255,253,249,.92); color: var(--pine); }
.date-panel {
  width: min(1320px, 100%);
  margin: 16px auto 0;
  background: rgba(255,253,249,.94);
  border: 1px solid rgba(15,58,37,.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(7,38,23,.13);
  display: grid;
  grid-template-columns: 112px 1fr 310px;
  align-items: center;
  gap: 26px;
  padding: 25px 32px;
}
.date-icon {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  background: var(--pine);
  border-radius: 24px;
}
.date-icon img { width: 56px; height: 56px; filter: brightness(0) invert(1); }
.date-copy .label {
  display: block;
  color: var(--pine);
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: uppercase;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
}
.date-copy h2 {
  margin: 10px 0 8px;
  color: var(--red);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 31px;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.date-copy p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hand-note {
  color: var(--pine);
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 31px;
  line-height: 1.12;
  transform: rotate(-2deg);
}
.mini-pricing {
  width: min(1320px, 100%);
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: stretch;
  gap: 16px;
}
.pricing-card {
  display: grid;
  grid-template-columns: 122px 1fr;
  align-items: center;
  gap: 18px;
  background: rgba(255,253,249,.91);
  border: 1px solid rgba(15,58,37,.16);
  border-radius: 18px;
  padding: 14px 18px;
}
.pricing-card img {
  width: 112px;
  height: 92px;
  border-radius: 14px;
  object-fit: cover;
}
.pricing-card span {
  display: block;
  color: var(--pine);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pricing-card strong {
  display: block;
  color: var(--red);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 40px;
  line-height: 1;
  margin: 5px 0 3px;
}
.pricing-card small { color: var(--muted); font-weight: 700; text-transform: uppercase; }
.pricing-note {
  margin: 0;
  align-self: center;
  width: 250px;
  color: var(--pine);
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 22px;
  line-height: 1.15;
}
.site-footer {
  width: min(1320px, 100%);
  margin: 18px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,253,249,.94);
  background: rgba(7,38,23,.86);
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 14px;
  box-shadow: 0 18px 35px rgba(7,38,23,.18);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 980px) {
  .splash { padding: 24px 20px 16px; }
  .hero-bg { background-image: url('../assets/images/hero-farm-mobile.jpg'); background-position: 58% 0%; }
  .hero-bg::after {
    background: linear-gradient(180deg, rgba(247,241,231,.96) 0%, rgba(247,241,231,.75) 37%, rgba(7,38,23,.1) 70%, rgba(7,38,23,.82) 100%);
  }
  .site-header { align-items: flex-start; }
  .brand img { width: min(330px, 70vw); }
  .header-pill { display: none; }
  .hero-content { width: 100%; padding-top: 34px; }
  h1 { font-size: clamp(45px, 13vw, 72px); }
  .intro { font-size: 18px; }
  .signup-copy { display: block; }
  .signup-copy span { display: block; margin-top: 4px; }
  .form-row { flex-direction: column; }
  button { min-height: 52px; }
  .info-band { grid-template-columns: 1fr; }
  .offer { min-height: auto; grid-template-columns: 70px 1fr; padding: 22px 24px; }
  .offer img { width: 60px; height: 60px; padding: 16px; }
  .offer h2 { font-size: 31px; }
  .date-panel { grid-template-columns: 82px 1fr; gap: 18px; padding: 22px; }
  .date-icon { width: 76px; height: 76px; border-radius: 18px; }
  .date-icon img { width: 42px; height: 42px; }
  .date-copy .label { font-size: 30px; }
  .date-copy h2 { font-size: 21px; }
  .date-copy p { font-size: 13px; line-height: 1.4; }
  .hand-note { grid-column: 1 / -1; font-size: 28px; padding-left: 96px; }
  .mini-pricing { grid-template-columns: 1fr; }
  .pricing-note { width: auto; text-align: center; color: var(--white); }
  .site-footer { border-radius: 20px; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .splash { padding: 18px 14px; }
  .scarcity { display: grid; grid-template-columns: 30px 1fr; }
  .scarcity strong { font-size: 15px; }
  .scarcity span { font-size: 14px; }
  .date-panel { grid-template-columns: 1fr; }
  .date-icon { display: none; }
  .hand-note { padding-left: 0; }
  .pricing-card { grid-template-columns: 92px 1fr; }
  .pricing-card img { width: 86px; height: 76px; }
}
@media print {
  @page { size: 16in 9in; margin: 0; }
  html, body, .splash { width: 16in; height: 9in; min-height: 9in; overflow: hidden; }
  .splash { padding: .32in .52in .22in; grid-template-rows: auto 1fr auto auto auto auto; }
  .site-header { margin-bottom: 0; }
  .brand img { width: 3.6in; }
  .header-pill { font-size: 9pt; padding: 9px 15px; }
  .hero-content { width: 5.8in; padding: .18in 0 .05in; }
  .eyebrow { font-size: 8.6pt; margin-bottom: .08in; }
  h1 { font-size: 44pt; }
  .script { font-size: 22pt; margin: .09in 0 .07in; }
  .intro { font-size: 11pt; line-height: 1.35; margin-bottom: .10in; }
  .scarcity { padding: .09in .12in; }
  .scarcity strong { font-size: 10pt; }
  .scarcity span { font-size: 9pt; }
  .signup-card { display: none; }
  .info-band { margin-top: .07in; border-radius: .13in; }
  .offer { min-height: .8in; grid-template-columns: .62in 1fr; padding: .13in .22in; gap: .12in; }
  .offer img { width: .5in; height: .5in; padding: .12in; }
  .offer h2 { font-size: 21pt; }
  .offer p { font-size: 8.7pt; line-height: 1.27; }
  .date-panel { margin-top: .09in; padding: .15in .24in; grid-template-columns: .65in 1fr 2.3in; gap: .16in; border-radius: .13in; }
  .date-icon { width: .62in; height: .62in; border-radius: .12in; }
  .date-icon img { width: .36in; height: .36in; }
  .date-copy .label { font-size: 28pt; }
  .date-copy h2 { font-size: 17pt; margin: .04in 0 .04in; }
  .date-copy p { font-size: 8.5pt; }
  .hand-note { font-size: 18pt; }
  .mini-pricing { margin-top: .08in; grid-template-columns: 1fr 1fr 2in; gap: .12in; }
  .pricing-card { grid-template-columns: .82in 1fr; padding: .08in .13in; border-radius: .11in; }
  .pricing-card img { width: .72in; height: .54in; border-radius: .08in; }
  .pricing-card span { font-size: 8pt; }
  .pricing-card strong { font-size: 24pt; }
  .pricing-card small { font-size: 7pt; }
  .pricing-note { font-size: 15pt; }
  .site-footer { margin-top: .08in; padding: .08in .16in; font-size: 7.7pt; }
}
