/* ═══════════════════════════════════════════
   O'VALUE — Premium Egg Export Landing Page
   Reference-inspired: cream, olive, gold
   ═══════════════════════════════════════════ */

:root {
  --cream: #f7f2e8;
  --cream-dark: #ede6d6;
  --cream-light: #fdfbf7;
  --olive: #5c6b3c;
  --olive-dark: #4a5630;
  --olive-light: #7a8f4e;
  --olive-pale: #e8edd8;
  --gold: #e8a317;
  --gold-light: #f5c842;
  --gold-pale: #fff3d4;
  --brown: #3d2914;
  --brown-mid: #5c4228;
  --white: #ffffff;
  --text: #3d2914;
  --text-muted: #6b5d4d;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius-sm: 16px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --radius-xl: 56px;
  --shadow-soft: 0 12px 40px rgba(61, 41, 20, 0.08);
  --shadow-card: 0 20px 50px rgba(61, 41, 20, 0.12);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { width: min(1180px, 92vw); margin-inline: auto; }
.section { padding: clamp(5rem, 10vw, 8rem) 0; position: relative; }

/* Typography */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.75rem;
}
.section-label--light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title--light { color: var(--white); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}
.section-desc--light { color: rgba(255,255,255,0.75); }
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { text-align: center; }
.section-head--center .section-desc { margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--brown);
  box-shadow: 0 6px 24px rgba(232, 163, 23, 0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(232, 163, 23, 0.45); }
.btn-olive {
  background: var(--olive);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(92, 107, 60, 0.3);
}
.btn-olive:hover { background: var(--olive-dark); transform: translateY(-3px); }
.btn-outline-dark {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown-mid);
}
.btn-outline-dark:hover { background: var(--brown); color: var(--white); transform: translateY(-3px); }
.btn-full { width: 100%; }

/* Preloader */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner { text-align: center; }
.preloader__egg {
  width: 52px; height: 68px; margin: 0 auto 1.5rem;
  background: linear-gradient(145deg, #fff8e7, var(--gold-light));
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: eggFloat 1.2s ease-in-out infinite;
}
@keyframes eggFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.preloader__brand { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--olive); }
.preloader__text { font-size: 0.85rem; color: var(--text-muted); margin: 0.5rem 0 1.5rem; }
.preloader__bar { width: 180px; height: 4px; background: var(--cream-dark); border-radius: 4px; margin: 0 auto; overflow: hidden; }
.preloader__fill { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 4px; transition: width 0.1s linear; }

/* Offcanvas */
.offcanvas { position: fixed; inset: 0; z-index: 2000; pointer-events: none; }
.offcanvas.is-open { pointer-events: auto; }
.offcanvas__overlay {
  position: absolute; inset: 0; background: rgba(61,41,20,0.5);
  opacity: 0; transition: opacity var(--transition);
}
.offcanvas.is-open .offcanvas__overlay { opacity: 1; }
.offcanvas__panel {
  position: absolute; top: 0; right: 0; width: min(320px, 85vw); height: 100%;
  background: var(--cream-light); padding: 2rem;
  transform: translateX(100%); transition: transform var(--transition);
  display: flex; flex-direction: column; gap: 1.5rem;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  box-shadow: -8px 0 40px rgba(61,41,20,0.15);
}
.offcanvas.is-open .offcanvas__panel { transform: translateX(0); }
.offcanvas__close { align-self: flex-end; color: var(--brown); }
.offcanvas__logo { display: block; }
.offcanvas__logo-img { height: 56px; width: auto; display: block; }

