/* ==========================================================================
   AGHDIR FOOD — Stylesheet
   Design system: Olive green + white, harvest-gold accent, terracotta signature
   ========================================================================== */

:root {
  /* Color tokens */
  --color-green-900: #1C3A22;
  --color-green-800: #24512C;
  --color-green-700: #2F6B3A;
  --color-green-600: #3A7D46;
  --color-green-500: #4F9457;
  --color-green-100: #E8F2E9;
  --color-green-50:  #F4F9F4;

  --color-gold-600: #C99A2E;
  --color-gold-700-text: #83641E; /* WCAG AA-compliant gold for text/icons on white or gold-100 (5.5:1 / 4.9:1) */
  --color-gold-500: #D9AE3F;
  --color-gold-100: #FBF1DA;

  --color-terracotta: #B85C38;

  --color-ink: #1E2A1E;
  --color-ink-soft: #445044;
  --color-white: #FFFFFF;
  --color-off-white: #FCFCFA;
  --color-border: #E1E8E1;

  /* Type */
  --font-display: 'Zilla Slab', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(28, 58, 34, 0.08);
  --shadow-md: 0 8px 24px rgba(28, 58, 34, 0.12);
  --shadow-lg: 0 20px 48px rgba(28, 58, 34, 0.18);

  --container-w: 1200px;
  --nav-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-green-900);
  line-height: 1.15;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-700-text);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--color-gold-600);
  display: inline-block;
}

.lede {
  font-size: 1.1rem;
  color: var(--color-ink-soft);
  max-width: 60ch;
}

/* Visually hidden (a11y) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-green-900);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--color-gold-500);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-green-700);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-green-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--color-gold-500);
  color: var(--color-green-900);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover {
  background: var(--color-gold-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  border-color: var(--color-green-700);
  color: var(--color-green-700);
}
.btn-outline:hover {
  background: var(--color-green-700);
  color: #fff;
}
.btn-outline.on-dark {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.btn-outline.on-dark:hover {
  background: #fff;
  color: var(--color-green-900);
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--color-border);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img { height: 48px; width: auto; }

.nav-primary {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--color-ink);
  padding: 8px 2px;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--color-gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}
.nav-links a[aria-current="page"] { color: var(--color-green-700); }

.nav-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}
.search-box input[type="search"] {
  width: 0;
  opacity: 0;
  padding: 10px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: 100px;
  background: var(--color-off-white);
  transition: width 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.search-box.open input[type="search"] {
  width: 220px;
  opacity: 1;
  padding: 10px 40px 10px 16px;
  margin-right: -32px;
}
.search-toggle {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-800);
  z-index: 1;
  position: relative;
}
.search-toggle:hover { background: var(--color-green-100); }

.lang-switch {
  display: flex;
  border: 1.5px solid var(--color-border);
  border-radius: 100px;
  overflow: hidden;
}
.lang-switch button {
  background: none;
  border: none;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--color-ink-soft);
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-switch button.active {
  background: var(--color-green-700);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--color-green-900);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Search results dropdown */
.search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  max-height: 400px;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  display: none;
  z-index: 600;
}
.search-results.show { display: block; }
.search-results a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border);
}
.search-results a:last-child { border-bottom: none; }
.search-results a:hover { background: var(--color-green-50); }
.search-results img { width: 40px; height: 40px; object-fit: contain; }
.search-empty { padding: 16px; color: var(--color-ink-soft); font-size: 0.92rem; }

