/* ==========================================================================
   Pack Tactics — Design System
   Mobile-first. Vanilla CSS. No frameworks.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Google Fonts Import
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;500;600&display=swap');

/* --------------------------------------------------------------------------
   2. Design Tokens — CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Backgrounds */
  --bg-primary:    #0a0a0a;
  --bg-elevated:   #161616;
  --bg-secondary:  #1f1f1f;

  /* Borders */
  --border:        #2a2a2a;

  /* Text */
  --text-primary:   #f4f1ec;
  --text-secondary: #a8a39d;
  --text-muted:     #6b6660;

  /* Accent — coyote tan */
  --accent:        #a07a4e;
  --accent-hover:  #b88c5b;
  --accent-dark:   #7a5d3a;

  /* Typography */
  --font-display: 'Anton', Impact, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing rhythm */
  --section-padding-mobile:  48px;
  --section-padding-desktop: 80px;

  /* Max content width */
  --max-width: 1280px;

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
}

/* --------------------------------------------------------------------------
   3. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* --------------------------------------------------------------------------
   4. Typography Scale
   -------------------------------------------------------------------------- */

/* Display / Anton headings */
h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-primary);
}

h2, .h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-primary);
}

h3, .h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
}

h4, .h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

p + p {
  margin-top: 1em;
}

small, .text-small {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   5. Layout
   -------------------------------------------------------------------------- */

/* Content wrapper */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 1024px) {
  .container {
    padding-left: 48px;
    padding-right: 48px;
  }
}

/* Section vertical rhythm */
.section {
  padding-top: var(--section-padding-mobile);
  padding-bottom: var(--section-padding-mobile);
}

@media (min-width: 1024px) {
  .section {
    padding-top: var(--section-padding-desktop);
    padding-bottom: var(--section-padding-desktop);
  }
}

/* Section modifiers */
.section--elevated {
  background-color: var(--bg-elevated);
}

.section--secondary {
  background-color: var(--bg-secondary);
}

.section--accent {
  background-color: var(--accent-dark);
}

.section--full-bleed {
  width: 100%;
}

/* Grid helpers */
.grid {
  display: grid;
  gap: 24px;
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Flex helpers */
.flex {
  display: flex;
}

.flex--center {
  align-items: center;
  justify-content: center;
}

.flex--between {
  align-items: center;
  justify-content: space-between;
}

.flex--gap-sm { gap: 12px; }
.flex--gap-md { gap: 24px; }
.flex--gap-lg { gap: 40px; }

/* --------------------------------------------------------------------------
   6. Section Label
   -------------------------------------------------------------------------- */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   7. Divider
   -------------------------------------------------------------------------- */
.divider-tactical {
  position: relative;
  height: 1px;
  background-color: var(--border);
  margin: 32px 0;
  overflow: visible;
}

.divider-tactical::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 48px;
  height: 3px;
  background-color: var(--accent);
}

/* --------------------------------------------------------------------------
   8. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  border: 2px solid transparent;
  transition: background-color var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

/* Primary — coyote tan fill */
.btn--primary {
  background-color: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn--primary:active {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* Secondary — ghost on dark */
.btn--secondary {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

/* Outline — coyote border, no fill */
.btn--outline {
  background-color: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: var(--accent);
  color: var(--bg-primary);
}

/* Small variant */
.btn--sm {
  padding: 10px 22px;
  font-size: 0.8125rem;
}

/* Large variant */
.btn--lg {
  padding: 18px 44px;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

/* Focus ring */
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   9. Navigation
   -------------------------------------------------------------------------- */
.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

.nav-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* Active state */
.nav-link--active {
  color: var(--text-primary);
}

.nav-link--active::after {
  width: 100%;
  background-color: var(--accent);
}

/* --------------------------------------------------------------------------
   10. Product Card
   -------------------------------------------------------------------------- */
.product-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: border-color var(--transition-base),
              transform var(--transition-base);
  text-decoration: none;
  cursor: pointer;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.product-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.product-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.product-card:hover .product-card__image img {
  transform: scale(1.03);
}

/* Placeholder when no image */
.product-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-secondary);
}

.product-card__image--placeholder span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  padding: 16px;
}

.product-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.2;
}

.product-card__variant {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 400;
}

.product-card__price {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: auto;
  padding-top: 8px;
}

/* --------------------------------------------------------------------------
   11. Form Elements
   -------------------------------------------------------------------------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background-color: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text-primary);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
}

/* Inline email capture row */
.form-inline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 520px;
}

@media (min-width: 600px) {
  .form-inline {
    flex-direction: row;
  }

  .form-inline .form-input {
    flex: 1;
  }

  .form-inline .btn {
    flex-shrink: 0;
  }
}

/* --------------------------------------------------------------------------
   12. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 1024px) {
  .site-header__inner {
    height: 72px;
  }
}

.site-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__logo img,
.site-header__logo svg {
  height: 40px;
  width: auto;
}

@media (min-width: 1024px) {
  .site-header__logo img,
  .site-header__logo svg {
    height: 48px;
  }
}

/* Desktop nav */
.site-nav {
  display: none;
  align-items: center;
  gap: 36px;
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }
}

/* Header actions (cart, hamburger) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Cart button */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  background: none;
  border: none;
  cursor: pointer;
}

.cart-btn:hover {
  color: var(--text-primary);
}

.cart-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.cart-btn__count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background-color: var(--accent);
  color: var(--bg-primary);
  font-size: 0.625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  line-height: 1;
}

/* Hamburger button */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  color: var(--text-primary);
  cursor: pointer;
}

.hamburger-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hamburger-btn__line {
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: transform var(--transition-base),
              opacity var(--transition-base);
  display: block;
}

@media (min-width: 768px) {
  .hamburger-btn {
    display: none;
  }
}

/* Active hamburger → X */
.hamburger-btn[aria-expanded="true"] .hamburger-btn__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn[aria-expanded="true"] .hamburger-btn__line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn[aria-expanded="true"] .hamburger-btn__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background-color: var(--bg-primary);
  z-index: 99;
  padding: 80px 24px 40px;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition-fast);
}

.mobile-menu__link:hover {
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   13. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-color: #1a1a1a;
  background-image: radial-gradient(ellipse at 70% 50%, #2a2420 0%, #0a0a0a 70%);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.90) 0%,
    rgba(10, 10, 10, 0.65) 55%,
    rgba(10, 10, 10, 0.35) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero__subhead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

@media (min-width: 480px) {
  .hero__actions {
    flex-direction: row;
    align-items: center;
  }
}

.hero__text-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.hero__text-link:hover {
  color: var(--text-secondary);
  border-color: var(--text-muted);
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  z-index: 2;
}

.hero__scroll-indicator span {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.scroll-arrow {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}

/* --------------------------------------------------------------------------
   14. Mission Strip
   -------------------------------------------------------------------------- */
.mission-strip {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
}

.mission-strip__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .mission-strip {
    padding: 80px 48px;
  }
}

/* --------------------------------------------------------------------------
   15. About Teaser
   -------------------------------------------------------------------------- */
.about-teaser__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-teaser__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.about-teaser__image {
  aspect-ratio: 4 / 3;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-teaser__image-placeholder {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  padding: 24px;
}

/* --------------------------------------------------------------------------
   16. Email Capture
   -------------------------------------------------------------------------- */
.email-capture {
  text-align: center;
}

.email-capture__form-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.site-footer__main {
  padding: 64px 0 48px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
}

.footer-col__title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-col__logo {
  margin-bottom: 16px;
}

.footer-col__logo img,
.footer-col__logo svg {
  height: 36px;
  width: auto;
}

.footer-col__tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 240px;
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav__link {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-nav__link:hover {
  color: var(--text-primary);
}

.footer-nav__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Footer bottom bar */
.site-footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Social icons row */
.social-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: color var(--transition-fast), border-color var(--transition-fast);
  text-decoration: none;
}

.social-link:hover {
  color: var(--text-primary);
  border-color: var(--accent);
}

.social-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.social-link svg {
  width: 16px;
  height: 16px;
}

/* --------------------------------------------------------------------------
   18. Utilities
   -------------------------------------------------------------------------- */

/* Text alignment */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* Color utilities */
.text-accent   { color: var(--accent); }
.text-muted    { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

/* Spacing */
.mt-0  { margin-top: 0; }
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.mt-xl { margin-top: 64px; }

.mb-0  { margin-bottom: 0; }
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 40px; }

/* Display */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip to main content (accessibility) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  padding: 8px 16px;
  background-color: var(--accent);
  color: var(--bg-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

/* --------------------------------------------------------------------------
   19. Policy page additions
   -------------------------------------------------------------------------- */

/* Small hero variant for policy / legal pages (~25-30vh) */
.hero--policy {
  min-height: 28vh;
  background-color: var(--bg-elevated);
  background-image: none;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
  padding-top: 40px;
}

@media (min-width: 768px) {
  .hero--policy {
    min-height: 30vh;
    padding-bottom: 56px;
    padding-top: 56px;
  }
}

/* Narrow prose column for long-form policy content */
.prose-column {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Policy content typography overrides for readability */
.policy-content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.policy-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.policy-content h2:first-of-type {
  margin-top: 0;
}

.policy-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.policy-content ul {
  list-style: none;
  margin: 16px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-content ul li {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.policy-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 2px;
  background-color: var(--accent);
}

.policy-content strong {
  font-weight: 600;
  color: var(--text-primary);
}

.policy-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.policy-content a:hover {
  color: var(--accent-hover);
}

/* Last updated / date stamp */
.policy-date {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   Header v2 + Footer v2 + Nav polish + Section labels v2
   (added 2026-05-20)
   ============================================================ */

/* A. Header logo presence */
.site-header__logo-img {
  display: block;
  height: 96px;
  width: auto;
  transition: height 240ms cubic-bezier(0.25, 1, 0.5, 1);
}

@media (min-width: 1024px) {
  .site-header__logo-img {
    height: 116px;
  }
}

@media (max-width: 480px) {
  .site-header__logo-img {
    height: 76px;
  }
}

/* B. Header overall height + spacing */
.site-header {
  padding-top: 14px;
  padding-bottom: 14px;
}

@media (min-width: 1024px) {
  .site-header {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

/* C. Scroll-aware header */
.site-header.is-scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom-color: var(--accent-dark);
}

.site-header.is-scrolled .site-header__logo-img {
  height: 68px;
}

@media (min-width: 1024px) {
  .site-header.is-scrolled .site-header__logo-img {
    height: 84px;
  }
}

/* D. Footer logo presence */
.footer__logo-img {
  display: block;
  height: 110px;
  width: auto;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .footer__logo-img {
    height: 130px;
  }
}

/* E. Footer overall breathing room */
.footer {
  padding-top: 96px;
  padding-bottom: 48px;
}

@media (min-width: 1024px) {
  .footer {
    padding-top: 128px;
  }
}

/* F. Footer tagline */
.footer__tagline {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 280px;
  margin: 0;
}

/* G. Section labels v2 — tactical line treatment */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  height: 1px;
  width: 24px;
  background: var(--accent);
  opacity: 0.6;
}

.section-label::after {
  display: none;
}

/* Boilerplate disclaimer for terms / privacy */
.policy-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 14px 16px;
  border-left: 3px solid var(--border);
  margin-bottom: 40px;
  background-color: var(--bg-elevated);
}

/* Back to top link */
.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  transition: color var(--transition-fast);
}

.back-to-top:hover {
  color: var(--accent);
}

/* ==========================================================================
   Shop + Product additions
   New components added for shop.html and product.html.
   All follow existing token and convention rules.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Shop Hero — ~30vh banner replacing the full homepage hero
   -------------------------------------------------------------------------- */
.shop-hero {
  position: relative;
  min-height: 30vh;
  display: flex;
  align-items: flex-end;
  background-color: var(--bg-elevated);
  /* Subtle directional gradient — matches brand dark tone without a photo */
  background-image: radial-gradient(ellipse at 30% 80%, #1e1a16 0%, #0a0a0a 70%);
  border-bottom: 1px solid var(--border);
  padding-bottom: 40px;
  padding-top: 40px;
  overflow: hidden;
}

.shop-hero__overlay {
  position: absolute;
  inset: 0;
  /* Left-to-right fade — keeps text legible when a photo is added later */
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.50) 100%
  );
  pointer-events: none;
}

.shop-hero__content {
  position: relative;
  z-index: 2;
}

.shop-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-top: 8px;
}

@media (min-width: 768px) {
  .shop-hero {
    min-height: 32vh;
    padding-bottom: 56px;
    padding-top: 56px;
  }
}

/* --------------------------------------------------------------------------
   Shop Controls — filter bar + sort row
   -------------------------------------------------------------------------- */
.shop-controls {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  /* sits below the sticky site-header (64px mobile / 72px desktop) */
  top: 64px;
  z-index: 50;
}

@media (min-width: 1024px) {
  .shop-controls {
    top: 72px;
    padding: 20px 0;
  }
}

.shop-controls__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .shop-controls__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}

/* Filter pill / button row */
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid var(--border);
  background-color: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background-color var(--transition-fast),
              border-color var(--transition-fast),
              color var(--transition-fast);
  white-space: nowrap;
}

.shop-filter-btn:hover,
.shop-filter-btn:focus-visible {
  border-color: var(--accent);
  color: var(--text-primary);
}

.shop-filter-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.shop-filter-btn--active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
}

