/* ── SHARED BRAND PAGE STYLES ────────────────────────────────
   All brand pages link to this file.
   Each page sets --accent in its own <style> block.
──────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #FAFAF8;
  --white:    #FFFFFF;
  --ink:      #0F0F0D;
  --ink-2:    #2A2A27;
  --muted:    #787672;
  --navy:     #0E1E3D;
  --navy-2:   #162648;
  --red:      #8B1C1C;
  --border:   rgba(0,0,0,0.08);
  --border-2: rgba(0,0,0,0.13);
  --max:      1200px;
  --r:        3px;
  /* --accent set per-page */
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

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

.label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent, var(--red));
  margin-bottom: 14px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.btn-accent { background: var(--accent, var(--navy)); color: #fff; }
.btn-accent:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-navy   { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-1px); }
.btn-red    { background: var(--red); color: #fff; }
.btn-red:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--border-2);
}
.btn-outline:hover { border-color: var(--accent, var(--navy)); color: var(--accent, var(--navy)); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover { border-color: #fff; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  transition: padding 0.3s, box-shadow 0.3s;
}
nav.scrolled { padding: 13px 0; box-shadow: 0 2px 24px rgba(0,0,0,0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }

/* ── HERO ── */
#hero { padding: 140px 0 80px; background: var(--white); border-bottom: 1px solid var(--border); }
.hero-layout { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-logo { max-width: 340px; margin: 0 auto 32px; }
.hero-tagline {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(26px, 3.5vw, 44px); font-weight: 700;
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 16px;
}
.hero-desc {
  font-size: 17px; color: var(--muted); line-height: 1.8;
  font-weight: 300; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-visual { display: none; }

/* ── QUICK FACTS ── */
#quick-facts { background: var(--accent, var(--navy)); }
.facts-row { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.fact { padding: 32px 36px; border-right: 1px solid rgba(255,255,255,0.08); }
.fact:last-child { border-right: none; }
.fact-label { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.42); margin-bottom: 7px; }
.fact-value { font-family: 'DM Sans', system-ui, sans-serif; font-size: 19px; font-weight: 700; color: #fff; line-height: 1.2; }
.fact-value.gold { color: #D4A843; }

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.section.alt { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { margin-bottom: 48px; }
.section-head h2 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(26px, 3vw, 40px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15;
}
.section-head p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-top: 12px; max-width: 560px; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 48px; }
.section-head-row p { font-size: 15px; color: var(--muted); max-width: 360px; text-align: right; line-height: 1.7; }

/* ── STORY ── */
.story-layout { display: grid; grid-template-columns: 5fr 7fr; gap: 88px; align-items: start; }
.story-left h2 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(26px, 3vw, 40px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 18px;
}
.story-left p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
.highlights { display: flex; flex-direction: column; gap: 16px; }
.highlight {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 22px; background: var(--white);
  border: 1px solid var(--border); border-radius: 4px;
}
.highlight-icon {
  width: 34px; height: 34px;
  background: color-mix(in srgb, var(--accent, var(--navy)) 8%, transparent);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  color: var(--accent, var(--navy)); flex-shrink: 0;
}
.highlight h4 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.highlight p  { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── PRODUCTS ── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.product-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.09); transform: translateY(-4px); }
.product-visual {
  display: flex; align-items: center; justify-content: center;
  padding: 28px 20px; min-height: 360px;
  background: var(--white); border-bottom: 1px solid var(--border);
}
.product-visual img {
  max-height: 320px; width: auto; object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.12));
  transition: transform 0.3s;
}
.product-card:hover .product-visual img { transform: translateY(-5px) scale(1.03); }
.product-info { padding: 22px; }
.product-name { font-family: 'DM Sans', system-ui, sans-serif; font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.product-desc { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.product-specs { display: flex; border: 1px solid var(--border); border-radius: 3px; overflow: hidden; }
.spec { flex: 1; padding: 9px 10px; border-right: 1px solid var(--border); text-align: center; }
.spec:last-child { border-right: none; }
.spec-label { font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.spec-value { font-size: 12px; font-weight: 600; color: var(--ink); }

/* ── AWARDS ── */
.awards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.award-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.award-medal { font-size: 26px; line-height: 1; flex-shrink: 0; }
.award-title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 4px; line-height: 1.3; }
.award-body  { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ── DISTRIBUTION ── */
.dist-layout { display: flex; flex-direction: column; align-items: center; text-align: center; }
.dist-left { max-width: 680px; width: 100%; }
.dist-left h2 { font-family: 'DM Sans', system-ui, sans-serif; font-size: clamp(24px, 2.8vw, 38px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 14px; }
.dist-left p  { font-size: 17px; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.dist-left > div[style*="display:flex"] { justify-content: center; }
.states-list  { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.state-pill {
  display: inline-block; padding: 5px 13px;
  background: color-mix(in srgb, var(--accent, var(--navy)) 8%, transparent);
  color: var(--accent, var(--navy));
  font-size: 12px; font-weight: 600; border-radius: 2px;
}
.retailers-label { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; display: block; }
.retailers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.retailer-item {
  padding: 12px 16px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 3px; font-size: 13px; font-weight: 500; color: var(--ink-2);
  display: flex; align-items: center; gap: 8px;
}
.retailer-item::before { content: ''; width: 5px; height: 5px; background: var(--accent, var(--navy)); border-radius: 50%; flex-shrink: 0; }

/* ── TRADE CTA ── */
#trade-cta { padding: 64px 0; background: var(--accent, var(--navy)); }
.trade-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.trade-inner h3 { font-family: 'DM Sans', system-ui, sans-serif; font-size: clamp(20px, 2.4vw, 30px); font-weight: 700; color: #fff; line-height: 1.2; max-width: 500px; }
.trade-inner p  { font-size: 14px; color: rgba(255,255,255,0.55); margin-top: 8px; max-width: 480px; }
.trade-actions  { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── NAP + SOCIAL ── */
#contact-info { padding: 72px 0; border-bottom: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 28px; }
.contact-block h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.contact-block p, .contact-block a { font-size: 15px; color: var(--ink); line-height: 1.7; }
.contact-block a:hover { color: var(--accent, var(--red)); }
.social-links { display: flex; flex-direction: column; gap: 10px; }
.social-link { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--ink-2); transition: color 0.2s; }
.social-link:hover { color: var(--accent, var(--navy)); }
.social-link svg { width: 15px; height: 15px; color: var(--muted); flex-shrink: 0; }

/* ── RED WOLF CTA ── */
#redwolf-cta { padding: 80px 0; background: var(--white); border-top: 1px solid var(--border); }
.rw-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.rw-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.rw-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--red); }
.rw-inner h2 { font-family: 'DM Sans', system-ui, sans-serif; font-size: clamp(22px, 2.8vw, 36px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 14px; }
.rw-inner > div > p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 26px; }
.rw-form-box { background: var(--bg); border: 1px solid var(--border); border-radius: 6px; padding: 32px 36px; }
.rw-form-box h4 { font-family: 'DM Sans', system-ui, sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 18px; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.form-field input, .form-field textarea, .form-field select {
  background: var(--white); border: 1px solid var(--border-2);
  border-radius: var(--r); padding: 11px 14px;
  font-size: 14px; color: var(--ink); font-family: inherit;
  transition: border-color 0.2s; outline: none;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--accent, var(--navy)); }
.form-field textarea { resize: vertical; min-height: 80px; }

/* ── FOOTER ── */
footer { background: var(--navy-2); padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-logo { height: 28px; opacity: 0.65; filter: brightness(0) invert(1); }
.footer-copy  { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-nav   { display: flex; gap: 24px; list-style: none; }
.footer-nav a { font-size: 12px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-nav a:hover { color: rgba(255,255,255,0.8); }

/* ── NOTE ── */
.placeholder-note { font-size: 11px; color: var(--muted); font-style: italic; margin-top: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .hero-layout, .story-layout, .dist-layout, .rw-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .facts-row { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .trade-inner { flex-direction: column; align-items: flex-start; }
  .section-head-row { flex-direction: column; align-items: flex-start; }
  .section-head-row p { text-align: left; }
  .nav-links { display: none; }
}
