:root {
  --bg: #080706;
  --panel: #15110e;
  --panel2: #211912;
  --text: #fff7ed;
  --muted: #c9b8a5;
  --ember: #f97316;
  --gold: #facc15;
  --red: #dc2626;
  --line: rgba(255,255,255,.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(249,115,22,.18), transparent 35%),
    linear-gradient(180deg, #0b0908, #050505 45%, #0d0906);
  color: var(--text);
}

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

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

#header { position: sticky; top: 0; z-index: 50; }

.site-header {
  background: rgba(8,7,6,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 14px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: flex; gap: 12px; align-items: center; }

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ember), var(--red));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 0 25px rgba(249,115,22,.35);
}

.brand strong { display: block; text-transform: uppercase; letter-spacing: .05em; }
.brand small { color: var(--muted); }

.main-nav { display: flex; gap: 18px; align-items: center; font-weight: 800; }

.main-nav a { color: var(--muted); }

.main-nav a:hover { color: white; }

.nav-cta, .btn.primary {
  background: linear-gradient(135deg, var(--ember), var(--red));
  color: white !important;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(220,38,38,.25);
}

.menu-toggle {
  display: none;
  background: var(--panel2);
  color: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 22px;
}

.ticker {
  overflow: hidden;
  background: #120c08;
  border-bottom: 1px solid var(--line);
  color: #ffe7c2;
  font-weight: 900;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 45px;
  padding: 10px 0;
  animation: scroll 36s linear infinite;
}

@keyframes scroll {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100%); }
}

.hero {
  min-height: 78vh;
  padding: 90px 5vw;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.35)),
    url('/assets/images/hero-smoker.jpg') center/cover;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(249,115,22,.45);
  border-radius: 999px;
  color: #fed7aa;
  background: rgba(249,115,22,.1);
  font-weight: 900;
}

h1, h2, h3 { margin: 0 0 16px; line-height: .95; }

h1 {
  font-size: clamp(48px, 9vw, 105px);
  text-transform: uppercase;
  letter-spacing: -.06em;
}

h2 {
  font-size: clamp(34px, 6vw, 68px);
  text-transform: uppercase;
  letter-spacing: -.04em;
}

p { color: var(--muted); line-height: 1.65; }

.hero p { font-size: 20px; max-width: 720px; }

.hero-card {
  background: rgba(21,17,14,.88);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}

.stat-grid, .card-grid, .menu-grid {
  display: grid;
  gap: 18px;
}

.stat-grid { grid-template-columns: repeat(3, 1fr); margin-top: 22px; }

.stat, .card, .menu-item, .review, .form-card {
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}

.stat strong { display: block; color: white; font-size: 28px; }
.stat span { color: var(--muted); font-weight: 800; }

section { padding: 80px 5vw; }

.section-head {
  max-width: 880px;
  margin-bottom: 34px;
}

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

.menu-grid { grid-template-columns: repeat(4, 1fr); }

.menu-item h3, .card h3 { color: white; }

.price { color: var(--gold); font-size: 24px; font-weight: 900; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 900;
  cursor: pointer;
}

.btn.secondary { background: rgba(255,255,255,.08); color: white; }

.wide { width: 100%; }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.cart-box {
  position: sticky;
  top: 110px;
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}

.cart-row button {
  background: transparent;
  color: #fecaca;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 6px 10px;
}

.cart-total {
  font-size: 22px;
  font-weight: 900;
  margin: 18px 0;
  color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.photo-tile {
  min-height: 250px;
  border-radius: 24px;
  background: linear-gradient(135deg, #25140a, #090807);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
  padding: 20px;
}

.review-list {
  display: grid;
  gap: 18px;
}

.review strong { color: white; font-size: 20px; }

.map-box {
  min-height: 440px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.55)),
    radial-gradient(circle at 30% 30%, rgba(249,115,22,.25), transparent 30%),
    linear-gradient(135deg, #0d1117, #1f2937);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
}

form {
  display: grid;
  gap: 14px;
}

input, textarea, select {
  width: 100%;
  background: #0b0908;
  color: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  font: inherit;
}

textarea { min-height: 140px; }

.site-footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 50px 5vw;
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr;
  gap: 28px;
}

