:root {
  --chalk: #1A1A1A;
  --chalk-light: #2A2A2A;
  --forest: #2D5A3D;
  --forest-deep: #1E3F2B;
  --sage: #8BA888;
  --sage-light: #B5C9B0;
  --cream: #FFF8ED;
  --cream-warm: #F5EDDA;
  --linen: #EDE4D0;
  --wood: #8B6F4A;
  --wood-light: #C4A86A;
  --gold: #D4982A;
  --gold-bright: #E8A321;
  --terra: #C4723A;
  --white: #FFFFFF;
  --bark: #3D2B1F;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--chalk);
  overflow-x: hidden;
}

/* ── GRAIN TEXTURE OVERLAY ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%;
  z-index: 100;
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  background: var(--chalk);
  border-bottom: 1px solid rgba(139,111,74,0.2);
  transition: height 0.3s ease;
}

nav.scrolled {
  height: 62px;
}

.nav-logo {
  text-decoration: none;
  display: flex; align-items: center; gap: 12px;
}

.nav-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.nav-wordmark span {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--sage-light);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex; gap: 32px; list-style: none; align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--cream); }

.nav-cta {
  background: var(--gold);
  color: var(--chalk) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: all 0.2s !important;
}
.nav-cta:hover { background: var(--gold-bright) !important; transform: translateY(-1px); }

/* ── MOBILE NAV ── */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

.mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,26,26,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none;
  color: var(--cream); font-size: 2rem; cursor: pointer;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--chalk);
}

.hero-photo {
  position: absolute; inset: 0;
  background-image: url("../images/hero-produce.jpg");
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.35) saturate(0.8);
}

.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(26,26,26,0.6) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
  animation: heroFade 1.2s ease forwards;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Chalkboard-style decorative border */
.hero-frame {
  border: 1px solid rgba(196,167,106,0.25);
  padding: 48px 56px;
  position: relative;
}

.hero-frame::before, .hero-frame::after {
  content: '✦';
  position: absolute;
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0.6;
}
.hero-frame::before { top: -6px; left: 50%; transform: translateX(-50%); }
.hero-frame::after { bottom: -6px; left: 50%; transform: translateX(-50%); }

.hero-est {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  display: block;
  font-size: 0.85em;
  margin-top: 4px;
}

.hero-rule {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 24px auto;
  opacity: 0.5;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 36px;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--chalk);
  padding: 15px 34px;
  border-radius: 5px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.25s;
  border: none; cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,152,42,0.3); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 15px 34px;
  border-radius: 5px;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.25s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--sage); color: var(--sage-light); }

.hero-stats {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 48px;
  animation: heroFade 1.2s 0.4s ease forwards;
  opacity: 0;
}

.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hero-stat .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ── CHALKBOARD MARQUEE ── */
.marquee-strip {
  background: var(--chalk);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(139,111,74,0.15);
  border-bottom: 1px solid rgba(139,111,74,0.15);
}

.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  padding: 0 28px;
  letter-spacing: 0.02em;
}

.marquee-dot { color: var(--gold); margin: 0 4px; font-size: 0.6rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── PRODUCTS STRIP ── */
.products-strip {
  background: var(--cream-warm);
  padding: 48px 48px;
  border-bottom: 1px solid rgba(45,90,61,0.08);
}

.products-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.products-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--chalk);
  white-space: nowrap;
}

.products-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-chip {
  background: var(--white);
  border: 1px solid rgba(45,90,61,0.12);
  border-radius: 4px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--chalk);
  display: flex; align-items: center; gap: 6px;
  transition: all 0.2s;
}

.product-chip:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }

/* ── SHARED SECTION STYLES ── */
section { padding: 100px 48px; }

.section-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(45,90,61,0.07);
  border: 1px solid rgba(45,90,61,0.12);
  border-radius: 3px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--chalk);
}

.section-body {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #2D3D32;
  max-width: 580px;
}

/* ── ABOUT ── */
.about {
  background: var(--cream);
  position: relative;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-area {
  position: relative;
}

.about-photo-main {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(26,26,26,0.15);
  display: block;
}

.about-photo-detail {
  position: absolute;
  bottom: -30px; right: -20px;
  width: 55%;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(26,26,26,0.2);
  border: 4px solid var(--white);
}

.about-badge {
  position: absolute;
  top: -16px; left: -16px;
  background: var(--chalk);
  color: var(--cream);
  padding: 14px 18px;
  border-radius: 6px;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 8px 24px rgba(26,26,26,0.25);
  z-index: 2;
}

.about-badge small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 4px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.value-card {
  background: var(--white);
  border-radius: 6px;
  padding: 20px;
  border: 1px solid rgba(45,90,61,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(26,26,26,0.06); }

.value-icon { font-size: 1.6rem; margin-bottom: 10px; display: block; }
.value-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.05rem; color: var(--chalk); margin-bottom: 6px; }
.value-desc { font-size: 0.9rem; color: #3D5A48; line-height: 1.5; }

/* ── SATURDAY MARKET ── */
.market {
  background: var(--chalk);
  position: relative;
  overflow: hidden;
}

.market::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.market-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative; z-index: 1;
}

.market-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 56px;
  gap: 40px;
}

