/* ═══════════════════════════════════════════════════════════
   GAE ORAVIE — Groupe Avicole de l'Est
   Design system v2 — corporate redesign
   Palette : noir #16181d · rouge #c0202a · or #f5c200 · blanc
═══════════════════════════════════════════════════════════ */

:root {
  --ink:        #16181d;
  --ink-2:      #1f232b;
  --ink-3:      #2a2f39;
  --red:        #c0202a;
  --red-dark:   #961820;
  --red-soft:   #fdeef0;
  --gold:       #f5c200;
  --gold-dark:  #d4a600;
  --gold-soft:  #fff8dd;
  --paper:      #ffffff;
  --cream:      #f7f6f2;
  --line:       #e7e5df;
  --text:       #2b2e35;
  --muted:      #676d78;

  --ff-display: 'Sora', 'Segoe UI', sans-serif;
  --ff-body:    'Inter', 'Segoe UI', sans-serif;

  --radius:     16px;
  --radius-sm:  10px;
  --shadow-sm:  0 2px 10px rgba(22, 24, 29, .06);
  --shadow:     0 12px 34px rgba(22, 24, 29, .10);
  --shadow-lg:  0 24px 60px rgba(22, 24, 29, .16);

  --container:  1200px;
}

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

::selection { background: var(--gold); color: var(--ink); }

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

/* ═══════════════════════════════════
   UTILITIES
═══════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: '';
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
}
.eyebrow.center::after {
  content: '';
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
}

.section { padding: 96px 0; }
.section.tinted { background: var(--cream); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  margin-top: 16px;
  letter-spacing: -.01em;
}
.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.02rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .95rem;
  padding: 15px 30px;
  border-radius: 60px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s, border-color .25s;
}
.btn i { font-size: .82em; transition: transform .25s; }
.btn:hover i { transform: translateX(4px); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(245, 194, 0, .35);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(245, 194, 0, .45);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  background: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(192, 32, 42, .32);
}
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 26px rgba(192, 32, 42, .28);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

/* ── Reveal on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════
   TOP BAR
═══════════════════════════════════ */
.topbar {
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  font-size: .82rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 42px;
  flex-wrap: wrap;
  padding-top: 4px;
  padding-bottom: 4px;
}
.topbar a, .topbar span {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar a:hover { color: var(--gold); }
.topbar i { color: var(--gold); font-size: .85em; }
.topbar-links { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-social {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
  justify-content: center;
  transition: background .2s;
}
.topbar-social:hover { background: var(--red); }
.topbar-social i { color: #fff; font-size: .78rem; }

/* ═══════════════════════════════════
   HEADER / NAVIGATION
═══════════════════════════════════ */
.mainbar {
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.mainbar.scrolled { box-shadow: 0 10px 30px rgba(22, 24, 29, .12); }

.mainbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo { height: 58px; width: auto; object-fit: contain; }
.brand-text { line-height: 1.2; }
.brand-name {
  display: block;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.22rem;
  color: var(--ink);
  letter-spacing: .01em;
}
.brand-tag {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-list > li { position: relative; }
.nav-list > li > a,
.nav-sub-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: none;
  border: none;
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-sub-btn i { font-size: .6rem; transition: transform .25s; color: var(--muted); }
.nav-list > li:hover > a,
.nav-list > li:hover > .nav-sub-btn { color: var(--red); }
.nav-list > li:hover > .nav-sub-btn i { transform: rotate(180deg); }

.nav-list > li > a.active {
  color: var(--red);
  background: var(--red-soft);
}

.nav-cta {
  margin-left: 10px;
  background: var(--gold) !important;
  color: var(--ink) !important;
  border-radius: 60px !important;
  padding: 11px 22px !important;
  font-family: var(--ff-display);
  font-weight: 700 !important;
  box-shadow: 0 6px 18px rgba(245, 194, 0, .3);
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-2px); }
.nav-cta.active { outline: 2px solid var(--ink); outline-offset: -2px; }

/* Dropdown */
.sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 250px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 500;
}
.has-sub:hover .sub-menu,
.has-sub.open .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sub-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.sub-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: .89rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background .18s, color .18s, padding-left .18s;
}
.sub-menu li a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: .7rem;
  color: var(--gold-dark);
}
.sub-menu li a:hover {
  background: var(--cream);
  color: var(--red);
  padding-left: 19px;
}

/* Burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  align-items: center;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════
   HERO (accueil)
═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: clamp(540px, 78vh, 760px);
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1.02); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(13, 14, 18, .94) 0%,
      rgba(13, 14, 18, .78) 38%,
      rgba(13, 14, 18, .38) 72%,
      rgba(13, 14, 18, .20) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 55%, var(--red) 55%, var(--red) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 90px 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5.4vw, 3.9rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -.015em;
}
.hero h1 span { color: var(--gold); }
.hero-lead {
  margin-top: 22px;
  max-width: 540px;
  font-size: clamp(.98rem, 1.6vw, 1.12rem);
  color: rgba(255, 255, 255, .82);
}
.hero-actions {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-badges {
  margin-top: 52px;
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.hero-badge { border-left: 3px solid var(--gold); padding-left: 15px; }
.hero-badge strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}
.hero-badge span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .68);
}

/* ═══════════════════════════════════
   PAGE HERO (pages internes)
═══════════════════════════════════ */
.page-hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .30;
  filter: saturate(.85);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(13,14,18,.92) 0%, rgba(13,14,18,.62) 55%, rgba(13,14,18,.34) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 55%, var(--red) 55%, var(--red) 100%);
}
.page-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 84px;
  padding-bottom: 72px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: .84rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 18px;
}
.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i.sep { font-size: .6rem; color: rgba(255,255,255,.4); }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.15;
}
.page-hero .page-sub {
  margin-top: 14px;
  max-width: 640px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.02rem;
}

