/* PRFR-PRIMO — blend: Sanderson Farms · Intervision · Pilgrim's · Tyson · Perdue */
:root {
  --ht-blue: #003F70;
  --ht-red: #C41230;
  --ht-blue-light: #1a5490;
  --accent-gold: #FFC235;
  --accent-green: #2D6A4F;
  --bg: #ffffff;
  --section-alt: #f4f7fb;
  --text: #1a2332;
  --muted: #5c6578;
  --card: #ffffff;
  --line: #dde3ec;
  --wa: #25d366;
  --footer-bg: #002244;
  --hero-overlay: 0.62;
  --hero-image: none;
  --max: 1180px;
  --font-display: "Barlow Condensed", "Segoe UI", system-ui, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html:has(:target) { scroll-padding-top: 100px; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

/* —— Utility bar (Tyson / Intervision corporate) —— */
.utility-bar {
  background: var(--footer-bg);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.utility-inner {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  padding: 9px 24px;
}
.utility-bar a {
  color: rgba(255,255,255,.88);
  text-decoration: none;
}
.utility-bar a:hover { color: var(--accent-gold); }

/* —— Header (Sanderson / Perdue clean nav) —— */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0,63,112,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
  flex-wrap: wrap;
}
.logo img { height: 50px; width: auto; display: block; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ht-blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.main-nav a {
  color: var(--text);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.main-nav a:hover {
  color: var(--ht-red);
  border-bottom-color: var(--ht-red);
}

/* —— Hero (Sanderson bold + Pilgrim's full-bleed + Tyson red accent) —— */
.hero-sf {
  position: relative;
  min-height: clamp(360px, 56vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background-color: var(--ht-blue);
}
.hero-sf-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-sf-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-sf-slide.is-active { opacity: 1; }
.hero-sf-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-sf-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero-sf-dot {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 50%;
  padding: 0;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.hero-sf-dot.is-active {
  background: var(--accent-gold);
  transform: scale(1.15);
}
.hero-sf::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,.015) 40px,
      rgba(255,255,255,.015) 41px
    ),
    linear-gradient(
      125deg,
      color-mix(in srgb, var(--footer-bg) calc(var(--hero-overlay) * 100%), transparent) 0%,
      color-mix(in srgb, var(--ht-blue) calc(var(--hero-overlay) * 90%), transparent) 45%,
      color-mix(in srgb, var(--ht-red) calc(var(--hero-overlay) * 75%), transparent) 100%
    );
  pointer-events: none;
}
.hero-sf::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,20,40,.45) 0%, transparent 55%);
  pointer-events: none;
}
.hero-sf-content {
  position: relative;
  z-index: 2;
  padding: 56px 24px;
  max-width: 920px;
}
.hero-logo {
  margin-bottom: 20px;
}
.hero-logo img {
  height: clamp(56px, 10vw, 88px);
  width: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,.35));
}
.hero-sf h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 28px rgba(0,0,0,.4);
}
.hero-sf h1 span { display: block; }
.hero-sf h1 span:last-child {
  color: var(--accent-gold);
}
.hero-sf-sub {
  margin: 22px auto 0;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 580px;
  opacity: 0.96;
  font-weight: 400;
}
.hero-sf-kr {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.82;
  font-style: italic;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}
.hero-brand-strip {
  position: absolute;
  left: 50%;
  bottom: 44px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  max-width: min(960px, 94vw);
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 20, 40, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12);
}
.hero-brand-strip-primo {
  height: 28px;
  width: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.35));
}
.hero-brand-strip-label {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.88;
  white-space: nowrap;
}
.hero-brand-strip-partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hero-brand-strip-logo {
  height: 24px;
  width: auto;
  max-width: 84px;
  object-fit: contain;
  opacity: 1;
  background: rgba(255, 255, 255, 0.96);
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.22);
}
.hero-sf[data-hero-slideshow] .hero-brand-strip {
  bottom: 52px;
}
@media (max-width: 640px) {
  .hero-brand-strip {
    bottom: 40px;
    padding: 8px 12px;
    border-radius: 16px;
  }
  .hero-brand-strip-label { display: none; }
  .hero-brand-strip-logo { height: 20px; max-width: 64px; padding: 3px 6px; }
  .hero-brand-strip-primo { height: 22px; }
}