.offcanvas__nav { display: flex; flex-direction: column; gap: 1.25rem; }
.offcanvas__nav a { font-size: 1.15rem; font-weight: 500; color: var(--brown); }
.offcanvas__cta { margin-top: auto; }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar--scrolled {
  background: rgba(247, 242, 232, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(61,41,20,0.06);
  padding: 0.75rem 0;
}
.navbar__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; }
.navbar__logo {
  display: flex;
  align-items: center;
  justify-self: start;
  line-height: 0;
  transition: transform var(--transition);
}
.navbar__logo:hover { transform: scale(1.02); }
.navbar__logo-img {
  display: block;
  height: 54px;
  width: auto;
  max-width: min(200px, 38vw);
  object-fit: contain;
  object-position: left center;
}
.navbar--scrolled .navbar__logo-img { height: 48px; }
.navbar__menu { display: flex; gap: 2rem; justify-self: center; }
.navbar__menu a {
  font-size: 0.88rem; font-weight: 500; color: var(--brown-mid);
  letter-spacing: 0.04em; position: relative; transition: color var(--transition);
}
.navbar__menu a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gold); border-radius: 2px; transition: width var(--transition);
}
.navbar__menu a:hover { color: var(--olive); }
.navbar__menu a:hover::after { width: 100%; }
.navbar__cta { justify-self: end; padding: 0.7rem 1.5rem; font-size: 0.85rem; }
.navbar__burger { display: none; justify-self: end; color: var(--brown); }

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 100px; position: relative; overflow: hidden;
  background: var(--cream);
}
.hero__blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.5; pointer-events: none;
}
.hero__blob--1 { width: 500px; height: 500px; background: var(--olive-pale); top: -10%; right: -5%; }
.hero__blob--2 { width: 300px; height: 300px; background: var(--gold-pale); bottom: 10%; left: -5%; }
.hero__leaf {
  position: absolute; width: 48px; height: 48px; opacity: 0.2;
  background: var(--olive); border-radius: 0 80% 0 80%;
  animation: leafFloat 6s ease-in-out infinite;
}
.hero__leaf--1 { top: 20%; left: 8%; animation-delay: 0s; }
.hero__leaf--2 { bottom: 25%; right: 12%; animation-delay: 2s; transform: rotate(45deg); }
@keyframes leafFloat { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-20px) rotate(10deg)} }

.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: clamp(2rem, 5vw, 4rem);
  position: relative; z-index: 2;
}
.hero__tag {
  display: inline-block; padding: 0.4rem 1rem;
  background: var(--gold-pale); color: var(--brown-mid);
  border-radius: 999px; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700; color: var(--brown);
  line-height: 1.1; margin-bottom: 1.25rem;
}
.hero__text { font-size: 1.1rem; color: var(--text-muted); max-width: 480px; line-height: 1.8; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 420px; }
.hero__blob-bg {
  position: absolute; width: 110%; height: 90%;
  background: var(--olive);
  border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
  transform: rotate(-8deg);
  animation: blobMorph 8s ease-in-out infinite;
}
@keyframes blobMorph {
  0%,100%{border-radius:45% 55% 50% 50% / 50% 45% 55% 50%}
  50%{border-radius:55% 45% 55% 45% / 45% 55% 45% 55%}
}
.hero__image-ring {
  position: relative; z-index: 2;
  width: clamp(280px, 38vw, 420px); height: clamp(280px, 38vw, 420px);
  border-radius: 50%; overflow: hidden;
  border: 6px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow-card);
  animation: heroImageFloat 5s ease-in-out infinite;
}
@keyframes heroImageFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.hero__image-ring img { width: 100%; height: 100%; object-fit: cover; }
.hero__3d {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
}
.hero__3d canvas { width: 100% !important; height: 100% !important; }
.hero__badge-float {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1rem; background: var(--white);
  border-radius: 999px; font-size: 0.8rem; font-weight: 600;
  color: var(--brown); box-shadow: var(--shadow-soft);
  animation: badgeFloat 4s ease-in-out infinite;
}
.hero__badge-float--1 { top: 8%; right: 0; animation-delay: 0s; }
.hero__badge-float--2 { bottom: 12%; left: 0; animation-delay: 1.5s; }
.hero__badge-icon { font-size: 1rem; }
@keyframes badgeFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hero__particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; width: 100%; height: 100%; }

