:root {
  --paper: #f2f1e4;
  --paper-2: #eceada;
  --card: #fbfaf2;
  --ink: #23301d;
  --ink-soft: #4b5740;
  --forest: #33502b;
  --forest-deep: #223a1c;
  --clementine: #dd8a2a;
  --clementine-deep: #b76a19;
  --raisin: #6e2a3d;
  --leaf: #dce3c4;
  --line: rgba(35, 48, 29, 0.14);
  --radius: 2px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

h1,
h2,
h3,
.display {
  font-family: "Fraunces", serif;
  font-weight: 600;
  color: var(--forest-deep);
  letter-spacing: -0.01em;
}
.mono {
  font-family: "IBM Plex Mono", monospace;
}

a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* subtle paper texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(
    circle,
    rgba(35, 48, 29, 0.05) 1px,
    transparent 1px
  );
  background-size: 3px 3px;
  z-index: 0;
}

/* ---------- NAV ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 241, 228, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
nav.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
}
.logo {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--forest-deep);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.1;
}
.logo img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--line);
}
.logo small {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  display: inline-block;
  transition:
    color 0.2s,
    transform 0.2s;
}
.nav-links a:hover {
  color: #2e7d32;
  transform: scale(1.1);
  font-weight: 600;
}
.nav-links a:focus-visible,
.btn:focus-visible,
.fruit-card:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest-deep);
  color: var(--paper);
  padding: 10px 18px;
  font-size: 0.88rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--forest);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--forest-deep);
  cursor: pointer;
  z-index: 60;
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }
  .nav-cta {
    display: none;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 94px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 20px 32px;
    gap: 20px;
  }
  .nav-links.open {
    display: flex;
  }
}

@media (max-width: 760px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 96px 0 110px;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--raisin);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--raisin);
  display: inline-block;
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  line-height: 1.03;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--clementine-deep);
}
.hero p.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition:
    transform 0.15s ease,
    background 0.2s,
    box-shadow 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--forest-deep);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--forest);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--forest-deep);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--forest-deep);
  transform: translateY(-2px);
}

/* hero photo */
.hero-art {
  position: relative;
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
  padding: 14px;
  background: var(--card);
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-art .corner-tag {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--clementine);
  color: var(--forest-deep);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  font-weight: 600;
}
/* ---------- SECTION LABELS ---------- */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}
.section-head .tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
}
.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}
.section {
  position: relative;
  padding: 90px 0;
}
.section.alt {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---------- FRUITS GRID ---------- */
.fruits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) {
  .fruits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .fruits-grid {
    grid-template-columns: 1fr;
  }
}

.fruit-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.fruit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px -18px rgba(35, 48, 29, 0.35);
}
.fruit-photo {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.fruit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.fruit-card:hover .fruit-photo img {
  transform: scale(1.05);
}
.fruit-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.fruit-name {
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  color: var(--forest-deep);
}
.fruit-origin {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.5;
}
.fruit-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  flex-grow: 1;
}
.fruit-price {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.92rem;
  color: var(--forest-deep);
  border-top: 1px dashed var(--line);
  padding-top: 12px;
  line-height: 1.4;
}
.fruit-price .amount {
  font-weight: 600;
  font-size: 1rem;
}
.fruit-order {
  display: block;
  text-align: center;
  margin-top: 4px;
  padding: 10px 14px;
  background: var(--forest-deep);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.fruit-order:hover {
  background: var(--forest);
}

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 760px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}
.step {
  position: relative;
  padding-left: 0;
}
.step-num {
  font-family: "Fraunces", serif;
  font-size: 3.2rem;
  color: var(--leaf);
  -webkit-text-stroke: 1.5px var(--forest);
  color: transparent;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.step p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  max-width: 32ch;
}
.steps-line {
  display: none;
}
@media (min-width: 761px) {
  .steps {
    position: relative;
  }
  .steps::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: repeating-linear-gradient(
      90deg,
      var(--forest) 0 6px,
      transparent 6px 12px
    );
    opacity: 0.4;
  }
}

/* ---------- VALUES ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 760px) {
  .values {
    grid-template-columns: 1fr;
  }
}
.value {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
}
.value .icon {
  margin-bottom: 16px;
}
.value h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.value p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---------- ENGAGEMENT ---------- */
.engagement {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}
@media (max-width: 800px) {
  .engagement {
    grid-template-columns: 1fr;
  }
}
.engagement-photo {
  border: 1px solid var(--line);
  padding: 12px;
  background: var(--card);
}
.engagement-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.engagement-text p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 1rem;
}

/* ---------- CONTACT INFO ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 8px;
}
@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-item {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: var(--radius);
}
.contact-item h4 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 10px;
}
.contact-item p,
.contact-item a {
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
}
.contact-item a:hover {
  color: var(--forest);
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--forest-deep);
  color: var(--paper);
  padding: 78px 0;
  text-align: center;
}
.cta-band h2 {
  color: var(--paper);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 18px;
}
.cta-band p {
  color: rgba(242, 241, 228, 0.75);
  margin-bottom: 34px;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .btn-primary {
  background: var(--clementine);
  color: var(--forest-deep);
  font-weight: 600;
}
.cta-band .btn-primary:hover {
  background: #efa24b;
}

/* ---------- FOOTER ---------- */
footer {
  padding: 56px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-grid h4 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.footer-grid p,
.footer-grid a {
  font-size: 0.92rem;
  color: var(--ink);
  display: block;
  margin-bottom: 8px;
}
.footer-grid a:hover {
  color: var(--forest);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 10px;
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
