:root {
  color-scheme: light;
  --bg: #fffefb;
  --surface: #ffffff;
  --surface-soft: #e8ebe6;
  --ink: #18200f;
  --muted: #68705e;
  --line: #e3e2d7;
  --accent: #9fe870;
  --accent-strong: #214f24;
  --accent-soft: #e2f6d5;
  --harvest: #f49f1c;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(24, 32, 15, .12);
  --font: ui-sans-serif, "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  --container: 1180px;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(159, 232, 112, .22), transparent 32rem),
    radial-gradient(circle at 88% 16%, rgba(244, 159, 28, .14), transparent 30rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin: 0; }
p { color: var(--muted); }
h1, h2, h3 { color: var(--ink); letter-spacing: -.035em; line-height: 1.02; }
h1 { max-width: 12ch; font-size: clamp(3.1rem, 6.8vw, 5.9rem); }
h2 { font-size: clamp(2rem, 4.8vw, 4.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); }

.shell { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: clamp(72px, 10vw, 132px) 0; }
.narrow { max-width: 780px; margin-bottom: 34px; }
.narrow p { max-width: 58ch; margin-top: 14px; font-size: 1.08rem; }

.skip-link {
  position: absolute;
  top: -60px;
  left: 18px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-strong);
  color: var(--surface);
}
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { display: grid; gap: 2px; }
.brand-mark { font-size: 1.15rem; font-weight: 760; letter-spacing: -.035em; color: var(--ink); }
.brand-sub { color: var(--muted); font-size: .74rem; }
.nav-main { justify-self: center; display: flex; align-items: center; gap: 26px; }
.nav-main a {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 720;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-main a:hover { color: var(--ink); }
.phone-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 760;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.phone-link {
  padding: 0 18px;
  color: var(--surface);
  background: var(--accent-strong);
}
.phone-link:hover,
.button:hover { transform: translateY(-1px); }
.phone-link:active,
.button:active { transform: translateY(1px) scale(.99); }
.mobile-toggle { display: none; }

.hero { padding: clamp(44px, 7vw, 84px) 0 clamp(60px, 8vw, 96px); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy p {
  max-width: 47ch;
  margin-top: 22px;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { padding: 0 24px; border: 1px solid transparent; white-space: nowrap; }
.button.primary { background: var(--accent-strong); color: var(--surface); }
.button.secondary { border-color: var(--accent-strong); color: var(--accent-strong); background: transparent; }
.hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 12px);
  box-shadow: var(--shadow);
  background: var(--surface-soft);
  transform: rotate(.7deg);
}
.hero-media img { aspect-ratio: 5 / 4; object-fit: cover; filter: saturate(.95) contrast(.98); }

.intro-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}
.intro-card {
  min-height: 360px;
  display: flex;
  align-items: end;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(33, 79, 36, .9), rgba(244, 159, 28, .42)),
    url("assets/produce-store-hero.png") center / cover;
  box-shadow: var(--shadow);
}
.intro-card p { max-width: 24ch; color: #fffefb; font-size: clamp(1.45rem, 3vw, 2.6rem); line-height: 1.05; letter-spacing: -.04em; }
.intro-text { padding-top: 10px; }
.intro-text p { max-width: 62ch; margin-top: 18px; font-size: 1.08rem; }

.service-layout {
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  grid-template-areas:
    "large image"
    "small image"
    "small2 image";
  gap: 18px;
}
.service-layout article,
.service-layout figure,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.service-layout article { padding: clamp(24px, 4vw, 42px); }
.service-layout article p { margin-top: 12px; max-width: 44ch; }
.service-large { grid-area: large; min-height: 240px; display: flex; flex-direction: column; justify-content: end; background: var(--accent-soft) !important; }
.service-layout article:nth-of-type(2) { grid-area: small; }
.service-layout article:nth-of-type(3) { grid-area: small2; }
.service-layout figure { grid-area: image; margin: 0; overflow: hidden; min-height: 100%; }
.service-layout figure img { height: 100%; object-fit: cover; filter: saturate(.94); }

.standards { background: color-mix(in srgb, var(--surface-soft) 72%, transparent); }
.standards-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.standards-grid p { margin-top: 18px; max-width: 52ch; }
.standards-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.standards-list li {
  display: grid;
  grid-template-columns: minmax(150px, .45fr) 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.standards-list strong { font-size: 1.08rem; }
.standards-list span { color: var(--muted); }

.appointment-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(32px, 5vw, 70px);
  padding: clamp(28px, 5vw, 58px);
  border-radius: calc(var(--radius) + 8px);
  background: var(--accent-strong);
  color: var(--surface);
}
.appointment-panel h2,
.appointment-panel p { color: var(--surface); }
.appointment-panel p { opacity: .82; margin-top: 14px; }
.appointment-panel ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.appointment-panel li {
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--surface) 24%, transparent);
  border-radius: var(--radius);
}
.appointment-panel span { font-weight: 760; }

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(28px, 5vw, 72px);
}
.faq-list { display: grid; gap: 10px; }
details,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
summary,
.faq-button {
  cursor: pointer;
  padding: 20px 22px;
  font: inherit;
  font-weight: 760;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
}
.faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq-icon { color: var(--muted); font-size: .82rem; }
details p,
.faq-item p { padding: 0 22px 22px; }