/* About */
.about { background: var(--cream-light); }
.section-wave { height: 60px; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; margin-bottom: 4rem; }
.about__lead { font-size: 1.15rem; color: var(--brown); font-weight: 500; margin-bottom: 1rem; line-height: 1.75; }
.about__content p { color: var(--text-muted); margin-bottom: 1rem; }
.about__images { position: relative; min-height: 380px; }
.about__img-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.about__img-card img { width: 100%; height: 100%; object-fit: cover; }
.about__img-card--main { position: absolute; top: 0; right: 0; width: 75%; height: 280px; border-radius: var(--radius-xl); }
.about__img-card--secondary { position: absolute; bottom: 0; left: 0; width: 55%; height: 200px; border: 4px solid var(--white); }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.stat-card {
  padding: 2rem 1.5rem; text-align: center;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.stat-card--green { background: var(--olive); color: var(--white); }
.stat-card--green .stat-card__label { color: var(--gold-pale); }
.stat-card--gold { background: linear-gradient(135deg, var(--gold-pale), var(--gold-light)); }
.stat-card__value { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--brown); margin-bottom: 0.35rem; }
.stat-card--green .stat-card__value { color: var(--white); }
.stat-card__value--text { font-size: clamp(1rem, 2vw, 1.3rem); line-height: 1.3; }
.stat-card__label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--olive); }

/* Products */
.products { position: relative; overflow: hidden; }
.products__blob {
  position: absolute; width: 600px; height: 600px;
  background: var(--olive-pale); border-radius: 50%;
  top: -20%; left: -15%; opacity: 0.6; filter: blur(40px);
}
.products__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; position: relative; z-index: 1; }
.product-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; transition: transform var(--transition);
  background: var(--olive);
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.product-card:hover { transform: translateY(-10px); }
.product-card--green { background: var(--olive); color: var(--white); }
.product-card__badge {
  position: absolute; top: 1.25rem; left: 1.25rem; z-index: 2;
  padding: 0.35rem 0.9rem; background: var(--gold);
  color: var(--brown); font-size: 0.72rem; font-weight: 700;
  border-radius: 999px; letter-spacing: 0.05em; text-transform: uppercase;
}
.product-card__image {
  padding: 2rem 2rem 0; display: flex; justify-content: center;
}
.product-card__image img {
  width: 200px; height: 200px; object-fit: cover;
  border-radius: 50%; border: 5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.6s ease;
  background: rgba(255, 255, 255, 0.12);
}
.product-card:hover .product-card__image img { transform: scale(1.06) rotate(3deg); }
.product-card__body { padding: 1.75rem 2rem 2.5rem; }
.product-card__body h3 {
  font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 0.75rem;
  color: var(--white);
}
.product-card__body p {
  font-size: 0.95rem; opacity: 0.92; line-height: 1.7; margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}
.product-card__link {
  font-weight: 600; font-size: 0.9rem; color: var(--gold-light);
  transition: opacity var(--transition);
}
.product-card__link:hover { opacity: 0.85; }