@media (max-width: 900px) {
  .nav-primary {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-primary.open { transform: translateX(0); }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 4px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--color-border);
  }
  .nav-links a::after { display: none; }
  .nav-links a[aria-current="page"] { color: var(--color-green-700); }

  .nav-tools {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding-top: 8px;
  }
  .search-box {
    width: 100%;
    flex-wrap: wrap;
  }
  .search-box input[type="search"] {
    order: 2;
    flex: 1 1 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .search-box.open input[type="search"] {
    width: 100%;
    margin-right: 0;
    margin-top: 10px;
  }
  .search-toggle {
    order: 1;
    margin-left: auto;
  }
  .search-results {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    box-shadow: none;
    border: 1px solid var(--color-border);
  }
  .lang-switch {
    align-self: flex-start;
  }
  .nav-toggle { display: flex; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero { padding: 48px 0 64px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-badges { flex-direction: column; gap: 12px; }
  .hero-stack { max-width: 280px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
  .product-card { padding: 18px 14px 16px; }
  .product-card img { height: 120px; }
  .product-toolbar { flex-direction: column; align-items: stretch; }
  .product-toolbar input[type="search"] { width: 100%; min-width: 0; }
  .timeline::before { left: 20px; }
  .timeline-item { padding-left: 56px; }
  .timeline-year { width: 42px; height: 42px; font-size: 0.7rem; }
  .timeline-card { padding: 18px 20px; }
  .contact-form { padding: 24px 20px; }
  .cta-band { padding: 36px 22px; }
  .mv-panel { padding: 32px 22px; }
  .value-card { padding: 22px 18px; }
  .footer-brand img { height: 40px; width: auto; }
  .whatsapp-float { bottom: 14px; right: 14px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 72px 0 100px;
  background: linear-gradient(180deg, var(--color-green-50) 0%, #fff 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy .lede { margin-bottom: 32px; font-size: 1.15rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-badges {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-green-800);
}
.hero-badge svg { flex-shrink: 0; color: var(--color-gold-700-text); }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}
.hero-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
}
.hero-stack img {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
  background: #fff;
  transition: transform 0.4s ease;
}
.hero-stack .card-a { width: 62%; top: 0; left: 0; z-index: 3; padding: 18px; transform: rotate(-6deg); }
.hero-stack .card-b { width: 55%; bottom: 0; right: 0; z-index: 2; padding: 16px; transform: rotate(8deg); }
.hero-stack .card-c { width: 40%; top: 30%; right: 5%; z-index: 1; padding: 12px; transform: rotate(-3deg); opacity: 0.9;}
.hero:hover .card-a { transform: rotate(-8deg) translateY(-6px); }
.hero:hover .card-b { transform: rotate(10deg) translateY(6px); }

/* Grain divider (signature element) */
.grain-divider {
  height: 46px;
  width: 100%;
  background-repeat: repeat-x;
  background-size: 64px 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='46' viewBox='0 0 64 46'%3E%3Cpath d='M8 40 C 8 22, 16 22, 16 6' stroke='%23D9AE3F' stroke-width='2.4' fill='none' stroke-linecap='round'/%3E%3Ccircle cx='16' cy='6' r='2.6' fill='%23D9AE3F'/%3E%3Cpath d='M40 40 C 40 22, 48 22, 48 6' stroke='%232F6B3A' stroke-width='2.4' fill='none' stroke-linecap='round' opacity='0.55'/%3E%3Ccircle cx='48' cy='6' r='2.6' fill='%232F6B3A' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.9;
}

/* ==========================================================================
   Sections (generic)
   ========================================================================== */
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--color-green-50); }
.section-dark {
  background: var(--color-green-900);
  color: rgba(255,255,255,0.92);
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ==========================================================================
   Product grid & 3D cards
   ========================================================================== */
.product-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.product-toolbar input[type="search"] {
  padding: 12px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: 100px;
  min-width: 260px;
  background: var(--color-off-white);
}
.product-count { color: var(--color-ink-soft); font-size: 0.92rem; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 22px 22px;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.25s ease;
  box-shadow: var(--shadow-sm);
  will-change: transform;
}
.product-card:hover, .product-card:focus-within {
  box-shadow: var(--shadow-lg);
}
.product-card .card-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(217,174,63,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.product-card:hover .card-glow { opacity: 1; }
.product-card figure {
  transform: translateZ(30px);
  margin-bottom: 18px;
}
.product-card img {
  height: 170px;
  margin: 0 auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.product-card:hover img { transform: scale(1.05); }
.product-card h3 {
  transform: translateZ(20px);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.product-card p {
  transform: translateZ(15px);
  color: var(--color-ink-soft);
  font-size: 0.92rem;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .card-link {
  transform: translateZ(25px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-green-700);
}
.product-card .card-link svg { transition: transform 0.2s ease; }
.product-card:hover .card-link svg { transform: translateX(4px); }
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
}
.product-card a.card-cover {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .product-card { transform: none !important; }
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-ink-soft);
  display: none;
}
.no-results.show { display: block; }

/* ==========================================================================
   About / Values / Feature blocks
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-logo-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 40px;
  min-height: 320px;
}
.about-logo-card img {
  width: 100%;
  max-width: 320px;
  height: auto;
  box-shadow: none;
  border-radius: 0;
}
@media (max-width: 480px) {
  .about-logo-card { padding: 40px 24px; min-height: 220px; }
  .about-logo-card img { max-width: 240px; }
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.value-card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--color-gold-100);
  color: var(--color-gold-700-text);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.section-dark .value-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}
.section-dark .value-card h3 { color: #fff; }
.section-dark .value-card p { color: rgba(255,255,255,0.75); }

/* Mission / vision panels */
.mv-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.mv-panel {
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
}
.mv-panel.mission { background: var(--color-green-900); color: #fff; }
.mv-panel.vision { background: var(--color-gold-100); color: var(--color-green-900); }
.mv-panel h3 { color: inherit; margin-bottom: 16px; }
.mv-panel.mission h3 { color: #fff; }
.mv-panel .icon-badge {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.mv-panel.mission .icon-badge { background: rgba(255,255,255,0.12); color: var(--color-gold-500); }
.mv-panel.vision .icon-badge { background: rgba(184,92,56,0.14); color: var(--color-terracotta); }

/* ==========================================================================
   Timeline (History)
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--color-border);
}
.timeline-item {
  position: relative;
  padding-left: 68px;
  margin-bottom: 48px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-year {
  position: absolute;
  left: 0; top: 0;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--color-green-700);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  box-shadow: var(--shadow-sm);
  z-index: 1;
}
.timeline-item:nth-child(even) .timeline-year { background: var(--color-gold-500); color: var(--color-green-900); }
.timeline-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
}
.timeline-card h3 { margin-bottom: 8px; font-size: 1.2rem; }
.timeline-card p { color: var(--color-ink-soft); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin: 28px 0 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--color-green-100);
  color: var(--color-green-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item h4 { font-family: var(--font-body); font-size: 0.98rem; font-weight: 700; color: var(--color-ink); margin-bottom: 3px; }
.contact-info-item p, .contact-info-item a { color: var(--color-ink-soft); font-size: 0.94rem; }
.contact-info-item a:hover { color: var(--color-green-700); text-decoration: underline; }

.social-row { display: flex; gap: 12px; margin-top: 8px; }
.social-row a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-green-700);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-row a:hover { background: var(--color-green-900); transform: translateY(-3px); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  margin-top: 8px;
}
.map-frame iframe { width: 100%; height: 300px; border: 0; display: block; }

.contact-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--color-green-900);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-off-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-green-600);
  box-shadow: 0 0 0 4px var(--color-green-100);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--color-ink-soft); margin-top: 14px; }
.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: var(--color-green-100); color: var(--color-green-900); }
.form-status.error { background: #FBE7E1; color: #8B2E12; }

@media (max-width: 720px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Product detail page
   ========================================================================== */
.breadcrumb {
  font-size: 0.86rem;
  color: var(--color-ink-soft);
  margin-bottom: 28px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--color-green-700); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

.product-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.product-detail-media {
  background: var(--color-green-50);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-detail-media img {
  max-height: 420px;
  filter: drop-shadow(0 20px 30px rgba(28,58,34,0.18));
  transition: transform 0.4s ease;
}
.product-detail-media:hover img { transform: scale(1.04) rotate(-1deg); }
.product-tag {
  display: inline-block;
  background: var(--color-gold-100);
  color: var(--color-gold-700-text);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.product-detail-body p { margin-bottom: 22px; }
.product-usp-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.product-usp-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--color-ink-soft); }
.product-usp-list svg { flex-shrink: 0; color: var(--color-green-600); margin-top: 3px; }
.product-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.related-products { margin-top: 100px; }

@media (max-width: 900px) {
  .product-detail, .contact-grid, .split, .mv-panels, .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 20px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-green-900);
  color: rgba(255,255,255,0.82);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand img { height: 48px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.92rem; max-width: 32ch; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.94rem; }
.footer-col a:hover { color: var(--color-gold-500); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--color-gold-500); color: var(--color-green-900); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--color-gold-500);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  z-index: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(37,211,102,0.6);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.12); }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float { animation: none; }
}
@media (max-width: 600px) {
  .whatsapp-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Misc / utility
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mx-auto-block { margin: 0 auto; }
.mt-10 { margin-top: 10px; }
.mt-44 { margin-top: 44px; }
.mb-18 { margin-bottom: 18px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.w-100 { width: 100%; }
.cta-band-dark { background: var(--color-green-900); }
.follow-label { font-family: var(--font-body); font-size: 0.98rem; margin-bottom: 6px; }
.section-404 { padding: 120px 0; }
.eyebrow-center { justify-content: center; }
.lede-404 { margin: 16px auto 32px; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  margin-top: 44px;
}
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-size: 2.2rem; color: var(--color-green-700); font-weight: 700; }
.stat .label { font-size: 0.86rem; color: var(--color-ink-soft); font-weight: 600; }

.page-hero {
  padding: 56px 0 40px;
  background: var(--color-green-50);
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero p.lede { margin: 16px auto 0; text-align: center; }

.cta-band {
  background: var(--color-green-900);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 55ch; margin: 0 auto 30px; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Bilingual content toggle: default markup is French; .lang-en holds the
   English variant. Toggling the html[data-lang] attribute shows/hides each
   without touching each element's native display type. */
html[data-lang="fr"] .lang-en { display: none !important; }
html[data-lang="en"] .lang-fr { display: none !important; }
