/* ============================================
   LUSH VALLEY FARM — main.css
   ============================================ */


/* === 1. VARIABLES ========================= */

:root {
  /* Colors */
  --bg:             #f7f5f0;
  --bg-secondary:   #eeeae0;
  --bg-card:        #ffffff;
  --text:           #26241e;
  --text-muted:     rgba(38, 36, 30, 0.55);
  --accent:         #4d7c3f;
  --accent-hover:   #3d6432;
  --accent-subtle:  rgba(77, 124, 63, 0.09);
  --border:         rgba(38, 36, 30, 0.10);
  --border-strong:  rgba(38, 36, 30, 0.20);
  --nav-bg:         rgba(247, 245, 240, 0.90);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md:  0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg:  0 8px 32px rgba(0, 0, 0, 0.10);

  /* Typography */
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Layout */
  --nav-height: 64px;
  --max-width:  1200px;
  --padding-x:  clamp(1.25rem, 5vw, 2.5rem);

  /* Shape */
  --radius:     8px;
  --radius-lg:  16px;
  --radius-full:9999px;

  /* Transitions */
  --transition: 0.2s ease;
}

[data-theme="dark"] {
  --bg:             #14120b;
  --bg-secondary:   #1c1a12;
  --bg-card:        #1f1d14;
  --text:           #edecea;
  --text-muted:     rgba(237, 236, 234, 0.50);
  --accent:         #7ab86a;
  --accent-hover:   #95cc84;
  --accent-subtle:  rgba(122, 184, 106, 0.10);
  --border:         rgba(237, 236, 234, 0.08);
  --border-strong:  rgba(237, 236, 234, 0.16);
  --nav-bg:         rgba(20, 18, 11, 0.90);
  --shadow-sm:  0 1px 3px rgba(0, 0, 0, 0.30);
  --shadow-md:  0 4px 16px rgba(0, 0, 0, 0.45);
  --shadow-lg:  0 8px 32px rgba(0, 0, 0, 0.55);
}


/* === 2. RESET & BASE ====================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background-color var(--transition), color var(--transition);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}


/* === 3. TYPOGRAPHY ======================== */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.25rem, 5vw, 4rem);   font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem);   font-weight: 600; }
h4 { font-size: 1.05rem;                        font-weight: 600; }

p {
  color: var(--text-muted);
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 58ch;
}


/* === 4. LAYOUT ============================ */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header p {
  margin-top: 0.75rem;
  max-width: 58ch;
}

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }


/* === 5. BUTTONS =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-sans);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  background-color: var(--bg-secondary);
}

.btn-ghost-white {
  color: rgba(255, 255, 255, 0.90);
  border-color: rgba(255, 255, 255, 0.40);
}

.btn-ghost-white:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.70);
}

.btn-lg {
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
}


/* === 6. NAVIGATION ======================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 30px;
  height: 30px;
  background: var(--accent);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: background var(--transition);
}

.nav-logo:hover .nav-logo-mark {
  background: var(--accent-hover);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: 1.25rem;
}

.nav-links a {
  padding: 0.4rem 0.8rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--accent-subtle);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
}

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
  flex-shrink: 0;
}

.theme-toggle:hover {
  color: var(--text);
  background: var(--bg-secondary);
}

.icon-sun  { display: none; }
.icon-moon { display: block; }
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

/* Hamburger */
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  color: var(--text);
  transition: background var(--transition);
  flex-shrink: 0;
}

.nav-hamburger:hover {
  background: var(--bg-secondary);
}

.hamburger-close { display: none; }
.nav-hamburger[aria-expanded="true"] .hamburger-open  { display: none; }
.nav-hamburger[aria-expanded="true"] .hamburger-close { display: block; }

/* Mobile drawer */
.nav-mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem var(--padding-x) 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  box-shadow: var(--shadow-lg);
}

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

.nav-mobile a {
  padding: 0.65rem 0.75rem;
  font-size: 1rem;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--text);
  background: var(--accent-subtle);
}

.nav-mobile-footer {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}


/* === 7. HERO (homepage) =================== */

