/* Reseeded Quality Farm — drying-bed / highland dawn identity */
:root {
  --ink: #14181c;
  --slate: #1a3a2a;
  --mist: #9bb0bc;
  --linen: #e8eef0;
  --paper: #f4f7f8;
  --sun: #e87722;
  --berry: #e87722;
  --display: "Bodoni Moda", "Times New Roman", serif;
  --sans: "Sora", system-ui, sans-serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --pad: clamp(1.25rem, 4vw, 3rem);
  --max: 70rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--berry);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* Top bar — transparent over hero, matches dark photography */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem var(--pad);
  background: linear-gradient(180deg, rgba(14, 26, 20, 0.72) 0%, rgba(14, 26, 20, 0.28) 70%, transparent 100%);
  color: #fff;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
  padding: 0.3rem 0.45rem;
  background: rgba(244, 241, 236, 0.96);
  border-radius: 0.4rem;
}

.logo {
  display: block;
  height: clamp(2.4rem, 6vw, 3rem);
  width: auto;
  object-fit: contain;
  background: transparent;
}

.menu {
  display: none;
  gap: 1.35rem;
}

.menu a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  transition: color 180ms var(--ease);
}

.menu a:hover,
.menu a:focus-visible {
  color: #fff;
}

.phone-link {
  flex-shrink: 0;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.phone-link:hover,
.phone-link:focus-visible {
  background: var(--sun);
  border-color: var(--sun);
  color: #fff;
}

@media (min-width: 880px) {
  .menu {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1750967613671-297f1b63038d?auto=format&fit=crop&w=2200&q=80")
    center / cover no-repeat;
  transform: scale(1.08);
  animation: drift 22s var(--ease) infinite alternate;
}

.hero-slats {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent 0,
      transparent 18px,
      rgba(20, 24, 28, 0.12) 18px,
      rgba(20, 24, 28, 0.12) 19px
    );
  mix-blend-mode: multiply;
  opacity: 0.55;
  pointer-events: none;
}

.hero-grade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(43, 58, 66, 0.45) 0%, rgba(20, 24, 28, 0.25) 40%, rgba(20, 24, 28, 0.72) 100%),
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(240, 162, 2, 0.18), transparent 60%);
}

.hero-frame {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, 42rem);
  padding: 7.5rem 0 4rem;
  animation: lift 1.1s var(--ease) both;
}

.hero-stamp {
  margin: 0 0 1.25rem;
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(240, 162, 2, 0.65);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sun);
}

.hero-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(3.2rem, 12vw, 6.75rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero-title span {
  display: block;
}

.hero-title span:nth-child(2) {
  font-style: italic;
  color: var(--sun);
}

.hero-line {
  margin: 1.5rem auto 0;
  max-width: 26rem;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(232, 238, 240, 0.88);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-top: 2rem;
  padding: 0.8rem 1.6rem;
  background: var(--sun);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 200ms var(--ease), background 200ms var(--ease);
}

.hero-cta:hover {
  transform: translateY(-2px);
  background: #f08a35;
}

.hero-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* Ticker */
.ticker {
  overflow: hidden;
  background: var(--slate);
  color: var(--linen);
  border-block: 1px solid rgba(155, 176, 188, 0.25);
}

.ticker-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0.95rem 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  animation: marquee 32s linear infinite;
}

.ticker-track span:nth-child(even) {
  color: var(--sun);
}

/* Story */
.story {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 7rem) 0;
}

@media (min-width: 900px) {
  .story {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-areas:
      "quote shot"
      "body shot";
    align-items: start;
  }

  .story-quote {
    grid-area: quote;
  }

  .story-body {
    grid-area: body;
  }

  .story-shot {
    grid-area: shot;
  }
}

.story-quote {
  margin: 0;
  padding: 0;
  border: 0;
}

.story-quote p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--slate);
}

.kicker {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--berry);
}

.kicker-light {
  color: var(--sun);
}

.kicker-gold {
  color: var(--sun);
}

.story-body h2,
.craft-head h2,
.reseed-copy h2,
.crops-inner h2,
.who-inner h2,
.origin-panel h2,
.contact-inner h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.story-body p {
  margin: 0 0 1rem;
  max-width: 34rem;
  color: rgba(20, 24, 28, 0.72);
}

.story-shot {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.story-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 14px,
      rgba(20, 24, 28, 0.08) 14px,
      rgba(20, 24, 28, 0.08) 15px
    );
  pointer-events: none;
}

.story-shot img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 800ms var(--ease);
}

.story-shot:hover img {
  transform: scale(1.04);
}

/* Craft */
.craft {
  background: var(--slate);
  color: var(--linen);
  padding: clamp(4rem, 10vw, 7rem) 0 0;
}

.craft-head {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto 2.75rem;
}

.craft-head h2 {
  color: #fff;
}

.craft-intro {
  margin: 0;
  max-width: 36rem;
  color: rgba(232, 238, 240, 0.72);
}

.craft-flow {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: min(100% - 2.5rem, var(--max));
  display: grid;
  gap: 1.75rem;
  counter-reset: none;
}

