:root {
  --bg: #f6f0e3;
  --bg-soft: #fff9ef;
  --surface: rgba(255, 252, 245, 0.78);
  --surface-strong: #fffdf7;
  --text: #213329;
  --muted: #5d6d62;
  --line: rgba(33, 51, 41, 0.1);
  --primary: #2f6b45;
  --primary-dark: #214c31;
  --accent: #d9804a;
  --accent-soft: #efcfb3;
  --lime: #c9dd8c;
  --shadow: 0 18px 50px rgba(49, 72, 55, 0.12);
  --shadow-soft: 0 10px 30px rgba(49, 72, 55, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
  --serif: "Fraunces", "Georgia", serif;
  --sans: "Space Grotesk", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 221, 140, 0.38), transparent 32%),
    radial-gradient(circle at top right, rgba(217, 128, 74, 0.18), transparent 28%),
    linear-gradient(180deg, #fbf6eb 0%, #f4eddf 52%, #fffaf0 100%);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 18px 0 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(250, 245, 234, 0.84);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(145deg, #396f47, #7f9f46);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.32);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu a {
  color: var(--muted);
  font-size: 0.96rem;
  transition: color 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--primary);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  padding: 48px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(201, 221, 140, 0.38);
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.25rem, 8vw, 6.4rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 60ch;
  margin-top: 24px;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #2f6b45, #3e7a4f);
  box-shadow: 0 16px 30px rgba(47, 107, 69, 0.18);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.hero-highlights article,
.owner-card,
.product-card,
.reason-card,
.contact-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.hero-highlights strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.showcase-card {
  height: 100%;
  min-height: 650px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 242, 230, 0.9)),
    linear-gradient(135deg, rgba(201, 221, 140, 0.34), rgba(217, 128, 74, 0.12));
}

.showcase-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  background: var(--primary);
}

.pill.soft {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
}

.produce-art {
  position: relative;
  min-height: 420px;
  margin: 0;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.78), transparent 34%),
    linear-gradient(180deg, rgba(218, 191, 161, 0.12), rgba(230, 210, 185, 0.28));
  overflow: hidden;
  isolation: isolate;
}

.produce-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 34, 28, 0.03), transparent 28%, transparent 64%, rgba(24, 34, 28, 0.09)),
    linear-gradient(135deg, rgba(255, 248, 235, 0.08), transparent 38%);
  pointer-events: none;
  z-index: 1;
}

.produce-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.02) contrast(1.01);
}

.showcase-visual {
  position: relative;
  margin: 34px 0 28px;
  padding: 18px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.74), rgba(250, 241, 227, 0.54));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 18px 40px rgba(66, 72, 49, 0.08);
}

.showcase-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.showcase-copy p {
  margin-top: 16px;
  max-width: 38ch;
}

.info-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 252, 247, 0.88);
  box-shadow: 0 16px 34px rgba(33, 51, 41, 0.14);
  backdrop-filter: blur(18px);
}

.chip-left {
  left: 34px;
  bottom: 34px;
}

.chip-right {
  right: 34px;
  top: 34px;
}

.chip-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(201, 221, 140, 0.36);
}

.chip-icon svg,
.product-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.chip-icon svg {
  fill: var(--primary);
  stroke: none;
}

.info-chip strong,
.hours-row strong,
.contact-card a {
  display: block;
  color: var(--text);
}

.info-chip span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

.intro-band {
  padding-top: 0;
}

.intro-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 241, 0.68);
  box-shadow: var(--shadow-soft);
}

.intro-band p {
  color: var(--text);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.text-link {
  font-weight: 700;
  color: var(--primary-dark);
}

.split-layout,
.hours-layout,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.section-header,
.section-heading {
  max-width: 760px;
}

.section-header p,
.section-heading p {
  margin-top: 20px;
  max-width: 62ch;
}

.about-content {
  display: grid;
  gap: 22px;
}

.owner-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.owner-badge {
  display: grid;
  place-items: center;
  min-width: 84px;
  height: 84px;
  border-radius: 24px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(145deg, #d9804a, #d2a347);
}

.products-grid,
.reasons-grid {
  display: grid;
  gap: 22px;
  margin-top: 38px;
}

.products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reasons-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card,
.reason-card {
  position: relative;
  overflow: hidden;
}

.product-card::after,
.reason-card::after {
  content: "";
  position: absolute;
  inset: auto -36px -46px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201, 221, 140, 0.26), transparent 70%);
}

.product-icon {
  width: 62px;
  height: 62px;
  padding: 16px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--primary);
  background: rgba(201, 221, 140, 0.38);
}

.reason-card span:first-child {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hours-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 246, 0.76);
  box-shadow: var(--shadow);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.hours-row:last-child {
  border-bottom: 0;
}

.hours-row span {
  color: var(--muted);
}

.is-closed strong {
  color: var(--accent);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-card a {
  font-size: 1.28rem;
  font-weight: 700;
}

.contact-actions {
  margin-top: 24px;
}

.map-wrapper {
  min-height: 100%;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-xl);
  background: rgba(255, 252, 246, 0.78);
  box-shadow: var(--shadow);
}

.map-wrapper iframe {
  width: 100%;
  min-height: 480px;
  border: 0;
  border-radius: calc(var(--radius-xl) - 8px);
}

.site-footer {
  padding: 0 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  gap: 20px;
  align-items: center;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  background: rgba(36, 54, 43, 0.96);
  box-shadow: var(--shadow);
}

.footer-grid strong,
.footer-links a,
.footer-note {
  color: #fff;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 280ms;
}

@media (max-width: 1080px) {
  .nav {
    border-radius: 28px;
  }

  .hero-grid,
  .split-layout,
  .hours-layout,
  .contact-grid,
  .footer-grid,
  .intro-band-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .showcase-card {
    min-height: 560px;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .section {
    padding: 78px 0;
  }

  .site-header {
    padding-top: 12px;
  }

  .nav {
    position: relative;
    align-items: flex-start;
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 249, 239, 0.96);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-highlights,
  .contact-cards,
  .reasons-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    min-height: 520px;
    padding: 22px;
  }

  .showcase-visual {
    padding: 14px;
  }

  .produce-art {
    min-height: 300px;
  }

  .info-chip {
    position: static;
    min-width: 0;
    margin-top: 14px;
  }

  .hours-card {
    padding: 24px;
  }

  .hours-row {
    padding: 16px 0;
  }

  .map-wrapper iframe {
    min-height: 380px;
  }

  .footer-grid {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 24px, 100%);
    --radius-xl: 24px;
    --radius-lg: 20px;
    --radius-md: 16px;
  }

  .nav {
    padding: 12px 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 0.82rem;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-text,
  p {
    font-size: 0.98rem;
  }

  .button {
    width: 100%;
  }

  .owner-card {
    flex-direction: column;
  }

  .owner-badge {
    width: 84px;
  }

  .showcase-card {
    min-height: auto;
  }

  .showcase-visual {
    padding: 12px;
    border-radius: 24px;
  }

  .produce-art {
    min-height: 260px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
