/* ==========================================================================
   Wolf Machinery & Supply Canada — main.css
   Industrial dark theme. Barlow Condensed + Barlow. #C8102E red.
   ========================================================================== */

/* ── Custom Properties ────────────────────────────────────────────────────── */
:root {
  --wolf-black:      #0E0E0E;
  --wolf-gray-900:   #131313;
  --wolf-gray-800:   #1A1A1A;
  --wolf-gray-700:   #222222;
  --wolf-gray-600:   #2C2C2C;
  --wolf-gray-400:   #5A5A5A;
  --wolf-gray-300:   #8A8A8A;
  --wolf-red:        #C8102E;
  --wolf-red-dark:   #9B0D23;
  --wolf-red-light:  #E8193B;
  --wolf-red-glow:   rgba(200, 16, 46, 0.15);
  --wolf-white:      #F5F3EF;
  --wolf-offwhite:   #E8E4DC;
  --wolf-gold:       #D4A017;

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body:    "Barlow", system-ui, sans-serif;

  --nav-height:    72px;
  --section-pad:   clamp(60px, 8vw, 120px);
  --container:     1440px;
  --gutter:        clamp(24px, 4vw, 64px);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
  --transition:    0.3s var(--ease-in-out);
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--wolf-black);
  color: var(--wolf-white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
::selection { background: rgba(200, 16, 46, 0.35); color: var(--wolf-white); }

/* ── Typography ───────────────────────────────────────────────────────────── */
.wolf-heading {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--wolf-white);
  line-height: 0.92;
}
.wolf-heading--xl { font-size: clamp(40px, 6vw, 80px); }
.wolf-heading--lg { font-size: clamp(32px, 4.5vw, 60px); }
.wolf-heading--md { font-size: clamp(24px, 3vw, 40px); }
.wolf-heading em  { color: var(--wolf-red); font-style: normal; }

.wolf-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wolf-red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wolf-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--wolf-red);
  flex-shrink: 0;
}

/* ── Custom cursor ────────────────────────────────────────────────────────── */
.wolf-cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.wolf-cursor__dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--wolf-red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s;
}
.wolf-cursor__ring {
  position: absolute;
  width: 36px; height: 36px;
  border: 1.5px solid var(--wolf-red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out-expo), width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.5;
}
body:has(a:hover) .wolf-cursor__ring,
body:has(button:hover) .wolf-cursor__ring {
  width: 60px; height: 60px;
  opacity: 0.8;
}
@media (hover: none) { .wolf-cursor { display: none; } }

/* ── Progress bar ─────────────────────────────────────────────────────────── */
.wolf-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--wolf-red);
  width: 0%;
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.wolf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  padding: 12px 28px;
  white-space: nowrap;
}
.wolf-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.07);
  opacity: 0;
  transition: opacity 0.2s;
}
.wolf-btn:hover::before { opacity: 1; }

.wolf-btn--red     { background: var(--wolf-red); color: #fff; }
.wolf-btn--red:hover { background: var(--wolf-red-light); }
.wolf-btn--ghost   { background: transparent; color: var(--wolf-white); border: 1px solid rgba(245,243,239,0.2); }
.wolf-btn--ghost:hover { border-color: rgba(245,243,239,0.5); background: rgba(245,243,239,0.04); }
.wolf-btn--lg      { padding: 16px 36px; font-size: 14px; }
.wolf-btn--full    { width: 100%; justify-content: center; }

.wolf-btn__arrow { transition: transform 0.2s; }
.wolf-btn:hover .wolf-btn__arrow { transform: translateX(4px); }

/* ── Navigation ───────────────────────────────────────────────────────────── */
.wolf-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 500;
  transition: background 0.4s, border-color 0.4s, height 0.4s;
  background: rgba(14, 14, 14, 0);
  border-bottom: 1px solid rgba(200, 16, 46, 0);
}
.wolf-nav.is-scrolled {
  background: rgba(14, 14, 14, 0.96);
  border-bottom-color: rgba(200, 16, 46, 0.2);
  backdrop-filter: blur(14px);
  height: 60px;
}
.wolf-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.wolf-nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.wolf-nav__logo-mark {
  width: 38px; height: 38px;
  background: var(--wolf-red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900; font-size: 22px;
  color: #fff;
  transition: background 0.2s;
  flex-shrink: 0;
}
.wolf-nav__logo:hover .wolf-nav__logo-mark { background: var(--wolf-red-light); }
.wolf-nav__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.wolf-nav__logo-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--wolf-white); letter-spacing: 0.05em; text-transform: uppercase; }
.wolf-nav__logo-ca   { font-size: 10px; color: var(--wolf-red); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; }

