/* ===================================================
   FRUITERA — Main Stylesheet
   Colors extracted from the Fruitera logo
   =================================================== */

:root {
  --green-dark: #2D5A27;
  --green: #3A7233;
  --green-light: #4A8F40;
  --orange: #D4842A;
  --orange-light: #E8A54E;
  --orange-warm: #F5C882;
  --plum: #4A2060;
  --cherry: #B22234;
  --silver: #7A7D80;
  --cream: #FDF8F0;
  --cream-dark: #F5EDDF;
  --brown: #3E2C1C;
  --text: #2A2118;
  --text-light: #6B5E52;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253, 248, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 90, 39, 0.1);
  transition: all 0.4s ease;
}

nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  background: rgba(253, 248, 240, 0.96);
}

.nav-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 2rem;
  transition: padding 0.4s ease;
}

nav.scrolled .nav-inner {
  padding: 0.2rem 2rem;
}

/* ---- Logo: just swap the file images/logo.png ---- */
.nav-logo img {
  height: 72px;
  transition: height 0.4s ease, transform 0.3s;
}
.nav-logo img:hover { transform: scale(1.05); }

nav.scrolled .nav-logo img {
  height: 48px;
}

nav.scrolled .nav-links a {
  font-size: 0.88rem;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--green-dark);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--orange); }

/* ---- Language Switch (always visible, outside menu) ---- */
.lang-switch {
  display: flex; gap: 0;
  border: 2px solid var(--green-dark);
  border-radius: 8px; overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.lang-btn {
  padding: 0.4rem 0.9rem;
  background: transparent;
  border: none;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--green-dark);
  transition: all 0.3s;
  letter-spacing: 0.04em;
}

.lang-btn.active {
  background: var(--green-dark);
  color: white;
}

.lang-btn:hover:not(.active) {
  background: rgba(45, 90, 39, 0.1);
}

/* ---- Mobile Menu Toggle ---- */
.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 24px;
  position: relative;
}
.menu-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--green-dark);
  position: absolute; left: 0;
  transition: all 0.3s;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

/* ===== HERO ===== */
.hero {
  min-height: auto;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0f2b0d 0%, var(--green-dark) 35%, #1a3a17 65%, var(--brown) 100%);
}

/* ---- Animated background shapes ---- */
.hero-shapes {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}

.shape-1 {
  width: 500px; height: 500px;
  background: var(--orange);
  top: -20%; right: -10%;
  animation: shapeFloat1 20s ease-in-out infinite;
}
.shape-2 {
  width: 380px; height: 380px;
  background: var(--plum);
  bottom: -15%; left: -8%;
  animation: shapeFloat2 25s ease-in-out infinite;
}
.shape-3 {
  width: 260px; height: 260px;
  background: var(--orange-warm);
  top: 50%; left: 60%;
  animation: shapeFloat3 18s ease-in-out infinite;
}

@keyframes shapeFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 40px) scale(1.08); }
}
@keyframes shapeFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -30px) scale(1.05); }
}
@keyframes shapeFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, -50px) scale(1.12); }
}

/* ---- Hero content ---- */
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 6.5rem 2rem 2.5rem;
  max-width: 1100px;
  width: 100%;
}

/* Est. label */
.hero-est {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange-warm);
  margin-bottom: 0.8rem;
  animation: heroIn 0.8s ease-out 0.1s both;
}

/* ---- Giant brand name ---- */
.hero-brand {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--orange-warm) 40%, var(--orange) 70%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 30px rgba(212, 132, 42, 0.25));
  animation: heroIn 0.8s ease-out 0.2s both;
}

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

/* Tagline */
.hero-tagline {
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  animation: heroIn 0.8s ease-out 0.3s both;
}

/* Secondary line (SEO keywords) */
.hero-sub2 {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  animation: heroIn 0.8s ease-out 0.35s both;
}

/* ---- Product showcase circles ---- */
.hero-showcase {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  animation: heroIn 0.8s ease-out 0.4s both;
}

