:root {
  --ink: #271512;
  --muted: #7a6258;
  --cream: #fff4dd;
  --paper: #fffaf1;
  --linen: #f7e6c4;
  --clay: #bd4a2e;
  --clay-soft: #ef7651;
  --gold: #f0c15b;
  --green: #123d2d;
  --green-2: #1e503c;
  --green-soft: #edf4df;
  --line: rgba(39, 21, 18, 0.13);
  --white-line: rgba(255, 255, 255, 0.22);
  --shadow: 0 28px 80px rgba(46, 18, 12, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 241, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(39, 21, 18, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a,
.header-cta,
.primary-button,
.secondary-button,
.text-button {
  text-decoration: none;
}

.header-cta,
.primary-button,
.secondary-button,
.text-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.header-cta,
.primary-button {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(18, 61, 45, 0.2);
}

.header-cta {
  min-height: 38px;
  padding: 0 18px;
  font-size: 0.88rem;
}

.primary-button,
.secondary-button {
  padding: 0 22px;
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.78);
  color: var(--ink);
}

.primary-button.wide {
  width: 100%;
  border-radius: 8px;
}

.text-button {
  width: 100%;
  min-height: 44px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 0 18px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent, rgba(7, 20, 16, 0.5)),
    url("assets/farm-hero-sun.png") center / cover;
  color: #fff;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 16, 0.9) 0%, rgba(7, 20, 16, 0.7) 42%, rgba(7, 20, 16, 0.34) 100%),
    linear-gradient(180deg, rgba(7, 20, 16, 0.22), rgba(7, 20, 16, 0.42));
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: 720px;
  padding: clamp(42px, 7vw, 78px) clamp(20px, 5vw, 72px) 40px;
}

#hero-title {
    font-size: 50px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

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

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

h1 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2.85rem, 5vw, 5.2rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 30px, 4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.18;
}

.hero-copy-block {
  max-width: 680px;
}

.hero-lead {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
  font-weight: 500;
}

.slide-up {
  opacity: 0;
  transform: translateY(26px);
  animation: slideUpFade 0.8s cubic-bezier(0.18, 0.84, 0.32, 1) forwards;
}

.heading-reveal {
  animation-delay: 0.08s;
}

.lead-reveal {
  animation-delay: 0.22s;
}

.actions-reveal {
  animation-delay: 0.36s;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-actions .primary-button {
  background: var(--gold);
  color: var(--ink);
}

.hero-actions .secondary-button {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-visual-block {
  display: grid;
  gap: 16px;
}

.hero-panel {
  border: 1px solid var(--white-line);
  background: rgba(255, 244, 221, 0.14);
  box-shadow: 0 20px 50px rgba(7, 20, 16, 0.2);
  backdrop-filter: blur(18px);
}

.hero-note-panel {
  max-width: 420px;
  padding: 20px 22px;
}

.hero-note-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.65;
}

.hero-preview-panel {
  overflow: hidden;
}

.hero-preview-panel img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.hero-stats-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 20px 24px;
}

.hero-stats-panel div {
  padding: 4px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stats-panel div:last-child {
  border-right: 0;
}

.hero-stats-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-stats-panel strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.2;
}

.notice-band {
  padding: 16px clamp(20px, 5vw, 72px);
  background: var(--green);
  color: #fff;
}

.notice-band p {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 800;
}

.section-shell,
.feature-band,
.delivery-section,
.reservation-section,
.trust-section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading p:not(.eyebrow),
.plan-card p,
.feature-copy p:not(.eyebrow),
.delivery-copy p,
.trust-grid p,
.form-note,
.summary-note {
  color: var(--muted);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plan-card,
.form-panel,
.summary-panel,
.trust-grid article,
.delivery-list div,
.step-list article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.plan-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
}

.plan-card.featured {
  background: var(--green);
  color: #fff;
}

.plan-card.featured p,
.plan-card.featured li {
  color: rgba(255, 255, 255, 0.72);
}

.plan-card.featured .text-button {
  background: var(--gold);
  color: var(--ink);
}

.bulk-card {
  background: linear-gradient(180deg, #fff, #fff4dd);
}

.plan-label {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured .plan-label {
  background: rgba(240, 193, 91, 0.16);
  color: var(--gold);
}

.plan-price {
  margin-top: auto;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1;
}

.plan-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.93rem;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  background: var(--linen);
}

.feature-media {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.feature-media img {
  width: 100%;
  height: clamp(340px, 45vw, 580px);
  object-fit: cover;
}

.step-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.step-list article {
  padding: 18px;
}

.step-list span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
}

.delivery-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--green);
  color: #fff;
}

.delivery-copy {
  position: sticky;
  top: 96px;
}

.delivery-copy .eyebrow {
  color: rgba(240, 193, 91, 0.9);
}

.delivery-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.delivery-list {
  display: grid;
  gap: 12px;
}

.delivery-list div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.delivery-list strong,
.delivery-list span {
  display: block;
}

.delivery-list strong {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.delivery-list span {
  color: rgba(255, 255, 255, 0.7);
}

.reservation-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 22px;
  align-items: start;
  background:
    radial-gradient(circle at 82% 12%, rgba(240, 193, 91, 0.2), transparent 28%),
    linear-gradient(180deg, var(--paper), var(--cream));
}

.form-panel,
.summary-panel {
  box-shadow: var(--shadow);
}

.form-panel {
  padding: clamp(22px, 4vw, 34px);
}

.reservation-form {
  display: grid;
  gap: 22px;
}

fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

legend,
.quantity-field {
  font-weight: 900;
}

legend {
  margin-bottom: 10px;
}

