:root {
  --green: #163226;
  --green-deep: #10251c;
  --leaf: #2f5a34;
  --corn: #e2b13c;
  --cream: #f3ead8;
  --paper: #fff8ec;
  --wood: #6b4423;
  --ink: #1c1814;
  --mute: #5e554b;
  --display: "Fraunces", Georgia, serif;
  --sans: "Source Sans 3", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.6;
  overflow-anchor: none;
}

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

a {
  color: var(--leaf);
}

a:focus-visible,
summary:focus-visible,
.btn-phone:focus-visible,
.btn-gold:focus-visible,
.btn-ghost:focus-visible {
  outline: 2px solid var(--corn);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 12px;
  z-index: 40;
  background: var(--paper);
  padding: 0.5rem 0.8rem;
}

.mast {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem clamp(1rem, 4vw, 2.2rem);
  background: rgb(255 248 236 / 0.92);
  border-bottom: 1px solid color-mix(in srgb, var(--wood) 18%, transparent);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--green);
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

.btn-phone {
  margin-left: auto;
  background: var(--green);
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 0.9rem;
  border-radius: 4px;
}

.menu {
  position: relative;
}

.menu summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--green);
  padding: 0.55rem 0.7rem;
  border: 1px solid color-mix(in srgb, var(--green) 30%, transparent);
  border-radius: 4px;
}

.menu summary::-webkit-details-marker {
  display: none;
}

.menu nav {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  display: grid;
  min-width: 10rem;
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--wood) 20%, transparent);
  padding: 0.4rem;
}

.menu nav a {
  padding: 0.45rem 0.6rem;
  text-decoration: none;
  color: var(--green);
}

.hero {
  position: relative;
  min-height: min(86svh, 52rem);
  color: var(--paper);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(16 37 28 / 0.78) 0%, rgb(16 37 28 / 0.18) 32%, transparent 52%);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 clamp(1.1rem, 5vw, 4rem) 2.2rem;
  max-width: 46rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--corn);
}

.hero h1,
h2 {
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.2rem);
  text-shadow: 0 10px 40px rgb(0 0 0 / 0.28);
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 34rem;
}

.today-dock {
  background-color: var(--green-deep);
  background-image: url("patterns/corn-light.svg");
  background-size: 168px 220px;
  color: #f4efe4;
  padding: 1.35rem clamp(1.1rem, 4vw, 2rem) 1.6rem;
}

.today-card {
  max-width: 72rem;
  margin: 0 auto;
}

.today-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.today-card h2 {
  margin: 0;
  font-size: 1.65rem;
  color: #f6f0e4;
}

.status {
  margin: 0.15rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #b7e0b0;
  background: #1d4733;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  white-space: nowrap;
}

.status::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.35rem;
  border-radius: 50%;
  background: #8fde7a;
  vertical-align: 1px;
}

.today-grid {
  display: grid;
  gap: 1.2rem 1.5rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgb(255 255 255 / 0.12);
}

@media (min-width: 900px) {
  .today-grid {
    grid-template-columns: 1.05fr 0.95fr 1.35fr 1fr;
    align-items: start;
  }
}

.today-row {
  padding: 0.55rem 0 0;
}

.today-row p,
.today-row ul {
  margin: 0;
}

.kicker {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--corn);
  font-weight: 600;
  margin-bottom: 0.3rem !important;
}

.quiet {
  margin-top: 0.35rem !important;
  font-size: 0.82rem;
  color: #c9c0ae;
}

.crops {
  list-style: none;
  padding: 0;
}

.crops li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.2rem 0;
}

.crops em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.8rem;
  color: #c9c0ae;
}

.swatch {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 2px;
  flex: none;
}