.hero {
  position: relative;
  height: calc(100svh - var(--nav-height));
  min-height: 520px;
  background-color: #253820;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}

/* Dark gradient overlay — heaviest at bottom for text legibility */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 16, 8, 0.18) 0%,
    rgba(10, 16, 8, 0.25) 55%,
    rgba(10, 16, 8, 0.72) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(3rem, 7vh, 5.5rem);
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.75rem;
  max-width: none;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.25rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1.0;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
  max-width: 44ch;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--padding-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.40);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
}

.hero-scroll svg {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}


/* === 8. PAGE HERO (inner pages) =========== */

.page-hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.page-hero .lead {
  max-width: 55ch;
}


/* === 9. INTRO SECTION ===================== */

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.intro-text .section-header {
  margin-bottom: 1.25rem;
}

.intro-text p {
  margin-bottom: 1rem;
  font-size: 1.02rem;
  max-width: 52ch;
}

.intro-text p:last-of-type {
  margin-bottom: 2rem;
}

.intro-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-secondary);
  box-shadow: var(--shadow-lg);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}


/* === 10. VALUES / PILLARS ================= */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: none;
}


/* === 11. PRODUCE CARDS ==================== */

.produce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.produce-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.produce-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.produce-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.produce-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.produce-card:hover .produce-card-image img {
  transform: scale(1.04);
}

/* Gradient placeholders when images are missing */
.ph-greens  { background: linear-gradient(140deg, #1e4d2b 0%, #3a7d52 100%); }
.ph-roots   { background: linear-gradient(140deg, #6b3a1e 0%, #a05a30 100%); }
.ph-squash  { background: linear-gradient(140deg, #6b5a1e 0%, #b09030 100%); }
.ph-herbs   { background: linear-gradient(140deg, #1e3d2b 0%, #2d6b4a 100%); }
.ph-berries { background: linear-gradient(140deg, #4d1e3a 0%, #8a3060 100%); }
.ph-brassica{ background: linear-gradient(140deg, #1e3d4d 0%, #2d6080 100%); }

.produce-card-body {
  padding: 1.1rem 1.4rem 1.4rem;
}

.produce-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-subtle);
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.6rem;
}

.produce-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.produce-card-body p {
  font-size: 0.875rem;
  line-height: 1.55;
  max-width: none;
}


/* === 12. ORDER / CTA SECTION ============== */

.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
}

.step h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.875rem;
  max-width: none;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* === 13. CONTACT PAGE ===================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-info p {
  margin-bottom: 2rem;
  max-width: 38ch;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.contact-item-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-subtle);
  color: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-item-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-item-text span {
  font-size: 0.95rem;
  color: var(--text);
}

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group:last-of-type {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 0.6rem 0.9rem;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}

textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: none;
}


/* === 14. ABOUT PAGE ======================= */

.about-story {
  max-width: 720px;
}

.about-story p {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  max-width: none;
  line-height: 1.75;
}

.about-image-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.about-image-grid .img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-secondary);
}

.about-image-grid .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-grid .img-wrap:first-child {
  grid-row: span 2;
  min-height: 400px;
}

.about-image-grid .img-wrap:not(:first-child) {
  min-height: 185px;
}

/* Placeholder for about images */
.ph-about-1 { background: linear-gradient(150deg, #1e3a1e 0%, #3d6b3a 100%); }
.ph-about-2 { background: linear-gradient(150deg, #2d4a1e 0%, #5a7a30 100%); }
.ph-about-3 { background: linear-gradient(150deg, #3a2d1e 0%, #6b5030 100%); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: var(--bg-secondary);
  margin: 0 auto 1rem;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.team-card p {
  font-size: 0.85rem;
  max-width: none;
}


/* === 15. FOOTER =========================== */

footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  max-width: 28ch;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-col address {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: none;
}


/* === 16. RESPONSIVE ======================= */

@media (min-width: 769px) {
  .nav-hamburger { display: none; }
  .nav-mobile    { display: none !important; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions .btn { display: none; }

  .nav-hamburger { display: flex; }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-image {
    order: -1;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .order-steps {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image-grid {
    grid-template-columns: 1fr;
  }

  .about-image-grid .img-wrap:first-child {
    grid-row: span 1;
    min-height: 260px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .produce-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}