.wolf-nav__menu { display: none; }
@media (min-width: 1024px) { .wolf-nav__menu { display: block; } }

.wolf-nav__list { display: flex; gap: 4px; }
.wolf-nav__list li a {
  display: block;
  padding: 6px 14px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245,243,239,0.65);
  transition: color 0.2s;
  position: relative;
}
.wolf-nav__list li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 1px;
  background: var(--wolf-red);
  transform: scaleX(0);
  transition: transform 0.2s var(--ease-out-expo);
  transform-origin: left;
}
.wolf-nav__list li a:hover { color: var(--wolf-white); }
.wolf-nav__list li a:hover::after { transform: scaleX(1); }
.wolf-nav__list li.current-menu-item a { color: var(--wolf-white); }
.wolf-nav__list li.current-menu-item a::after { transform: scaleX(1); }

.wolf-nav__actions { display: flex; align-items: center; gap: 12px; }
.wolf-nav__search-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,243,239,0.5);
  transition: color 0.2s;
}
.wolf-nav__search-btn:hover { color: var(--wolf-white); }
.wolf-nav__burger {
  display: flex; flex-direction: column; gap: 5px;
  width: 32px; padding: 4px 0;
}
.wolf-nav__burger span {
  display: block; height: 2px;
  background: var(--wolf-white);
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.wolf-nav__burger span:nth-child(2) { width: 70%; }
.wolf-nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wolf-nav__burger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.wolf-nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .wolf-nav__burger { display: none; } }

/* Search panel */
.wolf-nav__search-panel {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(14,14,14,0.98);
  border-bottom: 1px solid rgba(200,16,46,0.2);
  padding: 24px var(--gutter);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.3s;
}
.wolf-nav__search-panel.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.wolf-nav__search-form { display: flex; gap: 12px; max-width: 600px; margin: 0 auto; }
.wolf-nav__search-form input {
  flex: 1;
  background: var(--wolf-gray-800);
  border: 1px solid rgba(245,243,239,0.1);
  color: var(--wolf-white);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}
.wolf-nav__search-form input:focus { border-color: rgba(200,16,46,0.5); }
.wolf-nav__search-form button {
  background: var(--wolf-red);
  color: #fff;
  padding: 12px 20px;
  font-size: 18px;
  transition: background 0.2s;
}
.wolf-nav__search-form button:hover { background: var(--wolf-red-light); }

/* ── Mobile menu ──────────────────────────────────────────────────────────── */
.wolf-mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(380px, 90vw);
  background: var(--wolf-gray-900);
  border-left: 1px solid rgba(200,16,46,0.15);
  z-index: 490;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out-expo);
  display: flex; flex-direction: column;
  overflow-y: auto;
  padding-top: var(--nav-height);
}
.wolf-mobile-menu.is-open { transform: translateX(0); }
.wolf-mobile-menu__inner { flex: 1; padding: 32px 32px 40px; display: flex; flex-direction: column; gap: 0; }
.wolf-mobile-menu__list li { border-bottom: 1px solid rgba(245,243,239,0.06); }
.wolf-mobile-menu__list li a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-display);
  font-weight: 700; font-size: 20px;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: rgba(245,243,239,0.7);
  transition: color 0.2s, padding-left 0.2s;
}
.wolf-mobile-menu__list li a:hover { color: var(--wolf-white); padding-left: 8px; }
.wolf-mobile-menu__footer { margin-top: auto; padding-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.wolf-mobile-menu__contact { font-size: 13px; color: rgba(245,243,239,0.4); }
.wolf-mobile-menu__contact:hover { color: var(--wolf-red); }

.wolf-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 480;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.wolf-overlay.is-visible { opacity: 1; pointer-events: auto; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.wolf-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 60px) var(--gutter) 80px;
}
.wolf-hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.5);
  z-index: 0;
}
.wolf-hero__bg { position: absolute; inset: 0; z-index: 1; }
.wolf-hero__bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 80% at 70% 50%, rgba(200,16,46,0.09) 0%, transparent 70%),
    linear-gradient(160deg, #0E0E0E 0%, #140810 55%, #0E0E0E 100%);
}
.wolf-hero__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,16,46,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,16,46,0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 20%, transparent 100%);
}
.wolf-hero__bg-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
}
/* Animated red scan line */
.wolf-hero__scan-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200,16,46,0.6), transparent);
  animation: wolf-scan 6s linear infinite;
}
@keyframes wolf-scan {
  0%   { transform: translateY(0); opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}

.wolf-hero__content {
  position: relative; z-index: 2;
  max-width: 820px;
}
.wolf-hero__eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.wolf-hero__eyebrow-line {
  display: block; width: 48px; height: 2px;
  background: var(--wolf-red); flex-shrink: 0;
}
.wolf-hero__eyebrow-text {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--wolf-red);
}
.wolf-hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,16,46,0.1);
  border: 1px solid rgba(200,16,46,0.25);
  padding: 4px 12px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--wolf-red);
  animation: wolf-pulse-border 3s ease-in-out infinite;
}
@keyframes wolf-pulse-border {
  0%, 100% { border-color: rgba(200,16,46,0.25); }
  50%       { border-color: rgba(200,16,46,0.6); }
}