.contact { padding-top: 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .95fr .95fr;
  gap: 18px;
  align-items: stretch;
}
.contact-grid > div:first-child { padding-right: 26px; }
.contact-grid > div:first-child p { margin-top: 14px; max-width: 42ch; }
.contact-card { padding: 26px; }
.contact-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: .82rem;
}
.contact-card a { color: var(--accent-strong); font-weight: 760; }

.site-footer {
  padding: 54px 0 28px;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 74%, transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .55fr .65fr 1.2fr;
  gap: 32px;
}
.footer-grid p { margin-top: 10px; font-size: .92rem; }
.footer-grid nav { display: grid; align-content: start; gap: 10px; }
.footer-grid a { color: var(--muted); }
.footer-grid a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .86rem;
}

.legal-content {
  max-width: 830px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.legal-content h2 {
  margin-top: 30px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-top: 12px; }
.legal-content a { color: var(--accent-strong); font-weight: 760; }

.motion-ready .hero-copy {
  animation: heroCopyIn .82s var(--motion-ease) .06s both;
}
.motion-ready .hero-media {
  animation: heroMediaIn .95s var(--motion-ease) .14s both;
}
.motion-ready .hero-media img {
  animation: imageDrift 16s ease-in-out .9s infinite alternate;
}

@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroMediaIn {
  from { opacity: 0; transform: translateX(28px) rotate(.7deg) scale(.985); }
  to { opacity: 1; transform: translateX(0) rotate(.7deg) scale(1); }
}
@keyframes imageDrift {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.035) translate3d(-1%, 1%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 900px) {
  .header-inner { grid-template-columns: auto auto; }
  .phone-link { display: none; }
  .mobile-toggle {
    display: inline-grid;
    gap: 4px;
    justify-self: end;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--ink);
  }
  .mobile-toggle span { display: block; width: 18px; height: 2px; background: currentColor; border-radius: 99px; }
  .nav-main {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }
  .nav-main.open { display: grid; justify-items: start; gap: 14px; }
  .hero-grid,
  .intro-grid,
  .standards-grid,
  .appointment-panel,
  .faq-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  h1 { max-width: 12ch; }
  .hero-media { transform: none; }
  .service-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "large" "small" "small2" "image";
  }
  .service-layout figure img { height: auto; aspect-ratio: 4 / 3; }
  .standards-list li { grid-template-columns: 1fr; gap: 6px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, var(--container)); }
  .section { padding: 64px 0; }
  .hero { padding-top: 34px; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-actions { width: 100%; }
  .button { width: 100%; }
  .intro-card { min-height: 280px; }
  .appointment-panel { padding: 24px; }
}