.shop-filter-btn--active:hover,
.shop-filter-btn--active:focus-visible {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--bg-primary);
}

/* Sort dropdown */
.shop-sort {
  flex-shrink: 0;
}

.shop-sort__select {
  appearance: none;
  -webkit-appearance: none;
  padding: 8px 36px 8px 14px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background-color: var(--bg-elevated);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 0;
  cursor: pointer;
  /* Caret — inline SVG as data URI to avoid a background-image dependency */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6660' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.shop-sort__select:focus {
  outline: none;
  border-color: var(--accent);
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   Breadcrumb — product page nav trail
   -------------------------------------------------------------------------- */
.breadcrumb {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb__item {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-muted);
}

.breadcrumb__link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb__link:hover {
  color: var(--accent);
}

.breadcrumb__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.breadcrumb__item--current {
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   Product Detail — two-column layout
   -------------------------------------------------------------------------- */
.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .product-detail__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

/* --------------------------------------------------------------------------
   Product Gallery — main image + thumbnails
   -------------------------------------------------------------------------- */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* Stick the gallery to the top while the right column scrolls */
  position: sticky;
  top: calc(64px + 1px); /* below sticky header */
}

@media (min-width: 1024px) {
  .product-gallery {
    top: calc(72px + 1px);
  }
}

/* Main image area — square, placeholder-ready */
.product-gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery__main-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  /* TODO: remove this block and use <img> when Tony supplies photography */
}

.product-gallery__main-placeholder span {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  padding: 24px;
}

/* Badge — NEW / LIMITED label on the main image */
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background-color: var(--accent);
  color: var(--bg-primary);
  border-radius: 0;
  line-height: 1.4;
  pointer-events: none;
}

/* Thumbnail row */
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.product-gallery__thumb {
  aspect-ratio: 1 / 1;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast);
  /* TODO: will contain <img> thumbnails when photography is supplied */
}

.product-gallery__thumb span {
  font-family: var(--font-display);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-gallery__thumb:hover,
.product-gallery__thumb:focus-visible {
  border-color: var(--accent);
}

.product-gallery__thumb:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.product-gallery__thumb--active {
  border-color: var(--accent);
}

/* --------------------------------------------------------------------------
   Product Info — right column
   -------------------------------------------------------------------------- */
.product-info__title {
  /* h1 styles inherited from base; override size for product page context */
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 1.0;
  margin-bottom: 12px;
}

.product-info__price {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.product-info__description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

/* --------------------------------------------------------------------------
   Product Options — shared wrapper for color, size, quantity
   -------------------------------------------------------------------------- */
.product-option {
  margin-bottom: 24px;
}

.product-option__label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.product-option__selected {
  color: var(--text-primary);
  font-weight: 600;
}

/* Color swatches — square chips */
.product-swatches {
  display: flex;
  gap: 10px;
}

.product-swatch {
  width: 32px;
  height: 32px;
  border-radius: 0;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast);
  flex-shrink: 0;
}

.product-swatch:hover,
.product-swatch:focus-visible {
  border-color: var(--accent);
}

.product-swatch:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Selected swatch: coyote tan ring with offset gap */
.product-swatch--selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--bg-elevated), 0 0 0 4px var(--accent);
}

/* Size buttons */
.product-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-size-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 44px;
  padding: 0 12px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid var(--border);
  background-color: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background-color var(--transition-fast),
              border-color var(--transition-fast),
              color var(--transition-fast);
}

.product-size-btn:hover,
.product-size-btn:focus-visible {
  border-color: var(--accent);
  color: var(--text-primary);
}

.product-size-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.product-size-btn--selected {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
}

.product-size-btn--selected:hover,
.product-size-btn--selected:focus-visible {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--bg-primary);
}

/* Quantity stepper */
.product-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  width: fit-content;
}

.product-qty__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-secondary);
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast), background-color var(--transition-fast);
  border-radius: 0;
  line-height: 1;
}

.product-qty__btn:hover,
.product-qty__btn:focus-visible {
  color: var(--text-primary);
  background-color: var(--bg-secondary);
}

.product-qty__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.product-qty__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 44px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  user-select: none;
}