.wolf-hero__heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--wolf-white);
  margin-bottom: 20px;
}
.wolf-hero__heading em { color: var(--wolf-red); font-style: normal; }

.wolf-hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wolf-gray-300);
  margin-bottom: 28px;
}
.wolf-hero__body {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  color: rgba(245,243,239,0.65);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 44px;
}
.wolf-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero stats */
.wolf-hero__stats {
  position: absolute;
  right: var(--gutter);
  bottom: 80px;
  display: flex; flex-direction: column; gap: 36px;
  z-index: 2;
}
.wolf-hero__stat {
  text-align: right;
  border-right: 2px solid var(--wolf-red);
  padding-right: 20px;
}
.wolf-hero__stat-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 900; font-size: 48px;
  line-height: 1; color: var(--wolf-white);
  letter-spacing: -0.02em;
}
.wolf-hero__stat-label {
  display: block;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--wolf-gray-300);
  margin-top: 4px;
}
@media (max-width: 1024px) { .wolf-hero__stats { display: none; } }

/* Scroll indicator */
.wolf-hero__scroll {
  position: absolute;
  bottom: 40px; left: var(--gutter);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  z-index: 2;
}
.wolf-hero__scroll-line {
  display: block; width: 1px; height: 40px;
  background: rgba(200,16,46,0.4);
  animation: wolf-scroll-line 2s ease-in-out infinite;
}
.wolf-hero__scroll-dot {
  display: block; width: 6px; height: 6px;
  background: var(--wolf-red);
  border-radius: 50%;
  animation: wolf-scroll-dot 2s ease-in-out infinite;
}
@keyframes wolf-scroll-line { 0%,100%{opacity:0.3} 50%{opacity:1} }
@keyframes wolf-scroll-dot  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }
@media (max-width: 768px) { .wolf-hero__scroll { display: none; } }

/* ── Marquee ──────────────────────────────────────────────────────────────── */
.wolf-marquee {
  background: var(--wolf-red);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.wolf-marquee::before,
.wolf-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 1;
  pointer-events: none;
}
.wolf-marquee::before { left: 0; background: linear-gradient(to right, var(--wolf-red), transparent); }
.wolf-marquee::after  { right: 0; background: linear-gradient(to left, var(--wolf-red), transparent); }
.wolf-marquee__track {
  display: inline-flex;
  animation: wolf-marquee 28s linear infinite;
}
.wolf-marquee:hover .wolf-marquee__track { animation-play-state: paused; }
.wolf-marquee__item {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 0 28px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.wolf-marquee__dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%; flex-shrink: 0;
}
@keyframes wolf-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Sections ─────────────────────────────────────────────────────────────── */
.wolf-section {
  padding: var(--section-pad) var(--gutter);
}
.wolf-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 24px;
}
.wolf-section--products { background: var(--wolf-black); }
.wolf-section--why      { background: #111111; position: relative; overflow: hidden; }
.wolf-section--canada   { background: var(--wolf-black); border-top: 1px solid rgba(200,16,46,0.15); border-bottom: 1px solid rgba(200,16,46,0.15); }

/* Section background word */
.wolf-section__bg-word {
  position: absolute; top: -40px; right: -20px;
  font-family: var(--font-display);
  font-weight: 900; font-size: clamp(160px, 20vw, 260px);
  text-transform: uppercase; letter-spacing: -0.04em;
  color: rgba(200,16,46,0.035);
  line-height: 1; pointer-events: none; user-select: none;
  white-space: nowrap;
}

/* ── Product cards ────────────────────────────────────────────────────────── */
.wolf-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.wolf-products-grid--archive  { padding: 0 var(--gutter); grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.wolf-products-grid--related  { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) { .wolf-products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .wolf-products-grid { grid-template-columns: 1fr; } }
@media (max-width: 1200px) { .wolf-products-grid--related { grid-template-columns: repeat(2, 1fr); } }

.wolf-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--wolf-gray-800);
}
.wolf-card--featured {
  grid-column: span 2;
  aspect-ratio: 8/5;
}
@media (max-width: 1024px) { .wolf-card--featured { grid-column: span 1; aspect-ratio: 4/3; } }