.swatch.corn { background: #e2b13c; }
.swatch.peach { background: #e0894a; }
.swatch.tomato { background: #c23b22; }

.gold-link,
.now-link {
  color: var(--corn);
}

.now-link {
  color: #f6f0e4;
  font-weight: 600;
}

.today-actions {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.btn-gold,
.btn-ghost {
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 0.5rem;
  border-radius: 6px;
}

.btn-gold {
  background: var(--corn);
  color: #1a1714;
}

.btn-ghost {
  color: var(--corn);
  border: 1px solid var(--corn);
}

.band {
  background-color: var(--cream);
  background-repeat: repeat;
}

.inner {
  max-width: 72rem;
  margin: 0 auto;
  padding-left: clamp(1.1rem, 5vw, 4rem);
  padding-right: clamp(1.1rem, 5vw, 4rem);
}

.pattern-corn {
  background-image: url("patterns/corn.svg");
  background-size: 168px 220px;
}

.pattern-wheat {
  background-color: color-mix(in srgb, var(--cream) 82%, #d7c49a);
  background-image: url("patterns/wheat.svg");
  background-size: 140px 200px;
}

.pattern-peach {
  background-image: url("patterns/peach.svg");
  background-size: 160px 150px;
}

.pattern-tomato {
  background-image: url("patterns/tomato.svg");
  background-size: 170px 150px;
}

.pattern-pumpkin {
  background-image: url("patterns/pumpkin.svg");
  background-size: 180px 140px;
}

.pattern-sunflower {
  background-image: url("patterns/sunflower.svg");
  background-size: 160px 160px;
}

.pattern-wheat-dark {
  background-color: var(--green);
  background-image: url("patterns/wheat-light.svg");
  background-size: 140px 200px;
}

.crop-rule {
  display: flex;
  justify-content: center;
  padding: 1.4rem 1rem 0.4rem;
  background: var(--cream);
}

.portrait,
.thanks {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

@media (min-width: 840px) {
  .portrait,
  .thanks {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.portrait-frame img,
.thanks img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 24px 50px rgb(28 24 20 / 0.18);
}

.portrait-frame {
  margin: 0;
  transform: rotate(-1.4deg);
}

.portrait-frame figcaption,
.years figcaption,
.mosaic figcaption {
  margin-top: 0.55rem;
  font-size: 0.85rem;
  color: var(--mute);
}

.portrait-text h2,
.timeline h2,
.libby h2,
.thanks h2,
.in-season h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--green);
}

blockquote {
  margin: 1.4rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid var(--corn);
  font-family: var(--display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--green);
}

.years {
  display: grid;
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 2.4rem;
}

@media (min-width: 800px) {
  .years {
    grid-template-columns: 1.3fr 0.8fr 1.1fr;
    align-items: end;
  }
}

.years figure {
  margin: 0;
}

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

.years figure:first-child img,
.years figure:nth-child(3) img {
  aspect-ratio: 5 / 4;
}

.timeline {
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

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

@media (min-width: 800px) {
  .timeline ol {
    grid-template-columns: repeat(4, 1fr);
  }
}

.timeline li {
  background: var(--paper);
  padding: 1rem 1rem 1.2rem;
  border: 1px solid color-mix(in srgb, var(--wood) 22%, transparent);
}

.timeline time {
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--wood);
}

.timeline img {
  margin-top: 0.8rem;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  filter: sepia(0.18) contrast(1.05);
}

.in-season {
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.lead-copy {
  max-width: 36rem;
  color: var(--mute);
}

.season-grid {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .season-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.season-grid li {
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--wood) 16%, transparent);
  overflow: hidden;
}

.season-grid img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.season-grid strong,
.season-grid span {
  display: block;
  padding: 0 0.85rem;
}

.season-grid strong {
  padding-top: 0.7rem;
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--green);
}

.season-grid span {
  padding-bottom: 0.9rem;
  color: var(--mute);
  font-size: 0.9rem;
}

.mosaic {
  display: grid;
  gap: 0.7rem;
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

@media (min-width: 700px) {
  .mosaic {
    grid-template-columns: repeat(4, 1fr);
  }

  .span-2 {
    grid-column: span 2;
  }
}

.mosaic figure {
  margin: 0;
}

.mosaic img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.span-2 img {
  aspect-ratio: 16 / 9;
}

.libby {
  display: grid;
  gap: 0.8rem;
  padding-top: clamp(2rem, 6vw, 4rem);
  padding-bottom: clamp(2rem, 6vw, 4rem);
  color: var(--paper);
}

.libby .eyebrow {
  color: var(--corn);
}

.libby h2 {
  color: var(--paper);
}

@media (min-width: 800px) {
  .libby {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    align-items: end;
  }

  .libby div {
    align-self: center;
  }
}

.libby img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.libby img:nth-of-type(2) {
  aspect-ratio: 4 / 3;
}

.thanks {
  padding-bottom: 4rem;
}

.thanks img {
  transform: rotate(1.2deg);
}

.credit {
  font-size: 0.85rem;
  color: var(--mute);
}

footer {
  background: #140f0c;
  color: #efe4ce;
  text-align: center;
  padding: 2.5rem 1.2rem 3rem;
}

footer img {
  margin: 0 auto 1rem;
  width: 3.2rem;
  height: 3.2rem;
}

footer p {
  margin: 0.25rem 0;
}

footer a {
  color: var(--corn);
}

.fine {
  margin-top: 1.2rem !important;
  font-size: 0.8rem;
  color: #b7aa96;
}

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

@media (max-width: 700px) {
  .brand small {
    display: none;
  }

  .btn-phone {
    display: none;
  }

  .today-actions {
    grid-template-columns: 1fr;
  }

  .libby img:nth-of-type(3) {
    display: none;
  }
}
