/* ==========================================================================
   Pee-Pa's Garage Hatchet Barn — Global Stylesheet
   ========================================================================== */

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

:root {
  /* Brand — from official Hatchet Barn logo */
  --amber: #D4851F;
  --amber-light: #E9A54A;
  --amber-dark: #B36A10;
  --rust: #8B3A1A;
  --logo-red: #C53D2C;          /* Pee-Pa's script red */
  --logo-red-deep: #8C2A1D;
  --wood: #6B4423;              /* mid-brown wood tone */
  --wood-light: #8B5E3C;
  --wood-dark: #3D2818;

  /* Neutrals */
  --dark: #0F0F0F;
  --dark-surface: #1A1A1A;
  --dark-card: #222222;
  --dark-elevated: #2A2A2A;
  --cream: #F5F0E8;
  --cream-dark: #E8DFD0;
  --text-light: #F5F0E8;
  --text-muted: #A0998E;
  --border-subtle: rgba(245, 240, 232, 0.07);
  --border-amber: rgba(212, 133, 31, 0.3);

  /* Layout */
  --container: 1200px;
  --container-wide: 1400px;
  --container-narrow: 900px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Inter Fallback', Arial, sans-serif;
  background: var(--dark);
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Font fallback metrics — prevents CLS while Inter loads */
@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial');
  size-adjust: 107%;
  ascent-override: 90%;
  descent-override: 23%;
  line-gap-override: 0%;
}

/* Skip to content (a11y) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--amber);
  color: var(--dark);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ==========================================================================
   NAV
   ========================================================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.5rem 2rem;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 60px;
  width: auto;
  display: block;
  transition: height 0.4s;
}
nav.scrolled .nav-logo img { height: 46px; }

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--amber); }
.nav-links a:hover::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--amber); }
.nav-links a[aria-current="page"]::after { width: 100%; }

.nav-cta {
  background: var(--amber) !important;
  color: var(--dark) !important;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  transition: background 0.3s, transform 0.3s !important;
}
.nav-cta:hover {
  background: var(--amber-light) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}
.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: var(--cream);
  transition: 0.3s;
  display: block;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(15, 15, 15, 0.88) 0%,
      rgba(15, 15, 15, 0.55) 45%,
      rgba(15, 15, 15, 0.15) 70%,
      rgba(15, 15, 15, 0.05) 100%),
    linear-gradient(to bottom,
      rgba(15, 15, 15, 0.2) 0%,
      rgba(15, 15, 15, 0.4) 70%,
      rgba(15, 15, 15, 0.95) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 720px;
  padding: 0 4rem 0 6rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(212, 133, 31, 0.15);
  border: 1px solid var(--border-amber);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease both;
}
.hero-badge::before {
  content: '🪓';
  font-size: 0.9rem;
}
.hero h1 {
  font-family: 'Bebas Neue', 'Inter Fallback', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  min-height: 180px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero h1 .accent {
  color: var(--amber);
  display: block;
}
.hero-sub {
  font-family: 'Inter', 'Inter Fallback', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--cream-dark);
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.5;
  min-height: 60px;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s ease both;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(245, 240, 232, 0.3);
  border-radius: 12px;
  position: relative;
}
.hero-scroll span::after {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--amber);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}

/* Subpage hero — shorter than homepage hero */
.subhero {
  position: relative;
  padding: 10rem 2rem 5rem;
  text-align: center;
  background:
    linear-gradient(rgba(15,15,15,0.7), rgba(15,15,15,0.92)),
    linear-gradient(135deg, var(--wood-dark) 0%, var(--dark) 100%);
  border-bottom: 1px solid var(--border-subtle);
}
.subhero-tag {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  font-weight: 600;
  display: block;
}
.subhero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.subhero h1 .accent { color: var(--amber); }
.subhero p {
  color: var(--cream-dark);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--amber);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 133, 31, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245, 240, 232, 0.3);
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: var(--cream);
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  display: inline-block;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-dark:hover {
  background: var(--dark-surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee-section {
  background: var(--amber);
  padding: 0.9rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  white-space: nowrap;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--dark);
}
.marquee-item .dot {
  width: 6px;
  height: 6px;
  background: var(--dark);
  border-radius: 50%;
  opacity: 0.4;
}

/* ==========================================================================
   SECTION HEADER (shared)
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.section-header .tag {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}
.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  line-height: 1.05;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ==========================================================================
   INTRO (homepage)
   ========================================================================== */
.intro {
  padding: 8rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.intro-tag {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  font-weight: 600;
  display: block;
}
.intro h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: 2px;
  margin-bottom: 2rem;
  line-height: 1.05;
}
.intro p.lead {
  color: var(--cream-dark);
  line-height: 1.8;
  font-size: 1.15rem;
  max-width: 850px;
  margin: 0 auto 1.5rem;
}
.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-subtle);
}
.stat-item .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-item .label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==========================================================================
   "WHY CHOOSE US" / FEATURE CARDS
   ========================================================================== */