/* Add to cart button — full width on product page */
.product-info__atc {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   Product Assurances — shipping / returns icon + text rows
   -------------------------------------------------------------------------- */
.product-assurances {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.product-assurances__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.product-assurances__item svg {
  flex-shrink: 0;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Product Accordion — collapsible detail sections
   -------------------------------------------------------------------------- */
.product-accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

/* Remove default browser details marker */
.accordion-item summary {
  list-style: none;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
  transition: color var(--transition-fast);
  background: none;
  border: none;
}

.accordion-item__trigger:hover {
  color: var(--text-primary);
}

.accordion-item__trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Rotate chevron when open */
.accordion-item[open] .accordion-item__icon {
  transform: rotate(180deg);
}

.accordion-item__icon {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.accordion-item__body {
  padding: 0 0 20px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.accordion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.accordion-list li {
  padding-left: 16px;
  position: relative;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.accordion-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 1px;
  background-color: var(--accent);
}

.accordion-item__link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.accordion-item__link:hover {
  color: var(--accent-hover);
}

/* --------------------------------------------------------------------------
   Field Notes — 2-column editorial section on product page
   -------------------------------------------------------------------------- */
.field-note__heading {
  /* h3 styles inherited; add breathing room below */
  margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   Dog Gear anchor — footer links to #dog-gear on shop page.
   The id="dog-gear" is placed on the Working Dog Bandana card.
   This rule is a no-op spacer so the anchor lands with scroll-margin.
   -------------------------------------------------------------------------- */
[id="dog-gear"] {
  scroll-margin-top: calc(64px + 56px); /* header + controls bar */
}

@media (min-width: 1024px) {
  [id="dog-gear"] {
    scroll-margin-top: calc(72px + 60px);
  }
}

.back-to-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Related policies strip */
.related-policies {
  background-color: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.related-policies__label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.related-policies__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.related-policies__links a {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid var(--border);
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.related-policies__links a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.related-policies__links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   20. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header,
  .hamburger-btn,
  .mobile-menu,
  .hero__scroll-indicator {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}

/* ==========================================================================
   About + Contact + Events additions
   ========================================================================== */

/* --------------------------------------------------------------------------
   Page Hero — shared banner for About (~45vh), Contact, Events (~30vh)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  background-color: #111;
  background-image: radial-gradient(ellipse at 30% 60%, #1e1a15 0%, #0a0a0a 70%);
  overflow: hidden;
  padding-bottom: 56px;
  padding-top: 40px;
}

.page-hero--short {
  min-height: 30vh;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.2) 0%,
    rgba(10, 10, 10, 0.75) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 4.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   Placeholder block (image stand-in for About photo + Events grid)
   -------------------------------------------------------------------------- */
.placeholder {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  padding: 24px;
}

/* --------------------------------------------------------------------------
   About Story layout — centered prose column
   -------------------------------------------------------------------------- */
.about-story {
  max-width: 720px;
  margin: 0 auto;
}

.about-story__text {
  display: flex;
  flex-direction: column;
}

.about-story__photo {
  aspect-ratio: 4 / 3;
  margin: 48px 0;
}

/* --------------------------------------------------------------------------
   Pull Quote Strip
   -------------------------------------------------------------------------- */
.pull-quote-strip {
  background-color: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

@media (min-width: 1024px) {
  .pull-quote-strip {
    padding: 64px 0;
  }
}

.pull-quote {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.pull-quote .divider-tactical {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* Center the accent bar on a centered divider */
.pull-quote .divider-tactical::before {
  left: 50%;
  transform: translateX(-24px);
}

.pull-quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.1;
  padding: 32px 0;
}

/* --------------------------------------------------------------------------
   Principle Cards — About three-column values section
   -------------------------------------------------------------------------- */
.principle-card {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.principle-card__heading {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 16px;
}

.principle-card__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   About mission strip — wider text variant
   -------------------------------------------------------------------------- */
.mission-strip .mission-strip__text {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Contact — two-column grid
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

/* Contact info column */
.contact-info__heading {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.contact-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.contact-block:first-of-type {
  border-top: 1px solid var(--border);
}

.contact-block__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  line-height: 1.4;
}

.contact-block__body {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-block__link {
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.contact-block__link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.contact-block__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.contact-block__link--inline {
  display: inline-block;
  margin-top: 8px;
}

.contact-meta-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.contact-meta-block__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.4;
}

.contact-meta-block__body {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Contact form column */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Select — matches .form-input but needs appearance reset */
.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6660' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option {
  background-color: var(--bg-elevated);
  color: var(--text-primary);
}

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 140px;
}

/* Optional label modifier */
.form-label__optional {
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.contact-form__submit {
  align-self: flex-start;
}

.contact-form__disclaimer {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Events page
   -------------------------------------------------------------------------- */
.events-intro {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 680px;
}

/* Event cards — stacked bordered list */
.events-list {
  display: flex;
  flex-direction: column;
}

.event-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.event-card:first-child {
  border-top: 1px solid var(--border);
}

@media (min-width: 600px) {
  .event-card {
    grid-template-columns: 120px 1fr;
    gap: 48px;
  }
}

.event-card__date {
  padding-top: 4px;
}

.event-card__date-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.0;
  display: block;
}

.event-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 8px;
}

.event-card__location {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.4;
}

.event-card__description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.event-card__link {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-dark);
  padding-bottom: 2px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.event-card__link:hover {
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}

.event-card__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Events CTA banner */
.events-cta-strip {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

@media (min-width: 1024px) {
  .events-cta-strip {
    padding: 72px 0;
  }
}

.events-cta-strip__inner {
  max-width: 600px;
}

.events-cta-strip__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.events-cta-strip__body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Events past-photos grid items */
.events-photo-grid__item {
  aspect-ratio: 4 / 3;
}

/* ==========================================================================
   Cart page additions
   ========================================================================== */

/* Two-column cart layout: items (60%) + summary (40%) */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 1024px) {
  .cart-layout {
    grid-template-columns: 3fr 2fr;
    gap: 64px;
  }
}

/* Sticky summary column on desktop */
@media (min-width: 1024px) {
  .cart-layout__summary {
    position: sticky;
    top: 88px; /* clears 72px sticky header + 16px breathing room */
  }
}

/* ---- Empty state ---- */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  border: 1px solid var(--border);
  background-color: var(--bg-elevated);
}

.cart-empty__headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 12px;
}

.cart-empty__sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 360px;
}

/* ---- Line item column headers ---- */
.cart-items-header {
  display: none;
}

@media (min-width: 768px) {
  .cart-items-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    padding: 0 0 12px;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .cart-items-header__qty  { text-align: center; min-width: 100px; }
  .cart-items-header__price { text-align: right; min-width: 80px; }
}

/* ---- Cart line item ---- */
.cart-line {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 480px) {
  .cart-line {
    grid-template-columns: 96px 1fr auto;
  }
}

/* Square product image thumbnail (placeholder style) */
.cart-line__image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 480px) {
  .cart-line__image {
    width: 96px;
    height: 96px;
  }
}

.cart-line__image span {
  font-family: var(--font-display);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  padding: 8px;
}

/* Product name + variant */
.cart-line__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cart-line__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-line__variant {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Quantity stepper row inside line detail */
.cart-line__qty-row {
  display: flex;
  align-items: center;
  margin-top: 8px;
  border: 1px solid var(--border);
  width: fit-content;
}

.qty-stepper__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.125rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: color var(--transition-fast), background-color var(--transition-fast);
  flex-shrink: 0;
}

.qty-stepper__btn:hover:not(:disabled) {
  color: var(--text-primary);
  background-color: var(--bg-secondary);
}

.qty-stepper__btn:disabled {
  color: var(--text-muted);
  cursor: not-allowed;
}

.qty-stepper__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.qty-stepper__display {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 32px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  user-select: none;
}

/* Right column: line price + remove */
.cart-line__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.cart-line__price {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
}

.cart-line__remove {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition-fast);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cart-line__remove:hover {
  color: var(--text-secondary);
}

.cart-line__remove:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---- Order summary panel ---- */
.cart-summary {
  background-color: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 32px;
}

.cart-summary__heading {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.cart-summary__rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.cart-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-summary__row--total {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.cart-summary__label {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.cart-summary__label--total {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.cart-summary__value {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
}

.cart-summary__value--muted {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-muted);
}

.cart-summary__value--total {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

/* Promo code row */
.cart-summary__promo {
  margin-bottom: 20px;
}

.cart-promo-row {
  display: flex;
}

.cart-promo-row__input {
  flex: 1;
  min-width: 0;
  border-right: none; /* share border with adjacent button */
}

.cart-promo-row__btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Checkout CTA */
.cart-summary__checkout {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

/* Disabled / empty-cart state */
.cart-summary__checkout[aria-disabled="true"],
.cart-summary__checkout:disabled {
  background-color: var(--bg-secondary);
  border-color: var(--border);
  color: var(--text-muted);
  cursor: not-allowed;
  pointer-events: none;
}

.cart-summary__secure-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 16px;
}

/* Trust signals list */
.cart-summary__trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.cart-summary__trust li {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}

.cart-summary__trust li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 1px;
  background-color: var(--accent);
}

/* ---- Reassurance strip ---- */
.cart-assurance .grid--3 {
  gap: 32px;
}

/* ============================================================
   Product silhouettes — placeholder treatment (added 2026-05-20)
   ============================================================ */

.product-card__silhouette {
  display: block;
  width: 60%;
  height: 60%;
  object-fit: contain;
  margin: auto;
  opacity: 0.85;
  transition: opacity 240ms ease, transform 240ms ease;
}

.product-card__image {
  /* override existing dark-block placeholder to use elevated bg + flex center */
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-card:hover .product-card__silhouette {
  opacity: 1;
  transform: scale(1.04);
}

/* Subtle inner border on hover, coyote tint */
.product-card:hover .product-card__image::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--accent);
  opacity: 0.5;
  pointer-events: none;
}

/* Main product page gallery silhouette */
.product-gallery__main .product-card__silhouette,
.product-gallery__main img.product-card__silhouette {
  width: 55%;
  height: 55%;
}

/* Thumbnail silhouettes — small */
.product-gallery__thumb .product-card__silhouette {
  width: 70%;
  height: 70%;
  opacity: 0.7;
}

.product-gallery__thumb--active .product-card__silhouette,
.product-gallery__thumb:hover .product-card__silhouette {
  opacity: 1;
}

.cart-assurance__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-assurance__icon {
  color: var(--accent);
  flex-shrink: 0;
}

.cart-assurance__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.2;
}

.cart-assurance__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- Toast notification ---- */
.pt-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  background-color: var(--bg-elevated);
  border: 1px solid var(--accent);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 16px 20px;
  max-width: 320px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  cursor: pointer;
}

.pt-toast--visible {
  opacity: 1;
  transform: translateY(0);
}

.pt-toast a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pt-toast a:hover {
  color: var(--accent-hover);
}

/* ---- Form error / success states ---- */
.form-input.is-error {
  border-color: #c0392b;
}

.form-success-message {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  padding: 20px;
  border: 1px solid var(--accent);
  background-color: var(--bg-elevated);
}

/* ============================================================
   Hero v2 + grain system + tactical details
   Added 2026-05-20
   ============================================================ */

/* --------------------------------------------------------------------------
   Grain texture utility — apply to any section via class="has-grain"
   Uses inline SVG turbulence filter: zero extra HTTP requests, scales
   perfectly at any container size.
   -------------------------------------------------------------------------- */
.has-grain {
  position: relative;
  isolation: isolate;
}

.has-grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.07;
  mix-blend-mode: overlay;
}

/* --------------------------------------------------------------------------
   Hero v2 — logo-dominant brand-statement hero
   Overrides .hero (section 13 above) via higher specificity on .hero--v2
   -------------------------------------------------------------------------- */
.hero--v2 {
  /* Reset inherited bg — we set our own below */
  background-image: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 70%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 100px 24px 80px;
  /* grain applied via has-grain class on the element */
}

@media (max-width: 767px) {
  .hero--v2 {
    min-height: 90vh;
    padding: 80px 20px 64px;
  }
}

/* Ensure hero content layers above the grain ::after */
.hero--v2 .hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Hero hallmark — EST 2026 label at top, like a brand-book stamp
   -------------------------------------------------------------------------- */
.hero__hallmark {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 52px;
  line-height: 1;
}

@media (min-width: 768px) {
  .hero__hallmark {
    font-size: 0.75rem;
    margin-bottom: 64px;
  }
}

/* --------------------------------------------------------------------------
   Hero logo — the centerpiece. Big. Confident. Centered.
   -------------------------------------------------------------------------- */
.hero__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 52px;
}

.hero__logo img {
  width: clamp(280px, 80vw, 720px);
  height: auto;
  display: block;
  /* Subtle depth without photoshop-style glow — keeps it print-clean */
  filter: drop-shadow(0 2px 40px rgba(0, 0, 0, 0.55));
}

@media (min-width: 768px) {
  .hero__logo img {
    width: clamp(420px, 50vw, 720px);
  }
  .hero__logo {
    margin-bottom: 56px;
  }
}

/* --------------------------------------------------------------------------
   Hero tagline — CARRY THE WEIGHT. HOLD THE LINE.
   Coyote accent with hairline rules above and below (military insignia feel)
   -------------------------------------------------------------------------- */
.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3.5vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
  position: relative;
  display: inline-block;
  padding: 16px 0;
  margin-bottom: 28px;
}

/* Hairline rules above and below — brand-book / insignia treatment */
.hero__tagline::before,
.hero__tagline::after {
  content: '';
  display: block;
  width: 64px;
  height: 1px;
  background-color: var(--accent);
  opacity: 0.6;
  margin: 0 auto;
}

.hero__tagline::before {
  margin-bottom: 14px;
}

.hero__tagline::after {
  margin-top: 14px;
}

/* --------------------------------------------------------------------------
   Hero sub-statement
   -------------------------------------------------------------------------- */
.hero__sub-statement {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 40px;
}

/* --------------------------------------------------------------------------
   Hero CTA — minimal underlined link, coyote slide-in accent on hover
   NOT a chunky button. Refined. Confident.
   -------------------------------------------------------------------------- */
.hero__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  padding-bottom: 4px;
  position: relative;
  /* Base underline */
  border-bottom: 1px solid var(--border);
  transition: color var(--transition-base), border-color var(--transition-base);
}

/* Sliding coyote underline that scales in on hover */
.hero__cta::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width var(--transition-base);
}

.hero__cta:hover {
  color: var(--accent);
  border-color: transparent;
}

.hero__cta:hover::after {
  width: 100%;
}

.hero__cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* --------------------------------------------------------------------------
   Hero scroll indicator v2 — thin coyote line + label, gentle pulse
   -------------------------------------------------------------------------- */
.hero--v2 .hero__scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: var(--text-muted);
  animation: none; /* parent container; children animate */
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--accent);
  opacity: 0.5;
  animation: scrollPulse 3s ease-in-out infinite;
}

.hero__scroll-label {
  font-family: var(--font-display);
  font-size: 0.5625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
}

@keyframes scrollPulse {
  0%,
  100% { opacity: 0.25; }
  50%  { opacity: 0.65; }
}

/* --------------------------------------------------------------------------
   About page hero v2 — grain + chapter-opener treatment
   ~45vh, shorter scale; should feel like a brand chapter header,
   not compete with the homepage.
   -------------------------------------------------------------------------- */
.page-hero--v2 {
  background-image: radial-gradient(ellipse at 40% 60%, #191512 0%, #0a0a0a 75%);
  padding-bottom: 64px;
  padding-top: 56px;
}

.page-hero--v2 .section-label {
  display: block;
  margin-bottom: 12px;
}

.page-hero--v2 .page-hero__heading {
  font-size: clamp(2.25rem, 7vw, 5rem);
}

/* Thin coyote rule below the heading — chapter-opener detail */
.page-hero--v2 .page-hero__content::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--accent);
  margin-top: 24px;
  opacity: 0.75;
}

/* ============================================================
   Field briefing restyle - screenshot-inspired visual layer
   Added 2026-05-20
   ============================================================ */