.wolf-card__inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  text-decoration: none;
}
.wolf-card__image {
  position: absolute; inset: 0;
  overflow: hidden;
}
.wolf-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
  transition: transform 0.6s var(--ease-out-expo), filter 0.4s;
}
.wolf-card__image--placeholder {
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; background: var(--wolf-gray-700);
}
.wolf-card:hover .wolf-card__image img {
  transform: scale(1.06);
  filter: brightness(0.42);
}
.wolf-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.97) 0%, rgba(14,14,14,0.15) 55%, transparent 100%);
  transition: opacity 0.3s;
}
.wolf-card__content { position: relative; z-index: 2; }
.wolf-card__cat {
  display: block;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--wolf-red); margin-bottom: 8px;
}
.wolf-card__title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px;
  text-transform: uppercase;
  color: var(--wolf-white); line-height: 1.05; margin-bottom: 14px;
}
.wolf-card--featured .wolf-card__title { font-size: 36px; }
.wolf-card__excerpt {
  font-size: 14px; color: rgba(245,243,239,0.55);
  line-height: 1.65; margin-bottom: 12px;
  display: none;
}
.wolf-card--featured .wolf-card__excerpt { display: block; }
.wolf-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(245,243,239,0.45);
  transition: color 0.2s, gap 0.2s;
}
.wolf-card:hover .wolf-card__cta { color: var(--wolf-white); gap: 12px; }
.wolf-card__arrow { transition: transform 0.2s; }
.wolf-card:hover .wolf-card__arrow { transform: translateX(4px); }

/* Red top-edge on hover */
.wolf-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--wolf-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
  z-index: 3;
}
.wolf-card:hover::after { transform: scaleX(1); }

/* ── Why Wolf section ─────────────────────────────────────────────────────── */
.wolf-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 52px;
}
@media (max-width: 768px) { .wolf-why-grid { grid-template-columns: 1fr; } }

.wolf-why-card {
  background: var(--wolf-black);
  padding: 44px 40px;
  position: relative; overflow: hidden;
}
.wolf-why-card__num {
  position: absolute; top: 20px; right: 28px;
  font-family: var(--font-display);
  font-weight: 900; font-size: 80px;
  color: rgba(200,16,46,0.1);
  letter-spacing: -0.05em; line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}
.wolf-why-card:hover .wolf-why-card__num { color: rgba(200,16,46,0.18); }
.wolf-why-card__bar { width: 36px; height: 3px; background: var(--wolf-red); margin-bottom: 24px; transition: width 0.3s; }
.wolf-why-card:hover .wolf-why-card__bar { width: 56px; }
.wolf-why-card__title { font-family: var(--font-display); font-weight: 700; font-size: 22px; text-transform: uppercase; color: var(--wolf-white); letter-spacing: 0.03em; margin-bottom: 14px; }
.wolf-why-card__body  { font-size: 15px; font-weight: 300; color: rgba(245,243,239,0.55); line-height: 1.78; }