/* Quality */
.quality { background: var(--cream); }
.quality__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.quality__list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.quality__list li {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; background: var(--white);
  border-radius: var(--radius-sm); font-weight: 500;
  box-shadow: var(--shadow-soft); transition: transform var(--transition);
}
.quality__list li:hover { transform: translateX(8px); }
.quality__icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: var(--olive-pale); color: var(--olive); border-radius: 12px; flex-shrink: 0;
}
.quality__cert { position: relative; }
.quality__cert-card {
  position: relative; padding: 2.5rem 2rem; text-align: center;
  background: linear-gradient(145deg, #fffef8, var(--gold-pale));
  border: 2px solid var(--gold); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-card);
  animation: certTilt 5s ease-in-out infinite;
}
@keyframes certTilt { 0%,100%{transform:rotateY(-3deg) rotateX(2deg)} 50%{transform:rotateY(3deg) rotateX(-2deg)} }
.quality__cert-seal { color: var(--gold); margin-bottom: 1rem; }
.quality__cert-card h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--brown); margin-bottom: 0.5rem; }
.quality__cert-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.quality__cert-stamp {
  width: 72px; height: 72px; margin: 0 auto;
  border-radius: 50%; border: 3px double var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; color: var(--brown);
  background: radial-gradient(circle, var(--gold-light), var(--gold));
}
.quality__cert-shine {
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.5) 50%, transparent 60%);
  animation: certShine 4s ease-in-out infinite; pointer-events: none;
}
@keyframes certShine { 0%,100%{transform:translateX(-30%) rotate(25deg)} 50%{transform:translateX(30%) rotate(25deg)} }
.quality__img {
  position: absolute; bottom: -30px; right: -20px;
  width: 140px; height: 140px; border-radius: 50%;
  overflow: hidden; border: 4px solid var(--white);
  box-shadow: var(--shadow-soft);
}

/* Process */
.process {
  background: linear-gradient(160deg, var(--olive-dark) 0%, var(--olive) 50%, var(--brown-mid) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: 2rem;
}
.process__timeline {
  display: flex; flex-direction: column; align-items: center;
  max-width: 400px; margin: 0 auto;
}
.process__item { display: flex; flex-direction: column; align-items: center; width: 100%; }
.process__step {
  width: 100%; padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; gap: 1.25rem;
  transition: transform var(--transition), background var(--transition);
}
.process__step:hover { transform: scale(1.03); background: rgba(255,255,255,0.15); }
.process__num { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--gold-light); min-width: 48px; }
.process__step h3 { font-size: 1.1rem; font-weight: 600; color: var(--white); }
.process__arrow { padding: 0.5rem 0; font-size: 1.25rem; color: var(--gold-light); animation: arrowBounce 1.5s ease-in-out infinite; }
@keyframes arrowBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

/* Export */
.export { background: var(--cream-light); position: relative; overflow: hidden; }
.export__blob {
  position: absolute; width: 400px; height: 400px;
  background: var(--gold-pale); border-radius: 50%;
  bottom: -10%; right: -8%; opacity: 0.5;
}
.export__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.export__orders { display: flex; flex-direction: column; gap: 0.75rem; margin: 2rem 0; }
.export-order-card {
  padding: 1.25rem 1.5rem; background: var(--white);
  border-radius: var(--radius-sm); border-left: 4px solid var(--olive);
  box-shadow: var(--shadow-soft);
}
.export-order-card--gold { border-left-color: var(--gold); background: var(--gold-pale); }
.export-order-card h4 { font-family: var(--font-display); font-size: 1.15rem; color: var(--brown); margin-bottom: 0.25rem; }
.export-order-card p { font-size: 0.9rem; color: var(--text-muted); }
.export__countries { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
.export__country {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.85rem 1rem; background: var(--white);
  border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem;
  box-shadow: var(--shadow-soft); transition: transform var(--transition);
}
.export__country:hover { transform: translateX(6px); }
.export__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px rgba(232,163,23,0.5); }
.export__map-wrap { display: flex; justify-content: center; }
.export__map {
  width: 100%; padding: 2rem;
  background: linear-gradient(145deg, var(--olive-dark), var(--olive));
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
}
.export__svg { width: 100%; height: auto; }

