/* Palette sampled from the Thorpe Arnold Pick Your Own badge logo. */
:root {
  --mint: #e4f7da;          /* logo background circle */
  --mint-soft: #f1fbeb;
  --mint-line: #c8e6b5;
  --orange: #ec9921;        /* logo pumpkins */
  --orange-soft: #f9dcae;
  --orange-ink: #a35f0a;    /* accessible orange for text and links */
  --blush: #f2b98c;         /* logo blush pumpkin */
  --gold: #e0b25c;          /* logo cream squash */
  --olive: #867c02;         /* logo gourds */
  --olive-dark: #3f4a10;
  --ink: #2d3031;           /* logo line art */
  --ink-soft: #5c6053;
  --paper: #fbfdf7;
  --radius: 16px;
  --shadow: 0 1px 2px rgba(45, 48, 49, .06), 0 14px 34px rgba(63, 74, 16, .09);
}

* { box-sizing: border-box; }

/* offset anchor targets so the sticky header never covers a section heading */
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: Fraunces, Georgia, serif; line-height: 1.1; margin: 0 0 .6em; }
h1 { font-size: clamp(2.3rem, 5.6vw, 4rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
a { color: var(--orange-ink); }

.wrap { width: min(1120px, 100% - 3rem); margin-inline: auto; }
.narrow { width: min(760px, 100% - 3rem); }
.centre { text-align: center; }
.muted { color: var(--ink-soft); font-size: .95rem; }
.small { font-size: .85rem; color: var(--ink-soft); }

.skip { position: absolute; left: -9999px; background: #fff; padding: .6rem 1rem; z-index: 30; }
.skip:focus { left: 1rem; top: 1rem; }

:where(a, summary, .btn):focus-visible {
  outline: 3px solid var(--olive);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 20;
  background: rgba(251, 253, 247, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--mint-line);
}
.topbar-inner { display: flex; align-items: center; gap: 1.5rem; padding: .6rem 0; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); }
.brand img { width: 46px; height: 46px; display: block; }
.brand-text strong { display: block; font-family: Fraunces, serif; font-size: 1.02rem; line-height: 1.15; }
.brand-text small {
  display: block; font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--olive);
}
.topbar nav { margin-left: auto; display: flex; gap: 1.4rem; }
.topbar nav a { color: var(--ink-soft); text-decoration: none; font-size: .93rem; font-weight: 500; }
.topbar nav a:hover { color: var(--orange-ink); }
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0; margin-left: .3rem;
  background: transparent; border: 1px solid var(--mint-line);
  border-radius: 12px; color: var(--ink); cursor: pointer;
}
.nav-toggle span { position: relative; display: block; width: 18px; height: 2px; background: currentColor; }
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] { background: var(--mint-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--orange); color: var(--ink);
  padding: .8rem 1.5rem; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: .95rem;
  box-shadow: 0 6px 18px rgba(236, 153, 33, .32);
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { background: #f2a93f; color: var(--ink); transform: translateY(-1px); }
.btn-sm { padding: .55rem 1.05rem; font-size: .87rem; box-shadow: none; }
.btn-ghost {
  background: transparent; color: var(--olive-dark);
  border: 1.5px solid var(--olive); box-shadow: none;
}
.btn-ghost:hover { background: rgba(134, 124, 2, .1); color: var(--olive-dark); }
.btn-light { background: var(--mint); color: var(--olive-dark); box-shadow: none; }
.btn-light:hover { background: #fff; color: var(--olive-dark); }

/* ---------- instagram tags ---------- */
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ig-icon {
  width: 1.05em; height: 1.05em; flex: none;
  vertical-align: -.18em; color: inherit;
}
.ig-tag {
  display: inline-flex; align-items: center; gap: .35em;
  text-decoration-thickness: 1px; text-underline-offset: 2px;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--olive-dark);
  color: #fff;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(6rem, 12vw, 9rem);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 28%;
  display: block;
  /* the source clip is 30fps, so slowed playback shows few new frames per second;
     a continuous compositor-driven drift keeps the motion reading as smooth */
  transform-origin: 55% 40%;
  animation: hero-drift 44s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero-drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(-1.2%, -1%, 0); }
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(38, 42, 20, .40) 0%, rgba(50, 58, 18, .40) 42%, rgba(63, 74, 16, .82) 100%),
    linear-gradient(95deg, rgba(28, 32, 12, .34) 0%, rgba(28, 32, 12, .12) 48%, rgba(28, 32, 12, 0) 68%),
    radial-gradient(950px 520px at 76% 24%, rgba(236, 153, 33, .22), transparent 68%);
}
.hero h1 { color: #fff; text-shadow: 0 2px 10px rgba(24, 28, 8, .55), 0 2px 30px rgba(24, 28, 8, .35); }
.hero .lede { color: #fff; text-shadow: 0 1px 8px rgba(24, 28, 8, .6), 0 1px 18px rgba(24, 28, 8, .35); }
.hero .eyebrow { color: var(--mint); }
.hero .hero-note { color: rgba(255, 255, 255, .82); }
.hero .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .65); background: rgba(255, 255, 255, .08); }
.hero .btn-ghost:hover { background: rgba(255, 255, 255, .18); color: #fff; }
.hero .pill { background: var(--mint); color: var(--olive-dark); }
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(1.5rem, 5vw, 3.5rem); align-items: center;
}
.hero-badge { justify-self: center; position: relative; }
.hero-badge img {
  width: min(320px, 100%); height: auto; display: block;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, .92), 0 0 0 11px var(--mint-line), 0 26px 50px rgba(20, 24, 6, .45);
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .74rem;
  font-weight: 600; color: var(--olive); margin-bottom: 1rem;
}
.lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 52ch; }
.lede-sm { color: var(--ink-soft); max-width: 56ch; margin-inline: auto; margin-bottom: 2.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 1.6rem; }
.hero-note { font-size: .92rem; color: var(--ink-soft); display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin: 0; }
.pill {
  background: var(--olive-dark); color: #fff;
  padding: .3rem .8rem; border-radius: 999px;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
}
.hero-field { position: absolute; inset: auto 0 -1px 0; line-height: 0; z-index: 0; }
.hero-field svg { width: 100%; height: clamp(100px, 15vw, 180px); display: block; }