:root {
  --accent-rgb: 160 122 78;
  --accent-hover-rgb: 184 140 91;
  --bg-primary-rgb: 10 10 10;
  --bg-elevated-rgb: 22 22 22;
  --bg-secondary-rgb: 31 31 31;
  --text-primary-rgb: 244 241 236;
  --briefing-line: rgb(var(--accent-rgb) / 0.36);
  --briefing-line-soft: rgb(var(--accent-rgb) / 0.16);
  --briefing-panel: rgb(var(--bg-primary-rgb) / 0.76);
  --briefing-panel-strong: rgb(var(--bg-primary-rgb) / 0.9);
  --briefing-shadow: 0 24px 80px rgb(var(--bg-primary-rgb) / 0.56);
}

body {
  background-color: var(--bg-primary);
  background-image:
    radial-gradient(ellipse at 16% 6%, rgb(var(--accent-rgb) / 0.08) 0 12%, transparent 34%),
    radial-gradient(ellipse at 86% 20%, rgb(var(--text-primary-rgb) / 0.045) 0 9%, transparent 30%),
    repeating-radial-gradient(ellipse at 12% 92%, transparent 0 36px, rgb(var(--accent-rgb) / 0.05) 37px 38px, transparent 39px 74px),
    repeating-radial-gradient(ellipse at 88% 72%, transparent 0 42px, rgb(var(--accent-rgb) / 0.035) 43px 44px, transparent 45px 86px);
  background-attachment: fixed;
}

main {
  position: relative;
  overflow: hidden;
}

.section,
.shop-hero,
.page-hero,
.hero--policy,
.mission-strip,
.site-footer {
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: max(24px, calc((100vw - var(--max-width)) / 2 + 48px));
  right: max(24px, calc((100vw - var(--max-width)) / 2 + 48px));
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--briefing-line-soft) 18%, var(--briefing-line) 50%, var(--briefing-line-soft) 82%, transparent);
  opacity: 0.72;
}

.section--elevated,
.section--secondary {
  background-image:
    linear-gradient(180deg, rgb(var(--bg-primary-rgb) / 0.2), rgb(var(--bg-primary-rgb) / 0.46)),
    repeating-radial-gradient(ellipse at 85% 22%, transparent 0 38px, rgb(var(--accent-rgb) / 0.035) 39px 40px, transparent 41px 80px);
}

/* Header badge treatment */
.site-header {
  padding-top: 0;
  padding-bottom: 0;
  background: rgb(var(--bg-primary-rgb) / 0.94);
  border-bottom-color: var(--briefing-line);
  box-shadow: 0 1px 0 rgb(var(--accent-rgb) / 0.08), 0 18px 48px rgb(var(--bg-primary-rgb) / 0.38);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  position: relative;
  height: 70px;
}

.site-header__logo {
  position: relative;
  align-self: flex-start;
  justify-content: center;
  width: 72px;
  height: 92px;
  margin-bottom: -24px;
  background:
    linear-gradient(180deg, rgb(var(--bg-secondary-rgb) / 0.72), rgb(var(--bg-primary-rgb) / 0.96)),
    radial-gradient(ellipse at 50% 18%, rgb(var(--accent-rgb) / 0.12), transparent 62%);
  border: 1px solid var(--briefing-line-soft);
  border-top: 0;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
  filter: drop-shadow(0 18px 26px rgb(var(--bg-primary-rgb) / 0.46));
}

.site-header__logo::after {
  content: '';
  position: absolute;
  inset: 8px;
  pointer-events: none;
  background:
    linear-gradient(var(--briefing-line), var(--briefing-line)) left top / 16px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) left top / 1px 16px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right top / 16px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right top / 1px 16px no-repeat;
  opacity: 0.42;
}

.site-header .site-header__logo-img,
.site-header.is-scrolled .site-header__logo-img {
  width: 54px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgb(var(--bg-primary-rgb) / 0.58));
}

.site-header.is-scrolled .site-header__logo {
  width: 62px;
  height: 74px;
  margin-bottom: -16px;
}

.site-header.is-scrolled .site-header__inner {
  height: 58px;
}

@media (min-width: 768px) {
  .site-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: clamp(36px, 5vw, 72px);
  }
}

@media (min-width: 1024px) {
  .site-header__inner {
    height: 76px;
  }

  .site-header__logo {
    width: 82px;
    height: 104px;
    margin-bottom: -28px;
  }

  .site-header .site-header__logo-img {
    width: 62px;
    max-height: 70px;
  }

  .site-header.is-scrolled .site-header__inner {
    height: 62px;
  }

  .site-header.is-scrolled .site-header__logo {
    width: 68px;
    height: 82px;
    margin-bottom: -18px;
  }
}

@media (max-width: 480px) {
  .site-header__logo {
    width: 60px;
    height: 76px;
    margin-bottom: -18px;
  }

  .site-header .site-header__logo-img,
  .site-header.is-scrolled .site-header__logo-img {
    width: 46px;
  }
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-shadow: 0 10px 24px rgb(var(--bg-primary-rgb) / 0.8);
}

.cart-btn {
  color: var(--text-secondary);
}

.cart-btn__count {
  background-color: var(--accent);
  color: var(--bg-primary);
  border: 1px solid var(--accent-dark);
  box-shadow: 0 8px 18px rgb(var(--bg-primary-rgb) / 0.46);
}

/* Hero and page hero field optics */
.hero--v2,
.shop-hero,
.page-hero,
.hero--policy {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--briefing-line-soft);
  box-shadow: inset 0 0 0 1px rgb(var(--accent-rgb) / 0.045);
}

.hero--v2 {
  min-height: calc(100svh - 70px);
  padding: 44px 24px 88px;
  background-image: none;
}

.hero--v2::before,
.shop-hero::before,
.page-hero::before,
.hero--policy::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgb(var(--bg-primary-rgb) / 0.96) 0%, rgb(var(--bg-primary-rgb) / 0.6) 48%, rgb(var(--bg-primary-rgb) / 0.94) 100%),
    radial-gradient(ellipse at 18% 56%, rgb(var(--text-primary-rgb) / 0.07) 0 10%, transparent 31%),
    radial-gradient(ellipse at 78% 52%, rgb(var(--accent-rgb) / 0.08) 0 9%, transparent 32%),
    repeating-radial-gradient(ellipse at 18% 100%, transparent 0 34px, rgb(var(--accent-rgb) / 0.055) 35px 36px, transparent 37px 70px),
    repeating-radial-gradient(ellipse at 94% 76%, transparent 0 42px, rgb(var(--accent-rgb) / 0.045) 43px 44px, transparent 45px 86px),
    linear-gradient(180deg, rgb(var(--bg-secondary-rgb) / 0.5), var(--bg-primary));
}

.hero--v2 .hero__inner {
  max-width: 980px;
}

.hero--v2 .hero__inner::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -102px;
  width: 1px;
  height: 82px;
  background: linear-gradient(180deg, var(--briefing-line), transparent);
  pointer-events: none;
}

.hero__hallmark {
  margin-bottom: 18px;
  color: var(--accent);
  opacity: 0.78;
}

.hero__logo {
  margin-bottom: -14px;
}

.hero__logo img {
  width: clamp(260px, 36vw, 520px);
  filter: drop-shadow(0 28px 60px rgb(var(--bg-primary-rgb) / 0.72));
}

.hero__tagline {
  width: min(100%, 1040px);
  font-size: clamp(1.25rem, 3.15vw, 2.55rem);
  letter-spacing: clamp(0.08em, 0.72vw, 0.2em);
  word-spacing: 0.08em;
  padding: 12px 0;
  margin-bottom: 18px;
  color: var(--accent);
  background: linear-gradient(180deg, var(--accent-hover), var(--accent) 55%, var(--accent-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__tagline::before,
.hero__tagline::after {
  width: clamp(64px, 12vw, 140px);
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero__tagline::before {
  margin-bottom: 10px;
}

.hero__tagline::after {
  margin-top: 10px;
}

.hero__sub-statement {
  color: var(--text-secondary);
  text-shadow: 0 12px 32px rgb(var(--bg-primary-rgb) / 0.82);
  margin-bottom: 22px;
}

.hero__cta {
  isolation: isolate;
  padding: 18px 38px;
  border: 1px solid var(--briefing-line);
  color: var(--text-primary);
  background: rgb(var(--bg-primary-rgb) / 0.48);
  box-shadow: inset 0 0 0 1px rgb(var(--accent-rgb) / 0.05), 0 18px 44px rgb(var(--bg-primary-rgb) / 0.42);
}

.hero__cta::after {
  inset: 0;
  width: auto;
  height: auto;
  background: linear-gradient(90deg, transparent, rgb(var(--accent-rgb) / 0.16), transparent);
  opacity: 0;
  z-index: -1;
}

.hero__cta:hover,
.hero__cta:focus-visible {
  color: var(--accent-hover);
  border-color: var(--accent);
}

.hero__cta:hover::after,
.hero__cta:focus-visible::after {
  width: auto;
  opacity: 1;
}

.hero--v2 .hero__scroll-indicator {
  bottom: 22px;
}

.hero--v2 .hero__scroll-indicator::before {
  content: '';
  width: 44px;
  height: 44px;
  border: 1px solid var(--briefing-line);
  background:
    linear-gradient(135deg, transparent 31%, var(--accent) 32% 38%, transparent 39%) center 15px / 16px 16px no-repeat,
    linear-gradient(135deg, transparent 31%, var(--accent) 32% 38%, transparent 39%) center 23px / 16px 16px no-repeat,
    rgb(var(--bg-primary-rgb) / 0.72);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.hero--v2 .hero__scroll-line {
  display: none;
}

.hero__scroll-label {
  color: var(--accent);
  opacity: 0.72;
}

.shop-hero,
.page-hero,
.hero--policy {
  overflow: hidden;
}

.shop-hero__content,
.page-hero__content,
.hero--policy .container {
  position: relative;
  z-index: 2;
}

.shop-hero__overlay,
.page-hero__overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgb(var(--bg-primary-rgb) / 0.16), rgb(var(--bg-primary-rgb) / 0.78)),
    linear-gradient(90deg, rgb(var(--bg-primary-rgb) / 0.82), transparent 72%);
}

.page-hero--v2 {
  background-image: none;
}

.shop-hero::after,
.page-hero::after,
.hero--policy::after {
  content: '';
  position: absolute;
  inset: 24px;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(var(--briefing-line), var(--briefing-line)) left top / 18px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) left top / 1px 18px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right top / 18px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right top / 1px 18px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) left bottom / 18px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) left bottom / 1px 18px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right bottom / 18px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right bottom / 1px 18px no-repeat;
  opacity: 0.58;
}

.section-label {
  letter-spacing: 0.2em;
}

.section-label::before {
  width: 30px;
}

.divider-tactical {
  background: linear-gradient(90deg, var(--briefing-line) 0, var(--briefing-line-soft) 34%, transparent 100%);
}

.divider-tactical::before {
  background-color: var(--accent);
  box-shadow: 0 0 24px rgb(var(--accent-rgb) / 0.26);
}

.divider-tactical::after {
  content: '';
  position: absolute;
  left: 34%;
  top: -3px;
  width: 24px;
  height: 7px;
  background-color: var(--accent);
  clip-path: polygon(0 43%, 82% 43%, 100% 0, 100% 100%, 82% 57%, 0 57%);
  opacity: 0.68;
}