.market-header .section-title { color: var(--cream); }
.market-header .section-tag { color: var(--sage); background: rgba(139,168,136,0.1); border-color: rgba(139,168,136,0.2); }

.market-hours-badge {
  background: rgba(212,152,42,0.08);
  border: 1px solid rgba(212,152,42,0.2);
  border-radius: 8px;
  padding: 20px 28px;
  text-align: center;
  white-space: nowrap;
}

.market-hours-badge .day {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.market-hours-badge .time {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
}

.vendor-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}

.vendor-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 28px 24px;
  transition: all 0.3s;
  position: relative;
}

.vendor-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(139,168,136,0.2); transform: translateY(-3px); }

.vc-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.vc-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; color: var(--cream); margin-bottom: 8px; }
.vc-desc { font-size: 0.92rem; color: rgba(255,255,255,0.7); line-height: 1.65; }
.vc-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-light);
  padding: 4px 12px;
  background: rgba(139,168,136,0.15);
  border-radius: 3px;
}

.market-cta-bar {
  background: rgba(212,152,42,0.06);
  border: 1px solid rgba(212,152,42,0.15);
  border-radius: 10px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.mcta-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.mcta-text p { font-size: 1rem; color: rgba(255,255,255,0.7); }

/* ── GREENHOUSE ── */
.greenhouse { background: var(--cream); }

.greenhouse-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.gh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}

.gh-card {
  border-radius: 10px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gh-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(26,26,26,0.1); }

.gh-card.featured {
  background: var(--forest-deep);
  color: white;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 440px;
}

.gh-card.featured::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.gh-card.light { background: var(--white); border: 1px solid rgba(45,90,61,0.08); }

.gh-emoji { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.gh-card.featured .gh-emoji { font-size: 3.5rem; }

.gh-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.gh-card.featured .gh-card-title { font-size: 1.8rem; color: white; }

.gh-card-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #3D5A48;
}

.gh-card.featured .gh-card-desc { color: rgba(255,255,255,0.78); }

.gh-price {
  margin-top: 18px;
  display: inline-flex; align-items: baseline; gap: 4px;
}

.gh-price .amt {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.gh-price .per { font-size: 0.75rem; color: rgba(255,255,255,0.45); }

/* ── CONTACT ── */
.contact {
  background: var(--cream);
  position: relative;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.info-blocks { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }

.info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  width: 44px; height: 44px;
  border-radius: 6px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(45,90,61,0.08);
}

.info-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9AAA9E;
  margin-bottom: 3px;
}

.info-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--chalk);
  line-height: 1.4;
}
.info-value a { color: var(--chalk); text-decoration: none; }
.info-value a:hover { color: var(--forest); }

.info-sub {
  font-size: 0.88rem;
  color: #5A7A65;
  margin-top: 2px;
}

/* HOURS TABLE */
.hours-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px;
  border: 1px solid rgba(45,90,61,0.08);
}

.hours-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--chalk);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(45,90,61,0.06);
}
.hours-row:last-of-type { border-bottom: none; }

.hours-day { font-size: 0.95rem; font-weight: 500; color: var(--chalk); }
.hours-time { font-size: 0.95rem; color: #5A7A65; font-weight: 600; }

.hours-market-note {
  margin-top: 18px;
  background: rgba(212,152,42,0.08);
  border: 1px solid rgba(212,152,42,0.18);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #8A6A20;
}

/* MAP PLACEHOLDER */
.map-placeholder {
  margin-top: 24px;
  background: linear-gradient(135deg, #E8EDE9, #DCE5DE);
  border-radius: 10px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(45,90,61,0.08);
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  transition: all 0.2s;
}

.map-placeholder:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,26,26,0.08); }
.map-pin { font-size: 2rem; }
.map-label { font-size: 0.78rem; font-weight: 600; color: var(--forest); letter-spacing: 0.06em; }
.map-addr { font-size: 0.72rem; color: #4A6A55; }

/* ── FOOTER ── */
footer {
  background: var(--chalk);
  padding: 56px 48px 28px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--sage), var(--gold), var(--terra));
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 280px;
  margin-top: 12px;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
  color: rgba(255,255,255,0.4);
}
.social-link:hover { background: var(--forest); border-color: var(--forest); color: white; }

/* ── PAGE SECTIONS ── */
.page-section { display: none; }
.page-section.active { display: block; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  section { padding: 72px 24px; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-detail { position: relative; bottom: auto; right: auto; width: 80%; margin-top: -40px; margin-left: auto; }
  .vendor-cards { grid-template-columns: 1fr 1fr; }
  .gh-grid { grid-template-columns: 1fr; }
  .gh-card.featured { grid-row: span 1; min-height: 300px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-stats { gap: 28px; }
  .hero-frame { padding: 32px 24px; }
  .market-header { grid-template-columns: 1fr; }
  .products-strip { padding: 36px 24px; }
  .market-cta-bar { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .vendor-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; gap: 20px; }
  .hero-stat .num { font-size: 1.2rem; }
  footer { padding: 40px 24px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}