/* —— Promo tiles (Sanderson photo cards) —— */
.promo-section {
  padding: 0;
  background: var(--section-alt);
}
.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .promo-grid { grid-template-columns: repeat(3, 1fr); }
}
.promo-card {
  position: relative;
  min-height: clamp(300px, 38vw, 380px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  border-right: 1px solid rgba(255,255,255,.08);
}
.promo-grid .promo-card:last-child { border-right: none; }
.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--promo-bg, none) center / cover no-repeat;
  transition: transform 0.55s ease;
}
.promo-card:hover::after { transform: scale(1.06); }
.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 18, 40, 0.92) 0%,
    rgba(0, 34, 68, 0.55) 45%,
    rgba(0, 63, 112, 0.18) 100%
  );
  transition: opacity 0.25s;
}
.promo-card.tone-red::before {
  background: linear-gradient(
    to top,
    rgba(60, 8, 20, 0.92) 0%,
    rgba(120, 16, 40, 0.5) 45%,
    rgba(0, 63, 112, 0.15) 100%
  );
}
.promo-card.tone-gold::before {
  background: linear-gradient(
    to top,
    rgba(20, 30, 10, 0.92) 0%,
    rgba(40, 50, 20, 0.52) 45%,
    rgba(0, 63, 112, 0.12) 100%
  );
}
.promo-card:hover::before { opacity: 0.92; }
/* Fallback when no image */
.promo-card:not(.has-bg).tone-blue::after {
  background: linear-gradient(155deg, var(--ht-blue-light) 0%, var(--ht-blue) 100%);
}
.promo-card:not(.has-bg).tone-red::after {
  background: linear-gradient(155deg, #9a0e28 0%, var(--ht-red) 100%);
}
.promo-card:not(.has-bg).tone-gold::after {
  background: linear-gradient(155deg, #b8860b 0%, #8a6508 100%);
}
.promo-card-inner {
  position: relative;
  z-index: 2;
  padding: 28px 26px 30px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s;
}
.promo-card:hover .promo-card-inner { border-top-color: var(--accent-gold); }
.promo-card.tone-red:hover .promo-card-inner { border-top-color: var(--ht-red); }
.promo-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--footer-bg);
  background: var(--accent-gold);
  border-radius: 2px;
}
.promo-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.promo-card p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.45;
  opacity: 0.94;
  max-width: 28ch;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  padding-bottom: 2px;
  border-bottom: 2px solid rgba(255,194,53,.45);
  transition: border-color 0.2s, gap 0.2s;
}
.promo-card:hover .promo-cta {
  border-bottom-color: var(--accent-gold);
  gap: 10px;
}
.promo-cta::after { content: "›"; font-size: 16px; line-height: 1; }

/* —— Stats band (Intervision by the numbers) —— */
.stats-band {
  background: var(--footer-bg);
  color: #fff;
  padding: 40px 24px;
  border-bottom: 4px solid var(--accent-gold);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
  text-align: center;
}
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  color: var(--accent-gold);
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}

/* —— Brand story / À propos —— */
#apropos {
  scroll-margin-top: 88px;
}
.section-about {
  position: relative;
  overflow: hidden;
  background: var(--section-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url(logo-hero.png) center 38% / min(560px, 72vw) no-repeat;
  opacity: 0.09;
  pointer-events: none;
}
.section-about::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--section-alt) 88%, transparent) 0%,
    color-mix(in srgb, var(--section-alt) 72%, transparent) 45%,
    color-mix(in srgb, var(--section-alt) 88%, transparent) 100%
  );
  pointer-events: none;
}
.section-about .container {
  position: relative;
  z-index: 1;
}
.about-kicker {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ht-red);
}
.section-about .section-head h2 {
  margin-bottom: 16px;
}
.about-lead {
  margin: 0 auto;
  max-width: 720px;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.65;
  color: var(--text);
}
.about-body {
  max-width: 820px;
  margin: 28px auto 0;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(0, 63, 112, 0.08);
  text-align: left;
}
.about-body p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}
.about-body p + p {
  margin-top: 16px;
}
.about-primo-meaning {
  max-width: 920px;
  margin: 32px auto 0;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(0, 63, 112, 0.08);
  text-align: center;
}
.about-primo-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ht-blue);
}
.about-primo-intro {
  margin: 0 auto 24px;
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}
.about-primo-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  text-align: left;
}
.about-primo-pillar {
  padding: 18px 20px;
  background: var(--section-alt);
  border: 1px solid var(--line);
  border-radius: 4px;
  border-top: 3px solid var(--ht-red);
}
.about-primo-pillar strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ht-blue);
}
.about-primo-pillar p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text);
}
@media (max-width: 820px) {
  .about-primo-pillars {
    grid-template-columns: 1fr;
  }
  .about-primo-meaning {
    padding: 22px 20px;
  }
}
.section-about .values-grid {
  margin-top: 36px;
}
.section-about .value-card--text {
  text-align: center;
}