@media (min-width: 800px) {
  .craft-flow {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .craft-flow li {
    padding-right: 1.5rem;
    border-right: 1px solid rgba(155, 176, 188, 0.28);
  }

  .craft-flow li:last-child {
    border-right: 0;
    padding-right: 0;
  }
}

.craft-step {
  display: block;
  margin-bottom: 0.65rem;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--sun);
}

.craft-flow p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(232, 238, 240, 0.72);
}

.craft-photo {
  margin-top: clamp(3rem, 8vw, 4.5rem);
  min-height: clamp(16rem, 40vw, 28rem);
  background:
    linear-gradient(180deg, rgba(43, 58, 66, 0.15), rgba(20, 24, 28, 0.45)),
    url("https://images.unsplash.com/photo-1762277142767-6e614520de15?auto=format&fit=crop&w=2200&q=80")
    center / cover no-repeat;
}

/* Reseeding */
.reseed {
  padding: clamp(4rem, 10vw, 7rem) var(--pad);
  background: var(--leaf, var(--paper));
}

.reseed-inner {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  width: min(100%, var(--max));
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 860px) {
  .reseed-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.reseed-copy p {
  margin: 0 0 1rem;
  max-width: 36rem;
  color: rgba(20, 24, 28, 0.72);
}

.reseed-points {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.reseed-points li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.35rem;
  border-top: 1px solid rgba(26, 58, 42, 0.12);
  color: rgba(20, 24, 28, 0.78);
  font-size: 0.98rem;
}

.reseed-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--sun);
}

.reseed-shot {
  margin: 0;
  overflow: hidden;
}

.reseed-shot img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* Crops — beans, maize, other produce */
.crops {
  padding: clamp(4rem, 10vw, 7rem) var(--pad);
  background: var(--paper);
}

.crops-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.crops-lead {
  margin: 0 0 2.25rem;
  max-width: 36rem;
  color: rgba(20, 24, 28, 0.72);
}

.crops-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .crops-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.crops-list li {
  padding-top: 1.15rem;
  border-top: 1px solid rgba(43, 58, 66, 0.2);
}

.crops-list strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--slate);
}

.crops-list span {
  display: block;
  font-size: 0.95rem;
  color: rgba(20, 24, 28, 0.68);
}

/* Who we serve */
.who {
  padding: clamp(4rem, 10vw, 6.5rem) var(--pad);
  background: var(--slate);
  color: var(--linen);
}

.who-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.who-inner h2 {
  color: #fff;
}

.who-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 2.25rem;
}

@media (min-width: 800px) {
  .who-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.who-grid article {
  padding-top: 1.15rem;
  border-top: 1px solid rgba(155, 176, 188, 0.28);
}

.who-grid h3 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--sun);
}

.who-grid p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(232, 238, 240, 0.72);
}

/* Origin */
.origin {
  min-height: clamp(22rem, 55vw, 32rem);
  display: grid;
  align-items: end;
  background:
    linear-gradient(120deg, rgba(20, 24, 28, 0.82) 10%, rgba(43, 58, 66, 0.45) 55%, rgba(20, 24, 28, 0.35) 100%),
    url("https://images.pexels.com/photos/1695052/pexels-photo-1695052.jpeg?auto=compress&cs=tinysrgb&w=2200")
    center / cover no-repeat;
  color: #fff;
}

.origin-panel {
  width: min(100% - 2.5rem, 34rem);
  margin: 0;
  padding: clamp(3rem, 8vw, 5rem) var(--pad);
}

.origin-panel p:last-child {
  margin: 0;
  color: rgba(232, 238, 240, 0.8);
}

/* Contact */
.contact {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(240, 162, 2, 0.12), transparent 50%),
    linear-gradient(160deg, var(--linen), var(--paper));
  padding: clamp(4.5rem, 12vw, 8rem) var(--pad);
}

.contact-inner {
  width: min(100%, 40rem);
  margin: 0 auto;
  text-align: center;
}

.contact-logo {
  display: block;
  width: clamp(5.5rem, 14vw, 7rem);
  height: auto;
  margin: 0 auto 1.5rem;
}

.contact-inner p {
  margin: 0 0 1rem;
  color: rgba(20, 24, 28, 0.68);
}

.contact-phone {
  display: inline-block;
  margin: 0.75rem 0 1.25rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--berry);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 280ms var(--ease), color 200ms var(--ease);
}

.contact-phone:hover,
.contact-phone:focus-visible {
  background-size: 100% 1px;
  color: var(--slate);
}

.contact-place {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 0.75rem;
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
}

.contact-list li {
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(26, 58, 42, 0.18);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
}

/* Footer */
.foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1.35rem var(--pad);
  background: var(--ink);
  color: rgba(232, 238, 240, 0.5);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.foot-brand {
  line-height: 0;
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  background: #f4f1ec;
  border-radius: 0.35rem;
}

.foot-brand img {
  display: block;
  height: 3rem;
  width: auto;
  object-fit: contain;
  background: transparent;
}

.foot-phone {
  color: var(--sun);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.foot-phone:hover,
.foot-phone:focus-visible {
  text-decoration: underline;
}

/* Motion */
@keyframes lift {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    transform: scale(1.08) translate(0, 0);
  }
  to {
    transform: scale(1.14) translate(-1.2%, 1%);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-photo,
  .hero-frame,
  .ticker-track,
  .story-shot img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