#products-heading,
.shop-hero__heading,
.page-hero__heading,
.hero__headline,
.events-cta-strip__heading,
.contact-info__heading,
#events-upcoming-heading,
#events-past-heading,
#about-principles-heading,
#about-cta-heading,
#email-heading,
#shop-email-heading {
  text-shadow: 0 1px 0 rgb(var(--accent-rgb) / 0.18), 0 24px 56px rgb(var(--bg-primary-rgb) / 0.72);
}

/* Product and gallery cards */
.product-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgb(var(--bg-elevated-rgb) / 0.86), rgb(var(--bg-primary-rgb) / 0.94)),
    radial-gradient(ellipse at 50% 0, rgb(var(--accent-rgb) / 0.1), transparent 52%);
  border-color: var(--briefing-line);
  box-shadow: var(--briefing-shadow);
}

.product-card:hover,
.product-card:focus-within {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 34px 92px rgb(var(--bg-primary-rgb) / 0.66);
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(var(--briefing-line), var(--briefing-line)) left top / 24px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) left top / 1px 24px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right top / 24px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right top / 1px 24px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) left bottom / 24px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) left bottom / 1px 24px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right bottom / 24px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right bottom / 1px 24px no-repeat;
  opacity: 0.5;
}

.product-card::after {
  content: '\203A';
  position: absolute;
  right: 24px;
  bottom: 28px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
  color: var(--accent);
  border: 1px solid var(--briefing-line);
  background-color: rgb(var(--bg-primary-rgb) / 0.72);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  pointer-events: none;
  transition: color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.product-card:hover::after,
.product-card:focus-within::after {
  color: var(--accent-hover);
  border-color: var(--accent);
  transform: translateX(2px);
}

.product-card__image,
.product-gallery__main,
.product-gallery__thumb,
.cart-line__image {
  background:
    radial-gradient(ellipse at 50% 42%, rgb(var(--text-primary-rgb) / 0.06), transparent 44%),
    radial-gradient(ellipse at 50% 100%, rgb(var(--accent-rgb) / 0.1), transparent 58%),
    repeating-radial-gradient(ellipse at 24% 100%, transparent 0 28px, rgb(var(--accent-rgb) / 0.04) 29px 30px, transparent 31px 58px),
    linear-gradient(180deg, rgb(var(--bg-secondary-rgb) / 0.9), rgb(var(--bg-primary-rgb) / 0.96));
  border-color: var(--briefing-line-soft);
}

.product-card__image {
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--briefing-line-soft);
}

.product-card__image::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 42px;
  height: 52px;
  background: url('assets/logo-tight-white.png') center / contain no-repeat;
  opacity: 0.14;
  filter: drop-shadow(0 8px 18px rgb(var(--bg-primary-rgb) / 0.7));
}

.product-card__image::after {
  content: '';
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgb(var(--accent-rgb) / 0.18);
  pointer-events: none;
  opacity: 0.76;
  transition: border-color var(--transition-fast), opacity var(--transition-fast);
}

.product-card:hover .product-card__image::after,
.product-card:focus-within .product-card__image::after {
  border-color: rgb(var(--accent-rgb) / 0.5);
  opacity: 1;
}

.product-card__silhouette {
  width: 68%;
  height: 68%;
  opacity: 0.92;
  filter: drop-shadow(0 24px 34px rgb(var(--bg-primary-rgb) / 0.58));
}

.product-card__body {
  position: relative;
  z-index: 2;
  min-height: 152px;
  padding: 24px 82px 26px 24px;
  background: linear-gradient(180deg, rgb(var(--bg-primary-rgb) / 0.18), rgb(var(--bg-primary-rgb) / 0.62));
}

.product-card__name {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  letter-spacing: 0.055em;
}

.product-card__variant {
  color: var(--accent);
  font-size: 0.95rem;
}

.product-card__price {
  color: var(--text-primary);
  font-size: 1.22rem;
  font-weight: 600;
}

.product-card__image:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.product-gallery__main,
.product-gallery__thumb {
  border-color: var(--briefing-line);
  box-shadow: var(--briefing-shadow);
}

.product-gallery__main::after {
  content: '';
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgb(var(--accent-rgb) / 0.22);
}

.product-badge {
  background-color: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 10px 22px rgb(var(--bg-primary-rgb) / 0.48);
}

/* Editorial story and placeholder image blocks */
.about-teaser__grid {
  position: relative;
}

@media (min-width: 1024px) {
  .about-teaser__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    gap: 76px;
  }
}

.about-teaser__image,
.placeholder {
  position: relative;
  overflow: hidden;
  border-color: var(--briefing-line);
  background:
    radial-gradient(ellipse at 50% 42%, rgb(var(--text-primary-rgb) / 0.08), transparent 34%),
    repeating-radial-gradient(ellipse at 70% 96%, transparent 0 34px, rgb(var(--accent-rgb) / 0.05) 35px 36px, transparent 37px 70px),
    linear-gradient(135deg, rgb(var(--bg-secondary-rgb) / 0.82), rgb(var(--bg-primary-rgb) / 0.96));
  box-shadow: var(--briefing-shadow);
}

.about-teaser__image::before,
.placeholder::before {
  content: '';
  position: absolute;
  inset: 16%;
  background: url('assets/logo-tight-white.png') center / contain no-repeat;
  opacity: 0.08;
  filter: drop-shadow(0 20px 38px rgb(var(--bg-primary-rgb) / 0.72));
}

.about-teaser__image::after,
.placeholder::after,
.principle-card::after,
.event-card::after,
.cart-summary::after,
.cart-empty::after,
.contact-form-wrap::after {
  content: '';
  position: absolute;
  inset: 10px;
  pointer-events: none;
  background:
    linear-gradient(var(--briefing-line), var(--briefing-line)) left top / 22px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) left top / 1px 22px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right bottom / 22px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right bottom / 1px 22px no-repeat;
  opacity: 0.46;
}

.about-teaser__image-placeholder,
.placeholder__label {
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .about-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 48px 64px;
    max-width: 1120px;
  }

  .about-story__text:first-child {
    padding-left: 32px;
    border-left: 1px solid var(--briefing-line);
  }

  .about-story__photo {
    margin: 0;
    min-height: 420px;
  }

  .about-story__text:last-child {
    grid-column: 1 / -1;
    max-width: 780px;
    margin: 16px auto 0;
    padding-top: 32px;
    border-top: 1px solid var(--briefing-line-soft);
  }
}

.pull-quote-strip,
.mission-strip,
.events-cta-strip {
  background-image:
    linear-gradient(180deg, rgb(var(--bg-primary-rgb) / 0.2), rgb(var(--bg-primary-rgb) / 0.72)),
    repeating-radial-gradient(ellipse at 50% 100%, transparent 0 40px, rgb(var(--accent-rgb) / 0.045) 41px 42px, transparent 43px 82px);
  border-color: var(--briefing-line-soft);
}

.mission-strip__text,
.pull-quote__text {
  letter-spacing: clamp(0.04em, 0.8vw, 0.12em);
  text-shadow: 0 24px 54px rgb(var(--bg-primary-rgb) / 0.78);
}

/* Briefing cards for secondary workflows */
.principle-card,
.event-card,
.cart-summary,
.cart-empty,
.contact-form-wrap,
.contact-block,
.contact-meta-block,
.cart-line {
  position: relative;
}

.principle-card,
.event-card,
.cart-summary,
.cart-empty,
.contact-form-wrap {
  background:
    linear-gradient(180deg, rgb(var(--bg-elevated-rgb) / 0.72), rgb(var(--bg-primary-rgb) / 0.86)),
    radial-gradient(ellipse at 14% 0, rgb(var(--accent-rgb) / 0.08), transparent 48%);
  border: 1px solid var(--briefing-line-soft);
  box-shadow: var(--briefing-shadow);
}

.principle-card {
  padding: 32px;
  border-top-color: var(--briefing-line-soft);
}

.event-card {
  grid-template-columns: 104px 1fr;
  gap: 28px;
  padding: 28px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--briefing-line-soft);
}

.event-card:first-child {
  border-top: 1px solid var(--briefing-line-soft);
}

.event-card__date {
  align-self: stretch;
  padding: 0 20px 0 0;
  border-right: 1px solid var(--briefing-line-soft);
}

.event-card__date-text {
  color: var(--accent);
}

.event-card__link {
  letter-spacing: 0.14em;
}

.contact-block,
.contact-meta-block {
  border-color: var(--briefing-line-soft);
}

.contact-form-wrap {
  padding: 28px;
}

.form-input,
.form-select,
.cart-line__qty-row {
  background-color: rgb(var(--bg-primary-rgb) / 0.58);
  border-color: var(--briefing-line-soft);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgb(var(--accent-rgb) / 0.28);
}

.cart-line {
  margin-bottom: 12px;
  padding: 18px;
  background-color: rgb(var(--bg-elevated-rgb) / 0.42);
  border: 1px solid var(--briefing-line-soft);
}

.cart-line__image {
  border-color: var(--briefing-line);
}

.cart-summary {
  border-color: var(--briefing-line);
}

.cart-summary__heading,
.cart-summary__row--total,
.cart-summary__trust {
  border-color: var(--briefing-line-soft);
}

.cart-assurance__item {
  padding: 24px;
  border: 1px solid var(--briefing-line-soft);
  background-color: rgb(var(--bg-primary-rgb) / 0.36);
}

.btn {
  box-shadow: 0 14px 32px rgb(var(--bg-primary-rgb) / 0.26);
}

.btn--secondary,
.btn--outline {
  background-color: rgb(var(--bg-primary-rgb) / 0.32);
  border-color: var(--briefing-line);
}

.btn--secondary:hover,
.btn--secondary:focus-visible,
.btn--outline:hover,
.btn--outline:focus-visible {
  color: var(--bg-primary);
  background-color: var(--accent);
  border-color: var(--accent);
}

.site-footer {
  background-image:
    linear-gradient(180deg, rgb(var(--bg-primary-rgb) / 0.3), rgb(var(--bg-primary-rgb) / 0.88)),
    repeating-radial-gradient(ellipse at 16% 100%, transparent 0 38px, rgb(var(--accent-rgb) / 0.04) 39px 40px, transparent 41px 78px);
  border-top-color: var(--briefing-line);
}

@media (max-width: 767px) {
  body {
    background-attachment: scroll;
  }

  .hero--v2 {
    min-height: 92svh;
    padding: 78px 18px 92px;
  }

  .hero__hallmark {
    margin-bottom: 28px;
  }

  .hero__logo {
    margin-bottom: 30px;
  }

  .hero__logo img {
    width: clamp(230px, 72vw, 340px);
  }

  .hero__tagline {
    letter-spacing: 0.12em;
    word-spacing: 0.04em;
  }

  .hero__cta {
    width: min(100%, 320px);
    justify-content: center;
  }

  .section::before {
    left: 24px;
    right: 24px;
  }

  .product-card__body {
    min-height: 136px;
    padding: 22px 76px 24px 22px;
  }

  .event-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .event-card__date {
    border-right: 0;
    border-bottom: 1px solid var(--briefing-line-soft);
    padding: 0 0 14px;
  }
}

/* ============================================================
   Concept image integration
   Added 2026-05-20
   ============================================================ */