/* ── Canada coverage ──────────────────────────────────────────────────────── */
.wolf-canada-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: var(--section-pad) var(--gutter);
}
@media (max-width: 900px) { .wolf-canada-inner { grid-template-columns: 1fr; } }
.wolf-section--canada { padding: 0; }
.wolf-canada-copy__body {
  font-size: 16px; font-weight: 300;
  color: rgba(245,243,239,0.6); line-height: 1.85;
  max-width: 500px; margin: 20px 0 36px;
}
.wolf-province-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.wolf-province-tag {
  padding: 6px 14px;
  border: 1px solid rgba(200,16,46,0.25);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--wolf-red);
  transition: border-color 0.2s, background 0.2s;
}
.wolf-province-tag:hover { border-color: var(--wolf-red); background: rgba(200,16,46,0.08); }
.wolf-canada-flag {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.wolf-canada-flag svg {
  width: 100%; max-width: 360px;
  filter: drop-shadow(0 0 40px rgba(200,16,46,0.15));
}

/* ── CTA section ──────────────────────────────────────────────────────────── */
.wolf-cta {
  position: relative;
  text-align: center;
  padding: var(--section-pad) var(--gutter);
  overflow: hidden;
  background: var(--wolf-black);
}
.wolf-cta__bg { position: absolute; inset: 0; pointer-events: none; }
.wolf-cta__bg-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(200,16,46,0.09) 0%, transparent 70%);
}
.wolf-cta__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,16,46,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,16,46,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.wolf-cta__inner { position: relative; z-index: 1; }
.wolf-cta__body {
  font-size: 17px; font-weight: 300;
  color: rgba(245,243,239,0.55);
  max-width: 460px; margin: 20px auto 48px;
  line-height: 1.8;
}
.wolf-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Page header ──────────────────────────────────────────────────────────── */
.wolf-page-header {
  position: relative;
  padding: calc(var(--nav-height) + 64px) var(--gutter) 64px;
  border-bottom: 1px solid rgba(200,16,46,0.15);
  overflow: hidden;
}
.wolf-page-header__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 0% 50%, rgba(200,16,46,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.wolf-page-header__content { position: relative; z-index: 1; }

/* ── Filter bar ───────────────────────────────────────────────────────────── */
.wolf-filter {
  border-bottom: 1px solid rgba(245,243,239,0.06);
  position: sticky; top: var(--nav-height); z-index: 100;
  background: rgba(14,14,14,0.97);
  backdrop-filter: blur(8px);
}
.wolf-filter__inner {
  display: flex; gap: 4px; flex-wrap: wrap;
  padding: 16px var(--gutter);
  overflow-x: auto;
  scrollbar-width: none;
}
.wolf-filter__inner::-webkit-scrollbar { display: none; }
.wolf-filter__btn {
  padding: 7px 16px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(245,243,239,0.45);
  border: 1px solid rgba(245,243,239,0.1);
  background: transparent;
  white-space: nowrap;
  transition: all 0.2s;
}
.wolf-filter__btn:hover { color: var(--wolf-white); border-color: rgba(245,243,239,0.3); }
.wolf-filter__btn.is-active { background: var(--wolf-red); color: #fff; border-color: var(--wolf-red); }

/* Products grid on archive */
.wolf-products-grid--archive {
  padding: 40px var(--gutter) 80px;
  gap: 3px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1200px) { .wolf-products-grid--archive { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .wolf-products-grid--archive { grid-template-columns: 1fr; } }

.wolf-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(245,243,239,0.2);
}

/* ── Single product ───────────────────────────────────────────────────────── */
.wolf-product-hero {
  position: relative; height: 55vh; min-height: 360px; overflow: hidden;
  margin-top: var(--nav-height);
}
.wolf-product-hero__img {
  width: 100%; height: 100%; object-fit: cover; filter: brightness(0.38);
}
.wolf-product-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--wolf-black) 100%);
}
.wolf-product-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  padding: 48px var(--gutter) 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 1100px) { .wolf-product-layout { grid-template-columns: 1fr; } }
.wolf-breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 12px; color: rgba(245,243,239,0.35); letter-spacing: 0.05em;
}
.wolf-breadcrumb a:hover { color: var(--wolf-red); }

.wolf-product-content__cat {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--wolf-red); margin-bottom: 12px;
}
.wolf-product-content__title {
  font-family: var(--font-display);
  font-weight: 900; font-size: clamp(40px, 6vw, 72px);
  text-transform: uppercase; line-height: 0.92;
  color: var(--wolf-white); margin-bottom: 24px;
}
.wolf-product-content__excerpt {
  font-size: 18px; font-weight: 300;
  color: rgba(245,243,239,0.65); line-height: 1.78; margin-bottom: 40px;
}