/* ═══════════════════════════════════
   ABOUT / SPLIT
═══════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 5vw, 76px);
  align-items: center;
}
.split-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--ink);
  margin-top: 16px;
  line-height: 1.22;
  letter-spacing: -.01em;
}
.split-text > p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.01rem;
  line-height: 1.85;
}
.split-text .btn { margin-top: 32px; }

.split-media { position: relative; }
.split-media .frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.split-media .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.split-media:hover .frame img { transform: scale(1.05); }
.split-media::before {
  content: '';
  position: absolute;
  inset: 26px -26px -26px 26px;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(245,194,0,.5) 0 2px, transparent 2px 11px);
  z-index: -1;
}
.media-card {
  position: absolute;
  left: -24px;
  bottom: -24px;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  border-bottom: 3px solid var(--gold);
}
.media-card strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
.media-card span { font-size: .8rem; color: rgba(255,255,255,.75); }


/* Key facts row under about */
.fact-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fact {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 17px;
}
.fact i {
  color: var(--red);
  background: #fff;
  border: 1px solid var(--line);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .95rem;
}
.fact strong { display: block; font-size: .9rem; color: var(--ink); }
.fact span { font-size: .82rem; color: var(--muted); }

/* ═══════════════════════════════════
   UNITS SLIDER
═══════════════════════════════════ */
.slider-shell { position: relative; }
.slider-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 6px 34px;
  scrollbar-width: none;
}
.slider-track::-webkit-scrollbar { display: none; }
.slide {
  flex: 0 0 calc((100% - 52px) / 3);
  scroll-snap-align: start;
}
.slider-nav {
  position: absolute;
  top: -86px;
  right: 6px;
  display: flex;
  gap: 10px;
}
.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, transform .2s, border-color .2s;
  box-shadow: var(--shadow-sm);
}
.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.unit-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s, border-color .35s;
  height: 100%;
}
.unit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.unit-card figure {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.unit-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.unit-card:hover figure img { transform: scale(1.08); }
.unit-card figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,14,18,.42), transparent 55%);
}
.unit-card .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 40px;
}
.unit-card-body { padding: 22px 24px 24px; }
.unit-card-body h3 {
  font-family: var(--ff-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
  transition: color .25s;
}
.unit-card:hover h3 { color: var(--red); }
.unit-card-body p {
  margin-top: 6px;
  font-size: .87rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.unit-card-body p i { color: var(--red); font-size: .8rem; }
.unit-card-more {
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--ff-display);
  font-size: .82rem;
  font-weight: 700;
  color: var(--red);
}
.unit-card-more i { transition: transform .25s; }
.unit-card:hover .unit-card-more i { transform: translateX(5px); }

/* ═══════════════════════════════════
   STATS BAND
═══════════════════════════════════ */
.stats-band {
  position: relative;
  background: var(--ink);
  padding: 80px 0;
  overflow: hidden;
  border-top: 4px solid var(--gold);
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat {
  text-align: center;
  padding: 10px 16px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--ff-display);
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
.stat .num sup { font-size: .55em; color: var(--gold); }
.stat .lbl {
  display: block;
  margin-top: 10px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .72);
  max-width: 230px;
  margin-inline: auto;
}

/* ═══════════════════════════════════
   PRODUCTS
═══════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  position: relative;
  display: block;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 26px 30px;
  text-align: center;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.product-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 20px;
  border-radius: 26px;
  background: var(--gold-soft);
  border: 1px solid #f3e6a9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s, background .35s;
}
.product-card:hover .product-icon {
  transform: translateY(-4px) rotate(-3deg);
  background: var(--gold);
}
.product-icon img { width: 54px; height: 54px; object-fit: contain; }
.product-card h3 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.product-card p {
  margin-top: 8px;
  font-size: .85rem;
  color: var(--muted);
}
.product-card .go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--ff-display);
  font-size: .8rem;
  font-weight: 700;
  color: var(--red);
}
.product-card .go i { transition: transform .25s; font-size: .75rem; }
.product-card:hover .go i { transform: translateX(4px); }

/* ═══════════════════════════════════
   CONTACT STRIP + MAP
═══════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: stretch;
}
.contact-rows { display: flex; flex-direction: column; gap: 16px; }
.contact-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.contact-row:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.contact-row .ic {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 13px;
  background: var(--ink);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.contact-row strong {
  display: block;
  font-family: var(--ff-display);
  font-size: .95rem;
  color: var(--ink);
}
.contact-row span, .contact-row a {
  font-size: .92rem;
  color: var(--muted);
  text-decoration: none;
  word-break: break-word;
}
.contact-row a:hover { color: var(--red); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  min-height: 340px;
  height: 100%;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: none;
  display: block;
}

/* ═══════════════════════════════════
   CTA BAND
═══════════════════════════════════ */
.cta-band {
  background:
    linear-gradient(110deg, rgba(13,14,18,.95) 0%, rgba(13,14,18,.86) 100%),
    var(--ink);
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  border-top: 4px solid var(--gold);
}
.cta-band::before {
  content: '';
  position: absolute;
  right: -140px;
  top: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,194,0,.16), transparent 65%);
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  color: #fff;
  max-width: 620px;
  line-height: 1.3;
}
.cta-inner h2 span { color: var(--gold); }
.cta-inner p { color: rgba(255,255,255,.7); margin-top: 10px; max-width: 560px; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.site-footer {
  background: #101216;
  color: rgba(255, 255, 255, .72);
  border-top: 4px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-top: 68px;
  padding-bottom: 52px;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand-row img { height: 52px; width: auto; object-fit: contain; }
.footer-brand-row strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
}
.footer-brand-row em {
  display: block;
  font-style: normal;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-brand p { font-size: .89rem; line-height: 1.8; color: rgba(255,255,255,.62); }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background .25s, transform .25s;
}
.footer-social a:hover { background: var(--red); transform: translateY(-3px); }

.footer-col h4 {
  font-family: var(--ff-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a {
  font-size: .89rem;
  color: rgba(255, 255, 255, .64);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: color .2s, padding-left .2s;
}
.footer-col ul a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: .68rem;
  color: var(--gold-dark);
}
.footer-col ul a:hover { color: var(--gold); padding-left: 5px; }

.footer-contact li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: .89rem;
  color: rgba(255, 255, 255, .66);
}
.footer-contact i {
  color: var(--gold);
  margin-top: 4px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.footer-contact a { color: inherit; text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .84rem;
  color: rgba(255, 255, 255, .5);
}
.footer-bottom .gold { color: var(--gold); }

/* ═══════════════════════════════════
   SPEC SHEET (pages UAB)
═══════════════════════════════════ */
.spec-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.spec-card-head {
  background: var(--ink);
  color: #fff;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 3px solid var(--gold);
}
.spec-card-head i { color: var(--gold); }
.spec-list { padding: 10px 26px; }
.spec-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px dashed var(--line);
  font-size: .94rem;
}
.spec-list li:last-child { border-bottom: none; }
.spec-list .k {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.spec-list .k i {
  color: var(--red);
  font-size: .82rem;
  width: 18px;
  text-align: center;
}
.spec-list .v {
  font-weight: 700;
  color: var(--ink);
  text-align: right;
}

/* Chips (points de vente) */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 10px 18px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, border-color .25s;
}
.chip i { color: var(--red); font-size: .8rem; }
.chip:hover { transform: translateY(-3px); border-color: var(--gold); }

/* Sub-section heading inside pages */
.sub-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 64px 0 26px;
}
.sub-head:first-child { margin-top: 0; }
.sub-head i {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--gold-soft);
  border: 1px solid #f3e6a9;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.sub-head h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
}