.hero--v2::before {
  background:
    linear-gradient(90deg, rgb(var(--bg-primary-rgb) / 0.9) 0%, rgb(var(--bg-primary-rgb) / 0.5) 28%, rgb(var(--bg-primary-rgb) / 0.5) 72%, rgb(var(--bg-primary-rgb) / 0.92) 100%),
    radial-gradient(ellipse at 50% 42%, rgb(var(--bg-primary-rgb) / 0.24) 0 16%, rgb(var(--bg-primary-rgb) / 0.78) 54%, rgb(var(--bg-primary-rgb) / 0.96) 100%),
    linear-gradient(180deg, rgb(var(--bg-primary-rgb) / 0.18), rgb(var(--bg-primary-rgb) / 0.88)),
    url('assets/brand-hero-field.webp') center / cover no-repeat;
}

.page-hero--about::before {
  background:
    linear-gradient(90deg, rgb(var(--bg-primary-rgb) / 0.92) 0%, rgb(var(--bg-primary-rgb) / 0.78) 42%, rgb(var(--bg-primary-rgb) / 0.42) 100%),
    linear-gradient(180deg, rgb(var(--bg-primary-rgb) / 0.18), rgb(var(--bg-primary-rgb) / 0.86)),
    url('assets/about-header.webp') center / cover no-repeat;
}

.product-card__image--photo {
  background-color: var(--bg-primary);
}

.product-card__image--photo .product-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: saturate(0.86) contrast(1.08);
  transition: opacity 240ms ease, filter 240ms ease, transform 240ms ease;
}

.product-card:hover .product-card__photo,
.product-card:focus-within .product-card__photo {
  opacity: 1;
  filter: saturate(0.96) contrast(1.12);
  transform: scale(1.03);
}

.product-gallery__main-placeholder {
  width: 100%;
  height: 100%;
}

.product-gallery__photo,
.product-gallery__thumb-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
  filter: saturate(0.88) contrast(1.08);
}

.product-gallery__thumb-photo {
  padding: 4px;
}

.about-teaser__image--photo,
.about-story__photo--image {
  display: block;
  min-height: 320px;
  background-color: var(--bg-primary);
}

.about-teaser__image--photo::before,
.about-story__photo--image::before {
  display: none;
}

.about-teaser__image--photo img,
.about-story__photo--image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.1);
}

.about-teaser__image--photo img {
  aspect-ratio: 16 / 10;
}

.about-story__photo--image img {
  aspect-ratio: 4 / 5;
}

@media (max-width: 767px) {
  .hero--v2::before {
    background-position: center;
  }

  .page-hero--about::before {
    background-position: 62% center;
  }
}

/* ============================================================
   Concept match refinement pass
   Added 2026-05-20
   ============================================================ */

:root {
  --concept-frame-inset: clamp(22px, 3vw, 54px);
  --concept-max: 1520px;
}

/* Homepage hero: stronger image read, optic frame, and concept-style bottom lockup. */
.hero--v2 {
  min-height: calc(100svh - 76px);
  padding: clamp(56px, 7vh, 84px) 24px clamp(112px, 14vh, 154px);
}

.hero--v2::before {
  background:
    linear-gradient(90deg, rgb(var(--bg-primary-rgb) / 0.38) 0%, rgb(var(--bg-primary-rgb) / 0.12) 23%, rgb(var(--bg-primary-rgb) / 0.66) 44%, rgb(var(--bg-primary-rgb) / 0.66) 56%, rgb(var(--bg-primary-rgb) / 0.14) 78%, rgb(var(--bg-primary-rgb) / 0.44) 100%),
    radial-gradient(ellipse at 50% 42%, rgb(var(--bg-primary-rgb) / 0.54) 0 14%, rgb(var(--bg-primary-rgb) / 0.36) 36%, transparent 62%),
    linear-gradient(180deg, rgb(var(--bg-primary-rgb) / 0.04), rgb(var(--bg-primary-rgb) / 0.74)),
    repeating-radial-gradient(ellipse at 28% 104%, transparent 0 36px, rgb(var(--accent-rgb) / 0.075) 37px 38px, transparent 39px 74px),
    repeating-radial-gradient(ellipse at 88% 90%, transparent 0 46px, rgb(var(--accent-rgb) / 0.055) 47px 48px, transparent 49px 92px),
    url('assets/brand-hero-field.webp') center / cover no-repeat;
  filter: saturate(0.88) contrast(1.12);
}

.hero--v2 .hero__inner {
  max-width: min(1120px, calc(100vw - 48px));
}

.hero--v2 .hero__inner::before {
  bottom: clamp(-96px, -9vh, -70px);
  height: clamp(70px, 8vh, 94px);
  z-index: 1;
  opacity: 0.86;
}

.hero--v2 .hero__inner::after {
  content: '';
  position: absolute;
  top: clamp(-42px, -5vh, -28px);
  left: 50%;
  z-index: 1;
  width: min(var(--concept-max), calc(100vw - 52px));
  height: min(760px, calc(100svh - 132px));
  min-height: 580px;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    linear-gradient(var(--briefing-line), var(--briefing-line)) left top / 18px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) left top / 1px 18px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right top / 18px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right top / 1px 18px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) left bottom / 18px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) left bottom / 1px 18px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right bottom / 18px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right bottom / 1px 18px no-repeat,
    repeating-linear-gradient(180deg, rgb(var(--accent-rgb) / 0.42) 0 2px, transparent 2px 42px) left 90px top 22% / 1px 320px no-repeat,
    repeating-linear-gradient(180deg, rgb(var(--accent-rgb) / 0.42) 0 2px, transparent 2px 42px) right 90px top 22% / 1px 320px no-repeat;
  opacity: 0.72;
}

.hero__hallmark,
.hero__logo,
.hero__tagline,
.hero__sub-statement,
.hero__cta {
  position: relative;
  z-index: 2;
}

.hero__hallmark {
  margin-bottom: 8px;
}

.hero__logo {
  margin-bottom: -6px;
}

.hero__logo img {
  width: clamp(286px, 34vw, 560px);
}

.hero__tagline {
  max-width: min(1060px, calc(100vw - 56px));
  font-size: clamp(1.28rem, 2.7vw, 2.74rem);
  line-height: 1.24;
  letter-spacing: clamp(0.08em, 0.58vw, 0.18em);
  white-space: normal;
  text-wrap: balance;
}

.hero__sub-statement {
  max-width: 560px;
}

.hero--v2 .hero__scroll-indicator {
  left: 50%;
  bottom: 22px;
  z-index: 4;
  display: grid;
  grid-template-columns: 96px 58px 96px;
  align-items: center;
  justify-content: center;
  width: 310px;
  transform: translateX(-50%);
}

.hero--v2 .hero__scroll-indicator::before {
  grid-column: 2;
  grid-row: 1;
  width: 58px;
  height: 58px;
  background:
    url('assets/mark-chevrons.svg') center / 28px 28px no-repeat,
    rgb(var(--bg-primary-rgb) / 0.78);
  border-color: var(--briefing-line);
  box-shadow: 0 18px 38px rgb(var(--bg-primary-rgb) / 0.56);
}

.hero--v2 .hero__scroll-label {
  position: absolute;
  inset: 0;
  display: block;
  font-size: 0;
}

.hero--v2 .hero__scroll-label::before,
.hero--v2 .hero__scroll-label::after {
  position: absolute;
  top: 50%;
  width: 92px;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.72rem;
  line-height: 1.35;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: pre;
  opacity: 0.82;
}

.hero--v2 .hero__scroll-label::before {
  content: 'Built for\A those who';
  right: calc(50% + 48px);
  text-align: right;
}

.hero--v2 .hero__scroll-label::after {
  content: 'Carry the\A weight.';
  left: calc(50% + 48px);
  text-align: left;
}

/* Featured products: match the concept's three-card briefing instead of exposing the lower row. */
section[aria-labelledby="products-heading"] {
  padding-top: clamp(72px, 8vw, 116px);
  padding-bottom: clamp(92px, 9vw, 136px);
  background-image:
    linear-gradient(180deg, rgb(var(--bg-primary-rgb) / 0.26), rgb(var(--bg-primary-rgb) / 0.58)),
    repeating-radial-gradient(ellipse at 80% 0%, transparent 0 40px, rgb(var(--accent-rgb) / 0.046) 41px 42px, transparent 43px 82px),
    repeating-radial-gradient(ellipse at 18% 100%, transparent 0 44px, rgb(var(--accent-rgb) / 0.036) 45px 46px, transparent 47px 90px);
}

section[aria-labelledby="products-heading"] > .container {
  max-width: var(--concept-max);
}

section[aria-labelledby="products-heading"] h2 {
  max-width: 1040px;
  font-size: clamp(3rem, 5vw, 4.85rem);
  letter-spacing: 0.035em;
}

section[aria-labelledby="products-heading"] .divider-tactical {
  max-width: none;
  margin-bottom: clamp(28px, 4vw, 52px);
}

section[aria-labelledby="products-heading"] .grid--3 {
  gap: clamp(18px, 2.1vw, 32px);
}

section[aria-labelledby="products-heading"] .product-card:nth-child(n+4) {
  display: none;
}

section[aria-labelledby="products-heading"] .text-center.mt-lg {
  display: none;
}

/* Product cards: square photo windows, sharper frames, visible brand marks. */
.product-card {
  border-color: rgb(var(--accent-rgb) / 0.28);
}

.product-card__image {
  aspect-ratio: 1 / 1;
}

.product-card__image::before {
  top: 10px;
  left: 10px;
  width: 48px;
  height: 62px;
  background:
    url('assets/logo-tight-white.png') center 7px / 34px auto no-repeat,
    linear-gradient(180deg, rgb(var(--bg-primary-rgb) / 0.72), rgb(var(--bg-secondary-rgb) / 0.64));
  border: 1px solid rgb(var(--accent-rgb) / 0.2);
  clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
  opacity: 0.34;
}

.product-card__image--photo {
  --product-mark-layer: linear-gradient(transparent, transparent) 0 0 / 0 0 no-repeat;
  --product-mark-panel-layer: linear-gradient(transparent, transparent) 0 0 / 0 0 no-repeat;
}

.product-card__image--photo:has(img[src*="tee"]) {
  --product-mark-layer: url('assets/mark-chevrons.svg') 59% 38% / 36px auto no-repeat;
}

.product-card__image--photo:has(img[src*="hoodie"]) {
  --product-mark-layer: url('assets/mark-chevrons.svg') 58% 38% / 38px auto no-repeat;
}

.product-card__image--photo:has(img[src*="hat"]) {
  --product-mark-layer: url('assets/logo-tight-white.png') 42% 34% / 72px auto no-repeat;
  --product-mark-panel-layer: linear-gradient(180deg, rgb(var(--bg-primary-rgb) / 0.82), rgb(var(--bg-primary-rgb) / 0.62)) 42% 34% / 74px 54px no-repeat;
}

.product-card__image--photo::after {
  inset: 8px;
  border: 0;
  background:
    var(--product-mark-layer),
    var(--product-mark-panel-layer),
    linear-gradient(var(--briefing-line), var(--briefing-line)) left top / 26px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) left top / 1px 26px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right top / 26px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right top / 1px 26px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) left bottom / 26px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) left bottom / 1px 26px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right bottom / 26px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right bottom / 1px 26px no-repeat;
  opacity: 0.92;
}