.showcase-item {
  text-align: center;
  transition: transform 0.4s;
  cursor: default;
}
.showcase-item:hover { transform: translateY(-6px) scale(1.05); }

.showcase-img {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(212, 132, 42, 0.4);
  margin: 0 auto 0.6rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.showcase-item:hover .showcase-img {
  border-color: var(--orange);
  box-shadow: 0 0 30px rgba(212, 132, 42, 0.3);
}

.showcase-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.showcase-item:hover .showcase-img img { transform: scale(1.15); }

.showcase-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* Description */
.hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 640px;
  margin: 0 auto 2rem;
  animation: heroIn 0.8s ease-out 0.5s both;
}

/* ---- Stats row ---- */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
  animation: heroIn 0.8s ease-out 0.6s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}

.hero-stat-top {
  display: flex;
  align-items: baseline;
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.hero-stat-plus {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  margin-left: 0.1rem;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* ---- CTA buttons ---- */
.hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroIn 0.8s ease-out 0.7s both;
}

.hero-cta {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--orange);
  color: white;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 4px;
  transition: all 0.3s;
  text-transform: uppercase;
  font-size: 0.88rem;
  border: 2px solid var(--orange);
}
.hero-cta:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 132, 42, 0.4);
}

.hero-cta-outline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.25);
}
.hero-cta-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: white;
  box-shadow: none;
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 3;
}
.hero-scroll svg { width: 28px; height: 28px; stroke: rgba(255,255,255,0.4); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== SECTIONS ===== */
section { padding: 6rem 2rem; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-divider {
  width: 60px; height: 3px;
  background: var(--orange);
  margin: 1.5rem auto;
  border-radius: 2px;
}

.section-desc {
  max-width: 700px; margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* ===== ABOUT / HISTORY ===== */
.about { background: white; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.about-image:hover img { transform: scale(1.05); }

.about-image::after {
  content: '';
  position: absolute; inset: 0;
  border: 2px solid var(--orange);
  border-radius: 8px;
  transform: translate(12px, 12px);
  z-index: -1;
}

.about-text h3 {
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.stat-row {
  display: flex; gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(45, 90, 39, 0.12);
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

/* ===== PRODUCTION ===== */
.production { background: var(--cream); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  position: relative;
  transition: all 0.4s;
  border: 1px solid rgba(45, 90, 39, 0.08);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.step-card h4 {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 0.8rem;
}

.step-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* ===== PRODUCTS ===== */
.products { background: white; }

.product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
  transition: all 0.4s;
  border: 1px solid rgba(45, 90, 39, 0.06);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.product-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }

.product-card-body { padding: 2rem; }

.product-card-body h3 {
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 0.8rem;
}

.product-card-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
}

.product-list {
  margin-top: 1rem;
  padding-left: 0;
  list-style: none;
}

.product-list li {
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-light);
}

.product-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.7rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* ===== FARMS / GALLERY ===== */
.farms { background: var(--cream); }

.farms-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 1rem;
}

.farms-grid .farm-img {
  border-radius: 8px;
  overflow: hidden;
}

.farms-grid .farm-img:first-child { grid-row: span 3; }

.farms-grid .farm-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.farms-grid .farm-img:hover img { transform: scale(1.05); }

.farms-text {
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto; margin-right: auto;
  text-align: center;
}

.farms-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-light);
}

/* ===== BRANDY ===== */
.brandy {
  background: linear-gradient(135deg, var(--brown) 0%, #2a1e12 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.brandy::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(212, 132, 42, 0.12) 0%, transparent 60%);
}

.brandy .section-inner { position: relative; z-index: 1; }
.brandy .section-label { color: var(--orange-warm); }
.brandy .section-title { color: var(--cream); }
.brandy .section-desc { color: rgba(255,255,255,0.7); }

.brandy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.brandy-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.2rem;
}

.brandy-text .quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--orange-warm);
  border-left: 3px solid var(--orange);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.brandy-varieties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.variety-group h4 {
  font-size: 1.1rem;
  color: var(--orange-warm);
  margin-bottom: 0.8rem;
  font-family: 'Playfair Display', serif;
}