/* Check list (infrastructures, unités des filiales…) */
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.check-grid.one { grid-template-columns: 1fr; }
.check-grid li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 17px;
  font-size: .92rem;
  color: var(--text);
  transition: transform .25s, box-shadow .25s;
}
.check-grid li:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.check-grid li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: .68rem;
  color: var(--ink);
  background: var(--gold);
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ═══════════════════════════════════
   GALLERY GRID + LIGHTBOX
═══════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-grid figure {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.gallery-grid figure::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  background: rgba(13, 14, 18, .38);
  opacity: 0;
  transition: opacity .3s;
}
.gallery-grid figure:hover::after { opacity: 1; }
.gallery-grid figure:hover img { transform: scale(1.07); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(10, 11, 14, .94);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: min(1100px, 90vw);
  max-height: 84vh;
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(0,0,0,.6);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  transition: color .2s, transform .2s;
}
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 1.1rem;
  transition: background .2s, color .2s;
}
.lightbox-arrow:hover { background: var(--gold); color: var(--ink); }
.lightbox-arrow.prev { left: 28px; }
.lightbox-arrow.next { right: 28px; }
.lightbox-count {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: .9rem;
  background: rgba(255, 255, 255, .12);
  padding: 8px 20px;
  border-radius: 40px;
  backdrop-filter: blur(6px);
}