.site-footer a { display: block; color: var(--muted); margin: 8px 0; }

.page-hero {
  padding: 85px 5vw 45px;
  background:
    radial-gradient(circle at top right, rgba(249,115,22,.22), transparent 30%),
    linear-gradient(180deg, #17100b, #080706);
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 77px;
    left: 5vw;
    right: 5vw;
    background: #100c09;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero, .split, .site-footer {
    grid-template-columns: 1fr;
  }

  .card-grid, .menu-grid, .gallery-grid, .stat-grid {
    grid-template-columns: 1fr;
  }

  section { padding: 55px 5vw; }

  .cart-box { position: static; }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }
}


.hero{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.55)),
    url('/assets/images/Goat/Smoker.jpg') center/cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top left, rgba(249,115,22,.35), transparent 30%),
    radial-gradient(circle at bottom right, rgba(220,38,38,.22), transparent 30%);
}

.hero-content{
  position:relative;
  z-index:2;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.image-card{
  overflow:hidden;
  padding:0;
}

.image-card img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.feature-copy{
  padding:22px;
}

.dark-section{
  background:#070606;
}

.event-image img{
  width:100%;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.real-gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.real-gallery img{
  width:100%;
  height:300px;
  object-fit:cover;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.1);
}

@media(max-width:900px){

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

  .real-gallery{
    grid-template-columns:1fr;
  }

}



/* ===== CLEAN GOAT BRANDING RESET ===== */

@font-face{
  font-family:'BangersLocal';
  src:url('/assets/Bangers-Regular.ttf') format('truetype');
  font-display:swap;
}

/* Main display headings only */
h1,
h2,
.home-proof strong,
.brand-text strong{
  font-family:'BangersLocal', sans-serif;
  letter-spacing:.05em;
  color:#ffab22;
  text-shadow:
    3px 3px 0 #4a1308,
    0 0 18px rgba(255,120,20,.35);
}

/* Keep nav/buttons clean readable */
.main-nav a,
.btn,
.nav-cta,
p,
span,
small{
  font-family:Arial, Helvetica, sans-serif !important;
}

/* Header image */
.site-header{
  background:
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.62)),
    url('/assets/images/Goat/header-smoke.jfif') center/cover no-repeat !important;
}

/* Hero image */
.compact-hero,
.hero{
  background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.58)),
    url('/assets/images/Goat/hero-smoker.jpg') center/cover no-repeat !important;
}

/* Header logo */
.header-logo{
  width:64px;
  height:64px;
  object-fit:contain;
  border-radius:14px;
  background:#120d0a;
  padding:4px;
  border:1px solid rgba(255,255,255,.12);
}

/* Restore visible hero text */
.hero-content,
.compact-hero-content{
  position:relative;
  z-index:5;
}

.hero-content h1,
.compact-hero-content h1{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  font-size:clamp(54px, 10vw, 110px);
  line-height:.9;
  margin-bottom:20px;
}

.hero-content p,
.compact-hero-content p{
  color:#f3dcc4;
  font-size:20px;
  max-width:760px;
}

/* Image fixes */
img{
  max-width:100%;
  display:block;
}

.image-card img,
.real-gallery img,
.event-image img{
  width:100%;
  object-fit:cover;
  opacity:1 !important;
  visibility:visible !important;
}

.image-card img{
  height:260px;
}

.real-gallery img{
  height:300px;
}

/* Better homepage spacing */
.compact-hero{
  min-height:72vh;
  padding-top:120px;
}

/* Mobile */
@media(max-width:900px){

  .header-logo{
    width:52px;
    height:52px;
  }

  .hero-content h1,
  .compact-hero-content h1{
    font-size:58px;
  }

  .compact-hero{
    padding-top:100px;
  }

}