.why-section {
  background: var(--dark-surface);
  padding: 6rem 2rem;
  position: relative;
}
.why-section::before {
  /* Subtle wood-grain top border */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--wood) 20%,
    var(--amber) 50%,
    var(--wood) 80%,
    transparent 100%);
  opacity: 0.6;
}
.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-card {
  background: var(--dark-card);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 240, 232, 0.05);
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  border-color: var(--border-amber);
  transform: translateY(-4px);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.why-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}
.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   LEAGUES BANNER
   ========================================================================== */
.leagues-section {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rust) 0%, var(--amber-dark) 100%);
}
.leagues-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg-image, none);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.18;
  mix-blend-mode: overlay;
}
.leagues-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.leagues-content .tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(15, 15, 15, 0.4);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.leagues-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  color: var(--cream);
}
.leagues-content p {
  color: rgba(245, 240, 232, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.league-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.league-logos img {
  height: 80px;
  background: rgba(245, 240, 232, 0.95);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  object-fit: contain;
}

/* ==========================================================================
   MARATHON CALLOUT
   ========================================================================== */
.marathon {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.marathon-card {
  background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-card) 100%);
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.marathon-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 133, 31, 0.15) 0%, transparent 70%);
}
.marathon-date {
  text-align: center;
  background: var(--amber);
  color: var(--dark);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: 'Bebas Neue', sans-serif;
  min-width: 110px;
}
.marathon-date .month {
  font-size: 1rem;
  letter-spacing: 2px;
  display: block;
}
.marathon-date .day {
  font-size: 3rem;
  line-height: 1;
  display: block;
}
.marathon-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.marathon-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.marathon-info .time {
  color: var(--amber);
  font-weight: 600;
  margin-top: 0.5rem;
  display: inline-block;
}
.marathon-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--amber);
  line-height: 1;
}
.marathon-price .small {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
  letter-spacing: 2px;
}

/* ==========================================================================
   FLINGIN' FRIDAY SPECIAL
   ========================================================================== */
.friday-special {
  padding: 4rem 2rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
}
.friday-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3.5rem;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-card) 100%);
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.friday-flyer img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: block;
}
.friday-info .tag {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}
.friday-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 1rem;
}
.friday-deal {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.friday-deal strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--amber);
  margin-right: 0.4rem;
  letter-spacing: 1px;
}
.friday-perks {
  list-style: none;
  margin-bottom: 1.75rem;
}
.friday-perks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0;
  color: var(--cream-dark);
  font-size: 0.98rem;
}
.friday-perks li::before {
  content: '🪓';
  font-size: 0.95rem;
}
.promo-code {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--dark);
  border: 1px dashed var(--amber);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.25rem;
  margin-bottom: 1.75rem;
}
.promo-code .promo-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.promo-code .promo-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 3px;
  color: var(--amber);
}

/* ==========================================================================
   ARCADE GAMING
   ========================================================================== */
.arcade-section {
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(212, 133, 31, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(139, 58, 26, 0.18) 0%, transparent 45%),
    var(--dark-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.arcade-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.arcade-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--amber);
  padding: 0.45rem 1.4rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.arcade-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.arcade-emoji {
  display: inline-block;
  margin-left: 0.25rem;
  animation: arcadeWiggle 2.5s ease-in-out infinite;
}
.arcade-lead {
  color: var(--cream-dark);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.arcade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: left;
}
.arcade-card {
  background: rgba(15, 15, 15, 0.55);
  border: 1px solid rgba(245, 240, 232, 0.06);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.arcade-card:hover {
  border-color: var(--border-amber);
  transform: translateY(-4px);
}
.arcade-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.arcade-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.6rem;
}
.arcade-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
@keyframes arcadeWiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-12deg); }
  75% { transform: rotate(12deg); }
}

/* ==========================================================================
   IMAGE BREAK / QUOTE
   ========================================================================== */
.image-break {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(15, 15, 15, 0.92) 0%,
    rgba(15, 15, 15, 0.5) 50%,
    rgba(15, 15, 15, 0.92) 100%);
}
.image-break-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.image-break-content blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  max-width: 900px;
  line-height: 1.4;
  padding: 0 2rem;
  color: var(--cream);
}
.image-break-content cite {
  display: block;
  margin-top: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
}