.brand-story {
  padding: 72px 24px;
  text-align: center;
  background: var(--section-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brand-story h2 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ht-blue);
}
.brand-story h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: var(--ht-red);
  margin: 14px auto 0;
}
.brand-story p {
  margin: 0 auto;
  max-width: 720px;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}
.brand-story-lead {
  margin: 0 auto 28px !important;
  max-width: 680px !important;
  font-size: 1.2rem !important;
  font-weight: 600;
  color: var(--text) !important;
  line-height: 1.6 !important;
}
.brand-story-copy p + p {
  margin-top: 18px;
}
.brand-story .values-grid {
  margin-top: 36px;
  text-align: left;
}
.brand-story .value-card--text {
  font-size: 15px;
  font-weight: 600;
  color: var(--ht-blue);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 16px 18px;
  list-style: none;
}

/* —— Content sections —— */
.section {
  padding: 64px 0 56px;
}
.section-alt {
  background: var(--section-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section-head h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--ht-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-head p { margin: 0; color: var(--muted); font-size: 16px; max-width: 640px; margin-inline: auto; }

.lead {
  font-size: 17px;
  color: #333;
  max-width: 680px;
  margin: 0 auto 24px;
  text-align: center;
  line-height: 1.65;
}
.muted { color: var(--muted); font-size: 14px; }

/* —— Services (Intervision numbered cards) —— */
.section-services { background: #fff; }
.services-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--ht-blue);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}
.service-card--photo {
  padding: 0;
  overflow: hidden;
}
.service-card-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a1628;
}
.service-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card:hover {
  box-shadow: 0 12px 36px rgba(0,63,112,.12);
  border-color: #b8c8dc;
  transform: translateY(-2px);
}
.service-card:nth-child(2) { border-top-color: var(--ht-red); }
.service-card:nth-child(3) { border-top-color: var(--accent-gold); }
.service-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--line);
  margin-bottom: 12px;
}
.service-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ht-blue);
}
.service-card p {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.service-link {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ht-red);
}

/* —— Values —— */
.values-grid {
  display: grid;
  gap: 20px;
  max-width: 960px;
  margin: 32px auto 0;
  list-style: none;
  padding: 0;
}
@media (min-width: 720px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid .value-card--text { grid-column: 1 / -1; }
}
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,63,112,.04);
}
.value-card--text {
  border-left: 4px solid var(--ht-red);
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-align: center;
  background: #fff;
}
.value-card--photo { display: flex; flex-direction: column; }
.value-photo-wrap {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}
.value-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.value-text {
  margin: 0;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  border-left: 4px solid var(--ht-red);
  line-height: 1.45;
}

/* —— Product & location grids —— */
.grid { display: grid; gap: 20px; }
@media (min-width: 640px) {
  .grid.products { grid-template-columns: repeat(3, 1fr); }
  .grid.locations { grid-template-columns: repeat(3, 1fr); }
}

/* Intervision portfolio-style product cards */
.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.15s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 10px 32px rgba(0,63,112,.1);
  transform: translateY(-2px);
}
.product-card-visual {
  height: 72px;
  background: linear-gradient(135deg, var(--ht-blue-light) 0%, var(--ht-blue) 100%);
  position: relative;
}
.product-card-visual::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: -18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.3);
}
.product-card--poultry .product-card-visual {
  background: linear-gradient(135deg, #1a5490 0%, var(--ht-blue) 100%);
}
.product-card--pork .product-card-visual {
  background: linear-gradient(135deg, #8b2942 0%, var(--ht-red) 100%);
}
.product-card--other .product-card-visual {
  background: linear-gradient(135deg, var(--accent-green) 0%, #1b4332 100%);
}
.product-card-body { padding: 28px 22px 22px; flex: 1; }
.product-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ht-blue);
}
.product-card p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }

.location-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.location-card:hover { box-shadow: 0 10px 32px rgba(0,63,112,.1); }
.location-body { padding: 20px 24px 24px; }
.location-photo-wrap { margin: 0; position: relative; }
.location-photo {
  display: block;
  width: 100%;
  height: 168px;
  object-fit: cover;
}
.location-landmark {
  position: absolute;
  left: 12px;
  bottom: 10px;
  margin: 0;
  padding: 4px 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 63, 112, 0.88);
  border-radius: 2px;
}
.location-address {
  font-size: 14px;
  color: var(--text);
  line-height: 1.45;
  margin: 0 0 8px !important;
}
.location-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ht-blue);
}
.location-card p { margin: 0; font-size: 14px; color: var(--muted); }

.location-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.badge {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 2px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-open { background: #dcfce7; color: #166534; }
.badge-closed { background: #fee2e2; color: var(--ht-red); }

/* —— Buttons (Perdue gold + Tyson red) —— */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 3px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.15s, filter 0.15s, background 0.15s;
  border: 2px solid transparent;
}
.btn:active { transform: scale(0.98); }
.btn-gold {
  background: var(--accent-gold);
  color: var(--footer-bg);
  box-shadow: 0 4px 16px rgba(255,194,53,.35);
}
.btn-gold:hover { filter: brightness(1.06); }
.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
}
.btn-wa:hover { filter: brightness(1.05); }
.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(188, 24, 136, 0.35);
}
.btn-instagram:hover { filter: brightness(1.08); }
.btn-email {
  background: #fff;
  color: var(--ht-blue);
  border: 2px solid rgba(255,255,255,.9);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn-email:hover { filter: brightness(0.98); background: var(--accent-gold); color: var(--footer-bg); border-color: var(--accent-gold); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.85);
}
.btn-outline:hover { background: rgba(255,255,255,.12); }

/* —— CTA band —— */
.cta-band {
  background: linear-gradient(135deg, var(--ht-blue) 0%, var(--footer-bg) 100%);
  color: #fff;
  padding: 56px 24px;
  text-align: center;
  border-top: 4px solid var(--ht-red);
}
.cta-band h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cta-band p {
  margin: 0 auto 24px;
  max-width: 520px;
  opacity: 0.92;
  font-size: 16px;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 8px;
}
.contact-email { margin-top: 16px; font-size: 14px; opacity: 0.85; }
.contact-email a { color: var(--accent-gold); }

/* —— Footer —— */
.site-footer {
  background: var(--footer-bg);
  color: #c8d4e4;
  padding: 48px 0 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
.footer-logo img { height: 44px; width: auto; margin-bottom: 12px; }
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-tagline { color: #7a8fa8; margin-top: 6px; font-size: 13px; }
.footer-col h4 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
}
.footer-col a {
  display: block;
  color: #b8c8dc;
  text-decoration: none;
  margin: 8px 0;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
  font-size: 12px;
  color: #7a8fa8;
}

@media (max-width: 767px) {
  .main-nav { width: 100%; font-size: 13px; gap: 10px 14px; }
  .logo img { height: 40px; }
  .promo-card {
    min-height: 280px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .promo-grid .promo-card:last-child { border-bottom: none; }
  .promo-card p { max-width: none; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; }
}

/* —— Showcases & slideshows —— */
.showcase { padding: 56px 0; background: #fff; }
.showcase-products { border-bottom: 1px solid var(--line); }

.product-category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .product-category-grid { grid-template-columns: repeat(3, 1fr); }
}
.product-category-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.15s;
}
.product-category-card:hover {
  box-shadow: 0 10px 32px rgba(0,63,112,.1);
  transform: translateY(-2px);
}
.product-category-visual {
  background: var(--section-alt);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.product-category-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.product-category-body { padding: 22px 20px 20px; flex: 1; }
.product-category-body h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ht-blue);
}
.product-category-body p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.product-category-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}
.product-category-brands img {
  max-height: 28px;
  max-width: 88px;
  object-fit: contain;
}