/* Gallery */
.wolf-gallery { margin-bottom: 48px; }
.wolf-gallery__main {
  position: relative; aspect-ratio: 16/9;
  overflow: hidden; background: var(--wolf-gray-800); margin-bottom: 8px;
}
.wolf-gallery__main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s; }
.wolf-gallery__fullscreen {
  position: absolute; top: 16px; right: 16px;
  background: rgba(14,14,14,0.7); color: var(--wolf-white);
  padding: 8px 10px; font-size: 18px;
  transition: background 0.2s;
}
.wolf-gallery__fullscreen:hover { background: var(--wolf-red); }
.wolf-gallery__thumbs { display: flex; gap: 6px; flex-wrap: wrap; }
.wolf-gallery__thumb {
  width: 80px; height: 56px; overflow: hidden;
  border: 2px solid transparent; transition: border-color 0.2s;
  flex-shrink: 0;
}
.wolf-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.wolf-gallery__thumb.is-active  { border-color: var(--wolf-red); }
.wolf-gallery__thumb:hover:not(.is-active) { border-color: rgba(200,16,46,0.5); }

/* Video */
.wolf-product-video { margin-bottom: 48px; }
.wolf-product-video__label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--wolf-red); margin-bottom: 16px;
}
.wolf-product-video__embed { aspect-ratio: 16/9; background: var(--wolf-gray-800); }
.wolf-product-video__embed iframe { width: 100%; height: 100%; border: 0; }

/* Specs */
.wolf-specs { margin-bottom: 48px; }
.wolf-specs__label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--wolf-red); margin-bottom: 16px;
}
.wolf-specs__table { border: 1px solid rgba(245,243,239,0.07); }
.wolf-specs__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(245,243,239,0.05);
}
.wolf-specs__row:nth-child(even) { background: rgba(245,243,239,0.02); }
.wolf-specs__row:last-child { border-bottom: none; }
.wolf-specs__key { font-size: 13px; color: rgba(245,243,239,0.5); }
.wolf-specs__val { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--wolf-white); letter-spacing: 0.03em; }

/* Sidebar */
.wolf-product-sidebar { position: sticky; top: calc(var(--nav-height) + 24px); }
.wolf-product-sidebar__card {
  background: var(--wolf-gray-900);
  border: 1px solid rgba(200,16,46,0.2);
  padding: 32px; margin-bottom: 12px;
}
.wolf-product-sidebar__accent {
  width: 36px; height: 3px; background: var(--wolf-red); margin-bottom: 20px;
}
.wolf-product-sidebar__heading {
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px;
  text-transform: uppercase; color: var(--wolf-white); margin-bottom: 12px;
}
.wolf-product-sidebar__body {
  font-size: 14px; font-weight: 300; color: rgba(245,243,239,0.5);
  line-height: 1.7; margin-bottom: 24px;
}
.wolf-product-sidebar__card .wolf-btn { margin-bottom: 10px; }

.wolf-product-sidebar__brochure {
  display: flex; align-items: center; gap: 14px;
  background: var(--wolf-gray-900);
  border: 1px solid rgba(245,243,239,0.07);
  padding: 18px 20px; margin-bottom: 12px;
  transition: border-color 0.2s;
}
.wolf-product-sidebar__brochure:hover { border-color: rgba(200,16,46,0.3); }
.wolf-product-sidebar__brochure-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(200,16,46,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.wolf-product-sidebar__brochure-title { font-size: 13px; font-weight: 600; color: var(--wolf-white); margin-bottom: 2px; }
.wolf-product-sidebar__brochure-sub { font-size: 11px; color: rgba(245,243,239,0.35); }

.wolf-product-sidebar__nav { display: flex; flex-direction: column; gap: 2px; }
.wolf-product-sidebar__nav-link {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px;
  background: var(--wolf-gray-900);
  border: 1px solid rgba(245,243,239,0.06);
  font-size: 12px; transition: border-color 0.2s;
}
.wolf-product-sidebar__nav-link:hover { border-color: rgba(200,16,46,0.3); }
.wolf-product-sidebar__nav-link span:first-child { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--wolf-red); }
.wolf-product-sidebar__nav-link span:last-child  { font-family: var(--font-display); font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--wolf-white); }

/* Related */
.wolf-related { padding: 64px var(--gutter); border-top: 1px solid rgba(245,243,239,0.06); }