.variety-group ul { list-style: none; padding: 0; }

.variety-group ul li {
  padding: 0.4rem 0 0.4rem 1.2rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  position: relative;
}

.variety-group ul li::before {
  content: '\25C6';
  position: absolute; left: 0;
  color: var(--orange);
  font-size: 0.5rem;
  top: 0.55rem;
}

/* ===== CONTACT ===== */
.contact { background: white; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px; height: 20px;
  stroke: var(--green-dark);
}

.contact-detail-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--green-dark);
  margin-bottom: 0.2rem;
}

.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.95rem;
  color: var(--text-light);
  text-decoration: none;
}

.contact-detail-text a:hover { color: var(--orange); }

.contact-form {
  background: var(--cream);
  padding: 3rem;
  border-radius: 12px;
}

.contact-form h4 {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(45, 90, 39, 0.15);
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  background: white;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--green-dark);
  color: white;
  border: none;
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s;
}
.form-submit:hover {
  background: var(--green);
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(180deg, #1a3a17 0%, var(--green-dark) 100%);
  color: rgba(255,255,255,0.7);
  padding: 0;
}

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

/* Top: 3-column layout */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 2rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {}

.footer-logo {
  height: 48px;
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  max-width: 320px;
}

.footer-nav, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav h5, .footer-contact h5 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange-warm);
  margin-bottom: 0.5rem;
}

.footer-nav a, .footer-contact a, .footer-contact span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover, .footer-contact a:hover {
  color: var(--orange-warm);
}

/* Bottom: copyright + credit */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 2rem;
}

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

.footer-credit a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-credit a:hover {
  color: var(--orange-warm);
}

/* ===== IMAGE STRIP ===== */
.image-strip {
  display: flex;
  height: 280px;
  overflow: hidden;
}

.image-strip img {
  height: 100%;
  flex: 1;
  object-fit: cover;
  transition: flex 0.5s ease;
  min-width: 0;
  filter: saturate(0.9);
}
.image-strip img:hover {
  flex: 2;
  filter: saturate(1.1);
}

/* ===== BRAND TRUST: FRUITERA + HOVE ===== */
.brand-trust {
  background: var(--cream-dark);
  padding: 5rem 2rem;
}

.brand-trust-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.brand-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.brand-card-logo {
  height: 80px;
  margin-bottom: 1.5rem;
  object-fit: contain;
}

.brand-hove-logo {
  height: 110px;
  border-radius: 8px;
}

.brand-card h3 {
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.brand-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-light);
}

.brand-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.brand-divider-line {
  width: 1px;
  height: 50px;
  background: rgba(45, 90, 39, 0.15);
}

.brand-divider-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}

.brand-divider-icon svg {
  width: 18px; height: 18px;
}

/* ===== LANGUAGE TOGGLE ===== */
[data-lang="de"] { display: none; }
body.lang-de [data-lang="en"] { display: none; }
body.lang-de [data-lang="de"] { display: block; }

/* Preserve grid layout on containers that use data-lang */
body.lang-de .process-steps[data-lang="de"],
body.lang-de .product-cards[data-lang="de"] { display: grid; }

body.lang-de span[data-lang="de"],
body.lang-de a[data-lang="de"],
body.lang-de button[data-lang="de"],
body.lang-de label[data-lang="de"],
body.lang-de strong[data-lang="de"],
body.lang-de h4[data-lang="de"],
body.lang-de h5[data-lang="de"] { display: inline; }

span[data-lang="de"],
a[data-lang="de"],
button[data-lang="de"],
label[data-lang="de"],
strong[data-lang="de"],
h4[data-lang="de"],
h5[data-lang="de"] { display: none; }