/* MENU HERO */
.menu-hero{
  position:relative;
  overflow:hidden;
  min-height:72vh;
  display:flex;
  align-items:center;
  background:
    linear-gradient(rgba(0,0,0,.76),rgba(0,0,0,.64)),
    url('/assets/images/Goat/smoker3.jpg') center/cover no-repeat;
}

.menu-hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top left, rgba(255,120,20,.22), transparent 30%),
    radial-gradient(circle at bottom right, rgba(180,20,10,.22), transparent 30%);
}

.menu-hero-grid{
  position:relative;
  z-index:2;
  width:100%;
  display:grid;
  grid-template-columns:1fr .85fr;
  gap:40px;
  align-items:center;
}

.menu-board-card{
  background:rgba(12,9,8,.82);
  border:1px solid rgba(255,255,255,.1);
  border-radius:28px;
  padding:18px;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.menu-board-card img{
  width:100%;
  border-radius:18px;
}

.menu-item{
  overflow:hidden;
}

.menu-item img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:18px;
  margin-bottom:18px;
}

.cart-summary{
  margin-top:20px;
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:20px;
}

.summary-row{
  display:flex;
  justify-content:space-between;
  margin-bottom:12px;
}

.total-row{
  font-size:22px;
  color:#ffb326;
}

@media(max-width:900px){

  .menu-hero-grid{
    grid-template-columns:1fr;
  }

  .menu-hero{
    min-height:auto;
    padding-top:120px;
  }

}



/* MENU REAL PRICING + IMAGE FIX */
.menu-order-layout{
  grid-template-columns:1.25fr .75fr;
  align-items:start;
}

.fixed-menu-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
}

.menu-item{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.menu-item img{
  width:100% !important;
  height:210px !important;
  object-fit:cover !important;
  border-radius:18px !important;
  background:#111 !important;
  border:1px solid rgba(255,255,255,.08);
}

.menu-item .btn{
  margin-top:6px;
}

.menu-item .btn.secondary{
  background:#251711;
}

.cart-box{
  min-width:320px;
}

@media(max-width:1100px){
  .fixed-menu-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }
}

@media(max-width:900px){
  .menu-order-layout{
    grid-template-columns:1fr;
  }

  .fixed-menu-grid{
    grid-template-columns:1fr !important;
  }
}



/* TRUCK TRACKER DARK MAP PAGE */
.tracker-hero{
  background:
    linear-gradient(rgba(0,0,0,.76),rgba(0,0,0,.64)),
    url('/assets/images/Goat/smoker4.jpg') center/cover no-repeat;
}

.tracker-section{
  padding-top:45px;
}

.tracker-grid{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:28px;
  align-items:stretch;
}

.tracker-map-card{
  position:relative;
  min-height:620px;
  border-radius:30px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:#050505;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.google-map-dark{
  width:100%;
  height:100%;
  min-height:620px;
  border:0;
  filter:invert(92%) hue-rotate(180deg) saturate(75%) brightness(70%) contrast(105%);
}

.map-status-badge{
  position:absolute;
  left:22px;
  bottom:22px;
  background:rgba(0,0,0,.82);
  border:1px solid rgba(255,255,255,.16);
  color:white;
  border-radius:999px;
  padding:13px 18px;
  font-weight:900;
  display:flex;
  gap:10px;
  align-items:center;
  backdrop-filter:blur(10px);
}