.product-card:hover .product-card__image--photo::after,
.product-card:focus-within .product-card__image--photo::after {
  opacity: 1;
}

.product-card__image--photo .product-card__photo {
  object-position: center;
  filter: saturate(0.9) contrast(1.14) brightness(0.96);
}

.product-card__body {
  min-height: 166px;
  padding: 28px 86px 28px 28px;
}

.product-card__name {
  font-size: clamp(1.35rem, 1.7vw, 1.8rem);
}

.product-card::after {
  right: 26px;
  bottom: 32px;
  width: 44px;
  height: 44px;
  border-color: rgb(var(--accent-rgb) / 0.46);
}

.product-gallery__main-placeholder {
  position: relative;
}

.product-gallery__main-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: url('assets/mark-chevrons.svg') 57% 43% / 64px auto no-repeat;
  opacity: 0.9;
}

/* Mission block: turn the homepage about teaser into the concept briefing panel. */
section[aria-labelledby="about-heading"] {
  position: relative;
  min-height: min(86svh, 820px);
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(var(--bg-primary-rgb) / 0.98), rgb(var(--bg-primary-rgb) / 0.9) 48%, rgb(var(--bg-primary-rgb) / 0.72)),
    repeating-radial-gradient(ellipse at 18% 100%, transparent 0 44px, rgb(var(--accent-rgb) / 0.045) 45px 46px, transparent 47px 90px),
    repeating-radial-gradient(ellipse at 80% 0%, transparent 0 44px, rgb(var(--accent-rgb) / 0.035) 45px 46px, transparent 47px 90px),
    var(--bg-primary);
  border-top: 1px solid var(--briefing-line-soft);
  border-bottom: 1px solid var(--briefing-line-soft);
}

section[aria-labelledby="about-heading"]::before {
  content: '';
  position: absolute;
  inset: var(--concept-frame-inset);
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(var(--briefing-line), var(--briefing-line)) left top / 18px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) left top / 1px 18px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right top / 18px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right top / 1px 18px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) left bottom / 18px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) left bottom / 1px 18px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right bottom / 18px 1px no-repeat,
    linear-gradient(var(--briefing-line), var(--briefing-line)) right bottom / 1px 18px no-repeat;
  opacity: 0.76;
}

section[aria-labelledby="about-heading"]::after {
  content: '';
  position: absolute;
  left: var(--concept-frame-inset);
  bottom: var(--concept-frame-inset);
  z-index: 1;
  width: min(760px, 48vw);
  height: 190px;
  pointer-events: none;
  background: repeating-radial-gradient(ellipse at 42% 100%, transparent 0 28px, rgb(var(--accent-rgb) / 0.055) 29px 30px, transparent 31px 58px);
  opacity: 0.8;
}

section[aria-labelledby="about-heading"] > .container {
  max-width: none;
  min-height: inherit;
  padding: 0;
}

section[aria-labelledby="about-heading"] .about-teaser__grid {
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  gap: 0;
  align-items: stretch;
}

section[aria-labelledby="about-heading"] .about-teaser__grid::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 48.5%;
  z-index: 4;
  width: 1px;
  transform: skewX(-7deg);
  transform-origin: top;
  background: linear-gradient(180deg, var(--briefing-line), rgb(var(--accent-rgb) / 0.62), var(--briefing-line));
  pointer-events: none;
}

section[aria-labelledby="about-heading"] .about-teaser__grid::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 48.5%;
  z-index: 5;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  background:
    url('assets/logo-tight-white.png') center / 86% auto no-repeat,
    rgb(var(--bg-primary-rgb) / 0.86);
  border: 1px solid var(--briefing-line);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  pointer-events: none;
}

section[aria-labelledby="about-heading"] .about-teaser__grid > div {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 760px;
  padding: clamp(72px, 9vw, 124px) clamp(32px, 4vw, 72px) clamp(72px, 9vw, 124px) max(76px, calc((100vw - var(--concept-max)) / 2 + 96px));
}

section[aria-labelledby="about-heading"] .about-teaser__grid > div::before {
  content: '01\A\A\A02\A\A\A03';
  position: absolute;
  top: 20%;
  left: max(18px, calc((100vw - var(--concept-max)) / 2 + 28px));
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.72rem;
  line-height: 4.9;
  letter-spacing: 0.16em;
  white-space: pre;
  opacity: 0.82;
  pointer-events: none;
}

section[aria-labelledby="about-heading"] .section-label {
  color: var(--accent);
}

section[aria-labelledby="about-heading"] #about-heading {
  max-width: 660px;
  font-size: clamp(3rem, 5.35vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0.025em;
  scroll-margin-top: 180px;
  text-wrap: balance;
}

section[aria-labelledby="about-heading"] .divider-tactical {
  width: min(620px, 100%);
  margin-top: 26px;
  margin-bottom: 30px;
}

section[aria-labelledby="about-heading"] p {
  max-width: 650px;
  font-size: clamp(0.95rem, 0.94vw, 1.05rem);
  line-height: 1.66;
}

section[aria-labelledby="about-heading"] p + p {
  margin-top: 1.35rem;
}

section[aria-labelledby="about-heading"] .btn--secondary::after {
  content: '\00a0\2192';
}

section[aria-labelledby="about-heading"] .about-teaser__image {
  z-index: 2;
  min-height: inherit;
  height: auto;
  margin: 0;
  border: 0;
  box-shadow: none;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

section[aria-labelledby="about-heading"] .about-teaser__image::after {
  content: '10\A\A\A20\A\A\A30';
  position: absolute;
  top: 21%;
  right: max(24px, calc((100vw - var(--concept-max)) / 2 + 38px));
  inset-inline-start: auto;
  bottom: auto;
  z-index: 5;
  width: auto;
  height: auto;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.72rem;
  line-height: 4.9;
  letter-spacing: 0.16em;
  white-space: pre;
  background: none;
  opacity: 0.82;
}

section[aria-labelledby="about-heading"] .about-teaser__image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 100% center;
  filter: saturate(0.86) contrast(1.14) brightness(0.9);
  transform: scale(1.035);
}

@media (max-width: 1023px) {
  .hero--v2 .hero__inner::after {
    width: calc(100vw - 32px);
    height: min(720px, calc(100svh - 112px));
  }

  section[aria-labelledby="about-heading"] {
    min-height: auto;
  }

  section[aria-labelledby="about-heading"] > .container {
    padding: 0 24px;
  }

  section[aria-labelledby="about-heading"] .about-teaser__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 72px 0;
  }

  section[aria-labelledby="about-heading"] .about-teaser__grid::before,
  section[aria-labelledby="about-heading"] .about-teaser__grid::after,
  section[aria-labelledby="about-heading"] .about-teaser__grid > div::before,
  section[aria-labelledby="about-heading"] .about-teaser__image::after {
    display: none;
  }

  section[aria-labelledby="about-heading"] .about-teaser__grid > div {
    padding: 0;
  }

  section[aria-labelledby="about-heading"] #about-heading {
    font-size: clamp(2.8rem, 10vw, 4.4rem);
  }

  section[aria-labelledby="about-heading"] .about-teaser__image {
    min-height: clamp(340px, 56vw, 520px);
    border: 1px solid var(--briefing-line);
    clip-path: none;
  }
}

@media (max-width: 767px) {
  .hero--v2 {
    min-height: 94svh;
    padding: 82px 18px 112px;
  }

  .hero--v2::before {
    background-position: 49% center;
  }

  .hero__logo img {
    width: clamp(250px, 72vw, 360px);
  }

  .hero__tagline {
    font-size: clamp(1.18rem, 6.8vw, 2rem);
    letter-spacing: 0.09em;
  }

  .hero--v2 .hero__scroll-indicator {
    width: 70px;
    grid-template-columns: 58px;
  }

  .hero--v2 .hero__scroll-label::before,
  .hero--v2 .hero__scroll-label::after {
    display: none;
  }

  section[aria-labelledby="products-heading"] h2 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .product-card__body {
    min-height: 148px;
    padding: 24px 78px 24px 24px;
  }
}

/* ============================================================
   Requested visibility and scale fixes
   Added 2026-05-20
   ============================================================ */

/* Make the top badge read as a real brand mark, not a small nav icon. */
@media (min-width: 1024px) {
  .site-header__inner {
    height: 86px;
  }

  .site-header__logo {
    width: 178px;
    height: 226px;
    margin-bottom: -116px;
  }

  .site-header .site-header__logo-img,
  .site-header.is-scrolled .site-header__logo-img {
    width: 148px;
    max-height: 166px;
  }

  .site-header.is-scrolled .site-header__inner {
    height: 74px;
  }

  .site-header.is-scrolled .site-header__logo {
    width: 146px;
    height: 186px;
    margin-bottom: -94px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .site-header__logo {
    width: 132px;
    height: 168px;
    margin-bottom: -82px;
  }

  .site-header .site-header__logo-img,
  .site-header.is-scrolled .site-header__logo-img {
    width: 108px;
    max-height: 124px;
  }
}

@media (max-width: 767px) {
  .site-header__logo {
    width: 94px;
    height: 120px;
    margin-bottom: -58px;
  }

  .site-header .site-header__logo-img,
  .site-header.is-scrolled .site-header__logo-img {
    width: 76px;
    max-height: 88px;
  }
}

/* Pull back the heavy dark treatment on image-led hero sections. */
.hero--v2::before {
  background:
    linear-gradient(90deg, rgb(var(--bg-primary-rgb) / 0.22) 0%, rgb(var(--bg-primary-rgb) / 0.04) 23%, rgb(var(--bg-primary-rgb) / 0.5) 43%, rgb(var(--bg-primary-rgb) / 0.5) 57%, rgb(var(--bg-primary-rgb) / 0.05) 78%, rgb(var(--bg-primary-rgb) / 0.26) 100%),
    radial-gradient(ellipse at 50% 42%, rgb(var(--bg-primary-rgb) / 0.42) 0 13%, rgb(var(--bg-primary-rgb) / 0.24) 35%, transparent 64%),
    linear-gradient(180deg, transparent, rgb(var(--bg-primary-rgb) / 0.58)),
    repeating-radial-gradient(ellipse at 28% 104%, transparent 0 36px, rgb(var(--accent-rgb) / 0.075) 37px 38px, transparent 39px 74px),
    repeating-radial-gradient(ellipse at 88% 90%, transparent 0 46px, rgb(var(--accent-rgb) / 0.055) 47px 48px, transparent 49px 92px),
    url('assets/brand-hero-field.webp') center / cover no-repeat;
  filter: saturate(0.96) contrast(1.06) brightness(1.16);
}

.page-hero--about::before {
  background:
    linear-gradient(90deg, rgb(var(--bg-primary-rgb) / 0.58) 0%, rgb(var(--bg-primary-rgb) / 0.34) 42%, rgb(var(--bg-primary-rgb) / 0.08) 100%),
    linear-gradient(180deg, transparent, rgb(var(--bg-primary-rgb) / 0.48)),
    url('assets/about-header.webp') center / cover no-repeat;
  filter: saturate(0.96) contrast(1.08) brightness(1.12);
}

/* Mission panel: keep both the handler and dog visible, and scale up the center brand mark. */
section[aria-labelledby="about-heading"] {
  min-height: min(78svh, 760px);
  background:
    linear-gradient(90deg, rgb(var(--bg-primary-rgb) / 0.96), rgb(var(--bg-primary-rgb) / 0.86) 48%, rgb(var(--bg-primary-rgb) / 0.38)),
    repeating-radial-gradient(ellipse at 18% 100%, transparent 0 44px, rgb(var(--accent-rgb) / 0.045) 45px 46px, transparent 47px 90px),
    repeating-radial-gradient(ellipse at 80% 0%, transparent 0 44px, rgb(var(--accent-rgb) / 0.035) 45px 46px, transparent 47px 90px),
    var(--bg-primary);
}

section[aria-labelledby="about-heading"] .about-teaser__grid {
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
}

section[aria-labelledby="about-heading"] .about-teaser__grid::before {
  left: 44.5%;
}

section[aria-labelledby="about-heading"] .about-teaser__grid::after {
  left: 44.5%;
  width: clamp(190px, 12vw, 260px);
  height: clamp(190px, 12vw, 260px);
  background:
    url('assets/logo-tight-white.png') center / 82% auto no-repeat,
    rgb(var(--bg-primary-rgb) / 0.86);
  border-color: rgb(var(--accent-rgb) / 0.62);
  box-shadow: 0 34px 90px rgb(var(--bg-primary-rgb) / 0.7);
}

section[aria-labelledby="about-heading"] .about-teaser__image {
  width: 100%;
  min-width: 0;
  background-color: var(--bg-primary);
}

section[aria-labelledby="about-heading"] .about-teaser__image::before {
  content: '';
  display: block;
  position: absolute;
  inset: -18px;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgb(var(--bg-primary-rgb) / 0.58), transparent 48%),
    url('assets/dog-handler-sunset.webp') 100% center / cover no-repeat;
  filter: saturate(0.86) contrast(1.06) brightness(0.72) blur(5px);
  transform: scale(1.04);
}

