/* Prime Meats — main.css */

:root {
  --color-bg-dark:   #111111;
  --color-bg-light:  #ffffff;
  --color-bg-gray:   #f5f5f5;
  --color-bg-darker: #0a0a0a;
  --color-gold:      #c8a84b;
  --color-gold-hover:#e0bc60;
  --color-text-light:#ffffff;
  --color-text-dark: #1a1a1a;
  --color-text-muted:#666666;
  --font-display:    'Bebas Neue', 'Anton', sans-serif;
  --font-body:       'Montserrat', sans-serif;
  --nav-h:           70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--color-bg-light); color: var(--color-text-dark); font-family: var(--font-body); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }
input:focus, textarea:focus { outline: none; }
textarea { resize: vertical; }

body.page-customer-portal { height: 100vh; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--color-bg-dark); height: var(--nav-h); border-bottom: 1px solid transparent; transition: border-color 0.3s, box-shadow 0.3s; }
.nav.scrolled { border-bottom-color: rgba(200,168,75,0.25); box-shadow: 0 2px 20px rgba(0,0,0,0.6); }
.nav__inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; height: 100%; display: flex; align-items: center; gap: 28px; }
.nav__logo { display: flex; flex-direction: column; line-height: 1.1; flex-shrink: 0; gap: 1px; }
.nav__logo-mark { font-family: var(--font-display); font-size: 24px; color: var(--color-gold); letter-spacing: 2px; line-height: 1; }
.nav__logo-text { font-family: var(--font-display); font-size: 13px; color: #fff; letter-spacing: 3px; line-height: 1; }
.nav__links { display: flex; align-items: center; gap: 18px; flex: 1; justify-content: center; list-style: none; }
.nav__link { font-family: var(--font-body); font-size: 10.5px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.2px; color: #fff; padding-bottom: 3px; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; white-space: nowrap; display: inline-block; }
.nav__link:hover, .nav__link--active { color: var(--color-gold); border-bottom-color: var(--color-gold); }
.nav__link--cta { color: var(--color-gold); }
.nav__link--portal { border: 1px solid var(--color-gold); padding: 4px 12px; color: var(--color-gold); border-bottom-width: 1px; }
.nav__link--portal:hover, .nav__link--portal.nav__link--active { background: var(--color-gold); color: #111; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; flex-shrink: 0; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: #fff; }

/* ===== MOBILE MENU ===== */
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 999; background: var(--color-bg-dark); padding: 24px 40px; flex-direction: column; border-bottom: 1px solid rgba(200,168,75,0.3); box-shadow: 0 8px 32px rgba(0,0,0,0.7); }
.mobile-menu.open { display: flex; }
.mobile-menu__close { background: none; border: none; color: #fff; font-size: 18px; align-self: flex-end; margin-bottom: 8px; cursor: pointer; }
.mobile-menu__link { font-family: var(--font-body); font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s; display: block; }
.mobile-menu__link:last-child { border-bottom: none; }
.mobile-menu__link:hover { color: var(--color-gold); }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-block; background: var(--color-gold); color: #111; font-family: var(--font-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 14px 32px; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.btn-primary:hover { background: var(--color-gold-hover); transform: scale(1.02); }
.btn-secondary { display: inline-block; background: transparent; color: var(--color-gold); font-family: var(--font-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 12px 30px; border: 2px solid var(--color-gold); cursor: pointer; transition: background 0.2s, color 0.2s, transform 0.15s; }
.btn-secondary:hover { background: var(--color-gold); color: #111; transform: scale(1.02); }

/* ===== SECTION TITLE PATTERN ===== */
.section-title { font-family: var(--font-body); font-size: 28px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--color-text-dark); text-align: center; margin-bottom: 12px; }
.section-title--light { color: var(--color-text-light); }
.section-divider { width: 50px; height: 3px; background: var(--color-gold); margin: 0 auto 16px; }
.section-subtitle { font-family: var(--font-body); font-size: 14px; color: var(--color-text-muted); text-align: center; max-width: 700px; margin: 0 auto; line-height: 1.75; }
.img-ph { background: #1a1a1a; display: flex; align-items: center; justify-content: center; color: var(--color-gold); font-family: var(--font-body); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; text-align: center; padding: 20px; width: 100%; }

/* ===== CTA BANNER ===== */
.cta-banner { background: #1a1a1a; min-height: 280px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 40px; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(200,168,75,0.08) 0%, transparent 70%); }
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner__eyebrow { font-family: var(--font-body); font-size: 12px; font-weight: 600; color: var(--color-gold); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 16px; }
.cta-banner__headline { font-family: var(--font-display); font-size: 48px; color: var(--color-text-light); letter-spacing: 2px; margin-bottom: 16px; line-height: 1; }
.cta-banner__subtitle { font-family: var(--font-body); font-size: 15px; color: rgba(255,255,255,0.65); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.65; }

/* ===== FOOTER ===== */
.footer { background: var(--color-bg-dark); border-top: 1px solid var(--color-gold); padding: 28px 40px; }
.footer__inner { max-width: 1400px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer__brand { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.footer__logo-mark { font-family: var(--font-display); font-size: 20px; color: var(--color-gold); letter-spacing: 2px; }
.footer__logo-text { font-family: var(--font-display); font-size: 11px; color: #fff; letter-spacing: 3px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.footer__link { font-family: var(--font-body); font-size: 12px; color: var(--color-gold); transition: opacity 0.2s; }
.footer__link:hover { opacity: 0.75; }
.footer__copy { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,0.45); }

/* ===== HIRING WIDGET ===== */
.hiring-widget { position: fixed; top: 80px; right: 0; z-index: 950; background: #fff; border: 1px solid #e0e0e0; border-right: none; padding: 16px 20px; width: 250px; box-shadow: -4px 4px 20px rgba(0,0,0,0.12); display: flex; align-items: center; gap: 10px; }
.hiring-widget__text { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--color-text-dark); flex: 1; }
.hiring-widget__btn { background: var(--color-gold); color: #111; font-family: var(--font-body); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 8px 12px; border: none; cursor: pointer; text-align: center; transition: background 0.2s; text-decoration: none; white-space: nowrap; }
.hiring-widget__btn:hover { background: var(--color-gold-hover); }
.hiring-widget__close { background: none; border: none; font-size: 14px; color: #999; cursor: pointer; transition: color 0.2s; flex-shrink: 0; }
.hiring-widget__close:hover { color: #333; }

/* ===== PAGE HERO: centered (most pages) ===== */
.page-hero { background: var(--color-bg-light); padding: 150px 40px 64px; text-align: center; }
.page-hero__title { font-family: var(--font-display); font-size: 64px; color: var(--color-text-dark); letter-spacing: 3px; margin-bottom: 14px; line-height: 1; }
.page-hero__subtitle { font-family: var(--font-body); font-size: 14px; color: var(--color-text-muted); line-height: 1.7; }

/* ===== PAGE HERO: split with image (about-us) ===== */
.page-hero--split { text-align: left; padding: 150px 40px 80px; }
.page-hero--split .page-hero__inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 80px; }
.page-hero--split .page-hero__content { flex: 1; }
.page-hero--split .page-hero__title { font-size: 56px; }
.page-hero--split .page-hero__body { font-family: var(--font-body); font-size: 14px; color: var(--color-text-muted); line-height: 1.8; max-width: 460px; }
.page-hero--split .page-hero__image { flex: 0 0 400px; }

/* ===== PAGE HERO: dark full-bleed (products-beef) ===== */
.page-hero--dark { position: relative; min-height: 300px; display: flex; align-items: flex-end; padding: 100px 60px 48px; overflow: hidden; margin-top: var(--nav-h); background: transparent; text-align: left; }
.page-hero--dark .page-hero__bg { position: absolute; inset: 0; background: linear-gradient(135deg, #1e1209 0%, #0a0a0a 100%); z-index: 0; }
.page-hero--dark .page-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); z-index: 1; }
.page-hero--dark .page-hero__img-label { position: absolute; top: 90px; right: 60px; font-family: var(--font-body); font-size: 10px; color: rgba(200,168,75,0.28); text-transform: uppercase; letter-spacing: 1px; z-index: 2; }
.page-hero--dark .page-hero__content { position: relative; z-index: 3; display: flex; align-items: center; gap: 24px; }
.page-hero--dark .page-hero__icon { width: 80px; height: 80px; border: 2px solid var(--color-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.page-hero--dark .page-hero__title { font-size: 64px; color: var(--color-text-light); }

/* ===== ABOUT US: PILLARS ===== */
.section-pillars { background: var(--color-bg-light); padding: 80px 40px; }
.pillars-wrapper { max-width: 1000px; margin: 0 auto; text-align: center; }
.pillars-tabs { display: flex; justify-content: center; margin: 36px auto 0; border-bottom: 2px solid #e0e0e0; width: fit-content; }
.pillars-tab { font-family: var(--font-body); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 12px 36px; background: none; border: none; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: color 0.2s, border-color 0.2s; color: #999; }
.pillars-tab.is-active { color: var(--color-text-dark); border-bottom-color: var(--color-gold); }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid #e8e8e8; margin-top: 32px; }
.pillars-cell { padding: 30px 20px; display: flex; flex-direction: column; align-items: center; gap: 14px; border-right: 1px solid #e8e8e8; border-top: 1px solid #e8e8e8; }
.pillars-cell:nth-child(4n) { border-right: none; }
.pillars-cell:nth-child(-n+4) { border-top: none; }
.pillars-cell__label { font-family: var(--font-body); font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-dark); text-align: center; line-height: 1.45; }
.pillars-icon { width: 50px; height: 50px; flex-shrink: 0; }

/* ===== ABOUT US: TIMELINE ===== */
.section-timeline { background: var(--color-bg-gray); padding: 80px 40px; }
.timeline-wrapper { max-width: 860px; margin: 0 auto; text-align: center; }
.timeline { position: relative; margin-top: 56px; padding-bottom: 20px; }
.timeline__line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--color-gold); transform: translateX(-50%); z-index: 0; }
.timeline-item { display: flex; margin-bottom: 40px; position: relative; align-items: center; }
.timeline-item--left { justify-content: flex-end; }
.timeline-item--right { justify-content: flex-start; }
.timeline-item--left  .timeline-card { margin-right: 50px; }
.timeline-item--right .timeline-card { margin-left: 50px; }
.timeline-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 4px; padding: 20px; width: 300px; text-align: left; flex-shrink: 0; }
.timeline-card__title { font-family: var(--font-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-dark); margin-bottom: 8px; }
.timeline-card__body  { font-family: var(--font-body); font-size: 13px; color: var(--color-text-muted); line-height: 1.65; }
.timeline-year { position: absolute; left: 50%; transform: translateX(-50%); width: 60px; height: 60px; background: var(--color-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; flex-shrink: 0; }
.timeline-year span { font-family: var(--font-display); font-size: 18px; color: #fff; letter-spacing: 1px; }

/* ===== DISTRIBUTION: MAP ===== */
.section-map { background: var(--color-bg-light); padding: 0 40px 80px; }
.map-layout { max-width: 1100px; margin: 0 auto; display: flex; gap: 60px; align-items: flex-start; }
.map-col { flex: 0 0 60%; }
.map-placeholder { background: #f5e6c0; border: 1px solid #e0d0a0; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.map-note { font-family: var(--font-body); font-size: 11px; color: #999; margin-top: 10px; font-style: italic; }
.states-col { flex: 1; padding-top: 4px; }
.states-label { font-family: var(--font-body); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-text-dark); border-bottom: 2px solid var(--color-gold); padding-bottom: 8px; margin-bottom: 16px; display: inline-block; }
.states-table { display: flex; flex-direction: column; gap: 4px; }
.states-row { display: flex; align-items: baseline; gap: 14px; }
.states-row__abbr { font-family: var(--font-body); font-size: 12px; font-weight: 700; color: var(--color-text-dark); min-width: 28px; }
.states-row__abbr--highlight { color: var(--color-gold); }
.states-row__name { font-family: var(--font-body); font-size: 13px; color: var(--color-text-muted); }
.section-dist { background: var(--color-bg-light); padding: 80px 40px; }
.section-dist__inner { max-width: 1100px; margin: 0 auto; }
.dist-title { font-family: var(--font-body); font-size: 28px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--color-text-dark); text-align: center; margin-bottom: 0; }
.dist-rule { border: none; border-top: 1px solid var(--color-gold); margin: 16px 0 48px; }
.dist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 40px; }
.dist-state { margin-bottom: 40px; }
.dist-state__name { font-family: var(--font-body); font-size: 14px; font-weight: 700; text-transform: uppercase; color: var(--color-text-dark); margin-bottom: 10px; }
.dist-state__cities { display: flex; flex-direction: column; gap: 3px; }
.dist-city { font-family: var(--font-body); font-size: 13px; color: var(--color-text-muted); }
.dist-city--gold { color: var(--color-gold); }

/* ===== PRODUCTS: GRID ===== */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.card-product { position: relative; min-height: 320px; overflow: hidden; cursor: pointer; display: flex; flex-direction: column; justify-content: flex-end; }
.card-product__bg { position: absolute; inset: 0; z-index: 0; }
.card-product__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%); z-index: 1; transition: background 0.3s; }
.card-product:hover .card-product__overlay { background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.88) 100%); }
.card-product__content { position: relative; z-index: 2; padding: 24px 28px; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.card-product__left { display: flex; flex-direction: column; gap: 8px; }
.card-product__icon { width: 60px; height: 60px; border: 2px solid rgba(200,168,75,0.8); border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.4); }
.card-product__name { font-family: var(--font-display); font-size: 42px; color: #fff; letter-spacing: 2px; line-height: 1; }
.card-product__desc { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.5; max-width: 300px; }
.card-product__plus { width: 40px; height: 40px; border: 2px solid var(--color-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--color-gold); font-size: 22px; font-weight: 300; transition: background 0.2s, color 0.2s; align-self: flex-end; margin-bottom: 4px; }
.card-product:hover .card-product__plus { background: var(--color-gold); color: #111; }
.card-product--cta { background: var(--color-bg-dark); display: flex; align-items: center; justify-content: center; cursor: default; }
.card-product--cta .card-product__cta-inner { text-align: center; padding: 40px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.card-product--cta .card-product__headline { font-family: var(--font-display); font-size: 28px; color: #fff; letter-spacing: 1.5px; line-height: 1.2; max-width: 300px; }

/* ===== PROGRAMS: VAB ===== */
.section-vab { background: var(--color-bg-light); padding: 60px 40px; }
.vab-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 60px; align-items: flex-start; }
.vab-content { flex: 1; }
.vab-title { font-family: var(--font-body); font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-dark); margin-bottom: 12px; }
.vab-divider { width: 40px; height: 3px; background: var(--color-gold); margin-bottom: 20px; }
.vab-body { font-family: var(--font-body); font-size: 14px; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 16px; }
.vab-image { flex: 0 0 380px; }
.section-checklist { background: var(--color-bg-light); padding: 40px 40px 60px; }
.checklist-inner { max-width: 900px; margin: 0 auto; }
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 40px; }
.check-item { display: flex; align-items: flex-start; gap: 14px; }
.check-icon { flex-shrink: 0; width: 24px; height: 24px; background: var(--color-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.check-text { font-family: var(--font-body); font-size: 13px; color: var(--color-text-muted); line-height: 1.65; }
.section-programs { background: var(--color-bg-gray); padding: 80px 40px; }
.programs-inner { max-width: 900px; margin: 0 auto; }
.programs-intro { font-family: var(--font-body); font-size: 14px; color: var(--color-text-muted); text-align: center; line-height: 1.7; margin-bottom: 40px; }
.programs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.program-card { background: var(--color-bg-light); border: 1px solid #e0e0e0; border-radius: 4px; padding: 32px 28px; display: flex; flex-direction: column; align-items: center; text-align: center; transition: box-shadow 0.25s, transform 0.2s; }
.program-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }
.program-badge { width: 80px; height: 80px; border: 2px solid var(--color-gold); display: flex; align-items: center; justify-content: center; background: #faf8f0; flex-shrink: 0; margin-bottom: 16px; }
.program-badge__label { font-family: var(--font-body); font-size: 9px; font-weight: 700; color: var(--color-gold); text-transform: uppercase; letter-spacing: 0.5px; text-align: center; padding: 4px; line-height: 1.3; }
.program-name { font-family: var(--font-body); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-dark); margin-bottom: 8px; padding-bottom: 10px; border-bottom: 1px solid #e8e8e8; width: 100%; }
.program-desc { font-family: var(--font-body); font-size: 13px; color: var(--color-text-muted); line-height: 1.7; margin-top: 8px; }

/* ===== CAREERS ===== */
.section-intro { background: var(--color-bg-light); padding: 40px 40px 60px; }
.section-intro__inner { max-width: 760px; margin: 0 auto; }
.intro-label { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--color-text-dark); margin-bottom: 10px; margin-top: 28px; }
.intro-label:first-child { margin-top: 0; }
.intro-body { font-family: var(--font-body); font-size: 14px; color: var(--color-text-muted); line-height: 1.8; }
.intro-list { list-style: none; margin-top: 10px; display: flex; flex-direction: column; gap: 8px; }
.intro-list li { font-family: var(--font-body); font-size: 14px; color: var(--color-text-muted); line-height: 1.7; padding-left: 20px; position: relative; }
.intro-list li::before { content: '•'; color: var(--color-gold); position: absolute; left: 0; font-size: 16px; line-height: 1.5; }
.section-video { background: var(--color-bg-light); padding: 0 40px 60px; }
.video-wrap { max-width: 600px; margin: 0 auto; }
.video-placeholder { position: relative; background: #1a1a1a; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; overflow: hidden; cursor: pointer; }
.video-placeholder__play { width: 64px; height: 64px; background: rgba(200,168,75,0.85); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: absolute; transition: transform 0.2s, background 0.2s; }
.video-placeholder:hover .video-placeholder__play { transform: scale(1.1); background: var(--color-gold); }
.video-placeholder__label { position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; font-family: var(--font-body); font-size: 11px; color: rgba(200,168,75,0.5); text-transform: uppercase; letter-spacing: 1px; padding: 0 20px; }
.video-meta { margin-top: 12px; display: flex; align-items: center; gap: 10px; }
.video-meta__company { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--color-text-dark); }
.video-meta__followers { font-family: var(--font-body); font-size: 12px; color: var(--color-text-muted); }
.section-jobs { background: var(--color-bg-gray); padding: 60px 40px; }
.jobs-wrap { max-width: 760px; margin: 0 auto; }
.jobs-label { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--color-text-dark); margin-bottom: 12px; }
.search-bar { display: flex; border: 1px solid #d0d0d0; background: #fff; height: 48px; margin-bottom: 12px; }
.search-bar input { flex: 1; border: none; outline: none; padding: 0 16px; font-family: var(--font-body); font-size: 13px; color: var(--color-text-dark); background: transparent; }
.search-bar input::placeholder { color: #aaa; }
.search-bar__btn { width: 48px; background: var(--color-gold); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; flex-shrink: 0; }
.search-bar__btn:hover { background: var(--color-gold-hover); }
.filter-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.filter-select { flex: 1; min-width: 160px; height: 40px; border: 1px solid #d0d0d0; background: #fff; font-family: var(--font-body); font-size: 13px; color: var(--color-text-dark); padding: 0 12px; outline: none; appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.filter-btn { background: var(--color-gold); color: #111; font-family: var(--font-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 0 20px; height: 40px; border: none; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.filter-btn:hover { background: var(--color-gold-hover); }
.filter-reset { font-family: var(--font-body); font-size: 13px; color: var(--color-text-muted); cursor: pointer; white-space: nowrap; transition: color 0.2s; background: none; border: none; }
.filter-reset:hover { color: var(--color-gold); }
.jobs-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; flex-wrap: wrap; gap: 12px; }
.jobs-portal { font-family: var(--font-body); font-size: 13px; color: var(--color-text-muted); }
.jobs-portal a { color: var(--color-gold); font-weight: 600; }
.jobs-portal a:hover { text-decoration: underline; }
.section-listings { background: var(--color-bg-light); padding: 0 40px 60px; }
.listings-wrap { max-width: 760px; margin: 0 auto; padding-top: 40px; }
.job-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid #e8e8e8; transition: background 0.15s; }
.job-row:first-child { border-top: 1px solid #e8e8e8; }
.job-row:hover { background: rgba(200,168,75,0.04); padding-left: 8px; padding-right: 8px; margin: 0 -8px; }
.job-row__title { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--color-gold); transition: color 0.2s; flex: 1; }
.job-row__title:hover { color: var(--color-gold-hover); text-decoration: underline; }
.job-row__location { font-family: var(--font-body); font-size: 12px; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.8px; white-space: nowrap; flex-shrink: 0; }

/* ===== SALES: DARK HERO BANNER ===== */
.hero-banner { position: relative; min-height: 280px; display: flex; align-items: center; justify-content: center; overflow: hidden; margin-top: var(--nav-h); }
.hero-banner__bg { position: absolute; inset: 0; background: linear-gradient(135deg, #1e1209 0%, #0a0a0a 100%); }
.hero-banner__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.hero-banner__img-label { position: absolute; top: 12px; left: 20px; font-family: var(--font-body); font-size: 10px; color: rgba(200,168,75,0.25); text-transform: uppercase; letter-spacing: 1px; }
.hero-banner__content { position: relative; z-index: 2; text-align: center; padding: 0 40px; }
.hero-banner__headline { font-family: var(--font-display); font-size: 64px; color: #fff; letter-spacing: 3px; line-height: 1; }

/* ===== SALES: CONTACT FORM ===== */
.section-contact { background: var(--color-bg-light); padding: 80px 0; }
.contact-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; display: flex; gap: 80px; align-items: flex-start; }
.contact-left { flex: 0 0 320px; }
.contact-left__body { font-family: var(--font-body); font-size: 14px; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 28px; }
.contact-left__phone { display: block; font-family: var(--font-body); font-size: 20px; font-weight: 600; color: var(--color-gold); border-bottom: 2px solid var(--color-gold); padding-bottom: 6px; margin-bottom: 16px; width: fit-content; transition: color 0.2s; }
.contact-left__phone:hover { color: var(--color-gold-hover); }
.contact-left__email { display: block; font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--color-gold); border-bottom: 2px solid var(--color-gold); padding-bottom: 6px; width: fit-content; transition: color 0.2s; }
.contact-left__email:hover { color: var(--color-gold-hover); }
.contact-right { flex: 1; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-family: var(--font-body); font-size: 12px; font-weight: 600; color: var(--color-text-muted); display: flex; align-items: center; gap: 3px; }
.form-label sup { color: var(--color-gold); font-size: 11px; }
.form-input { width: 100%; background: var(--color-bg-gray); border: none; border-radius: 0; padding: 12px; font-family: var(--font-body); font-size: 13px; color: var(--color-text-dark); outline: none; transition: background 0.2s; }
.form-input:focus { background: #ede9de; }
.form-input::placeholder { color: #bbb; }
.form-textarea { width: 100%; background: var(--color-bg-gray); border: none; border-radius: 0; padding: 12px; font-family: var(--font-body); font-size: 13px; color: var(--color-text-dark); outline: none; resize: vertical; min-height: 100px; transition: background 0.2s; margin-bottom: 16px; }
.form-textarea:focus { background: #ede9de; }
.form-textarea::placeholder { color: #bbb; }
.form-recaptcha { background: #f0f0f0; border: 1px solid #d0d0d0; padding: 12px 16px; display: flex; align-items: center; gap: 12px; margin-bottom: 16px; width: 300px; }
.recaptcha-check { width: 20px; height: 20px; border: 2px solid #ccc; border-radius: 2px; flex-shrink: 0; }
.recaptcha-text { font-family: var(--font-body); font-size: 13px; color: #555; }
.recaptcha-logo { margin-left: auto; text-align: center; flex-shrink: 0; }
.recaptcha-logo__icon { font-size: 20px; }
.recaptcha-logo__text { font-size: 9px; color: #999; display: block; font-family: var(--font-body); }
.form-submit { width: 100%; background: var(--color-gold); color: #111; font-family: var(--font-body); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; height: 52px; border: none; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--color-gold-hover); }

/* ===== PRODUCTS-BEEF: PRODUCT LIST ===== */
.section-products { background: var(--color-bg-light); padding: 72px 0; }
.section-products__inner { max-width: 1000px; margin: 0 auto; padding: 0 40px; }
.product-list-item { display: flex; align-items: stretch; border-bottom: 1px solid #f0f0f0; }
.product-list-item:last-child { border-bottom: none; }
.product-list-item__image { flex: 0 0 260px; }
.product-list-item__img-ph { width: 100%; height: 100%; min-height: 180px; background: #1a1a1a; display: flex; align-items: center; justify-content: center; color: var(--color-gold); font-family: var(--font-body); font-size: 10px; text-transform: uppercase; letter-spacing: 1px; padding: 16px; text-align: center; }
.product-list-item__details { flex: 1; padding: 32px 36px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.product-list-item__name { font-family: var(--font-body); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-dark); }
.product-list-item__desc { font-family: var(--font-body); font-size: 13px; color: var(--color-text-muted); line-height: 1.7; max-width: 480px; }
.product-list-item__link { font-family: var(--font-body); font-size: 12px; font-weight: 600; color: var(--color-gold); display: inline-flex; align-items: center; gap: 4px; transition: color 0.2s; margin-top: 4px; }
.product-list-item__link:hover { color: var(--color-gold-hover); }
.section-why { background: var(--color-bg-gray); padding: 72px 40px; }
.section-why__inner { max-width: 900px; margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 48px; }
.why-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.why-item__icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
.why-item__title { font-family: var(--font-body); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-text-dark); }
.why-item__desc { font-family: var(--font-body); font-size: 13px; color: var(--color-text-muted); line-height: 1.7; }
.section-other { background: var(--color-bg-light); padding: 72px 40px; }
.section-other__inner { max-width: 1000px; margin: 0 auto; }
.other-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 12px; scrollbar-width: thin; scrollbar-color: var(--color-gold) #f0f0f0; margin-top: 40px; }
.other-scroll::-webkit-scrollbar { height: 4px; }
.other-scroll::-webkit-scrollbar-track { background: #f0f0f0; }
.other-scroll::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 2px; }
.other-card { position: relative; width: 200px; height: 150px; flex-shrink: 0; overflow: hidden; cursor: pointer; }
.other-card__bg { position: absolute; inset: 0; z-index: 0; background: #1a1a1a; }
.other-card__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); z-index: 1; transition: background 0.25s; }
.other-card:hover .other-card__overlay { background: rgba(0,0,0,0.7); }
.other-card__content { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 14px 16px; gap: 4px; }
.other-card__icon { width: 32px; height: 32px; border: 1.5px solid var(--color-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.other-card__name { font-family: var(--font-display); font-size: 22px; color: #fff; letter-spacing: 1.5px; line-height: 1; }
.section-beef-contact { background: var(--color-bg-light); padding: 72px 40px 80px; border-top: 1px solid #f0f0f0; }
.section-beef-contact__inner { max-width: 1000px; margin: 0 auto; display: flex; gap: 80px; align-items: flex-start; }
.beef-contact-left { flex: 0 0 300px; }
.beef-contact-left__headline { font-family: var(--font-body); font-size: 24px; font-weight: 700; color: var(--color-text-dark); line-height: 1.3; margin-bottom: 16px; }
.beef-contact-left__body { font-family: var(--font-body); font-size: 13.5px; color: var(--color-text-muted); line-height: 1.75; margin-bottom: 20px; }
.beef-contact-left__phone { font-family: var(--font-body); font-size: 18px; font-weight: 700; color: var(--color-gold); margin-bottom: 6px; display: block; }
.beef-contact-left__email { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--color-gold); display: block; }
.beef-contact-right { flex: 1; display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 28px; }
.form-field { width: 100%; border: none; border-bottom: 1px solid #d4d4d4; padding: 10px 0; font-family: var(--font-body); font-size: 13px; color: var(--color-text-dark); background: transparent; outline: none; transition: border-color 0.2s; }
.form-field:focus { border-bottom-color: var(--color-gold); }
.form-field::placeholder { color: #aaa; }
.form-field-textarea { width: 100%; border: none; border-bottom: 1px solid #d4d4d4; padding: 10px 0; font-family: var(--font-body); font-size: 13px; color: var(--color-text-dark); background: transparent; outline: none; resize: vertical; min-height: 100px; transition: border-color 0.2s; }
.form-field-textarea:focus { border-bottom-color: var(--color-gold); }
.form-field-textarea::placeholder { color: #aaa; }
.beef-form-submit { width: 100%; background: var(--color-gold); color: #111; font-family: var(--font-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; padding: 15px; border: none; cursor: pointer; transition: background 0.2s; }
.beef-form-submit:hover { background: var(--color-gold-hover); }

/* ===== CUSTOMER PORTAL ===== */
.portal-split { display: flex; height: calc(100vh - var(--nav-h)); margin-top: var(--nav-h); }
.panel-left { flex: 0 0 50%; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
.panel-left__bg { position: absolute; inset: 0; background: linear-gradient(145deg, #1e1209 0%, #0a0a0a 100%); }
.panel-left__img-label { position: absolute; top: 12px; left: 16px; font-family: var(--font-body); font-size: 9px; color: rgba(200,168,75,0.2); text-transform: uppercase; letter-spacing: 1px; }
.panel-left__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.panel-left__content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 40px 48px; }
.portal-logo { display: flex; flex-direction: column; align-items: center; gap: 2px; margin-bottom: 20px; }
.portal-logo__mark { font-family: var(--font-display); font-size: 40px; color: var(--color-gold); letter-spacing: 3px; line-height: 1; }
.portal-logo__sub  { font-family: var(--font-display); font-size: 20px; color: #fff; letter-spacing: 5px; line-height: 1; }
.portal-logo__tag  { font-family: var(--font-body); font-size: 8px; color: rgba(255,255,255,0.4); letter-spacing: 2.5px; text-transform: uppercase; margin-top: 4px; }
.portal-tagline { font-family: var(--font-display); font-size: 42px; color: #fff; letter-spacing: 3px; line-height: 1; margin-bottom: 18px; }
.portal-rule { width: 80px; height: 2px; background: var(--color-gold); margin: 0 auto 20px; }
.portal-subtitle { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.75; max-width: 320px; text-align: center; }
.panel-left__bottom { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; padding: 28px; gap: 6px; }
.panel-left__bottom-text { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,0.45); }
.panel-left__bottom-link { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--color-gold); transition: color 0.2s; }
.panel-left__bottom-link:hover { color: var(--color-gold-hover); }
.panel-right { flex: 0 0 50%; background: var(--color-bg-light); display: flex; align-items: center; justify-content: center; overflow-y: auto; padding: 40px 24px; }
.login-card { width: 100%; max-width: 380px; }
.login-eyebrow { font-family: var(--font-body); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--color-gold); margin-bottom: 8px; }
.login-title { font-family: var(--font-body); font-size: 28px; font-weight: 700; color: var(--color-text-dark); margin-bottom: 8px; }
.login-subtitle { font-family: var(--font-body); font-size: 13px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 32px; }
.portal-form-group { margin-bottom: 20px; }
.portal-form-label { display: block; font-family: var(--font-body); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--color-text-dark); margin-bottom: 6px; }
.portal-field-wrap { position: relative; }
.portal-input { width: 100%; background: var(--color-bg-gray); border: none; border-bottom: 2px solid #e0e0e0; border-radius: 0; padding: 12px 14px; font-family: var(--font-body); font-size: 14px; color: var(--color-text-dark); outline: none; transition: border-color 0.2s, background 0.2s; }
.portal-input:focus { border-bottom-color: var(--color-gold); background: #f0ece0; }
.portal-input::placeholder { color: #bbb; font-size: 13px; }
.show-pwd { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-family: var(--font-body); font-size: 12px; font-weight: 600; color: var(--color-gold); cursor: pointer; transition: color 0.2s; user-select: none; background: none; border: none; }
.show-pwd:hover { color: var(--color-gold-hover); }
.form-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; margin-bottom: 24px; }
.remember-wrap { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.remember-wrap input[type="checkbox"] { display: none; }
.custom-check { width: 16px; height: 16px; border: 2px solid #ccc; border-radius: 2px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; }
.remember-wrap input:checked + .custom-check { background: var(--color-gold); border-color: var(--color-gold); }
.remember-wrap input:checked + .custom-check::after { content: ''; display: block; width: 8px; height: 5px; border-left: 2px solid #111; border-bottom: 2px solid #111; transform: rotate(-45deg) translate(1px, -1px); }
.remember-label { font-family: var(--font-body); font-size: 13px; color: var(--color-text-muted); }
.forgot-link { font-family: var(--font-body); font-size: 13px; color: var(--color-gold); }
.forgot-link:hover { text-decoration: underline; }
.btn-submit { display: block; width: 100%; height: 52px; background: var(--color-gold); color: #111; font-family: var(--font-body); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border: none; border-radius: 0; cursor: pointer; transition: background 0.2s; margin-bottom: 28px; }
.btn-submit:hover { background: var(--color-gold-hover); }
.or-divider { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.or-divider__line { flex: 1; height: 1px; background: #e0e0e0; }
.or-divider__text { font-family: var(--font-body); font-size: 12px; color: var(--color-text-muted); flex-shrink: 0; }
.btn-alt { display: flex; align-items: center; justify-content: center; width: 100%; height: 48px; background: transparent; color: var(--color-gold); font-family: var(--font-body); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border: 2px solid var(--color-gold); border-radius: 0; cursor: pointer; transition: background 0.2s, color 0.2s; text-decoration: none; }
.btn-alt:hover { background: var(--color-gold); color: #111; }
.login-note { margin-top: 32px; text-align: center; font-family: var(--font-body); font-size: 12px; color: var(--color-text-muted); line-height: 1.8; }
.login-note a { color: var(--color-gold); }
.login-note a:hover { opacity: 0.75; }

/* ===== PROMO POPUP ===== */
#promo-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.75); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
#promo-overlay.is-visible { opacity: 1; pointer-events: all; }
#promo-popup { position: relative; background: #111; max-width: 480px; width: 90%; padding: 48px 40px; text-align: center; }
.promo-popup__image { width: 100%; margin-bottom: 24px; }
.promo-popup__title { font-family: var(--font-display); font-size: 32px; color: #fff; letter-spacing: 2px; margin-bottom: 8px; }
.promo-popup__subtitle { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.promo-popup__btn { display: inline-block; background: var(--color-gold); color: #111; font-family: var(--font-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 14px 32px; transition: background 0.2s; }
.promo-popup__btn:hover { background: var(--color-gold-hover); }
.promo-popup__close { position: absolute; top: 12px; right: 14px; background: none; border: none; font-size: 22px; color: rgba(255,255,255,0.5); cursor: pointer; transition: color 0.2s; }
.promo-popup__close:hover { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hiring-widget { display: none; }
  .page-hero--split .page-hero__image { flex: 0 0 300px; }
  .vab-inner { flex-direction: column; }
  .vab-image { flex: none; width: 100%; }
  .map-layout { flex-direction: column; }
  .map-col { flex: none; width: 100%; }
}
@media (max-width: 768px) {
  .nav__inner { padding: 0 20px; }
  .page-hero { padding: 110px 20px 48px; }
  .page-hero__title { font-size: 48px; }
  .page-hero--split .page-hero__inner { flex-direction: column; gap: 32px; }
  .page-hero--split .page-hero__image { flex: none; width: 100%; }
  .page-hero--split .page-hero__title { font-size: 44px; }
  .page-hero--dark { padding: 100px 24px 36px; }
  .page-hero--dark .page-hero__title { font-size: 48px; }
  .section-pillars, .section-timeline { padding: 60px 20px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-cell:nth-child(4n) { border-right: 1px solid #e8e8e8; }
  .pillars-cell:nth-child(2n) { border-right: none; }
  .pillars-cell:nth-child(-n+2) { border-top: none; }
  .pillars-cell:nth-child(3), .pillars-cell:nth-child(4) { border-top: 1px solid #e8e8e8; }
  .timeline-item--left, .timeline-item--right { flex-direction: column; align-items: center; }
  .timeline-item--left .timeline-card, .timeline-item--right .timeline-card { margin: 0; width: 100%; max-width: 360px; }
  .timeline__line { left: 20px; }
  .timeline-year { left: 20px; position: relative; transform: none; margin-bottom: 12px; }
  .timeline-item { flex-direction: column; align-items: flex-start; padding-left: 60px; }
  .cta-banner__headline { font-size: 36px; }
  .footer { padding: 20px; }
  .section-map, .section-dist { padding-left: 20px; padding-right: 20px; }
  .dist-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .card-product { min-height: 280px; }
  .section-vab, .section-checklist, .section-programs { padding-left: 20px; padding-right: 20px; }
  .check-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .section-intro, .section-video, .section-jobs, .section-listings { padding-left: 20px; padding-right: 20px; }
  .filter-row { flex-direction: column; align-items: stretch; }
  .filter-select { width: 100%; }
  .jobs-meta { flex-direction: column; align-items: flex-start; }
  .hero-banner__headline { font-size: 44px; }
  .contact-inner { flex-direction: column; gap: 40px; padding: 0 20px; }
  .contact-left { flex: none; width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .form-recaptcha { width: 100%; }
  .section-products__inner { padding: 0 20px; }
  .product-list-item { flex-direction: column; }
  .product-list-item__image { flex: none; width: 100%; height: 200px; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .section-other, .section-beef-contact { padding: 60px 20px; }
  .section-beef-contact__inner { flex-direction: column; gap: 40px; }
  .beef-contact-left { flex: none; width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  body.page-customer-portal { height: auto; }
  .portal-split { flex-direction: column; height: auto; }
  .panel-left { flex: none; width: 100%; height: 220px; }
  .portal-logo__mark { font-size: 28px; }
  .portal-logo__sub  { font-size: 14px; }
  .portal-tagline { font-size: 28px; margin-bottom: 10px; }
  .portal-subtitle { display: none; }
  .panel-left__bottom { display: none; }
  .panel-right { flex: none; width: 100%; padding: 40px 24px; }
  .login-card { max-width: 100%; }
}
@media (max-width: 375px) {
  .page-hero__title { font-size: 40px; }
  .page-hero--dark .page-hero__title { font-size: 38px; }
  .section-title { font-size: 22px; letter-spacing: 1px; }
  .card-product__name { font-size: 34px; }
  .login-title { font-size: 24px; }
  .portal-tagline { font-size: 24px; }
  .hero-banner__headline { font-size: 36px; }
}

/* =====================================================
   WORDPRESS ADMIN BAR — offset nav + slider
   ===================================================== */
.admin-bar #pm-nav {
  top: 32px;
}
.admin-bar .pm-slider {
  height: calc(100vh - var(--nav-h) - 32px);
}
.admin-bar .hiring-widget {
  top: calc(var(--nav-h) + 32px);
}
/* Admin bar height is 46px on mobile (<782px) */
@media screen and (max-width: 782px) {
  .admin-bar #pm-nav          { top: 46px; }
  .admin-bar .pm-slider       { height: calc(100vh - var(--nav-h) - 46px); }
  .admin-bar .hiring-widget   { top: calc(var(--nav-h) + 46px); }
}

/* =====================================================
   HOMEPAGE — HERO SLIDER
   ===================================================== */
.section-hero { position: relative; overflow: hidden; }
.pm-slider {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 560px;
  overflow: hidden;
  background: #111;
}
.pm-slide {
  position: absolute;
  inset: 0;
  transition: opacity 0.9s ease;
}
.pm-slide__bg {
  position: absolute;
  inset: 0;
}
.pm-slide__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
}
.pm-slide__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
}
.pm-slide__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-gold);
  margin-bottom: 20px;
}
.pm-slide__headline {
  font-family: var(--font-display);
  font-size: 96px;
  color: #fff;
  letter-spacing: 4px;
  line-height: 0.92;
  margin-bottom: 28px;
  max-width: 900px;
}
.pm-slide__sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.75;
}
.pm-slider__dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  align-items: center;
}
.pm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.25s, width 0.3s;
  padding: 0;
  flex-shrink: 0;
}
.pm-dot.is-active {
  background: var(--color-gold);
  width: 28px;
  border-radius: 4px;
}

/* =====================================================
   HOMEPAGE — CATEGORY TABS
   ===================================================== */
.section-categories { background: var(--color-bg-light); }
.categories-inner { max-width: 100%; }
.categories-inner > .section-title,
.categories-inner > .section-divider,
.categories-inner > .section-subtitle {
  text-align: center;
  padding-top: 72px;
}
.categories-inner > .section-title { padding-left: 40px; padding-right: 40px; }
.categories-inner > .section-subtitle { padding-bottom: 40px; padding-left: 40px; padding-right: 40px; }

.pm-cat-tabs {
  background: #0e0e0e;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pm-cat-tabs::-webkit-scrollbar { display: none; }

.pm-cat-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 32px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  color: rgba(255,255,255,0.42);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.pm-cat-btn svg { transition: opacity 0.2s; opacity: 0.4; }
.pm-cat-btn:hover { color: rgba(255,255,255,0.78); }
.pm-cat-btn:hover svg { opacity: 0.7; }
.pm-cat-btn.is-active { color: var(--color-gold); border-bottom-color: var(--color-gold); }
.pm-cat-btn.is-active svg { opacity: 1; }

.pm-cat-display {
  display: flex;
  min-height: 360px;
}
.pm-cat-display__content {
  flex: 0 0 50%;
  background: var(--color-bg-light);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 52px 64px;
  gap: 16px;
}
.pm-cat-display__icon {
  width: 80px;
  height: 80px;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pm-cat-display__name {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-dark);
}
.pm-cat-display__desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 400px;
}
.pm-cat-display__visual {
  flex: 0 0 50%;
  background: #0e0e0e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.pm-cat-display__visual-name {
  font-family: var(--font-display);
  font-size: 100px;
  color: rgba(200,168,75,0.12);
  letter-spacing: 8px;
  text-align: center;
  line-height: 1;
  user-select: none;
  padding: 20px;
}

/* =====================================================
   HOMEPAGE — ABOUT
   ===================================================== */
.section-about-home { padding: 88px 40px; background: var(--color-bg-light); }
.about-home__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: center;
}
.about-home__content { flex: 0 0 50%; display: flex; flex-direction: column; gap: 20px; }
.about-home__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gold);
}
.about-home__body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.85;
}
.about-home__image {
  flex: 1;
  min-height: 340px;
  background: #1a1209;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-home__image .img-ph {
  width: 100%;
  height: 340px;
  background: #1a1209;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(200,168,75,0.2);
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =====================================================
   HOMEPAGE — PROGRAMS
   ===================================================== */
.section-programs-home { background: var(--color-bg-dark); padding: 80px 40px; }
.programs-home__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.programs-home__inner .section-title,
.programs-home__inner .section-subtitle { color: #fff; }
.programs-home__inner .section-divider { background: var(--color-gold); }
.programs-home__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}
.programs-home__item {}
.programs-home__badge {
  border: 1px solid rgba(200,168,75,0.5);
  padding: 12px 24px;
  transition: border-color 0.2s, background 0.2s;
}
.programs-home__badge:hover {
  border-color: var(--color-gold);
  background: rgba(200,168,75,0.08);
}
.programs-home__badge-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.75);
}

/* =====================================================
   HOMEPAGE — CATALOGS
   ===================================================== */
.section-catalogs { background: var(--color-bg-light); padding: 80px 40px; }
.catalogs-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.catalogs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.catalog-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.catalog-card__bg {
  position: absolute;
  inset: 0;
}
.catalog-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.20) 100%);
}
.catalog-card__content {
  position: relative;
  z-index: 2;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.catalog-card__title {
  font-family: var(--font-display);
  font-size: 48px;
  color: #fff;
  letter-spacing: 3px;
  line-height: 1;
}
.catalog-card__sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

/* =====================================================
   HOMEPAGE — VIDEOS
   ===================================================== */
.section-videos { background: var(--color-bg-gray); padding: 80px 40px; }
.videos-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.video-thumb {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}
.video-thumb__bg { position: absolute; inset: 0; }
.video-thumb__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  transition: background 0.25s;
}
.video-thumb:hover .video-thumb__overlay { background: rgba(0,0,0,0.25); }
.video-thumb__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-thumb__play svg { filter: drop-shadow(0 0 8px rgba(0,0,0,0.6)); }
.video-thumb__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 16px 20px;
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  letter-spacing: 2px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* =====================================================
   HOMEPAGE — PARTNERS
   ===================================================== */
.section-partners { background: var(--color-bg-light); padding: 72px 40px; }
.partners-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.partners-scroll {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-top: 40px;
}
.partner-item {
  padding: 10px 20px;
  border: 1px solid #e0e0e0;
  transition: border-color 0.2s;
}
.partner-item:hover { border-color: var(--color-gold); }
.partner-item__name {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-muted);
}

/* =====================================================
   HOMEPAGE — BRANDS
   ===================================================== */
.section-brands { background: var(--color-bg-dark); padding: 72px 40px; }
.brands-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.brands-inner .section-title { color: #fff; }
.brands-inner .section-divider { background: var(--color-gold); }
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  margin-top: 40px;
}
.brand-item {
  padding: 14px 28px;
  border: 1px solid rgba(200,168,75,0.35);
  transition: border-color 0.2s, background 0.2s;
}
.brand-item:hover {
  border-color: var(--color-gold);
  background: rgba(200,168,75,0.06);
}
.brand-item__name {
  font-family: var(--font-display);
  font-size: 20px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 2px;
}

/* =====================================================
   HOMEPAGE — CONTACT
   ===================================================== */
.section-contact-home { background: var(--color-bg-light); padding: 80px 40px; }
.contact-home__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 72px;
  align-items: flex-start;
}
.contact-home__left {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-home__body {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.75;
}
.contact-home__form { flex: 1; }

/* =====================================================
   HOMEPAGE — RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .pm-slide__headline { font-size: 72px; }
  .pm-cat-btn { padding: 18px 20px; }
}
@media (max-width: 768px) {
  .pm-slider { min-height: 480px; }
  .pm-slide__headline { font-size: 52px; }
  .pm-slide__content { padding: 0 24px; }
  .pm-cat-tabs { justify-content: flex-start; padding: 0 8px; }
  .pm-cat-btn { padding: 16px 14px; gap: 6px; font-size: 9px; }
  .pm-cat-display { flex-direction: column; }
  .pm-cat-display__content { flex: none; width: 100%; padding: 40px 24px; }
  .pm-cat-display__visual { flex: none; width: 100%; min-height: 160px; }
  .pm-cat-display__visual-name { font-size: 60px; }
  .about-home__inner { flex-direction: column; gap: 40px; }
  .about-home__content { flex: none; width: 100%; }
  .catalogs-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .contact-home__inner { flex-direction: column; gap: 40px; }
  .contact-home__left { flex: none; width: 100%; }
  .section-about-home,
  .section-programs-home,
  .section-catalogs,
  .section-videos,
  .section-partners,
  .section-brands,
  .section-contact-home { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 375px) {
  .pm-slide__headline { font-size: 42px; }
  .pm-cat-btn { padding: 12px 10px; }
}