.brand-box-heading {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ht-blue);
  text-align: center;
}
.brand-box-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 8px;
}
@media (min-width: 640px) {
  .brand-box-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .brand-box-grid { grid-template-columns: repeat(4, 1fr); }
}

/* —— Interactive product explorer —— */
#produits,
#produits-list {
  scroll-margin-top: 100px;
}
.product-explorer {
  background: linear-gradient(180deg, #e8f0fa 0%, #fff 320px);
  border-top: 4px solid var(--ht-red);
  border-bottom: 1px solid var(--line);
}
.product-explorer .section-head h2 {
  color: var(--ht-blue);
}
.product-explorer .section-head h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: var(--accent-gold);
  margin: 12px auto 0;
}
.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 28px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,63,112,.06);
}
.product-tab {
  appearance: none;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--ht-blue);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.product-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,63,112,.12);
}
.product-tab.is-active {
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.product-tab[data-filter="all"] { border-color: var(--accent-gold); color: #9a7200; }
.product-tab[data-filter="all"].is-active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--footer-bg);
}
.product-tab[data-filter="poultry"] { border-color: var(--ht-blue); color: var(--ht-blue); }
.product-tab[data-filter="poultry"].is-active {
  background: var(--ht-blue);
  border-color: var(--ht-blue);
}
.product-tab[data-filter="pork"] { border-color: var(--ht-red); color: var(--ht-red); }
.product-tab[data-filter="pork"].is-active {
  background: var(--ht-red);
  border-color: var(--ht-red);
}
.product-tab[data-filter="other"] { border-color: var(--accent-green); color: var(--accent-green); }
.product-tab[data-filter="other"].is-active {
  background: var(--accent-green);
  border-color: var(--accent-green);
}
.product-tab-count {
  display: inline-block;
  min-width: 1.4em;
  margin-left: 6px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  font-size: 11px;
}
.product-tab:not(.is-active) .product-tab-count {
  background: var(--section-alt);
  color: var(--muted);
}

.product-category-picks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .product-category-picks { grid-template-columns: repeat(3, 1fr); }
}
.product-category-pick {
  appearance: none;
  text-align: left;
  width: 100%;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.15s, border-color 0.2s;
  padding: 0;
  font: inherit;
  color: inherit;
  box-shadow: 0 4px 16px rgba(0,63,112,.05);
}
.product-category-pick[data-filter="poultry"] {
  border-top: 5px solid var(--ht-blue);
}
.product-category-pick[data-filter="pork"] {
  border-top: 5px solid var(--ht-red);
}
.product-category-pick[data-filter="other"] {
  border-top: 5px solid var(--accent-green);
}
.product-category-pick:hover {
  box-shadow: 0 12px 36px rgba(0,63,112,.14);
  transform: translateY(-3px);
}
.product-category-pick.is-active[data-filter="poultry"] {
  border-color: var(--ht-blue);
  box-shadow: 0 0 0 3px rgba(0,63,112,.18), 0 12px 36px rgba(0,63,112,.12);
}
.product-category-pick.is-active[data-filter="pork"] {
  border-color: var(--ht-red);
  box-shadow: 0 0 0 3px rgba(196,18,48,.18), 0 12px 36px rgba(196,18,48,.1);
}
.product-category-pick.is-active[data-filter="other"] {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(45,106,79,.2), 0 12px 36px rgba(45,106,79,.1);
}
.product-category-pick .product-category-visual {
  min-height: 140px;
  background: linear-gradient(180deg, var(--section-alt) 0%, #fff 100%);
}
.product-category-pick[data-filter="poultry"] .product-category-visual {
  background: linear-gradient(180deg, #dce8f5 0%, #fff 100%);
}
.product-category-pick[data-filter="pork"] .product-category-visual {
  background: linear-gradient(180deg, #fde8ec 0%, #fff 100%);
}
.product-category-pick[data-filter="other"] .product-category-visual {
  background: linear-gradient(180deg, #e3f0ea 0%, #fff 100%);
}
.product-category-pick .product-category-photo { height: 160px; }

.product-spotlight {
  position: relative;
  min-height: 120px;
  margin-bottom: 32px;
  background: #fff;
  border: 2px solid var(--line);
  border-left: 5px solid var(--ht-blue);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,63,112,.08);
}
.product-spotlight:has([data-panel="poultry"].is-active) { border-left-color: var(--ht-blue); }
.product-spotlight:has([data-panel="pork"].is-active) { border-left-color: var(--ht-red); }
.product-spotlight:has([data-panel="other"].is-active) { border-left-color: var(--accent-green); }
.product-spotlight:has([data-panel="all"].is-active) { border-left-color: var(--accent-gold); }
.product-spotlight-panel {
  padding: 24px;
  animation: productSpotlightIn 0.35s ease;
}
.product-spotlight-panel[hidden] { display: none; }
.product-spotlight-panel.is-active { display: block; }
@keyframes productSpotlightIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.product-spotlight-lead {
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
  max-width: 640px;
}
.product-spotlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-spotlight-tags li {
  padding: 6px 12px;
  background: var(--ht-blue);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.product-spotlight-tags li:nth-child(2) { background: var(--ht-red); }
.product-spotlight-tags li:nth-child(3) { background: var(--accent-green); }
.product-spotlight-tags li:nth-child(4) { background: var(--accent-gold); color: var(--footer-bg); }
.product-spotlight-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}
@media (min-width: 768px) {
  .product-spotlight-grid { grid-template-columns: 1.1fr 0.9fr; }
}
.product-spotlight-copy h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ht-blue);
}
.product-spotlight-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
}
.product-spotlight-list {
  margin: 0 0 16px;
  padding-left: 1.1em;
  color: var(--text);
  line-height: 1.7;
}
.product-spotlight-visual {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}
.product-spotlight-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.brand-box-grid {
  transition: opacity 0.25s ease;
}
.brand-box-grid.is-filtering { opacity: 0.55; }
.brand-box-card {
  appearance: none;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  position: relative;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}