section[aria-labelledby="about-heading"] .about-teaser__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center center;
  filter: saturate(0.94) contrast(1.08) brightness(1.08);
  transform: none;
}

@media (max-width: 1023px) {
  section[aria-labelledby="about-heading"] .about-teaser__grid {
    grid-template-columns: 1fr;
  }

  section[aria-labelledby="about-heading"] .about-teaser__image img {
    object-fit: cover;
    object-position: 76% center;
  }
}

/* Keep the hero logo balanced now that the shared logo asset is tightly cropped. */
.hero__logo img {
  width: clamp(188px, 18vw, 300px);
}

@media (max-width: 767px) {
  .hero__logo img {
    width: clamp(172px, 48vw, 250px);
  }
}

/* ============================================================
   Hero logo cap (updated 2026-05-20 — dialed to 50% of v2)
   logo-hero-white.png native = 818 x 1132 px (aspect 0.723).
   Was 720px → now 360px wide. Plenty of headroom under native.
   ============================================================ */
.hero__logo img {
  max-width: 360px;
  max-height: 499px;
  width: min(360px, 45vw);
  height: auto;
}

@media (max-width: 480px) {
  .hero__logo img {
    width: min(240px, 60vw);
  }
}

/* ============================================================
   Product card chevron — tactical corner-bracket frame
   Replaces Codex's hexagon clip-path with a viewfinder/scope
   look — square frame with coyote brackets at each corner.
   ============================================================ */
.product-card::after {
  /* Drop the hexagon */
  clip-path: none !important;
  border: 0 !important;
  /* Slightly larger so the brackets read */
  width: 44px !important;
  height: 44px !important;
  right: 20px !important;
  bottom: 22px !important;
  /* Background: 4 L-shaped corner brackets in coyote on a dark plate */
  background:
    linear-gradient(var(--accent), var(--accent)) left  top    / 10px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) left  top    / 1px 10px no-repeat,
    linear-gradient(var(--accent), var(--accent)) right top    / 10px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) right top    / 1px 10px no-repeat,
    linear-gradient(var(--accent), var(--accent)) left  bottom / 10px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) left  bottom / 1px 10px no-repeat,
    linear-gradient(var(--accent), var(--accent)) right bottom / 10px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) right bottom / 1px 10px no-repeat,
    rgb(var(--bg-primary-rgb) / 0.78)
    !important;
  font-size: 1.5rem !important;
}

.product-card:hover::after,
.product-card:focus-within::after {
  transform: translateX(3px) !important;
  background:
    linear-gradient(var(--accent-hover), var(--accent-hover)) left  top    / 14px 1px no-repeat,
    linear-gradient(var(--accent-hover), var(--accent-hover)) left  top    / 1px 14px no-repeat,
    linear-gradient(var(--accent-hover), var(--accent-hover)) right top    / 14px 1px no-repeat,
    linear-gradient(var(--accent-hover), var(--accent-hover)) right top    / 1px 14px no-repeat,
    linear-gradient(var(--accent-hover), var(--accent-hover)) left  bottom / 14px 1px no-repeat,
    linear-gradient(var(--accent-hover), var(--accent-hover)) left  bottom / 1px 14px no-repeat,
    linear-gradient(var(--accent-hover), var(--accent-hover)) right bottom / 14px 1px no-repeat,
    linear-gradient(var(--accent-hover), var(--accent-hover)) right bottom / 1px 14px no-repeat,
    rgb(var(--bg-primary-rgb) / 0.86)
    !important;
}

/* ============================================================
   About-teaser mission image — recenter to keep handler + dog
   both fully in frame (post-Codex, 2026-05-20)
   Source: brand-mission-field.webp (1800x1012). Handler is at
   x~1100-1500, K9 is at x~850-1100. Both subjects centered at
   ~65% from left. Forcing object-position there with cover.
   ============================================================ */
section[aria-labelledby="about-heading"] .about-teaser__image img {
  object-fit: cover;
  object-position: 65% center;
  transform: none;
}

section[aria-labelledby="about-heading"] .about-teaser__image::before {
  background:
    linear-gradient(90deg, rgb(var(--bg-primary-rgb) / 0.58), transparent 48%),
    url('assets/dog-handler-sunset.webp') 65% center / cover no-repeat;
}

@media (max-width: 1023px) {
  section[aria-labelledby="about-heading"] .about-teaser__image img {
    object-fit: cover;
    object-position: 65% center;
  }
}

/* ============================================================
   Kill Codex's "10 / 20 / 30" briefing-line markers overlaid
   on the mission photo. They were rendering as junk glyphs
   (font fallback on the \A linefeed chars) and competing with
   the actual subjects of the photo.
   ============================================================ */
section[aria-labelledby="about-heading"] .about-teaser__image::after {
  display: none !important;
  content: none !important;
}

/* ============================================================
   FULL LOGO CLEANUP (post-Codex, 2026-05-20)
   Codex added a swarm of decorative badge/shield clip-paths
   wrapping the logo (header pentagon shield, mission hex
   badges, product-card logo overlays). Wordmark was getting
   clipped + sizing was inconsistent. This block:
   - Restores the header logo to clean image, no shield frame
   - Kills the hex mission badges on about-teaser grids
   - Removes the small logo overlays from product cards
   - Removes the faint logo backdrop on about-teaser image
   Keep: hero logo (already capped), header logo image,
   footer logo image. That's it.
   ============================================================ */

/* 1. Header — strip the pentagon shield + corner brackets */
.site-header__logo {
  width: auto !important;
  height: auto !important;
  background: none !important;
  border: 0 !important;
  clip-path: none !important;
  filter: none !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
}
.site-header__logo::after,
.site-header__logo::before {
  display: none !important;
  content: none !important;
}

/* Restore header logo image to clean, sized treatment */
.site-header .site-header__logo-img,
.site-header.is-scrolled .site-header__logo-img {
  width: auto !important;
  display: block;
}
/* Default — at-top enlargement, shrink on scroll. Applies to all pages. */
.site-header__logo-img {
  height: 88px;
}
@media (min-width: 1024px) {
  .site-header__logo-img {
    height: 104px;
  }
}
@media (max-width: 480px) {
  .site-header__logo-img {
    height: 68px;
  }
}

.site-header.is-scrolled .site-header__logo-img {
  height: 64px;
}
@media (min-width: 1024px) {
  .site-header.is-scrolled .site-header__logo-img {
    height: 80px;
  }
}
@media (max-width: 480px) {
  .site-header.is-scrolled .site-header__logo-img {
    height: 56px;
  }
}

/* Home page — no enlargement at top. Logo stays at the compact (scrolled) size
   constantly because the hero already carries the brand presence. */
.page-home .site-header__logo-img,
.page-home .site-header.is-scrolled .site-header__logo-img {
  height: 64px;
}
@media (min-width: 1024px) {
  .page-home .site-header__logo-img,
  .page-home .site-header.is-scrolled .site-header__logo-img {
    height: 80px;
  }
}
@media (max-width: 480px) {
  .page-home .site-header__logo-img,
  .page-home .site-header.is-scrolled .site-header__logo-img {
    height: 56px;
  }
}

/* 2. Kill the hex/octagon "mission badge" overlays — these clipped
      the PACK TACTICS wordmark and competed with the hero logo. */
section[aria-labelledby="about-heading"] .about-teaser__grid::after,
section[aria-labelledby="about-heading"] .about-teaser__grid::before {
  display: none !important;
  content: none !important;
  background: none !important;
  clip-path: none !important;
}

/* 3. Kill the small logo overlays on product cards (top-left
      corner mini-logo + shield-clipped logo badges). */
.product-card__image::before,
.product-card__image::after {
  display: none !important;
  content: none !important;
  background: none !important;
  clip-path: none !important;
}

/* 4. Kill the faint logo backdrop on about-teaser image
      (now that the photo is centered properly with subjects
      visible, the backdrop reads as clutter). */
.about-teaser__image::before,
.placeholder::before {
  display: none !important;
  content: none !important;
  background: none !important;
}

/* ============================================================
   About-page hero banner — about-header.webp (1916x821).
   Shorter banner, image zoomed out (full height visible via
   auto 100%), anchored right so subjects stay framed. Gradient
   stays light enough to read the photo.
   ============================================================ */
.page-hero--about {
  min-height: clamp(260px, 28vw, 380px) !important;
  padding-bottom: 36px !important;
}

.page-hero--about::before {
  background:
    linear-gradient(90deg, rgb(var(--bg-primary-rgb) / 0.7) 0%, rgb(var(--bg-primary-rgb) / 0.32) 40%, rgb(var(--bg-primary-rgb) / 0.04) 100%),
    url('assets/about-header.webp') right center / auto 100% no-repeat
    !important;
}

@media (max-width: 767px) {
  .page-hero--about {
    min-height: clamp(220px, 50vw, 320px) !important;
  }
  .page-hero--about::before {
    background:
      linear-gradient(180deg, rgb(var(--bg-primary-rgb) / 0.55) 0%, rgb(var(--bg-primary-rgb) / 0.22) 50%, rgb(var(--bg-primary-rgb) / 0.62) 100%),
      url('assets/about-header.webp') right center / cover no-repeat
      !important;
  }
}

/* ============================================================
   Dynamic product grid — empty + loading states (added 2026-05-20)
   Renders inside [data-product-grid] containers while JS fetches
   from /api/products, or when the catalog returns zero items.
   ============================================================ */
.grid__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}