/* ==========================================================================
   AMENITIES
   ========================================================================== */
.amenities {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.amenity-tile {
  background: var(--dark-card);
  border: 1px solid rgba(245, 240, 232, 0.05);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.amenity-tile:hover {
  border-color: var(--border-amber);
  transform: translateY(-4px);
}
.amenity-tile .icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.amenity-tile h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.amenity-tile p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ==========================================================================
   BOOKING SECTION
   ========================================================================== */
.booking {
  background: var(--dark-surface);
  padding: 8rem 2rem;
}
.booking-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 4rem;
}
.booking-card {
  background: var(--dark-card);
  border: 1px solid rgba(245, 240, 232, 0.05);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--amber);
}
.booking-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.booking-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.booking-card p {
  color: var(--cream-dark);
  line-height: 1.7;
  font-size: 0.98rem;
  margin-bottom: 2rem;
}
.pricing-link {
  text-align: center;
  margin-top: 3rem;
}
.pricing-link a {
  color: var(--amber);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border-amber);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}
.pricing-link a:hover { border-color: var(--amber); }

/* ==========================================================================
   PHOTO GALLERY
   ========================================================================== */
.gallery-section {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  margin-top: 4rem;
}
.gallery-grid .tile {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}
.gallery-grid .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s, filter 0.4s;
  filter: brightness(0.85);
}
.gallery-grid .tile:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}
.gallery-grid .tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(15,15,15,0.5) 100%);
  pointer-events: none;
}
.gallery-grid .tile.span-2 { grid-column: span 2; }
.gallery-grid .tile.row-2 { grid-row: span 2; }
.gallery-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ==========================================================================
   CONTACT CARDS / HOURS
   ========================================================================== */
.contact-section {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}
.contact-card {
  background: var(--dark-card);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 240, 232, 0.05);
  text-align: center;
}
.contact-card-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.contact-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.contact-card p, .contact-card a {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  text-decoration: none;
}
.contact-card a:hover { color: var(--amber); }
.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hours-list .day { color: var(--cream); font-weight: 500; }
.hours-list .closed { color: var(--rust); }

/* ==========================================================================
   UPDATES BAND
   ========================================================================== */