/* ═══════════════════════════════════
   FILIALES
═══════════════════════════════════ */
.filiale-block {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}
.filiale-block:first-of-type { padding-top: 0; }
.filiale-block:last-of-type { border-bottom: none; padding-bottom: 0; }
.filiale-block.reverse .filiale-text  { order: 2; }
.filiale-block.reverse .filiale-media { order: 1; }

.filiale-num {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .16em;
  color: var(--red);
  text-transform: uppercase;
}
.filiale-num::before {
  content: '';
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
}
.filiale-text h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 800;
  color: var(--ink);
  margin-top: 14px;
  line-height: 1.3;
}
.filiale-text > p { margin-top: 14px; color: var(--muted); }
.filiale-text .check-grid { margin-top: 24px; }

.filiale-media { display: flex; flex-direction: column; gap: 16px; }
.featured-shot {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  position: relative;
}
.featured-shot img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform .55s ease;
}
.featured-shot:hover img { transform: scale(1.04); }
.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.thumb-row img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .3s, border-color .3s, opacity .3s;
  opacity: .85;
}
.thumb-row img:hover { transform: translateY(-4px); opacity: 1; }
.thumb-row img.active { border-color: var(--gold); opacity: 1; }

/* Video cards */
.video-list {
  display: grid;
  gap: 14px;
}
.video-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.video-thumb {
  position: relative;
  width: 190px;
  flex-shrink: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.video-card:hover .video-thumb img { transform: scale(1.07); }
.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 14, 18, .25);
}
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.video-play i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  padding-left: 3px;
  box-shadow: 0 8px 22px rgba(192, 32, 42, .45);
  transition: transform .3s, background .3s;
}
.video-card:hover .video-play i { transform: scale(1.14); }
.video-meta { padding: 14px 18px 14px 0; min-width: 0; }
.video-meta h5 {
  font-family: var(--ff-display);
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink);
}
.video-meta p {
  margin-top: 4px;
  font-size: .82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.video-meta p i { color: var(--red); font-size: .72rem; }

/* Organigrammes (présentation) */
.org-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  margin-top: 26px;
  overflow-x: auto;
}
.org-card img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
}

