/* ============================================================
   Billy Bisson™ — Main Stylesheet
   Redesign 2026

   Palette:
     Navy:     #1B2A4A
     Amber:    #D4890A
     Off-white: #F5F2ED
     Charcoal: #2C2C2C
     Cream:    #FBF7F0

   Typography:
     Headings: Oswald (condensed, strong)
     Body:     Lato
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lato:wght@300;400;700;900&display=swap');

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: #FBF7F0;
  color: #2C2C2C;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.15;
  font-weight: 600;
  color: #1B2A4A;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 3.8vw, 3rem);   font-weight: 700; text-transform: uppercase; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 600; text-transform: uppercase; }
h4 { font-size: 1.15rem; font-weight: 600; text-transform: uppercase; }

p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
}

.lead {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
}

.eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4890A;
  margin-bottom: 10px;
  display: block;
}

.text-amber  { color: #D4890A; }
.text-navy   { color: #1B2A4A; }
.text-cream  { color: #F5F2ED; }
.text-offwhite { color: #F5F2ED; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

/* Subtle noise texture for sections — via SVG-based CSS bg */
.section--textured {
  background-color: #F5F2ED;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

.section--cream {
  background-color: #FBF7F0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}

.section--navy,
.section--dark {
  background-color: #1B2A4A;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  color: #F5F2ED;
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #F5F2ED;
}

.section--navy p,
.section--dark p {
  color: #b8b4aa;
}

.section--charcoal {
  background-color: #2C2C2C;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  color: #F5F2ED;
}

.section--charcoal h1,
.section--charcoal h2,
.section--charcoal h3,
.section--charcoal h4 {
  color: #F5F2ED;
}

.section--charcoal p {
  color: #999;
}

.section--amber {
  background-color: #D4890A;
  color: #1B2A4A;
}

.section--amber h1,
.section--amber h2,
.section--amber h3,
.section--amber p {
  color: #1B2A4A;
}

.section--white {
  background-color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 52px;
}

.section-title h2 {
  margin-bottom: 14px;
}

.section-title p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ── Amber Rule / Divider ─────────────────────────────────── */
.divider {
  width: 56px;
  height: 4px;
  background-color: #D4890A;
  margin: 0 auto 32px;
  border: none;
  border-radius: 2px;
}

.divider--left {
  margin: 0 0 32px;
}

.divider--wide {
  width: 100%;
  height: 3px;
  background-color: #D4890A;
  border: none;
  border-radius: 2px;
  margin: 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

/* Primary: Amber bg, navy text */
.btn-primary {
  background-color: #D4890A;
  color: #1B2A4A;
  border-color: #D4890A;
}

.btn-primary:hover {
  background-color: #b87208;
  border-color: #b87208;
  color: #1B2A4A;
}

/* Dark: Navy bg, off-white text */
.btn-dark {
  background-color: #1B2A4A;
  color: #F5F2ED;
  border-color: #1B2A4A;
}

.btn-dark:hover {
  background-color: #12203a;
  border-color: #12203a;
}

/* Outline light: transparent, off-white border/text */
.btn-outline-light {
  background-color: transparent;
  color: #F5F2ED;
  border-color: #F5F2ED;
}

.btn-outline-light:hover {
  background-color: #F5F2ED;
  color: #1B2A4A;
}

/* Outline navy: transparent, navy border/text */
.btn-outline-navy {
  background-color: transparent;
  color: #1B2A4A;
  border-color: #1B2A4A;
}

.btn-outline-navy:hover {
  background-color: #1B2A4A;
  color: #F5F2ED;
}

/* White btn (used on amber backgrounds) */
.btn-white {
  background-color: #fff;
  color: #1B2A4A;
  border-color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 3px;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-white:hover {
  background-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #1B2A4A;
  border-bottom: 3px solid #D4890A;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo .logo-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F5F2ED;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-logo .logo-tm {
  font-size: 0.5rem;
  vertical-align: super;
  color: #D4890A;
}

.nav-logo .logo-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 0.62rem;
  color: #D4890A;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8a49e;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #D4890A;
  transition: width 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #F5F2ED;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #F5F2ED;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  background-color: #122035;
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(212,137,10,0.25);
}

.nav-drawer a {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a8a49e;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s ease;
}

.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: #D4890A; }

.nav-drawer.open { display: flex; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #1B2A4A;
  padding-top: 68px;
  /* subtle noise */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(27,42,74,0.98) 0%,
    rgba(27,42,74,0.85) 55%,
    rgba(212,137,10,0.12) 100%
  );
  z-index: 1;
}

.hero-geo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-geo::before {
  content: '';
  position: absolute;
  right: -60px;
  top: 8%;
  width: 520px;
  height: 520px;
  border: 70px solid rgba(212,137,10,0.08);
  border-radius: 50%;
}

.hero-geo::after {
  content: '';
  position: absolute;
  right: 120px;
  bottom: 8%;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(245,242,237,0.06);
  transform: rotate(45deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding: 80px 0;
}

.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D4890A;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 3px;
  background-color: #D4890A;
  border-radius: 2px;
  flex-shrink: 0;
}

.hero h1 {
  color: #F5F2ED;
  margin-bottom: 8px;
  line-height: 1.05;
}

.hero h1 em {
  font-style: normal;
  color: #D4890A;
  display: block;
}

.hero-body {
  font-family: 'Lato', sans-serif;
  font-size: 1.12rem;
  color: #9a9690;
  margin-bottom: 44px;
  max-width: 520px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #807c76;
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.hero-scroll:hover { opacity: 1; }

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid #D4890A;
  border-bottom: 2px solid #D4890A;
  transform: rotate(45deg);
  margin-top: 2px;
  animation: scrollBounce 1.6s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

/* ── Manifesto / Pull Quote ───────────────────────────────── */
.manifesto {
  text-align: center;
  padding: 100px 0;
}

.manifesto-quote {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 500;
  font-style: normal;
  color: #F5F2ED;
  line-height: 1.35;
  max-width: 840px;
  margin: 0 auto 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
}

/* Amber quote mark */
.manifesto-quote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 8rem;
  color: #D4890A;
  opacity: 0.3;
  position: absolute;
  top: -40px;
  left: -16px;
  line-height: 1;
}

.manifesto-attr {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4890A;
}

/* ── Category / Feature Cards ─────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.11);
}

.card-icon {
  height: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-icon--wellness { background-color: #1B2A4A; }
.card-icon--apparel  { background-color: #D4890A; }
.card-icon--mind     { background-color: #243758; }
.card-icon--podcast  { background-color: #2C2C2C; }
.card-icon--racing   { background-color: #0e1c30; }

/* Amber bar on card top */
.card::before {
  content: '';
  display: block;
  height: 3px;
  background-color: #D4890A;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.card {
  position: relative;
}

.card-icon svg {
  width: 60px;
  height: 60px;
  opacity: 0.9;
}

.card-body {
  padding: 26px 22px 30px;
}

.card-body h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  color: #1B2A4A;
}

.card-body p {
  font-size: 0.91rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.65;
}

.card-link {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D4890A;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.card-link::after { content: '→'; }
.card-link:hover  { gap: 10px; }

/* ── Product Cards ────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.product-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.11);
}

.product-img {
  height: 216px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-img--navy   { background: linear-gradient(160deg, #1B2A4A 0%, #243758 100%); }
.product-img--amber  { background: linear-gradient(160deg, #D4890A 0%, #b87208 100%); }
.product-img--dark   { background: linear-gradient(160deg, #2C2C2C 0%, #404040 100%); }
.product-img--slate  { background: linear-gradient(160deg, #3d4a5c 0%, #576070 100%); }
.product-img--forest { background: linear-gradient(160deg, #293e30 0%, #3a5540 100%); }
.product-img--cream  { background: linear-gradient(160deg, #e0d8c8 0%, #F5F2ED 100%); }

.product-img-inner {
  text-align: center;
  color: rgba(255,255,255,0.45);
}

.product-img-inner .emoji {
  font-size: 3.2rem;
  display: block;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.product-img-inner .product-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #D4890A;
  color: #1B2A4A;
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.product-body {
  padding: 22px 20px 26px;
}

.product-category {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D4890A;
  margin-bottom: 6px;
}

.product-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #1B2A4A;
}

.product-body p {
  font-size: 0.87rem;
  color: #777;
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.product-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #1B2A4A;
  letter-spacing: 0.02em;
}

.product-price .currency {
  font-size: 0.78rem;
  vertical-align: super;
  font-weight: 400;
}

.product-cta {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1B2A4A;
  background-color: #D4890A;
  padding: 9px 18px;
  border-radius: 3px;
  transition: background 0.2s ease, transform 0.15s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.product-cta:hover {
  background-color: #b87208;
  transform: translateY(-1px);
}

/* ── Podcast Strip ────────────────────────────────────────── */
.podcast-strip {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 440px;
}

.podcast-visual {
  background: linear-gradient(135deg, #0e1c30 0%, #1B2A4A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.podcast-visual::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border: 2px solid rgba(212,137,10,0.15);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.podcast-icon-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}

.podcast-icon-wrap .mic-icon {
  font-size: 5rem;
  display: block;
  margin-bottom: 16px;
}

.podcast-icon-wrap p {
  font-family: 'Lato', sans-serif;
  color: #7a7670;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.podcast-content {
  background-color: #2C2C2C;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.podcast-content .eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4890A;
  margin-bottom: 16px;
}

.podcast-content h2 {
  color: #F5F2ED;
  margin-bottom: 18px;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.podcast-content > p {
  color: #888;
  margin-bottom: 32px;
  font-size: 0.93rem;
  line-height: 1.7;
}

.episode-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.episode-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: background 0.15s;
}

.episode-item:last-child { border-bottom: none; }

.episode-num {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  color: #D4890A;
  min-width: 34px;
  letter-spacing: 0.04em;
}

.episode-info h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.87rem;
  font-weight: 700;
  color: #F5F2ED;
  margin-bottom: 3px;
  text-transform: none;
  letter-spacing: 0;
}

.episode-info span {
  font-size: 0.74rem;
  color: #555;
  font-family: 'Lato', sans-serif;
}

/* ── Values Grid ──────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px 28px;
  margin-top: 52px;
}

.value-item {
  text-align: center;
}

.value-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #D4890A;
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.value-item h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 0.87rem;
  color: #666;
}

.section--dark .value-item p,
.section--navy .value-item p {
  color: #7a7a8a;
}

/* ── Team Bios ────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 32px 22px;
  text-align: center;
}

.team-avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background-color: #D4890A;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1B2A4A;
}

.team-card h4 {
  color: #F5F2ED;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.team-card .role {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D4890A;
  margin-bottom: 14px;
  display: block;
}

.team-card p {
  font-size: 0.87rem;
  color: #777;
}

/* ── Shop / Page Hero ─────────────────────────────────────── */
.shop-hero {
  background: linear-gradient(135deg, #1B2A4A 0%, #243758 100%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
    linear-gradient(135deg, #1B2A4A 0%, #243758 100%);
  padding: 136px 0 76px;
  text-align: center;
}

.shop-hero h1 {
  color: #F5F2ED;
  margin-bottom: 16px;
}

.shop-hero p {
  color: #9a9690;
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ── About Hero ───────────────────────────────────────────── */
.about-hero {
  background-color: #1B2A4A;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  padding: 136px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(212,137,10,0.06) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.about-hero h1 {
  color: #F5F2ED;
  margin-bottom: 20px;
}

.about-hero .lead {
  color: #9a9690;
  margin-bottom: 0;
  font-size: 1.1rem;
}

/* ── Interior Page Hero ───────────────────────────────────── */
.page-hero {
  padding: 136px 0 80px;
  background-color: #1B2A4A;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  text-align: center;
}

.page-hero h1 { color: #F5F2ED; margin-bottom: 14px; }
.page-hero p  { color: #9a9690; max-width: 540px; margin: 0 auto; font-size: 1.05rem; }

/* ── Racing / Sports Hero ─────────────────────────────────── */
.racing-hero {
  background: #0e1c30;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E"),
    linear-gradient(160deg, #0e1c30 0%, #1B2A4A 60%, #2a1a08 100%);
  padding: 136px 0 100px;
  position: relative;
  overflow: hidden;
}

.racing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(212,137,10,0.015) 40px,
    rgba(212,137,10,0.015) 41px
  );
}

.racing-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.racing-hero h1 {
  color: #F5F2ED;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  margin-bottom: 20px;
}

.racing-hero h1 span {
  color: #D4890A;
}

.racing-hero .lead {
  color: #9a9690;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.racing-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 48px;
}

.racing-stat {
  flex: 1;
  min-width: 130px;
  text-align: center;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.racing-stat:last-child { border-right: none; }

.racing-stat .number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #D4890A;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  letter-spacing: 0.02em;
}

.racing-stat .label {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666;
}

.racing-story {
  background-color: #F5F2ED;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  padding: 100px 0;
}

.racing-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.racing-story h2  { margin-bottom: 24px; }
.racing-story p   { margin-bottom: 20px; }

.racing-visual {
  background: linear-gradient(135deg, #0e1c30 0%, #1B2A4A 100%);
  border-radius: 4px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.racing-visual::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 240px;
  height: 240px;
  border: 3px solid rgba(212,137,10,0.12);
  border-radius: 50%;
}

.racing-visual-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.racing-visual-inner .race-icon {
  font-size: 4.5rem;
  display: block;
  margin-bottom: 20px;
}

.racing-visual-inner h3 {
  color: #F5F2ED;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.racing-visual-inner p {
  color: #777;
  font-size: 0.83rem;
}

/* ── Story Section (About page) ───────────────────────────── */
.story-section {
  padding: 100px 0;
  background-color: #FBF7F0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
}

.story-sidebar {
  position: sticky;
  top: 88px;
}

.story-sidebar .year {
  font-family: 'Oswald', sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  color: #D4890A;
  opacity: 0.22;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.story-sidebar h3 {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1B2A4A;
}

.story-body h2  { margin-bottom: 24px; }
.story-body p   { margin-bottom: 20px; font-size: 1rem; line-height: 1.8; }
.story-body p:last-child { margin-bottom: 0; }

/* ── Timeline ─────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #D4890A, rgba(212,137,10,0.08));
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -31px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #D4890A;
  border: 2px solid #F5F2ED;
}

.timeline-year {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #D4890A;
  margin-bottom: 6px;
}

.timeline-item h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #1B2A4A;
}

.timeline-item p {
  font-size: 0.91rem;
  color: #666;
  line-height: 1.7;
}

/* ── Callout Box ──────────────────────────────────────────── */
.callout-box {
  border-left: 4px solid #D4890A;
  background: rgba(212,137,10,0.06);
  padding: 22px 26px;
  border-radius: 0 4px 4px 0;
  margin: 36px 0;
}

.callout-box p {
  font-size: 0.93rem;
  color: #444;
  margin: 0;
}

.callout-box strong { color: #D4890A; }

/* ── Bundle Cards ─────────────────────────────────────────── */
.bundle-card {
  background: linear-gradient(135deg, #1B2A4A 0%, #243758 100%);
  border-radius: 4px;
  padding: 38px 34px;
  color: #F5F2ED;
  position: relative;
  overflow: hidden;
}

.bundle-card::after {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 220px;
  height: 220px;
  border: 3px solid rgba(212,137,10,0.12);
  border-radius: 50%;
}

.bundle-card .bundle-badge {
  display: inline-block;
  background: #D4890A;
  color: #1B2A4A;
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.bundle-card h3 { color: #F5F2ED; margin-bottom: 12px; font-size: 1.25rem; }
.bundle-card p  { color: #8a8e9a; font-size: 0.9rem; margin-bottom: 20px; }

.bundle-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.bundle-includes li {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: #b8b4aa;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bundle-includes li::before {
  content: '✓';
  color: #D4890A;
  font-weight: 900;
  font-size: 0.88rem;
}

.bundle-pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
}

.bundle-price-new {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #F5F2ED;
  letter-spacing: 0.02em;
}

.bundle-price-old {
  font-size: 1rem;
  color: #555;
  text-decoration: line-through;
  font-family: 'Lato', sans-serif;
}

.bundle-save {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #D4890A;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Racing Values Cards ──────────────────────────────────── */
.values-racing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.value-racing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 28px 22px;
}

.value-racing-card .icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}

.value-racing-card h4 {
  color: #F5F2ED;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.value-racing-card p {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.65;
}

/* ── Racing CTA Block ─────────────────────────────────────── */
.cta-racing {
  background: linear-gradient(135deg, #D4890A 0%, #b87208 100%);
  border-radius: 4px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-racing::before {
  content: '';
  position: absolute;
  left: -60px; top: -60px;
  width: 280px; height: 280px;
  border: 3px solid rgba(255,255,255,0.07);
  border-radius: 50%;
}

.cta-racing::after {
  content: '';
  position: absolute;
  right: -40px; bottom: -40px;
  width: 200px; height: 200px;
  border: 2px solid rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-racing h2 {
  color: #1B2A4A;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-racing p {
  color: rgba(27,42,74,0.75);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-racing .btn-wrap {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── External link badge ──────────────────────────────────── */
.external-link-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D4890A;
  background: rgba(212,137,10,0.1);
  border: 1px solid rgba(212,137,10,0.22);
  padding: 4px 10px;
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ── Sports Hub Page ──────────────────────────────────────── */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.sports-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.sports-card::before {
  content: '';
  display: block;
  height: 3px;
  background: #D4890A;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.sports-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.1);
}

.sports-card-img {
  height: 200px;
  background: linear-gradient(160deg, #0e1c30 0%, #1B2A4A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sports-card-img .sport-icon {
  font-size: 4rem;
}

.sports-card-body {
  padding: 24px 22px 28px;
}

.sports-card-body .sport-tag {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D4890A;
  margin-bottom: 8px;
  display: block;
}

.sports-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1B2A4A;
}

.sports-card-body p {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 18px;
  line-height: 1.65;
}

/* ── Livery Block ─────────────────────────────────────────── */
.livery-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 8px;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 36px;
}
.livery-block div:nth-child(1) { background: #1B2A4A; }
.livery-block div:nth-child(2) { background: #D4890A; }
.livery-block div:nth-child(3) { background: #F5F2ED; }
.livery-block div:nth-child(4) { background: #2C2C2C; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background-color: #0d1620;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  color: #666;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer-brand .logo-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #F5F2ED;
  margin-bottom: 12px;
  display: block;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 0.87rem;
  color: #555;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #F5F2ED;
  margin-bottom: 18px;
}

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

.footer-col ul li a {
  font-family: 'Lato', sans-serif;
  font-size: 0.87rem;
  color: #555;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover { color: #D4890A; }

.footer-bottom {
  border-top: 1px solid rgba(212,137,10,0.15);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: 'Lato', sans-serif;
  font-size: 0.76rem;
  color: #444;
  line-height: 1.6;
}

.footer-bottom .tm-note {
  font-size: 0.7rem;
  color: #383838;
}

/* ── Shop Nav Bar ─────────────────────────────────────────── */
.shop-nav-bar {
  background: #fff;
  border-bottom: 1px solid #e8e0d0;
  position: sticky;
  top: 68px;
  z-index: 100;
}

.shop-nav-inner {
  display: flex;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.shop-nav-inner::-webkit-scrollbar { display: none; }

.shop-tab {
  flex-shrink: 0;
  padding: 18px 22px;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.shop-tab:hover { color: #1B2A4A; }
.shop-tab.active { color: #D4890A; border-bottom-color: #D4890A; }

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: #1B2A4A;
  border-bottom: 3px solid #D4890A;
  padding: 13px 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b8b4aa;
}

.trust-item span.icon { color: #D4890A; font-size: 0.9rem; }

/* ── Notify Bar ───────────────────────────────────────────── */
.notify-bar {
  background: #D4890A;
  padding: 11px 24px;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1B2A4A;
}

/* ── Product Section Header ───────────────────────────────── */
.product-section-header {
  padding: 52px 0 28px;
}

.product-section-header h2 { margin-bottom: 8px; }

.product-section-header p {
  font-size: 0.93rem;
  color: #666;
  max-width: 540px;
}

.qty-note {
  font-family: 'Lato', sans-serif;
  font-size: 0.74rem;
  color: #999;
  margin-top: 6px;
  display: block;
}

/* ── Utility ──────────────────────────────────────────────── */
.text-center { text-align: center; }

.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .podcast-strip {
    grid-template-columns: 1fr;
  }

  .podcast-visual {
    min-height: 200px;
    padding: 48px 32px;
  }

  .racing-story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .story-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 60px 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .racing-stats {
    flex-direction: column;
    gap: 28px;
  }

  .racing-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 0 0 28px;
  }

  .racing-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .podcast-content { padding: 40px 28px; }

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

  .cta-racing { padding: 40px 24px; }
  .bundle-card { padding: 28px 22px; }
}

@media (max-width: 480px) {
  .values-grid        { grid-template-columns: 1fr; }
  .cards-grid         { grid-template-columns: 1fr; }
  .products-grid      { grid-template-columns: 1fr; }
  .sports-grid        { grid-template-columns: 1fr; }
}