.brand-box-card::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--accent-gold);
}
.brand-box-card[data-category="poultry"]::before { background: var(--ht-blue); }
.brand-box-card[data-category="pork"]::before { background: var(--ht-red); }
.brand-box-card[data-category="other"]::before { background: var(--accent-green); }
.brand-box-card:hover {
  box-shadow: 0 12px 32px rgba(0,63,112,.16);
  transform: translateY(-4px) scale(1.01);
}
.brand-box-card[data-category="poultry"]:hover { border-color: var(--ht-blue); }
.brand-box-card[data-category="pork"]:hover { border-color: var(--ht-red); }
.brand-box-card[data-category="other"]:hover { border-color: var(--accent-green); }
.brand-box-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--section-alt);
}
.brand-box-card.is-hidden {
  display: none;
}
.brand-box-card-meta {
  display: block;
  padding: 12px 14px 6px;
  text-align: center;
}
.brand-box-card-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ht-blue);
  margin-bottom: 4px;
}
.brand-box-card-meta span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}
.brand-box-card-hint {
  display: block;
  padding: 0 14px 14px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ht-blue);
  opacity: 1;
  transform: none;
  transition: background 0.2s;
}
.brand-box-card[data-category="pork"] .brand-box-card-hint { background: var(--ht-red); }
.brand-box-card[data-category="other"] .brand-box-card-hint { background: var(--accent-green); }
.brand-box-card:hover .brand-box-card-hint,
.brand-box-card:focus-visible .brand-box-card-hint {
  filter: brightness(1.08);
}
.brand-box-card:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 2px;
}

.product-filter-empty {
  text-align: center;
  padding: 24px;
  margin: 0 0 16px;
  background: var(--section-alt);
  border: 1px dashed var(--line);
  border-radius: 4px;
  color: var(--muted);
}
.product-catalog {
  padding-top: 8px;
}
.product-catalog .brand-box-heading {
  font-size: 1.15rem;
  color: var(--ht-blue);
  border-bottom: 3px solid var(--accent-gold);
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 24px;
}
.product-explorer-cta {
  text-align: center;
  margin: 28px 0 20px;
  padding: 28px 24px;
  background: linear-gradient(135deg, var(--ht-blue) 0%, var(--footer-bg) 100%);
  border-radius: 8px;
  border: none;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
}
.product-explorer-cta p {
  margin: 0;
  flex: 1 1 100%;
  color: rgba(255,255,255,.92);
}
.product-explorer-cta .btn-gold {
  box-shadow: 0 6px 24px rgba(255,194,53,.45);
}