/* ---------- strip ---------- */
.strip { background: var(--olive-dark); color: #fff; }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.6rem 0; }
.strip-inner div { text-align: center; }
.strip-inner strong { display: block; font-size: .98rem; }
.strip-inner span { font-size: .84rem; color: rgba(255, 255, 255, .78); }

/* ---------- sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-tint { background: var(--mint); }
.section-dark { background: var(--olive-dark); color: #fff; }
.section-dark h2 { color: #fff; }
.section-dark .muted { color: rgba(255, 255, 255, .72); }
.section-dark a:not(.btn) { color: var(--orange-soft); }
.section-photo {
  background-image:
    linear-gradient(100deg, rgba(30, 34, 12, .78) 0%, rgba(30, 34, 12, .3) 55%, rgba(30, 34, 12, 0) 80%),
    linear-gradient(rgba(63, 74, 16, .82), rgba(45, 55, 10, .9)),
    url("assets/photos/find-field.jpg");
  background-size: cover;
  background-position: center 60%;
}
.section-photo .address,
.section-photo h2,
.section-photo p { text-shadow: 0 1px 10px rgba(20, 22, 8, .6); }
.section-photo .muted { color: rgba(255, 255, 255, .82); }

.grid-2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

.ticks { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.ticks li { position: relative; padding-left: 1.9rem; margin-bottom: .7rem; color: var(--ink-soft); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: .75rem; height: .42rem;
  border-left: 2.5px solid var(--orange); border-bottom: 2.5px solid var(--orange);
  transform: rotate(-45deg);
}

/* ---------- cards ---------- */
.card {
  background: #fff; border: 1px solid var(--mint-line);
  border-radius: var(--radius); padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow);
}
.card-dates { border-top: 4px solid var(--orange); }
.detail-list { margin: 0 0 1.2rem; }
.detail-list div {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .6rem 0; border-bottom: 1px dashed var(--mint-line);
}
.detail-list div:last-child { border-bottom: 0; }
.detail-list dt { color: var(--ink-soft); font-size: .93rem; }
.detail-list dd { margin: 0; font-weight: 600; text-align: right; }
.tbc {
  display: inline-block; margin-left: .4rem;
  background: var(--orange-soft); color: var(--orange-ink);
  font-size: .68rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; padding: .15rem .45rem; border-radius: 5px;
  vertical-align: middle;
}
.card-foot { font-size: .88rem; color: var(--ink-soft); margin: 0; }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.pick { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.pick-img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  display: block; background: var(--mint-soft);
}
/* tall portrait source: a centre crop would cut the scarecrow's head off */
.pick-img--top { object-position: 50% 12%; }
.pick-body { padding: 1.2rem 1.3rem 1.4rem; }
.pick-body h3 { margin-bottom: .4em; }
.pick p { margin: 0; color: var(--ink-soft); font-size: .94rem; }

/* ---------- growing steps ---------- */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem;
}
.step img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--radius); display: block;
  box-shadow: var(--shadow);
}
/* the seedling rows sit in the upper third of the frame, so bias the square crop up */
.step-img--top { object-position: 50% 30%; }
.step-body { padding: 1rem .2rem 0; }
.step-body h3 { margin-bottom: .35em; }
.step-body p { margin: 0; color: var(--ink-soft); font-size: .93rem; }
.step-label {
  display: inline-block; margin-bottom: .5rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange-ink);
  background: var(--orange-soft); padding: .18rem .5rem; border-radius: 5px;
}

/* ---------- gallery ---------- */
.gallery {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(120px, 15vw, 170px); gap: .8rem;
}
.gallery li { overflow: hidden; border-radius: 12px; }
.gallery li:first-child { grid-column: span 2; grid-row: span 2; }
.gallery li:nth-child(6), .gallery li:nth-child(7) { grid-column: span 2; }
.gallery img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.gallery li:hover img { transform: scale(1.04); }
.gal-img--low { object-position: 50% 72%; }
.gal-img--upper { object-position: 50% 1%; }
.gallery-foot { margin: 1.4rem 0 0; }

