/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
  --red: #B22222;
  --dark-red: #8B0000;
  --cream: #F5F0E8;
  --charcoal: #1A1A1A;
  --steel: #3A3A3A;
  --mid: #6B6560;
  --border: #D4CCC0;
  --tan: #C4A882;
}

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

body {
  font-family: 'Barlow', 'Helvetica Neue', sans-serif;
  background: var(--charcoal);
  color: var(--cream);
  min-height: 100vh;
  line-height: 1.6;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

/* ===========================
   NAVIGATION
   =========================== */
nav {
  background: #0D0D0D;
  border-bottom: 2px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 68px;
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--cream);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--red);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  min-height: calc(100vh - 68px);
  background: linear-gradient(to right, rgba(13, 10, 8, 0.92) 42%, rgba(13, 10, 8, 0.25) 100%),
    url('https://embed.widencdn.net/img/redwing/0cllcknwhr/2048x1275px/TEXR_18B_C_CMY_NA_0419.jpeg?c=false') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 5rem 2.5rem;
}

.hero-content {
  max-width: 560px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--red);
  display: block;
}

.hero p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.7);
  max-width: 430px;
  margin-bottom: 2.5rem;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--red);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--dark-red);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245, 240, 232, 0.35);
}

.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(245, 240, 232, 0.05);
}

/* ===========================
   STRIP (FEATURE BAR)
   =========================== */
.strip {
  background: var(--red);
  padding: 0.7rem 2.5rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.strip-item {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.92;
}

/* ===========================
   SECTIONS
   =========================== */
section {
  padding: 5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.06em;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 0.97rem;
  color: rgba(245, 240, 232, 0.55);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

/* ===========================
   PRODUCT GRID
   =========================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5px;
  background: var(--steel);
}

.product-card {
  background: #222;
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
}

.product-card:hover {
  background: #2A2A2A;
}

.product-card .cat-icon {
  font-size: 1.9rem;
  margin-bottom: 1.25rem;
  display: block;
}

.product-card h3 {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.84rem;
  color: rgba(245, 240, 232, 0.48);
  line-height: 1.65;
}

.product-card .arrow {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

/* ===========================
   BANNER SECTION
   =========================== */
.ufx-section {
  background: #111;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
  padding: 5rem 2.5rem;
}

.ufx-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 750px) {
  .ufx-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.ufx-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border: 1px solid rgba(245, 240, 232, 0.1);
}

.ufx-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.ufx-video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #111;
  border: 1px dashed rgba(245, 240, 232, 0.18);
  gap: 0.75rem;
}

.ufx-video-placeholder .play-icon {
  width: 52px;
  height: 52px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.2s;
}

.ufx-video-placeholder .play-icon:hover {
  background: rgba(178, 34, 34, 0.1);
  border-color: var(--dark-red);
}

.ufx-video-placeholder p {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
}

.ufx-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 1rem;
}

.ufx-copy h2 span {
  color: var(--red);
}

.ufx-copy p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.58);
  margin-bottom: 1rem;
}

.ufx-bullets {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ufx-bullets li {
  font-size: 0.87rem;
  color: rgba(245, 240, 232, 0.65);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.ufx-bullets li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 0.42em;
  flex-shrink: 0;
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: #0D0D0D;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  padding: 3rem 2.5rem;
  text-align: center;
}

footer p {
  font-size: 0.84rem;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-links a {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--red);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }

  .nav-links {
    gap: 1rem;
    margin-top: 1rem;
  }

  .strip {
    gap: 1rem;
  }

  section {
    padding: 3rem 1.5rem;
  }
}