.choice-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.choice-card:has(input:checked) {
  border-color: var(--green);
  background: var(--green-soft);
}

.choice-card input {
  margin-top: 5px;
  accent-color: var(--green);
}

.choice-card strong,
.choice-card small,
.delivery-list strong,
.delivery-list span {
  display: block;
}

.choice-card small {
  margin-top: 2px;
  color: var(--muted);
}

.quantity-field {
  display: grid;
  gap: 8px;
}

.quantity-field input,
.field-grid input,
.field-grid select,
.field-grid textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  background: #fff;
  color: var(--ink);
}

.field-grid textarea {
  min-height: 120px;
  padding: 13px;
  resize: vertical;
}

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

.field-grid.single-column {
  grid-template-columns: 1fr;
}

.field-grid label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

.quantity-field input:focus,
.field-grid input:focus,
.field-grid select:focus,
.field-grid textarea:focus {
  outline: 3px solid rgba(240, 193, 91, 0.34);
  border-color: var(--gold);
}

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent-row input {
  margin-top: 4px;
  accent-color: var(--green);
}

.form-note {
  margin: -8px 0 0;
  text-align: center;
  font-size: 0.84rem;
}

.delivery-fee-note,
.summary-delivery-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.summary-panel {
  position: sticky;
  top: 90px;
  overflow: hidden;
}

.summary-art {
  display: grid;
  place-items: center;
  min-height: 260px;
  background: linear-gradient(180deg, #fff4dd, #fffaf1);
}

.summary-art img {
  width: min(78%, 360px);
  max-height: 280px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.summary-content {
  padding: 26px;
}

.summary-content h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.summary-list {
  display: grid;
  gap: 12px;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

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

.summary-list strong {
  font-weight: 900;
  text-align: right;
}

.summary-list .summary-highlight {
  display: block;
  border: 0;
  padding: 18px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.summary-highlight span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.summary-highlight strong {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.25rem;
  line-height: 1;
  text-align: left;
}

.summary-highlight:hover,
.summary-highlight:focus-visible,
.mobile-estimate-bar:hover,
.mobile-estimate-bar:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(18, 61, 45, 0.2);
}

.summary-highlight:focus-visible,
.mobile-estimate-bar:focus-visible {
  outline: 3px solid rgba(240, 193, 91, 0.34);
}

.summary-note {
  margin: 18px 0 0;
  font-size: 0.9rem;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-grid article {
  padding: 22px;
  background: var(--paper);
}

.trust-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand {
  color: #fff;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.9rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: #fff;
}

.policy-page {
  padding: 44px clamp(20px, 5vw, 72px) 88px;
  background:
    radial-gradient(circle at top right, rgba(240, 193, 91, 0.18), transparent 24%),
    linear-gradient(180deg, var(--paper), var(--cream));
}

.policy-hero {
  max-width: 840px;
  margin: 0 auto 28px;
}

.policy-hero h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.policy-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1rem;
}

.policy-card {
  max-width: 840px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.policy-card h2,
.policy-card h3 {
  margin-top: 28px;
}

.policy-card h2 {
  color: var(--green);
  font-size: clamp(1.55rem, 2vw, 2.2rem);
}

.policy-card h3 {
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
}

.policy-card ul {
  padding-left: 20px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
  max-width: min(420px, calc(100vw - 36px));
  border-radius: 10px;
  padding: 14px 16px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  font-weight: 800;
}

.hidden, .dhide {
  display: none;
}

.mhide {
    display:block;
}

.toast.is-visible {
  display: block;
}

.mobile-estimate-bar {
  display: none;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .slide-up {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 1080px) {
  .plan-grid,
  .feature-band,
  .delivery-section,
  .reservation-section,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .delivery-copy,
  .summary-panel {
    position: static;
  }

  #hero-title {
    font-size: 30px;
}
}

@media (max-width: 760px) {
  body {
    padding-bottom: 94px;
  }

  .site-header {
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .hero-section {
    background-position: 62% center;
  }

  .hero-layout {
    padding-top: 56px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: 2.6rem;
  }

  .hero-stats-panel,
  .field-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 14px 0;
  }

  .hero-stats-panel div:last-child {
    border-bottom: 0;
  }

  .feature-media img {
    height: 320px;
  }

  .mobile-estimate-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 35;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    border: 1px solid rgba(18, 61, 45, 0.14);
    border-radius: 14px;
    padding: 12px 14px;
    background: rgba(255, 250, 241, 0.96);
    box-shadow: 0 18px 44px rgba(39, 21, 18, 0.18);
    backdrop-filter: blur(18px);
  }

  .toast {
    bottom: 106px;
  }

  .mobile-estimate-meta {
    min-width: 0;
  }

  .mobile-estimate-meta strong,
  .mobile-estimate-meta span,
  .mobile-estimate-total span,
  .mobile-estimate-total strong {
    display: block;
  }

  .mobile-estimate-meta strong {
    overflow: hidden;
    font-size: 0.78rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-estimate-meta span {
    overflow: hidden;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.68rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-estimate-total {
    text-align: right;
  }

  .mobile-estimate-total span {
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 600;
  }

  .mobile-estimate-total strong {
    margin-top: 2px;
    color: var(--green);
    font-size: 0.98rem;
    font-weight: 800;
  }

  .site-footer {
    display: grid;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 460px) {
  .site-header,
  .section-shell,
  .feature-band,
  .delivery-section,
  .reservation-section,
  .trust-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .mhide {display: none;}
  .dhide {display:block;}

  .brand {
    font-size: 0.95rem;
  }

  .header-cta {
    padding: 0 12px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .summary-highlight strong {
    font-size: 1.9rem;
  }
}
