:root {
  --accent: #b21e35;
  --accent-light: #d6455d;
  --bg: #f8f4ef;
  --text: #2f2d2a;
  --muted: #6d6a65;
  --card-bg: #ffffff;
  --sky: #dde8f5;
  --field: #c7d4a3;
  font-size: 16px;
}

html {
  scrollbar-gutter: stable;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--bg);
  box-shadow: 0 2px 12px rgba(47, 45, 42, 0.08);
}

.site-main {
  overflow-y: auto;
  padding-bottom: 2rem;
  min-height: 0;
}

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

a:hover {
  text-decoration: underline;
}

h1,
 h2,
 h3 {
  font-family: "Source Serif 4", Georgia, serif;
  margin: 0;
  color: var(--text);
}

p {
  margin: 0 0 1rem;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 80vh;
  padding: 4rem 1.5rem;
  text-align: center;
  background: radial-gradient(circle at top left, rgba(210, 237, 254, 0.8), transparent 60%),
    radial-gradient(circle at bottom right, rgba(199, 212, 163, 0.9), transparent 55%),
    linear-gradient(135deg, #fdf9f1 0%, #f1f6f9 100%);
}

.hero__content {
  max-width: 38rem;
}

.pretitle {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  letter-spacing: 0.04em;
}

.tagline {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.85rem 2.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 20px rgba(178, 30, 53, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  background: var(--accent-light);
  box-shadow: 0 14px 24px rgba(178, 30, 53, 0.25);
  text-decoration: none;
}

.section {
  padding: 4rem 1.5rem;
}

.tabs-content {
  padding-top: 3rem;
}

.section__content,
.section__header {
  max-width: 60rem;
  margin: 0 auto;
}

.section__header h2,
.section__content h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.section__content p:last-child {
  margin-bottom: 0;
}

.about {
  background: #fff;
}

.produce {
  background: var(--sky);
}

.produce__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.produce__card {
  padding: 2rem;
  border-radius: 16px;
  background: var(--card-bg);
  box-shadow: 0 12px 24px rgba(47, 45, 42, 0.08);
}

.produce__card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.produce__card ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.visit {
  background: #fff;
}

.visit__details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.link {
  color: var(--accent);
  font-weight: 600;
}

.contact {
  background: linear-gradient(160deg, rgba(178, 30, 53, 0.08), rgba(199, 212, 163, 0.25));
  text-align: center;
}

.contact .cta {
  margin-top: 1rem;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  padding: 2rem 1.5rem;
  background: #202020;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
}

.footer__link {
  color: #fff;
  font-weight: 600;
}

.footer__link:hover {
  text-decoration: underline;
}

.tabs {
  background: linear-gradient(135deg, rgba(221, 232, 245, 0.6), rgba(199, 212, 163, 0.3));
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 18px 30px rgba(47, 45, 42, 0.12);
}

.tabs__inner {
  max-width: 56rem;
  margin: 0 auto;
}

.tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(47, 45, 42, 0.1);
  padding-bottom: 0.75rem;
}

.tabs__tab {
  border: none;
  background: transparent;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.tabs__tab:hover {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
}

.tabs__tab--active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(178, 30, 53, 0.2);
  transform: translateY(-1px);
}

.tabs__panels {
  margin-top: 1.75rem;
}

.tabs__panel {
  display: none;
}

.tabs__panel--active {
  display: block;
}

.tabs__panel h2 {
  margin-bottom: 0.75rem;
}

.tabs__panel p:last-child {
  margin-bottom: 0;
}

.home-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.home-panel__text h2 {
  margin-bottom: 0.75rem;
}

.home-panel__image {
  max-width: 460px;
  margin: 0 auto;
}

.home-cherries-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
}

.home-cherries-row__note {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 12px 24px rgba(47, 45, 42, 0.08);
}

.shop-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.shop-highlight__note {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 12px 24px rgba(47, 45, 42, 0.08);
  text-align: center;
  font-weight: 600;
}

.shop-highlight__note p {
  margin: 0;
}

.tabs__image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tabs__image-row .tabs__image {
  flex: 1 1 calc(50% - 0.5rem);
  max-width: none;
}

.tabs__image {
  display: block;
  width: 100%;
  max-width: 480px;
  max-height: 280px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 0 1.25rem;
  box-shadow: 0 12px 24px rgba(47, 45, 42, 0.18);
}

.tabs__image--tall {
  max-height: none;
}

@media (max-width: 600px) {
  .section {
    padding: 3rem 1.25rem;
  }

  .hero {
    padding: 3.5rem 1.25rem 4.5rem;
  }

  .produce__card {
    padding: 1.75rem;
  }

  .tabs {
    padding: 2rem 1.5rem;
  }

  .home-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-cherries-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .shop-highlight {
    grid-template-columns: minmax(0, 1fr);
  }
}