body.lang-de span[data-lang="en"],
body.lang-de a[data-lang="en"],
body.lang-de button[data-lang="en"],
body.lang-de label[data-lang="en"],
body.lang-de strong[data-lang="en"],
body.lang-de h4[data-lang="en"],
body.lang-de h5[data-lang="en"] { display: none; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .product-cards { grid-template-columns: repeat(2, 1fr); }
  .farms-grid { grid-template-columns: 1fr 1fr; }
  .farms-grid .farm-img:first-child { grid-row: span 1; grid-column: span 2; aspect-ratio: 16/9; }
  .farms-grid .farm-img { aspect-ratio: 1; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(45, 90, 39, 0.1);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; order: 3; margin-left: 0.8rem; }
  .lang-switch { order: 2; margin-left: auto; }
  .nav-links { order: 4; }

  .hero-stats { gap: 0; flex-wrap: wrap; justify-content: center; }
  .hero-stat { padding: 0 1.2rem; }
  .hero-stat-number { font-size: 1.8rem; }
  .hero-stat-divider { height: 35px; }
  .hero-showcase { gap: 0.8rem; flex-wrap: wrap; }
  .showcase-img { width: 70px; height: 70px; }
  .hero-brand { margin-bottom: 0.8rem; }
  .hero-cta-row { flex-direction: column; align-items: center; }

  .brand-trust-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .brand-divider {
    flex-direction: row;
    justify-self: center;
  }
  .brand-divider-line {
    width: 50px; height: 1px;
  }

  .about-grid,
  .brandy-content,
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  .process-steps,
  .product-cards { grid-template-columns: 1fr; }

  .farms-grid { grid-template-columns: 1fr; }
  .farms-grid .farm-img:first-child { grid-column: span 1; }

  section { padding: 4rem 1.2rem; }
  .stat-row { gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
  .brandy-varieties { grid-template-columns: 1fr; }
  .image-strip { height: 180px; }
  .image-strip img { min-width: 25%; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}

/* ---- About slideshow (Legacy section) ---- */
.about-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 0.6s ease;
}
.about-slideshow .slide.active { opacity: 1; }
.about-slideshow:hover .slide.active { transform: scale(1.05); }


/* ---- Skip to content (accessibility) ---- */
.skip-to-content {
  position: absolute;
  top: -40px; left: 0;
  background: var(--green-dark);
  color: var(--cream);
  padding: 10px 18px;
  text-decoration: none;
  font-weight: 600;
  z-index: 10000;
  border-radius: 0 0 8px 0;
  transition: top 0.2s;
}
.skip-to-content:focus {
  top: 0;
  outline: 3px solid var(--orange);
}

/* ---- Focus visibility (keyboard navigation) ---- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ---- Reduced motion respect ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- Mobile polish ---- */
@media (max-width: 480px) {
  .hero-brand { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); line-height: 1.2; }
  .showcase-img { width: 60px; height: 60px; }
  .showcase-item span { font-size: 0.68rem; }
  .hero-stat-number { font-size: 1.5rem; }
  section { padding: 3rem 1rem; }
  .farms-grid { gap: 0.5rem; }
  .contact-detail { flex-direction: row; align-items: flex-start; }
  .contact-icon { flex-shrink: 0; }
}

/* ---- Tap targets ≥ 44px (accessibility) — 0 specificity via :where() ---- */
:where(.nav-links a, .lang-btn, .form-submit, button.btn, .btn) {
  min-height: 44px;
  align-items: center;
}
.nav-links > li > a { padding-block: 0.5rem; }

/* Lang-switching reinforcement (overrides any display conflicts) */
[data-lang="de"] { display: none !important; }
body.lang-de [data-lang="en"] { display: none !important; }
body.lang-de [data-lang="de"] { display: revert !important; }
body.lang-de .process-steps[data-lang="de"],
body.lang-de .product-cards[data-lang="de"] { display: grid !important; }

/* ---- Prevent horizontal scroll on mobile ---- */
html, body { overflow-x: hidden; max-width: 100vw; }
img { max-width: 100%; height: auto; }