/* ---------- FAQs ---------- */
.faq-group {
  margin: 2.4rem 0 .9rem; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .16em; color: var(--olive);
  font-family: Inter, sans-serif;
}
details {
  background: #fff; border: 1px solid var(--mint-line);
  border-radius: 12px; margin-bottom: .6rem; overflow: hidden;
}
details[open] { border-color: var(--orange); box-shadow: var(--shadow); }
summary {
  cursor: pointer; padding: 1rem 3rem 1rem 1.2rem;
  font-weight: 600; position: relative; list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%;
  transform: translateY(-50%); font-size: 1.35rem; font-weight: 400;
  color: var(--orange-ink); line-height: 1;
}
details[open] summary::after { content: "\2212"; }
details > div { padding: 0 1.2rem 1.1rem; color: var(--ink-soft); }
details > div p { margin: 0; }

/* ---------- find us ---------- */
.address { font-size: 1.05rem; line-height: 1.8; }
.contact-line {
  margin: 1.3rem 0 1.6rem;
  font-family: Fraunces, Georgia, serif; font-size: 1.5rem; line-height: 1.3;
}
.contact-line > a { text-decoration: none; }
.contact-line > a:hover { text-decoration: underline; }
.contact-line span {
  display: block; margin-top: .45rem;
  font-family: Inter, sans-serif; font-size: .95rem; color: var(--ink-soft);
}
.section-dark .contact-line span { color: rgba(255, 255, 255, .82); }
.map-card {
  border-radius: var(--radius); overflow: hidden;
  border: 6px solid rgba(228, 247, 218, .18);
  line-height: 0;
}

/* ---------- footer ---------- */
.footer { position: relative; background: var(--olive-dark); color: rgba(255, 255, 255, .8); padding: 2.5rem 0; }
.footer a { color: var(--orange-soft); }
/* mirror of the hero field curve, sitting over the section above */
.footer-field { position: absolute; left: 0; right: 0; bottom: 100%; margin-bottom: -1px; line-height: 0; }
.footer-field svg { width: 100%; height: clamp(56px, 7vw, 90px); display: block; }
.footer-inner { display: grid; justify-items: center; gap: .7rem; text-align: center; }
.footer img { width: 62px; height: 62px; display: block; }
.footer p { margin: 0; font-size: .92rem; }
.footer .small { color: rgba(255, 255, 255, .55); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  /* text is centred here, so the left-hand scrim is replaced with an even one */
  .hero-veil {
    background:
      linear-gradient(180deg, rgba(32, 36, 16, .52) 0%, rgba(50, 58, 18, .5) 45%, rgba(63, 74, 16, .84) 100%),
      radial-gradient(700px 480px at 70% 22%, rgba(236, 153, 33, .2), transparent 70%);
  }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-badge { grid-row: 1; text-align: center; }
  .hero-badge img { width: min(220px, 60%); margin-inline: auto; }
  .lede, .hero-inner .eyebrow { margin-inline: auto; }
  .hero-actions, .hero-note { justify-content: center; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}
@media (max-width: 640px) {
  .nav-toggle { display: inline-flex; }
  .topbar-inner { gap: .5rem; }
  .topbar .btn-sm { margin-left: auto; padding: .5rem .9rem; font-size: .82rem; }
  .topbar .brand img { width: 40px; height: 40px; }
  /* keeping both lines on one line each stops the header running to three rows */
  .brand-text strong { font-size: .95rem; white-space: nowrap; }
  .brand-text small { font-size: .62rem; letter-spacing: .1em; white-space: nowrap; }
  .topbar nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; margin: 0; padding: .2rem 0;
    background: var(--paper);
    border-bottom: 1px solid var(--mint-line);
    box-shadow: 0 14px 28px rgba(24, 28, 8, .14);
  }
  .topbar nav[data-open="true"] { display: flex; }
  .topbar nav a {
    padding: .9rem 1rem; font-size: 1rem;
    border-bottom: 1px solid var(--mint-line);
  }
  .topbar nav a:last-child { border-bottom: 0; }
  .cards { grid-template-columns: 1fr; }
  .wrap, .narrow { width: calc(100% - 2rem); }
  .hero-actions .btn { flex: 1 1 auto; text-align: center; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 44vw; }
  .gallery li:first-child { grid-column: span 2; grid-row: span 1; }
  .gallery li:nth-child(6), .gallery li:nth-child(7) { grid-column: span 1; }
}
/* smallest phones: keep the header to a single row */
@media (max-width: 380px) {
  .topbar .btn-sm { white-space: nowrap; padding: .45rem .7rem; font-size: .76rem; }
  .topbar .brand img { width: 36px; height: 36px; }
  .brand-text strong { font-size: .88rem; }
  .brand-text small { font-size: .56rem; letter-spacing: .06em; }
  .nav-toggle { width: 40px; height: 40px; margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .gallery img { transition: none; }
  .gallery li:hover img { transform: none; }
  .hero-video { animation: none; transform: scale(1.06); }
}