.live-panel{
  background:linear-gradient(180deg,#17110d,#24160f);
  border:1px solid rgba(255,255,255,.12);
  border-radius:30px;
  padding:28px;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.live-status{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.35);
  color:#bbf7d0;
  font-weight:900;
  margin-bottom:18px;
}

.pulse-dot{
  width:11px;
  height:11px;
  border-radius:999px;
  background:#22c55e;
  box-shadow:0 0 0 rgba(34,197,94,.7);
  animation:pulseLive 1.6s infinite;
}

@keyframes pulseLive{
  0%{box-shadow:0 0 0 0 rgba(34,197,94,.7);}
  70%{box-shadow:0 0 0 12px rgba(34,197,94,0);}
  100%{box-shadow:0 0 0 0 rgba(34,197,94,0);}
}

.info-stack{
  display:grid;
  gap:14px;
  margin-top:20px;
}

.info-row{
  background:rgba(0,0,0,.24);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:16px;
}

.info-row strong{
  display:block;
  color:#ffb326;
  margin-bottom:6px;
}

.info-row span{
  color:#f3dcc4;
}

.update-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.update-card{
  background:linear-gradient(180deg,#15110e,#211912);
  border:1px solid rgba(255,255,255,.1);
  border-radius:24px;
  padding:24px;
}

.update-card strong{
  color:#ffb326;
}

@media(max-width:900px){
  .tracker-grid,
  .update-grid{
    grid-template-columns:1fr;
  }

  .tracker-map-card,
  .google-map-dark{
    min-height:420px;
  }
}



/* CATERING HERO */
.catering-hero{
  position:relative;
  overflow:hidden;
  min-height:72vh;
  display:flex;
  align-items:center;
  background:
    linear-gradient(rgba(0,0,0,.80),rgba(0,0,0,.66)),
    url('/assets/images/Goat/smoker2.jpg') center/cover no-repeat;
}

.catering-hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top left, rgba(255,120,20,.22), transparent 30%),
    radial-gradient(circle at bottom right, rgba(180,20,10,.24), transparent 35%);
}

.catering-hero-content{
  position:relative;
  z-index:2;
  max-width:760px;
}