/* Lightbox */
.wolf-lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  animation: wolf-lightbox-in 0.3s ease;
}
.wolf-lightbox[hidden] { display: none; }
@keyframes wolf-lightbox-in { from { opacity: 0; } to { opacity: 1; } }
.wolf-lightbox__img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.wolf-lightbox__close,
.wolf-lightbox__prev,
.wolf-lightbox__next {
  position: absolute;
  background: rgba(14,14,14,0.8); color: var(--wolf-white);
  font-size: 20px; padding: 12px 16px;
  transition: background 0.2s;
  z-index: 1;
}
.wolf-lightbox__close:hover,
.wolf-lightbox__prev:hover,
.wolf-lightbox__next:hover { background: var(--wolf-red); }
.wolf-lightbox__close { top: 20px; right: 20px; }
.wolf-lightbox__prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.wolf-lightbox__next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.wolf-footer { background: var(--wolf-gray-800); border-top: 1px solid rgba(200,16,46,0.15); }
.wolf-footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px var(--gutter) 48px;
  max-width: var(--container); margin: 0 auto;
}
@media (max-width: 1024px) { .wolf-footer__main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .wolf-footer__main { grid-template-columns: 1fr; } }
.wolf-footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.wolf-footer__logo-mark {
  width: 38px; height: 38px; background: var(--wolf-red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 22px; color: #fff;
  flex-shrink: 0;
}
.wolf-footer__logo-name { font-family: var(--font-display); font-weight: 900; font-size: 16px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--wolf-white); }
.wolf-footer__logo-ca   { font-size: 10px; color: var(--wolf-red); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; }
.wolf-footer__desc { font-size: 14px; font-weight: 300; color: rgba(245,243,239,0.4); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.wolf-footer__social { display: flex; gap: 10px; }
.wolf-footer__social-link {
  width: 32px; height: 32px;
  border: 1px solid rgba(245,243,239,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em;
  color: rgba(245,243,239,0.3);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.wolf-footer__social-link:hover { border-color: var(--wolf-red); color: var(--wolf-red); background: rgba(200,16,46,0.08); }
.wolf-footer__col-title { font-size: 11px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--wolf-red); margin-bottom: 20px; }
.wolf-footer__links { display: flex; flex-direction: column; gap: 10px; }
.wolf-footer__links a { font-size: 14px; color: rgba(245,243,239,0.4); transition: color 0.2s; }
.wolf-footer__links a:hover { color: var(--wolf-white); }
.wolf-footer__bottom {
  border-top: 1px solid rgba(245,243,239,0.07);
  padding: 24px var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  max-width: var(--container); margin: 0 auto;
}
.wolf-footer__copy { font-size: 12px; color: rgba(245,243,239,0.22); }
.wolf-footer__legal { display: flex; gap: 20px; }
.wolf-footer__legal a { font-size: 12px; color: rgba(245,243,239,0.22); transition: color 0.2s; }
.wolf-footer__legal a:hover { color: var(--wolf-white); }

/* ── Pagination ───────────────────────────────────────────────────────────── */
.wolf-pagination { padding: 40px var(--gutter); display: flex; justify-content: center; }
.wolf-pagination .page-numbers {
  display: flex; gap: 4px; list-style: none;
}
.wolf-pagination .page-numbers li a,
.wolf-pagination .page-numbers li span {
  display: block; padding: 10px 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: rgba(245,243,239,0.4);
  border: 1px solid rgba(245,243,239,0.08);
  transition: all 0.2s;
}
.wolf-pagination .page-numbers li a:hover { color: var(--wolf-white); border-color: rgba(245,243,239,0.3); }
.wolf-pagination .page-numbers li .current { background: var(--wolf-red); color: #fff; border-color: var(--wolf-red); }

/* ── Prose (WP editor content) ───────────────────────────────────────────── */
.wolf-prose { font-size: 16px; font-weight: 300; color: rgba(245,243,239,0.65); line-height: 1.85; }
.wolf-prose h2, .wolf-prose h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; color: var(--wolf-white); margin: 32px 0 14px; }
.wolf-prose h2 { font-size: 28px; }
.wolf-prose h3 { font-size: 20px; }
.wolf-prose p  { margin-bottom: 20px; }
.wolf-prose ul { list-style: disc; padding-left: 24px; margin-bottom: 20px; }
.wolf-prose li { margin-bottom: 6px; }
.wolf-prose a  { color: var(--wolf-red); text-decoration: underline; }
.wolf-prose strong { font-weight: 600; color: var(--wolf-white); }

/* ── Utilities ────────────────────────────────────────────────────────────── */
.wolf-main { padding-top: var(--nav-height); }
.wolf-main--archive { padding-top: 0; }
.wolf-main--product { padding-top: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