.updates {
  padding: 5rem 2rem;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.updates-inner {
  max-width: 800px;
  margin: 0 auto;
}
.updates h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.updates p {
  color: var(--cream-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--amber-dark) 0%, var(--amber) 50%, var(--amber-light) 100%);
  opacity: 0.95;
}
.cta-banner-content {
  position: relative;
  z-index: 2;
}
.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  color: var(--dark);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(15, 15, 15, 0.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-dark {
  font-size: 0.9rem;
  padding: 1.1rem 2.8rem;
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews-section {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.reviews-summary {
  text-align: center;
  margin-bottom: 3rem;
}
.reviews-summary .stars {
  display: inline-flex;
  gap: 0.25rem;
  font-size: 1.5rem;
  color: var(--amber);
  margin: 0.5rem 0;
}
.reviews-summary .rating-text {
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 600;
}
.reviews-summary .count {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--dark-card);
  border: 1px solid rgba(245, 240, 232, 0.05);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.review-card .review-stars {
  color: var(--amber);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.review-card .review-text {
  color: var(--cream-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.review-card .review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}
.review-card .author-name {
  color: var(--cream);
  font-weight: 600;
}
.review-card .author-date {
  margin-left: auto;
  font-size: 0.8rem;
}
.reviews-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-section {
  padding: 6rem 2rem;
  max-width: 760px;
  margin: 0 auto;
}
.form-card {
  background: var(--dark-card);
  border: 1px solid rgba(245, 240, 232, 0.06);
  border-radius: var(--radius-lg);
  padding: 3rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.form-group label .required { color: var(--amber); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--dark);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: var(--dark-surface);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group .help-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  line-height: 1.4;
}
.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-status {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #8BC34A;
}
.form-status.error {
  display: block;
  background: rgba(220, 53, 53, 0.1);
  border: 1px solid rgba(220, 53, 53, 0.3);
  color: #FF6B6B;
}
.form-actions {
  margin-top: 2rem;
  text-align: center;
}
.form-fineprint {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 1.5rem;
  text-align: center;
}

/* Signature canvas (waiver) */
.sig-pad-wrap {
  position: relative;
  background: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.sig-pad {
  display: block;
  width: 100%;
  height: 180px;
  touch-action: none;
  cursor: crosshair;
}
.sig-clear {
  position: absolute;
  bottom: 0.5rem;
  right: 0.75rem;
  background: rgba(15, 15, 15, 0.7);
  color: var(--cream);
  border: none;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}
.sig-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(15, 15, 15, 0.35);
  pointer-events: none;
  font-style: italic;
}
.sig-placeholder.hidden { display: none; }

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-list {
  padding: 5rem 2rem 8rem;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--dark-card);
  border: 1px solid rgba(245, 240, 232, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--border-amber);
  transform: translateY(-4px);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card .date {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.blog-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.blog-card .excerpt {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  flex: 1;
}
.blog-card .read-more {
  margin-top: 1rem;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.blog-post .meta {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.blog-post h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 2rem;
}
.blog-post .hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-bottom: 2.5rem;
}
.blog-post p {
  color: var(--cream-dark);
  line-height: 1.85;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.blog-post h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 1.5px;
  margin: 2.5rem 0 1rem;
}
.blog-post img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}
.blog-post a { color: var(--amber); }
.back-to-blog {
  display: inline-block;
  margin-top: 3rem;
  color: var(--amber);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* ==========================================================================
   BEER LIST
   ========================================================================== */
.beer-list-section {
  padding: 5rem 2rem 8rem;
  max-width: 1100px;
  margin: 0 auto;
}
.beer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.beer-card {
  background: var(--dark-card);
  border: 1px solid rgba(245, 240, 232, 0.05);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
}
.beer-card .style {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.beer-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.beer-card .abv {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(212, 133, 31, 0.15);
  color: var(--amber-light);
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.beer-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   FOOD TRUCKS
   ========================================================================== */
.truck-list {
  padding: 5rem 2rem 8rem;
  max-width: 1000px;
  margin: 0 auto;
}
.truck-card {
  background: var(--dark-card);
  border: 1px solid rgba(245, 240, 232, 0.05);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  align-items: center;
}
.truck-date {
  text-align: center;
  background: var(--dark);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  font-family: 'Bebas Neue', sans-serif;
}
.truck-date .month {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--amber);
  display: block;
}
.truck-date .day {
  font-size: 2rem;
  line-height: 1;
  color: var(--cream);
  display: block;
  margin-top: 0.2rem;
}
.truck-date .weekday {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  display: block;
  margin-top: 0.3rem;
}
.truck-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.4rem;
}
.truck-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ==========================================================================
   TIP PAGE
   ========================================================================== */
.tip-section {
  padding: 6rem 2rem 8rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.tip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}
.tip-card {
  background: var(--dark-card);
  border: 1px solid rgba(245, 240, 232, 0.05);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: border-color 0.3s, transform 0.3s;
}
.tip-card:hover {
  border-color: var(--border-amber);
  transform: translateY(-3px);
}
.tip-card-logo {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--amber);
  color: var(--dark);
  font-size: 1.3rem;
  font-weight: 700;
}
.tip-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
}
.tip-card .handle {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--dark-surface);
  border-top: 1px solid var(--border-subtle);
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-card);
  color: var(--cream);
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.3s, transform 0.3s;
}
.social-links a:hover {
  background: var(--amber);
  color: var(--dark);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: var(--cream);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a, .footer-col span {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--amber); }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .why-grid, .amenities-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .marathon-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .marathon-card::before { display: none; }
  .intro-stats { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-grid .tile.span-2 { grid-column: span 2; }
  .friday-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .friday-flyer {
    max-width: 360px;
    margin: 0 auto;
  }
  .friday-perks { display: inline-block; text-align: left; }
  .arcade-grid { grid-template-columns: 1fr; }
}

/* Hamburger menu kicks in below 1100px — the full 7-item text nav
   needs ~1100px to sit on one row without crowding the logo. */
@media (max-width: 1100px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--dark-surface);
    flex-direction: column;
    padding: 5rem 2rem;
    transition: right 0.4s;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }
  .nav-links.open { right: 0; }
  .mobile-toggle { display: flex; }
}

@media (max-width: 768px) {
  .why-grid, .amenities-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-content { padding: 0 1.5rem; }
  .hero h1 { min-height: 140px; }
  .hero-bg::after {
    background: linear-gradient(to bottom,
      rgba(15, 15, 15, 0.5) 0%,
      rgba(15, 15, 15, 0.7) 50%,
      rgba(15, 15, 15, 0.95) 100%);
  }
  .league-logos { gap: 1.5rem; }
  .league-logos img { height: 60px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 2rem 1.5rem; }
  .truck-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
