/* ==========================================================================
   Ackerfreude – Production Site (Design C: Story-Driven Scroll)
   ========================================================================== */

/* --- Aquavit Self-Hosted Font (placeholder until purchased) --- */
@font-face {
  font-family: 'Aquavit';
  src: url('./fonts/font.woff2') format('woff2'),
       url('./fonts/font.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* --- Open Sans Self-Hosted --- */
@font-face {
  font-family: 'Open Sans';
  src: url('./fonts/open-sans-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('./fonts/open-sans-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('./fonts/open-sans-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('./fonts/open-sans-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: #2D2D2D;
  background: #FAF8F3;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* --- Screen-reader only (visually hidden) --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: #006D57;
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 1000;
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* --- Focus Visible --- */
:focus-visible {
  outline: 3px solid #006D57;
  outline-offset: 2px;
}

/* --- Headings --- */
h1, h2, h3, h4 {
  font-family: 'Aquavit', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}


/* ==========================================================================
   STICKY HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.site-header.visible {
  transform: translateY(0);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-inner nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-wordmark {
  font-family: 'Aquavit', Georgia, serif;
  font-size: 22px;
  color: #006D57;
}

.header-logout {
  font-size: 13px;
  color: #888;
  transition: color 0.2s;
}

.header-logout:hover {
  color: #006D57;
}

/* --- Hamburger Toggle --- */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #006D57;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Navigation Overlay --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: #006D57;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 480px;
  padding: 0 24px;
}

.nav-overlay-inner a {
  display: block;
  width: 100%;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-family: 'Aquavit', Georgia, serif;
  font-size: 28px;
  color: #fff;
  text-align: center;
  transition: color 0.2s;
}

.nav-overlay-inner a:first-child {
  border-top: 1px solid rgba(255,255,255,0.15);
}

.nav-overlay-inner a:hover,
.nav-overlay-inner a:active {
  color: #FFFF82;
}

.nav-sub {
  display: block;
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

.nav-overlay-inner a:hover .nav-sub,
.nav-overlay-inner a:active .nav-sub {
  color: rgba(255,255,130,0.7);
}

.nav-overlay-logout {
  margin-top: 40px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.nav-overlay-logout:hover {
  color: #fff;
}

.header-cta {
  display: inline-block;
  background: #FF6245;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 28px;
  border-radius: 999px;
  min-width: 48px;
  min-height: 48px;
  line-height: 28px;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}

.header-cta:hover {
  background: #e0543a;
  transform: scale(1.03);
}


/* ==========================================================================
   S1 HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('./img/hero-green-tomato.webp') center/cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}

.hero-logo {
  width: 65vw;
  height: auto;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.35));
}

.hero-title {
  font-size: clamp(48px, 8vw, 72px);
  color: #fff;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

.hero-subtitle {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(20px, 4vw, 38px);
  font-weight: 700;
  color: #FFFF82;
  margin-top: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
}

/* Hero Tagline – bottom left */
.hero-tagline {
  position: absolute;
  bottom: 40px;
  left: 64px;
  z-index: 1;
  color: #FFFF82;
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  font-style: italic;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  line-height: 1.6;
  max-width: 380px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.2s;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-line {
  display: block;
  width: 2px;
  height: 48px;
  background: #fff;
  animation: pulse-line 2s ease-in-out infinite;
}

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

@keyframes pulse-line {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}


/* ==========================================================================
   S2 INTRO
   ========================================================================== */
.intro {
  background: #FFFF82;
  padding: 96px 24px;
}

.intro-inner {
  max-width: 680px;
  margin: 0 auto;
}

.intro-heading {
  font-size: clamp(32px, 5vw, 48px);
  color: #006D57;
  margin-bottom: 32px;
}

.intro p {
  margin-bottom: 20px;
  color: #2D2D2D;
}

.pull-quote {
  border-left: 4px solid #FF6245;
  padding: 16px 0 16px 24px;
  margin: 32px 0 0;
}

.pull-quote p {
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  color: #006D57;
  margin-bottom: 0;
}


/* ==========================================================================
   S3 PHILOSOPHY – PARALLAX
   ========================================================================== */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  background: url('./img/golden-sunset.webp') center/cover no-repeat;
  background-attachment: fixed;
  z-index: 0;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,109,87,0.65);
  z-index: 1;
}

.philosophy-content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 96px 24px;
  color: #fff;
}

.philosophy-content h2 {
  font-size: clamp(28px, 4.5vw, 42px);
  color: #FFFF82;
  margin-bottom: 40px;
}

.philosophy-body {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.philosophy-text {
  flex: 1;
}

.philosophy-text p {
  margin-bottom: 20px;
}

.philosophy-images {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.philosophy-images img {
  border-radius: 8px;
}


/* ==========================================================================
   S4 PRODUCT
   ========================================================================== */
.product {
  background: #fff;
  padding: 96px 24px;
}

.product-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.product-images {
  flex: 0 0 55%;
  position: relative;
}

.product-img {
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.product-img-1 {
  transform: rotate(-2deg);
}

.product-img-2 {
  margin-top: -40px;
  margin-left: 40px;
  transform: rotate(1.5deg);
  position: relative;
  z-index: 1;
}

.product-text {
  flex: 1;
}

.product-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: #006D57;
  margin-bottom: 24px;
}

.product-text > p {
  margin-bottom: 20px;
}

.pricing-card {
  background: #FAF8F3;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}

.pricing-card h3 {
  font-size: 24px;
  color: #006D57;
  margin-bottom: 8px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #FF6245;
}

.price span {
  font-size: 16px;
  font-weight: 500;
  color: #2D2D2D;
}

.price-alt {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

.extras-box {
  background: #FFFF82;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}

.extras-box h3 {
  font-size: 22px;
  color: #006D57;
  margin-bottom: 12px;
}

.extras-box li {
  margin-bottom: 8px;
}

/* Pricing Badge & Highlight */
.pricing-card-highlight {
  border: 2px solid #006D57;
  position: relative;
}

.pricing-badge {
  display: inline-block;
  background: #006D57;
  color: #fff;
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

/* Disco Highlight */
.disco-highlight {
  background: #FF6245;
  color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  margin-top: 4px;
}

.disco-highlight p {
  font-weight: 700;
  font-size: 17px;
  margin: 0;
}


/* ==========================================================================
   S5 HOW IT WORKS
   ========================================================================== */
.how-it-works {
  background: #006D57;
  color: #fff;
  padding: 96px 24px;
}

.how-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.how-inner > h2 {
  font-size: clamp(28px, 4.5vw, 42px);
  color: #FFFF82;
  margin-bottom: 56px;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.step {
  flex: 0 1 220px;
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FFFF82;
  color: #006D57;
  font-family: 'Aquavit', Georgia, serif;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #fff;
}

.step p {
  font-size: 15px;
  opacity: 0.9;
}

.step-connector {
  flex: 0 0 48px;
  height: 2px;
  border-top: 2px dashed rgba(255,255,255,0.4);
  margin-top: 28px;
  align-self: flex-start;
}

.stations {
  text-align: left;
  margin-bottom: 48px;
}

.stations h3 {
  font-size: 28px;
  color: #FFFF82;
  margin-bottom: 32px;
  text-align: center;
}

.station-group {
  margin-bottom: 24px;
}

.station-group h4 {
  font-size: 20px;
  color: #FFFF82;
  margin-bottom: 8px;
}

.station-group ul {
  padding-left: 0;
}

.station-group li {
  padding: 6px 0;
  font-size: 15px;
  opacity: 0.95;
}

.station-group li em {
  font-style: italic;
  opacity: 0.8;
}

.deadline {
  font-size: 22px;
  font-weight: 700;
  color: #FFFF82;
  text-align: center;
}


/* ==========================================================================
   S6 FARMS
   ========================================================================== */
.farms {
  background: #fff;
  padding: 96px 24px;
}

.farms-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.farms-inner > h2 {
  font-size: clamp(28px, 4.5vw, 42px);
  color: #006D57;
  text-align: center;
  margin-bottom: 56px;
}

.farms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.farm-card {
  text-align: center;
}

.farm-img-wrap {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  transition: transform 0.3s ease;
}

.farm-card:hover .farm-img-wrap {
  transform: scale(1.05);
}

.farm-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.farm-img-wrap img[src*="geese"] {
  object-position: center 25%;
}

.farm-card h3 {
  font-size: 24px;
  color: #006D57;
  margin-bottom: 8px;
}

.farm-card p {
  margin-bottom: 12px;
  color: #444;
}

.farm-link {
  color: #FF6245;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.farm-link:hover {
  color: #d14a2d;
}


/* ==========================================================================
   S7 MANIFESTO – PARALLAX
   ========================================================================== */
.manifesto-bg {
  background-image: url('./img/farm-landscape.webp');
}

.manifesto-overlay {
  background: rgba(34,34,34,0.7);
}

.manifesto-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 96px 24px;
  color: #fff;
}

.manifesto-content h2 {
  font-size: clamp(28px, 4.5vw, 44px);
  color: #FFFF82;
  margin-bottom: 32px;
}

.manifesto-content > p {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.values-list {
  margin-bottom: 48px;
}

.value-item {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.value-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Aquavit', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #FFFF82;
  text-align: left;
  line-height: 1.3;
}

.value-header:hover {
  opacity: 0.85;
}

.value-toggle {
  flex-shrink: 0;
  font-size: 24px;
  margin-left: 16px;
  transition: transform 0.3s ease;
  font-family: 'Open Sans', sans-serif;
  line-height: 1;
}

.value-header[aria-expanded="true"] .value-toggle {
  transform: rotate(45deg);
}

.value-body {
  overflow: hidden;
  max-height: 300px;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  opacity: 1;
  padding-bottom: 16px;
}

.value-body[hidden] {
  display: block;
  max-height: 0;
  opacity: 0;
  padding-bottom: 0;
  pointer-events: none;
}

.value-body p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

.manifesto-photo {
  margin-top: 48px;
}

.manifesto-photo img {
  border-radius: 8px;
  width: 100%;
}

.manifesto-photo figcaption {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 12px;
  text-align: center;
}


/* ==========================================================================
   S8 ORDER CTA
   ========================================================================== */
.order-cta {
  background: #FF6245;
  color: #fff;
  padding: 96px 24px;
  text-align: center;
}

.order-inner {
  max-width: 680px;
  margin: 0 auto;
}

.order-inner h2 {
  font-size: clamp(32px, 5vw, 44px);
  margin-bottom: 40px;
}

.order-download {
  display: inline-block;
  background: #fff;
  color: #FF6245;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 40px;
  border-radius: 8px;
  min-height: 48px;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 40px;
}

.order-download:hover {
  background: #FFFF82;
  color: #006D57;
}

.order-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.order-buttons .order-download {
  margin-bottom: 0;
}

.order-contact {
  font-size: 16px;
  line-height: 2;
}

.order-contact a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.order-contact a:hover {
  color: #FFFF82;
}


/* ==========================================================================
   FLOATING BOTTOM BAR
   ========================================================================== */
.floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #006D57;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.floating-bar.visible {
  transform: translateY(0);
}

.floating-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}

.floating-bar-text {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}

.floating-bar-cta {
  display: inline-block;
  background: #FF6245;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 28px;
  border-radius: 999px;
  min-width: 48px;
  min-height: 48px;
  line-height: 28px;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}

.floating-bar-cta:hover {
  background: #e0543a;
  transform: scale(1.03);
}


/* ==========================================================================
   S9 FOOTER
   ========================================================================== */
.site-footer {
  background: #222;
  color: #fff;
  padding: 48px 24px;
}

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

.supporter {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.supporter a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s;
}

.supporter a:hover {
  opacity: 0.8;
}

.supporter span {
  font-size: 13px;
  opacity: 0.5;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.supporter img {
  opacity: 0.7;
  transition: opacity 0.2s;
}

.supporter a:hover img {
  opacity: 1;
}

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

.footer-impressum,
.footer-datenschutz {
  font-size: 14px;
  opacity: 0.7;
}

.footer-impressum a,
.footer-datenschutz a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.footer-impressum a:hover,
.footer-datenschutz a:hover {
  opacity: 1;
}

.footer-copy {
  font-size: 14px;
  opacity: 0.5;
}


/* ==========================================================================
   FADE-UP ANIMATION
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-title,
  .hero-subtitle,
  .hero-logo,
  .hero-tagline {
    opacity: 1;
    transform: none;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }

  .scroll-line {
    animation: none;
    opacity: 0.6;
  }

  .parallax-bg {
    background-attachment: scroll;
  }

  html {
    scroll-behavior: auto;
  }
}


/* ==========================================================================
   MOBILE – max-width: 768px
   ========================================================================== */
@media (max-width: 768px) {

  body {
    font-size: 16px;
  }

  /* Hero logo sizing */
  .hero-logo {
    width: 85vw;
  }

  .hero-tagline {
    bottom: 24px;
    left: 40px;
    max-width: 280px;
    font-size: 16px;
  }

  /* Parallax fallback for mobile / touch */
  .parallax-bg {
    background-attachment: scroll;
  }

  /* Philosophy layout */
  .philosophy-body {
    flex-direction: column;
  }

  .philosophy-images {
    flex: none;
    width: 100%;
  }

  /* Product layout */
  .product-inner {
    flex-direction: column;
  }

  .product-images {
    flex: none;
    width: 100%;
  }

  .product-img-1 {
    transform: none;
  }

  .product-img-2 {
    margin-top: 16px;
    margin-left: 0;
    transform: none;
  }

  /* Steps */
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .step-connector {
    width: 2px;
    height: 32px;
    flex: 0 0 32px;
    border-top: none;
    border-left: 2px dashed rgba(255,255,255,0.4);
    margin-top: 0;
  }

  /* Farms grid */
  .farms-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Floating bar text */
  .floating-bar-text {
    font-size: 13px;
  }

  .floating-bar-cta {
    font-size: 13px;
    padding: 10px 20px;
  }

  /* Footer stack */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Touch devices – parallax fallback */
@media (hover: none) {
  .parallax-bg {
    background-attachment: scroll;
  }
}