.product-lightbox {
  padding: 0;
  border: none;
  border-radius: 6px;
  max-width: min(920px, calc(100vw - 24px));
  width: 100%;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.product-lightbox::backdrop {
  background: rgba(0, 20, 50, 0.72);
  backdrop-filter: blur(4px);
}
.product-lightbox-inner { position: relative; }
.product-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.product-lightbox-close:hover { background: var(--ht-red); }
.product-lightbox-figure { margin: 0; }
.product-lightbox-figure img {
  width: 100%;
  max-height: min(70vh, 520px);
  object-fit: contain;
  background: var(--section-alt);
  display: block;
}
.product-lightbox-figure figcaption {
  padding: 20px 24px 0;
  text-align: center;
}
.product-lightbox-brand {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ht-red);
}
.product-lightbox-figure h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ht-blue);
}
.product-lightbox-actions {
  padding: 20px 24px 24px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.product-lightbox-ig { font-size: 14px; }

.product-card-visual.has-photo {
  height: auto;
  background: var(--section-alt);
}
.product-card-visual.has-photo::after { display: none; }
.product-card-visual.has-photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.showcase-brands {
  background: var(--section-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.showcase-logistics {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.slideshow-logistics .slideshow-slide {
  aspect-ratio: 16 / 9;
  background: #0a1628;
}
.slideshow-logistics .slideshow-slide img {
  object-fit: cover;
  object-position: center;
}

.slideshow { position: relative; max-width: 960px; margin: 0 auto; }
.slideshow-viewport {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,63,112,.14);
  border: 1px solid var(--line);
}
.slideshow-track { display: flex; transition: transform 0.45s ease; }
.slideshow-slide {
  flex: 0 0 100%;
  margin: 0;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
}
.slideshow-brands .slideshow-slide {
  aspect-ratio: 16 / 7;
  background: #fff;
}
.slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slideshow-clients .slideshow-slide { background: #0a1628; }
.slideshow-clients .slideshow-slide img { object-fit: cover; object-position: center; }
.client-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ht-red);
  border-radius: 2px;
}
.client-badge a { color: inherit; text-decoration: none; }
.client-badge a:hover { text-decoration: underline; }
.slideshow-brands .slideshow-slide img {
  object-fit: contain;
  padding: 16px;
  background: #fff;
}
.slideshow-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 32px;
  background: linear-gradient(to top, rgba(0,34,68,.88) 0%, rgba(0,63,112,.4) 55%, transparent 100%);
  color: #fff;
  text-align: left;
}
.slideshow-overlay h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.slideshow-caption {
  margin: 0;
  font-size: 15px;
  opacity: 0.95;
  max-width: 520px;
}

.slideshow-prev, .slideshow-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px; height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: var(--ht-blue);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 4px;
}
.slideshow-prev { left: -8px; }
.slideshow-next { right: -8px; }
.slideshow-prev:hover, .slideshow-next:hover { background: #fff; color: var(--ht-red); }

.slideshow-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.slideshow-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
}
.slideshow-dot.is-active { background: var(--ht-red); transform: scale(1.15); }

/* Tyson-style brand portfolio grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 900px) {
  .brand-grid { grid-template-columns: repeat(5, 1fr); }
}
.brand-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 18px 14px;
  text-align: center;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}
.brand-card:hover {
  box-shadow: 0 8px 24px rgba(0,63,112,.1);
  border-color: var(--ht-blue);
  transform: translateY(-2px);
}
.brand-card img {
  max-height: 48px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.brand-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ht-blue);
  line-height: 1.25;
}
.brand-disclaimer, .product-disclaimer {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
}

.brand-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.brand-pill {
  display: inline-block;
  padding: 10px 18px;
  background: #fff;
  border: 2px solid var(--ht-blue);
  color: var(--ht-blue);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 3px;
}

@media (max-width: 640px) {
  .slideshow-prev { left: 4px; }
  .slideshow-next { right: 4px; }
  .slideshow-prev, .slideshow-next { width: 36px; height: 36px; font-size: 22px; }
}