.event-showcase{
  width:100%;
  border-radius:24px;
  object-fit:cover;
  min-height:420px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.quote-form{
  display:grid;
  gap:14px;
}

.quote-form input,
.quote-form textarea{
  width:100%;
}

.quote-form textarea{
  min-height:160px;
}

@media(max-width:900px){

  .catering-hero{
    min-height:auto;
    padding-top:120px;
  }

}



/* REVIEWS POLISH */
.reviews-hero{
  background:
    linear-gradient(rgba(0,0,0,.78),rgba(0,0,0,.64)),
    url('/assets/images/Goat/smoker4.jpg') center/cover no-repeat;
}

.review-highlight-section{
  display:grid;
  grid-template-columns:.65fr 1.35fr;
  gap:24px;
  align-items:stretch;
  padding-top:50px;
  padding-bottom:35px;
}

.review-score-card,
.review-pullquote{
  background:linear-gradient(180deg,#17110d,#24160f);
  border:1px solid rgba(255,255,255,.12);
  border-radius:30px;
  padding:30px;
  box-shadow:0 24px 60px rgba(0,0,0,.35);
}

.review-score-card strong{
  display:block;
  font-family:'BangersLocal', sans-serif;
  font-size:82px;
  color:#ffab22;
  line-height:1;
}

.review-score-card span{
  display:block;
  color:white;
  font-weight:900;
  font-size:22px;
  margin-top:8px;
}

.review-pullquote h2{
  margin-bottom:10px;
}

.review-wall{
  columns:3 280px;
  column-gap:20px;
}

.review-card{
  break-inside:avoid;
  margin:0 0 20px;
  background:linear-gradient(180deg,#15110e,#211912);
  border:1px solid rgba(255,255,255,.1);
  border-radius:26px;
  padding:24px;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.review-card h3{
  font-size:30px;
  line-height:1.05;
}

.review-card span{
  color:#ffce8a;
  font-weight:900;
}

.stars{
  color:#ffb326;
  font-size:22px;
  letter-spacing:2px;
  margin-bottom:12px;
}

.featured-review{
  background:
    radial-gradient(circle at top left,rgba(255,120,20,.22),transparent 35%),
    linear-gradient(180deg,#20140d,#120b08);
}

.image-review{
  padding:0;
  overflow:hidden;
}

.image-review img{
  width:100%;
  height:360px;
  object-fit:cover;
}

@media(max-width:900px){
  .review-highlight-section{
    grid-template-columns:1fr;
  }
}



/* ANIMATED GALLERY */
.gallery-hero{
  background:
    linear-gradient(rgba(0,0,0,.78),rgba(0,0,0,.64)),
    url('/assets/images/Goat/smoker3.jpg') center/cover no-repeat;
}

.gallery-marquee-section{
  padding:30px 0;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  background:#070606;
}

.photo-marquee{
  width:100%;
  overflow:hidden;
}

.photo-marquee-track{
  display:flex;
  gap:18px;
  width:max-content;
  animation:gallerySlide 42s linear infinite;
}

.photo-marquee:hover .photo-marquee-track{
  animation-play-state:paused;
}

.photo-marquee-track img{
  width:260px;
  height:170px;
  object-fit:cover;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 16px 40px rgba(0,0,0,.35);
}

@keyframes gallerySlide{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

.animated-gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:230px;
  gap:18px;
}

.gallery-tile{
  position:relative;
  overflow:hidden;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.12);
  background:#111;
  box-shadow:0 20px 50px rgba(0,0,0,.28);
  animation:tileRise .7s ease both;
}

.gallery-tile:nth-child(2){animation-delay:.06s;}
.gallery-tile:nth-child(3){animation-delay:.12s;}
.gallery-tile:nth-child(4){animation-delay:.18s;}
.gallery-tile:nth-child(5){animation-delay:.24s;}
.gallery-tile:nth-child(6){animation-delay:.30s;}
.gallery-tile:nth-child(7){animation-delay:.36s;}
.gallery-tile:nth-child(8){animation-delay:.42s;}
.gallery-tile:nth-child(9){animation-delay:.48s;}
.gallery-tile:nth-child(10){animation-delay:.54s;}

@keyframes tileRise{
  from{
    opacity:0;
    transform:translateY(26px) scale(.98);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

.gallery-tile img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .55s ease, filter .55s ease;
}

.gallery-tile::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 35%,rgba(0,0,0,.84));
  opacity:.88;
  transition:opacity .35s ease;
}

.gallery-tile span{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:2;
  color:white;
  font-weight:900;
  font-size:20px;
  transform:translateY(0);
  transition:transform .35s ease;
}

.gallery-tile:hover img{
  transform:scale(1.08);
  filter:saturate(1.15) contrast(1.05);
}

.gallery-tile:hover span{
  transform:translateY(-6px);
}

.gallery-tile.tall{
  grid-row:span 2;
}

.gallery-tile.wide{
  grid-column:span 2;
}

@media(max-width:1000px){
  .animated-gallery{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:650px){
  .animated-gallery{
    grid-template-columns:1fr;
    grid-auto-rows:260px;
  }

  .gallery-tile.tall,
  .gallery-tile.wide{
    grid-row:auto;
    grid-column:auto;
  }

  .photo-marquee-track img{
    width:220px;
    height:145px;
  }
}



/* VETERAN STRIP */
.veteran-strip{
  padding:24px 5vw;
  background:
    linear-gradient(90deg, rgba(13,10,8,.96), rgba(28,18,12,.94)),
    url('/assets/images/Goat/header-smoke.jfif') center/cover no-repeat;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.veteran-strip-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.veteran-badge{
  background:linear-gradient(135deg,#b91c1c,#dc2626);
  color:white;
  padding:12px 18px;
  border-radius:999px;
  font-weight:900;
  white-space:nowrap;
  box-shadow:0 10px 25px rgba(185,28,28,.28);
}

.veteran-strip p{
  margin:0;
  color:#f3dcc4;
  font-size:17px;
}

@media(max-width:900px){
  .veteran-strip-inner{
    flex-direction:column;
  }
}