/* Choose */
.choose { background: var(--cream); }
.choose__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.choose-card {
  padding: 2rem 1.5rem; background: var(--white);
  border-radius: var(--radius-md); box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.choose-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.choose-card--green { background: var(--olive); color: var(--white); }
.choose-card--green p { color: rgba(255,255,255,0.85); }
.choose-card--gold { background: linear-gradient(135deg, var(--gold-pale), #fff8e0); }
.choose-card__icon {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  background: var(--olive-pale); color: var(--olive); border-radius: 16px; margin-bottom: 1.25rem;
}
.choose-card--green .choose-card__icon { background: rgba(255,255,255,0.15); color: var(--gold-light); }
.choose-card--gold .choose-card__icon { background: var(--white); }
.choose-card h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--brown); margin-bottom: 0.65rem; }
.choose-card--green h3 { color: var(--white); }
.choose-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* Gallery */
.gallery { position: relative; overflow: hidden; background: var(--cream-light); }
.gallery__blob {
  position: absolute; width: 500px; height: 500px;
  background: var(--olive-pale); border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  opacity: 0.4; filter: blur(50px);
}
.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 1rem; position: relative; z-index: 1;
}
.gallery__item {
  position: relative; border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-soft);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem; background: linear-gradient(transparent, rgba(61,41,20,0.75));
  color: var(--white); font-size: 0.85rem; font-weight: 600;
}
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }

/* Contact */
.contact { background: var(--cream); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 2rem; }
.contact-card {
  padding: 1.25rem; background: var(--white);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-soft);
}
.contact-card strong { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive); margin-bottom: 0.35rem; }
.contact-card p, .contact-card a { font-size: 0.9rem; color: var(--brown); line-height: 1.5; }
.contact-card span { font-size: 0.85rem; color: var(--text-muted); }
.contact-card a:hover { color: var(--olive); }
.contact__form-wrap {
  padding: 2.5rem; background: var(--white);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
}
.contact__form-wrap h3 { font-family: var(--font-display); font-size: 1.75rem; color: var(--brown); margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.8rem; font-weight: 600; color: var(--brown-mid); }
.form-field input, .form-field select, .form-field textarea {
  padding: 0.9rem 1rem; border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 0.9rem;
  background: var(--cream-light); transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--olive); box-shadow: 0 0 0 3px rgba(92,107,60,0.15);
}

/* Footer bar — minimal dark strip (reference style) */
.footer-bar {
  background: #0f0a07;
  color: rgba(255, 255, 255, 0.72);
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-bar__copy {
  font-size: clamp(0.72rem, 1.4vw, 0.82rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 720px;
  margin: 0;
}

.footer-bar__copy a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bar__copy a:hover {
  color: var(--gold-light);
}

.footer-bar__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.footer-bar__brand:hover {
  opacity: 0.9;
}

.footer-bar__logo {
  display: block;
  width: auto;
  height: 72px;
  max-width: min(220px, 42vw);
  object-fit: contain;
  object-position: right center;
}

@media (max-width: 768px) {
  .footer-bar__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-bar__copy {
    max-width: 100%;
  }

  .footer-bar__brand {
    align-items: center;
    text-align: center;
  }
}

/* Animation helpers — visibility handled by JS; never hide content by default */
[data-animate] {
  /* Content stays visible; GSAP animates from hidden only when loaded */
}

/* Responsive */
@media (max-width: 1024px) {
  .choose__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .navbar__inner { grid-template-columns: 1fr auto; }
  .navbar__menu, .navbar__cta { display: none; }
  .navbar__burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__text { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { order: -1; min-height: 340px; }
  .about__grid, .quality__grid, .export__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__images { min-height: 300px; margin-bottom: 2rem; }
  .products__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
}
@media (min-width: 900px) {
  .process__timeline {
    max-width: 100%; flex-direction: row; flex-wrap: wrap;
    justify-content: center; gap: 0;
  }
  .process__item { flex-direction: row; width: auto; }
  .process__step { width: 150px; flex-direction: column; text-align: center; padding: 1.25rem 1rem; }
  .process__arrow { display: none; }
  .process__item:not(:last-child)::after {
    content: '→'; color: var(--gold-light); font-size: 1.1rem;
    display: flex; align-items: center; padding: 0 0.25rem;
  }
}
@media (max-width: 600px) {
  .contact__cards { grid-template-columns: 1fr; }
  .export__countries { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