/* ═══════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════ */
.entity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.entity-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.entity-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.entity-card.wide { grid-column: 1 / -1; }
.entity-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 26px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.entity-head i {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--ink);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
}
.entity-head h3 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}
.entity-body { padding: 20px 26px 24px; display: grid; gap: 14px; }
.entity-line {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: .9rem;
}
.entity-line i {
  color: var(--red);
  width: 18px;
  text-align: center;
  margin-top: 4px;
  flex-shrink: 0;
  font-size: .85rem;
}
.entity-line strong {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.entity-line span, .entity-line a {
  color: var(--ink);
  text-decoration: none;
  word-break: break-word;
  display: block;
}
.entity-line a:hover { color: var(--red); }

/* ═══════════════════════════════════
   ANNONCES
═══════════════════════════════════ */
.notice-pill {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: var(--gold-soft);
  border: 1px solid #eeda87;
  color: #6d5600;
  font-weight: 700;
  font-size: .96rem;
  border-radius: 60px;
  padding: 13px 26px;
  margin-bottom: 34px;
}
.notice-pill i { color: var(--gold-dark); }
.notice-pill strong { color: var(--red); font-size: 1.05rem; }

.table-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.table-scroll { overflow-x: auto; }
.annonces-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  min-width: 760px;
}
.annonces-table thead th {
  background: var(--ink);
  color: #fff;
  text-align: left;
  font-family: var(--ff-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 20px;
  white-space: nowrap;
}
.annonces-table thead th:first-child { border-left: 4px solid var(--gold); }
.annonces-table tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.annonces-table tbody tr:last-child { border-bottom: none; }
.annonces-table tbody tr:hover { background: var(--cream); }
.annonces-table tbody td {
  padding: 18px 20px;
  vertical-align: middle;
  color: var(--text);
  line-height: 1.6;
}
.annonces-table tbody td:first-child {
  font-family: var(--ff-display);
  font-weight: 800;
  color: var(--muted);
}
.annonces-table .t-title { font-weight: 700; color: var(--ink); }
.annonces-table .t-date { white-space: nowrap; color: var(--muted); font-size: .85rem; }

.pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--red);
  color: #fff;
  padding: 10px 18px;
  border-radius: 40px;
  text-decoration: none;
  font-family: var(--ff-display);
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.pdf-btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(192, 32, 42, .3);
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1080px) {
  .nav-list > li > a, .nav-sub-btn { padding: 10px 9px; font-size: .86rem; }
  .nav-cta { padding: 10px 17px !important; }
  .slide { flex-basis: calc((100% - 26px) / 2); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .section { padding: 72px 0; }

  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 88vw);
    background: var(--paper);
    box-shadow: -20px 0 60px rgba(0, 0, 0, .18);
    transform: translateX(105%);
    transition: transform .38s cubic-bezier(.22,.61,.36,1);
    z-index: 2000;
    overflow-y: auto;
    padding: 92px 26px 40px;
  }
  .nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-list > li > a, .nav-sub-btn {
    width: 100%;
    justify-content: space-between;
    padding: 14px 12px;
    font-size: .98rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav-cta {
    margin: 18px 0 0 !important;
    justify-content: center !important;
    border-bottom: none !important;
    border-radius: 60px !important;
  }
  .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--gold);
    border-radius: 0;
    margin: 4px 0 8px 10px;
    padding: 0;
    display: none;
  }
  .has-sub.open .sub-menu { display: block; }
  .nav-veil {
    position: fixed;
    inset: 0;
    background: rgba(13, 14, 18, .5);
    z-index: 950;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
  }
  .nav-veil.show { opacity: 1; visibility: visible; }
  .nav-toggle.open { position: relative; z-index: 2100; }

  .split, .contact-grid, .entity-grid { grid-template-columns: 1fr; }
  .split-media::before { display: none; }
  .media-card { left: 18px; bottom: -20px; }
  .filiale-block { grid-template-columns: 1fr; gap: 34px; padding: 56px 0; }
  .filiale-block.reverse .filiale-text  { order: 1; }
  .filiale-block.reverse .filiale-media { order: 2; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .stat { border-right: none; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .slider-nav { position: static; margin-top: 6px; justify-content: center; }
  .check-grid { grid-template-columns: 1fr; }
  .fact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .topbar-right .topbar-note { display: none; }
  .brand-logo { height: 46px; }
  .brand-name { font-size: 1.05rem; }
  .brand-tag { font-size: .58rem; }

  .hero { min-height: 78vh; }
  .hero-veil {
    background:
      linear-gradient(180deg, rgba(13, 14, 18, .82) 0%, rgba(13, 14, 18, .68) 60%, rgba(13, 14, 18, .5) 100%);
  }
  .hero-content { padding: 64px 0; }
  .hero-actions .btn { padding: 13px 22px; font-size: .88rem; }
  .hero-badges { gap: 20px; }

  .page-hero .container { padding-top: 56px; padding-bottom: 48px; }

  .slide { flex-basis: 100%; }
  .product-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .featured-shot img { height: 250px; }
  .thumb-row img { height: 68px; }
  .video-card { flex-direction: column; align-items: stretch; }
  .video-thumb { width: 100%; }
  .video-meta { padding: 0 18px 18px; }

  .spec-list { padding: 6px 18px; }
  .spec-list li { flex-direction: column; gap: 4px; align-items: flex-start; }
  .spec-list .v { text-align: left; }

  .entity-head, .entity-body { padding-left: 20px; padding-right: 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-top: 52px; padding-bottom: 40px; }
  .footer-bottom .container { justify-content: center; text-align: center; }

  .lightbox-arrow.prev { left: 10px; }
  .lightbox-arrow.next { right: 10px; }
  .lightbox-arrow { width: 44px; height: 44px; }
}

@media (max-width: 380px) {
  .stats-grid { grid-template-columns: 1fr; }
  .thumb-row { grid-template-columns: repeat(2, 1fr); }
  .thumb-row img { height: 84px; }
}

.product-grid1{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-top:30px;
}

.img-card{
    width:300px;
    text-align:center;
}

.img-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    transition:.4s;
}

.img-card img:hover{
    transform:translateY(-8px);
}

.img-card h4{
    margin-top:15px;
    font-size:1.2rem;
    color:#222;
    font-weight:700;
}


.img-card1{
    width:300px;
    text-align:center;
}

.img-card1 img{
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    transition:.4s;
}

.img-card1 img:hover{
    transform:translateY(-8px);
}

.img-card1 h4{
    margin-top:15px;
    font-size:1.2rem;
    color:#222;
    font-weight:700;
}